re PR debug/63285 (-fcompare-debug scheduler related failure)
[gcc.git] / gcc / haifa-sched.c
1 /* Instruction scheduling pass.
2 Copyright (C) 1992-2014 Free Software Foundation, Inc.
3 Contributed by Michael Tiemann (tiemann@cygnus.com) Enhanced by,
4 and currently maintained by, Jim Wilson (wilson@cygnus.com)
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
21
22 /* Instruction scheduling pass. This file, along with sched-deps.c,
23 contains the generic parts. The actual entry point for
24 the normal instruction scheduling pass is found in sched-rgn.c.
25
26 We compute insn priorities based on data dependencies. Flow
27 analysis only creates a fraction of the data-dependencies we must
28 observe: namely, only those dependencies which the combiner can be
29 expected to use. For this pass, we must therefore create the
30 remaining dependencies we need to observe: register dependencies,
31 memory dependencies, dependencies to keep function calls in order,
32 and the dependence between a conditional branch and the setting of
33 condition codes are all dealt with here.
34
35 The scheduler first traverses the data flow graph, starting with
36 the last instruction, and proceeding to the first, assigning values
37 to insn_priority as it goes. This sorts the instructions
38 topologically by data dependence.
39
40 Once priorities have been established, we order the insns using
41 list scheduling. This works as follows: starting with a list of
42 all the ready insns, and sorted according to priority number, we
43 schedule the insn from the end of the list by placing its
44 predecessors in the list according to their priority order. We
45 consider this insn scheduled by setting the pointer to the "end" of
46 the list to point to the previous insn. When an insn has no
47 predecessors, we either queue it until sufficient time has elapsed
48 or add it to the ready list. As the instructions are scheduled or
49 when stalls are introduced, the queue advances and dumps insns into
50 the ready list. When all insns down to the lowest priority have
51 been scheduled, the critical path of the basic block has been made
52 as short as possible. The remaining insns are then scheduled in
53 remaining slots.
54
55 The following list shows the order in which we want to break ties
56 among insns in the ready list:
57
58 1. choose insn with the longest path to end of bb, ties
59 broken by
60 2. choose insn with least contribution to register pressure,
61 ties broken by
62 3. prefer in-block upon interblock motion, ties broken by
63 4. prefer useful upon speculative motion, ties broken by
64 5. choose insn with largest control flow probability, ties
65 broken by
66 6. choose insn with the least dependences upon the previously
67 scheduled insn, or finally
68 7 choose the insn which has the most insns dependent on it.
69 8. choose insn with lowest UID.
70
71 Memory references complicate matters. Only if we can be certain
72 that memory references are not part of the data dependency graph
73 (via true, anti, or output dependence), can we move operations past
74 memory references. To first approximation, reads can be done
75 independently, while writes introduce dependencies. Better
76 approximations will yield fewer dependencies.
77
78 Before reload, an extended analysis of interblock data dependences
79 is required for interblock scheduling. This is performed in
80 compute_block_dependences ().
81
82 Dependencies set up by memory references are treated in exactly the
83 same way as other dependencies, by using insn backward dependences
84 INSN_BACK_DEPS. INSN_BACK_DEPS are translated into forward dependences
85 INSN_FORW_DEPS for the purpose of forward list scheduling.
86
87 Having optimized the critical path, we may have also unduly
88 extended the lifetimes of some registers. If an operation requires
89 that constants be loaded into registers, it is certainly desirable
90 to load those constants as early as necessary, but no earlier.
91 I.e., it will not do to load up a bunch of registers at the
92 beginning of a basic block only to use them at the end, if they
93 could be loaded later, since this may result in excessive register
94 utilization.
95
96 Note that since branches are never in basic blocks, but only end
97 basic blocks, this pass will not move branches. But that is ok,
98 since we can use GNU's delayed branch scheduling pass to take care
99 of this case.
100
101 Also note that no further optimizations based on algebraic
102 identities are performed, so this pass would be a good one to
103 perform instruction splitting, such as breaking up a multiply
104 instruction into shifts and adds where that is profitable.
105
106 Given the memory aliasing analysis that this pass should perform,
107 it should be possible to remove redundant stores to memory, and to
108 load values from registers instead of hitting memory.
109
110 Before reload, speculative insns are moved only if a 'proof' exists
111 that no exception will be caused by this, and if no live registers
112 exist that inhibit the motion (live registers constraints are not
113 represented by data dependence edges).
114
115 This pass must update information that subsequent passes expect to
116 be correct. Namely: reg_n_refs, reg_n_sets, reg_n_deaths,
117 reg_n_calls_crossed, and reg_live_length. Also, BB_HEAD, BB_END.
118
119 The information in the line number notes is carefully retained by
120 this pass. Notes that refer to the starting and ending of
121 exception regions are also carefully retained by this pass. All
122 other NOTE insns are grouped in their same relative order at the
123 beginning of basic blocks and regions that have been scheduled. */
124 \f
125 #include "config.h"
126 #include "system.h"
127 #include "coretypes.h"
128 #include "tm.h"
129 #include "diagnostic-core.h"
130 #include "hard-reg-set.h"
131 #include "rtl.h"
132 #include "tm_p.h"
133 #include "regs.h"
134 #include "function.h"
135 #include "flags.h"
136 #include "insn-config.h"
137 #include "insn-attr.h"
138 #include "except.h"
139 #include "recog.h"
140 #include "sched-int.h"
141 #include "target.h"
142 #include "common/common-target.h"
143 #include "params.h"
144 #include "dbgcnt.h"
145 #include "cfgloop.h"
146 #include "ira.h"
147 #include "emit-rtl.h" /* FIXME: Can go away once crtl is moved to rtl.h. */
148 #include "hash-table.h"
149 #include "dumpfile.h"
150
151 #ifdef INSN_SCHEDULING
152
153 /* True if we do register pressure relief through live-range
154 shrinkage. */
155 static bool live_range_shrinkage_p;
156
157 /* Switch on live range shrinkage. */
158 void
159 initialize_live_range_shrinkage (void)
160 {
161 live_range_shrinkage_p = true;
162 }
163
164 /* Switch off live range shrinkage. */
165 void
166 finish_live_range_shrinkage (void)
167 {
168 live_range_shrinkage_p = false;
169 }
170
171 /* issue_rate is the number of insns that can be scheduled in the same
172 machine cycle. It can be defined in the config/mach/mach.h file,
173 otherwise we set it to 1. */
174
175 int issue_rate;
176
177 /* This can be set to true by a backend if the scheduler should not
178 enable a DCE pass. */
179 bool sched_no_dce;
180
181 /* The current initiation interval used when modulo scheduling. */
182 static int modulo_ii;
183
184 /* The maximum number of stages we are prepared to handle. */
185 static int modulo_max_stages;
186
187 /* The number of insns that exist in each iteration of the loop. We use this
188 to detect when we've scheduled all insns from the first iteration. */
189 static int modulo_n_insns;
190
191 /* The current count of insns in the first iteration of the loop that have
192 already been scheduled. */
193 static int modulo_insns_scheduled;
194
195 /* The maximum uid of insns from the first iteration of the loop. */
196 static int modulo_iter0_max_uid;
197
198 /* The number of times we should attempt to backtrack when modulo scheduling.
199 Decreased each time we have to backtrack. */
200 static int modulo_backtracks_left;
201
202 /* The stage in which the last insn from the original loop was
203 scheduled. */
204 static int modulo_last_stage;
205
206 /* sched-verbose controls the amount of debugging output the
207 scheduler prints. It is controlled by -fsched-verbose=N:
208 N>0 and no -DSR : the output is directed to stderr.
209 N>=10 will direct the printouts to stderr (regardless of -dSR).
210 N=1: same as -dSR.
211 N=2: bb's probabilities, detailed ready list info, unit/insn info.
212 N=3: rtl at abort point, control-flow, regions info.
213 N=5: dependences info. */
214
215 int sched_verbose = 0;
216
217 /* Debugging file. All printouts are sent to dump, which is always set,
218 either to stderr, or to the dump listing file (-dRS). */
219 FILE *sched_dump = 0;
220
221 /* This is a placeholder for the scheduler parameters common
222 to all schedulers. */
223 struct common_sched_info_def *common_sched_info;
224
225 #define INSN_TICK(INSN) (HID (INSN)->tick)
226 #define INSN_EXACT_TICK(INSN) (HID (INSN)->exact_tick)
227 #define INSN_TICK_ESTIMATE(INSN) (HID (INSN)->tick_estimate)
228 #define INTER_TICK(INSN) (HID (INSN)->inter_tick)
229 #define FEEDS_BACKTRACK_INSN(INSN) (HID (INSN)->feeds_backtrack_insn)
230 #define SHADOW_P(INSN) (HID (INSN)->shadow_p)
231 #define MUST_RECOMPUTE_SPEC_P(INSN) (HID (INSN)->must_recompute_spec)
232 /* Cached cost of the instruction. Use insn_cost to get cost of the
233 insn. -1 here means that the field is not initialized. */
234 #define INSN_COST(INSN) (HID (INSN)->cost)
235
236 /* If INSN_TICK of an instruction is equal to INVALID_TICK,
237 then it should be recalculated from scratch. */
238 #define INVALID_TICK (-(max_insn_queue_index + 1))
239 /* The minimal value of the INSN_TICK of an instruction. */
240 #define MIN_TICK (-max_insn_queue_index)
241
242 /* List of important notes we must keep around. This is a pointer to the
243 last element in the list. */
244 rtx_insn *note_list;
245
246 static struct spec_info_def spec_info_var;
247 /* Description of the speculative part of the scheduling.
248 If NULL - no speculation. */
249 spec_info_t spec_info = NULL;
250
251 /* True, if recovery block was added during scheduling of current block.
252 Used to determine, if we need to fix INSN_TICKs. */
253 static bool haifa_recovery_bb_recently_added_p;
254
255 /* True, if recovery block was added during this scheduling pass.
256 Used to determine if we should have empty memory pools of dependencies
257 after finishing current region. */
258 bool haifa_recovery_bb_ever_added_p;
259
260 /* Counters of different types of speculative instructions. */
261 static int nr_begin_data, nr_be_in_data, nr_begin_control, nr_be_in_control;
262
263 /* Array used in {unlink, restore}_bb_notes. */
264 static rtx_insn **bb_header = 0;
265
266 /* Basic block after which recovery blocks will be created. */
267 static basic_block before_recovery;
268
269 /* Basic block just before the EXIT_BLOCK and after recovery, if we have
270 created it. */
271 basic_block after_recovery;
272
273 /* FALSE if we add bb to another region, so we don't need to initialize it. */
274 bool adding_bb_to_current_region_p = true;
275
276 /* Queues, etc. */
277
278 /* An instruction is ready to be scheduled when all insns preceding it
279 have already been scheduled. It is important to ensure that all
280 insns which use its result will not be executed until its result
281 has been computed. An insn is maintained in one of four structures:
282
283 (P) the "Pending" set of insns which cannot be scheduled until
284 their dependencies have been satisfied.
285 (Q) the "Queued" set of insns that can be scheduled when sufficient
286 time has passed.
287 (R) the "Ready" list of unscheduled, uncommitted insns.
288 (S) the "Scheduled" list of insns.
289
290 Initially, all insns are either "Pending" or "Ready" depending on
291 whether their dependencies are satisfied.
292
293 Insns move from the "Ready" list to the "Scheduled" list as they
294 are committed to the schedule. As this occurs, the insns in the
295 "Pending" list have their dependencies satisfied and move to either
296 the "Ready" list or the "Queued" set depending on whether
297 sufficient time has passed to make them ready. As time passes,
298 insns move from the "Queued" set to the "Ready" list.
299
300 The "Pending" list (P) are the insns in the INSN_FORW_DEPS of the
301 unscheduled insns, i.e., those that are ready, queued, and pending.
302 The "Queued" set (Q) is implemented by the variable `insn_queue'.
303 The "Ready" list (R) is implemented by the variables `ready' and
304 `n_ready'.
305 The "Scheduled" list (S) is the new insn chain built by this pass.
306
307 The transition (R->S) is implemented in the scheduling loop in
308 `schedule_block' when the best insn to schedule is chosen.
309 The transitions (P->R and P->Q) are implemented in `schedule_insn' as
310 insns move from the ready list to the scheduled list.
311 The transition (Q->R) is implemented in 'queue_to_insn' as time
312 passes or stalls are introduced. */
313
314 /* Implement a circular buffer to delay instructions until sufficient
315 time has passed. For the new pipeline description interface,
316 MAX_INSN_QUEUE_INDEX is a power of two minus one which is not less
317 than maximal time of instruction execution computed by genattr.c on
318 the base maximal time of functional unit reservations and getting a
319 result. This is the longest time an insn may be queued. */
320
321 static rtx_insn_list **insn_queue;
322 static int q_ptr = 0;
323 static int q_size = 0;
324 #define NEXT_Q(X) (((X)+1) & max_insn_queue_index)
325 #define NEXT_Q_AFTER(X, C) (((X)+C) & max_insn_queue_index)
326
327 #define QUEUE_SCHEDULED (-3)
328 #define QUEUE_NOWHERE (-2)
329 #define QUEUE_READY (-1)
330 /* QUEUE_SCHEDULED - INSN is scheduled.
331 QUEUE_NOWHERE - INSN isn't scheduled yet and is neither in
332 queue or ready list.
333 QUEUE_READY - INSN is in ready list.
334 N >= 0 - INSN queued for X [where NEXT_Q_AFTER (q_ptr, X) == N] cycles. */
335
336 #define QUEUE_INDEX(INSN) (HID (INSN)->queue_index)
337
338 /* The following variable value refers for all current and future
339 reservations of the processor units. */
340 state_t curr_state;
341
342 /* The following variable value is size of memory representing all
343 current and future reservations of the processor units. */
344 size_t dfa_state_size;
345
346 /* The following array is used to find the best insn from ready when
347 the automaton pipeline interface is used. */
348 signed char *ready_try = NULL;
349
350 /* The ready list. */
351 struct ready_list ready = {NULL, 0, 0, 0, 0};
352
353 /* The pointer to the ready list (to be removed). */
354 static struct ready_list *readyp = &ready;
355
356 /* Scheduling clock. */
357 static int clock_var;
358
359 /* Clock at which the previous instruction was issued. */
360 static int last_clock_var;
361
362 /* Set to true if, when queuing a shadow insn, we discover that it would be
363 scheduled too late. */
364 static bool must_backtrack;
365
366 /* The following variable value is number of essential insns issued on
367 the current cycle. An insn is essential one if it changes the
368 processors state. */
369 int cycle_issued_insns;
370
371 /* This records the actual schedule. It is built up during the main phase
372 of schedule_block, and afterwards used to reorder the insns in the RTL. */
373 static vec<rtx_insn *> scheduled_insns;
374
375 static int may_trap_exp (const_rtx, int);
376
377 /* Nonzero iff the address is comprised from at most 1 register. */
378 #define CONST_BASED_ADDRESS_P(x) \
379 (REG_P (x) \
380 || ((GET_CODE (x) == PLUS || GET_CODE (x) == MINUS \
381 || (GET_CODE (x) == LO_SUM)) \
382 && (CONSTANT_P (XEXP (x, 0)) \
383 || CONSTANT_P (XEXP (x, 1)))))
384
385 /* Returns a class that insn with GET_DEST(insn)=x may belong to,
386 as found by analyzing insn's expression. */
387
388 \f
389 static int haifa_luid_for_non_insn (rtx x);
390
391 /* Haifa version of sched_info hooks common to all headers. */
392 const struct common_sched_info_def haifa_common_sched_info =
393 {
394 NULL, /* fix_recovery_cfg */
395 NULL, /* add_block */
396 NULL, /* estimate_number_of_insns */
397 haifa_luid_for_non_insn, /* luid_for_non_insn */
398 SCHED_PASS_UNKNOWN /* sched_pass_id */
399 };
400
401 /* Mapping from instruction UID to its Logical UID. */
402 vec<int> sched_luids = vNULL;
403
404 /* Next LUID to assign to an instruction. */
405 int sched_max_luid = 1;
406
407 /* Haifa Instruction Data. */
408 vec<haifa_insn_data_def> h_i_d = vNULL;
409
410 void (* sched_init_only_bb) (basic_block, basic_block);
411
412 /* Split block function. Different schedulers might use different functions
413 to handle their internal data consistent. */
414 basic_block (* sched_split_block) (basic_block, rtx);
415
416 /* Create empty basic block after the specified block. */
417 basic_block (* sched_create_empty_bb) (basic_block);
418
419 /* Return the number of cycles until INSN is expected to be ready.
420 Return zero if it already is. */
421 static int
422 insn_delay (rtx_insn *insn)
423 {
424 return MAX (INSN_TICK (insn) - clock_var, 0);
425 }
426
427 static int
428 may_trap_exp (const_rtx x, int is_store)
429 {
430 enum rtx_code code;
431
432 if (x == 0)
433 return TRAP_FREE;
434 code = GET_CODE (x);
435 if (is_store)
436 {
437 if (code == MEM && may_trap_p (x))
438 return TRAP_RISKY;
439 else
440 return TRAP_FREE;
441 }
442 if (code == MEM)
443 {
444 /* The insn uses memory: a volatile load. */
445 if (MEM_VOLATILE_P (x))
446 return IRISKY;
447 /* An exception-free load. */
448 if (!may_trap_p (x))
449 return IFREE;
450 /* A load with 1 base register, to be further checked. */
451 if (CONST_BASED_ADDRESS_P (XEXP (x, 0)))
452 return PFREE_CANDIDATE;
453 /* No info on the load, to be further checked. */
454 return PRISKY_CANDIDATE;
455 }
456 else
457 {
458 const char *fmt;
459 int i, insn_class = TRAP_FREE;
460
461 /* Neither store nor load, check if it may cause a trap. */
462 if (may_trap_p (x))
463 return TRAP_RISKY;
464 /* Recursive step: walk the insn... */
465 fmt = GET_RTX_FORMAT (code);
466 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
467 {
468 if (fmt[i] == 'e')
469 {
470 int tmp_class = may_trap_exp (XEXP (x, i), is_store);
471 insn_class = WORST_CLASS (insn_class, tmp_class);
472 }
473 else if (fmt[i] == 'E')
474 {
475 int j;
476 for (j = 0; j < XVECLEN (x, i); j++)
477 {
478 int tmp_class = may_trap_exp (XVECEXP (x, i, j), is_store);
479 insn_class = WORST_CLASS (insn_class, tmp_class);
480 if (insn_class == TRAP_RISKY || insn_class == IRISKY)
481 break;
482 }
483 }
484 if (insn_class == TRAP_RISKY || insn_class == IRISKY)
485 break;
486 }
487 return insn_class;
488 }
489 }
490
491 /* Classifies rtx X of an insn for the purpose of verifying that X can be
492 executed speculatively (and consequently the insn can be moved
493 speculatively), by examining X, returning:
494 TRAP_RISKY: store, or risky non-load insn (e.g. division by variable).
495 TRAP_FREE: non-load insn.
496 IFREE: load from a globally safe location.
497 IRISKY: volatile load.
498 PFREE_CANDIDATE, PRISKY_CANDIDATE: load that need to be checked for
499 being either PFREE or PRISKY. */
500
501 static int
502 haifa_classify_rtx (const_rtx x)
503 {
504 int tmp_class = TRAP_FREE;
505 int insn_class = TRAP_FREE;
506 enum rtx_code code;
507
508 if (GET_CODE (x) == PARALLEL)
509 {
510 int i, len = XVECLEN (x, 0);
511
512 for (i = len - 1; i >= 0; i--)
513 {
514 tmp_class = haifa_classify_rtx (XVECEXP (x, 0, i));
515 insn_class = WORST_CLASS (insn_class, tmp_class);
516 if (insn_class == TRAP_RISKY || insn_class == IRISKY)
517 break;
518 }
519 }
520 else
521 {
522 code = GET_CODE (x);
523 switch (code)
524 {
525 case CLOBBER:
526 /* Test if it is a 'store'. */
527 tmp_class = may_trap_exp (XEXP (x, 0), 1);
528 break;
529 case SET:
530 /* Test if it is a store. */
531 tmp_class = may_trap_exp (SET_DEST (x), 1);
532 if (tmp_class == TRAP_RISKY)
533 break;
534 /* Test if it is a load. */
535 tmp_class =
536 WORST_CLASS (tmp_class,
537 may_trap_exp (SET_SRC (x), 0));
538 break;
539 case COND_EXEC:
540 tmp_class = haifa_classify_rtx (COND_EXEC_CODE (x));
541 if (tmp_class == TRAP_RISKY)
542 break;
543 tmp_class = WORST_CLASS (tmp_class,
544 may_trap_exp (COND_EXEC_TEST (x), 0));
545 break;
546 case TRAP_IF:
547 tmp_class = TRAP_RISKY;
548 break;
549 default:;
550 }
551 insn_class = tmp_class;
552 }
553
554 return insn_class;
555 }
556
557 int
558 haifa_classify_insn (const_rtx insn)
559 {
560 return haifa_classify_rtx (PATTERN (insn));
561 }
562 \f
563 /* After the scheduler initialization function has been called, this function
564 can be called to enable modulo scheduling. II is the initiation interval
565 we should use, it affects the delays for delay_pairs that were recorded as
566 separated by a given number of stages.
567
568 MAX_STAGES provides us with a limit
569 after which we give up scheduling; the caller must have unrolled at least
570 as many copies of the loop body and recorded delay_pairs for them.
571
572 INSNS is the number of real (non-debug) insns in one iteration of
573 the loop. MAX_UID can be used to test whether an insn belongs to
574 the first iteration of the loop; all of them have a uid lower than
575 MAX_UID. */
576 void
577 set_modulo_params (int ii, int max_stages, int insns, int max_uid)
578 {
579 modulo_ii = ii;
580 modulo_max_stages = max_stages;
581 modulo_n_insns = insns;
582 modulo_iter0_max_uid = max_uid;
583 modulo_backtracks_left = PARAM_VALUE (PARAM_MAX_MODULO_BACKTRACK_ATTEMPTS);
584 }
585
586 /* A structure to record a pair of insns where the first one is a real
587 insn that has delay slots, and the second is its delayed shadow.
588 I1 is scheduled normally and will emit an assembly instruction,
589 while I2 describes the side effect that takes place at the
590 transition between cycles CYCLES and (CYCLES + 1) after I1. */
591 struct delay_pair
592 {
593 struct delay_pair *next_same_i1;
594 rtx_insn *i1, *i2;
595 int cycles;
596 /* When doing modulo scheduling, we a delay_pair can also be used to
597 show that I1 and I2 are the same insn in a different stage. If that
598 is the case, STAGES will be nonzero. */
599 int stages;
600 };
601
602 /* Helpers for delay hashing. */
603
604 struct delay_i1_hasher : typed_noop_remove <delay_pair>
605 {
606 typedef delay_pair value_type;
607 typedef void compare_type;
608 static inline hashval_t hash (const value_type *);
609 static inline bool equal (const value_type *, const compare_type *);
610 };
611
612 /* Returns a hash value for X, based on hashing just I1. */
613
614 inline hashval_t
615 delay_i1_hasher::hash (const value_type *x)
616 {
617 return htab_hash_pointer (x->i1);
618 }
619
620 /* Return true if I1 of pair X is the same as that of pair Y. */
621
622 inline bool
623 delay_i1_hasher::equal (const value_type *x, const compare_type *y)
624 {
625 return x->i1 == y;
626 }
627
628 struct delay_i2_hasher : typed_free_remove <delay_pair>
629 {
630 typedef delay_pair value_type;
631 typedef void compare_type;
632 static inline hashval_t hash (const value_type *);
633 static inline bool equal (const value_type *, const compare_type *);
634 };
635
636 /* Returns a hash value for X, based on hashing just I2. */
637
638 inline hashval_t
639 delay_i2_hasher::hash (const value_type *x)
640 {
641 return htab_hash_pointer (x->i2);
642 }
643
644 /* Return true if I2 of pair X is the same as that of pair Y. */
645
646 inline bool
647 delay_i2_hasher::equal (const value_type *x, const compare_type *y)
648 {
649 return x->i2 == y;
650 }
651
652 /* Two hash tables to record delay_pairs, one indexed by I1 and the other
653 indexed by I2. */
654 static hash_table<delay_i1_hasher> *delay_htab;
655 static hash_table<delay_i2_hasher> *delay_htab_i2;
656
657 /* Called through htab_traverse. Walk the hashtable using I2 as
658 index, and delete all elements involving an UID higher than
659 that pointed to by *DATA. */
660 int
661 haifa_htab_i2_traverse (delay_pair **slot, int *data)
662 {
663 int maxuid = *data;
664 struct delay_pair *p = *slot;
665 if (INSN_UID (p->i2) >= maxuid || INSN_UID (p->i1) >= maxuid)
666 {
667 delay_htab_i2->clear_slot (slot);
668 }
669 return 1;
670 }
671
672 /* Called through htab_traverse. Walk the hashtable using I2 as
673 index, and delete all elements involving an UID higher than
674 that pointed to by *DATA. */
675 int
676 haifa_htab_i1_traverse (delay_pair **pslot, int *data)
677 {
678 int maxuid = *data;
679 struct delay_pair *p, *first, **pprev;
680
681 if (INSN_UID ((*pslot)->i1) >= maxuid)
682 {
683 delay_htab->clear_slot (pslot);
684 return 1;
685 }
686 pprev = &first;
687 for (p = *pslot; p; p = p->next_same_i1)
688 {
689 if (INSN_UID (p->i2) < maxuid)
690 {
691 *pprev = p;
692 pprev = &p->next_same_i1;
693 }
694 }
695 *pprev = NULL;
696 if (first == NULL)
697 delay_htab->clear_slot (pslot);
698 else
699 *pslot = first;
700 return 1;
701 }
702
703 /* Discard all delay pairs which involve an insn with an UID higher
704 than MAX_UID. */
705 void
706 discard_delay_pairs_above (int max_uid)
707 {
708 delay_htab->traverse <int *, haifa_htab_i1_traverse> (&max_uid);
709 delay_htab_i2->traverse <int *, haifa_htab_i2_traverse> (&max_uid);
710 }
711
712 /* This function can be called by a port just before it starts the final
713 scheduling pass. It records the fact that an instruction with delay
714 slots has been split into two insns, I1 and I2. The first one will be
715 scheduled normally and initiates the operation. The second one is a
716 shadow which must follow a specific number of cycles after I1; its only
717 purpose is to show the side effect that occurs at that cycle in the RTL.
718 If a JUMP_INSN or a CALL_INSN has been split, I1 should be a normal INSN,
719 while I2 retains the original insn type.
720
721 There are two ways in which the number of cycles can be specified,
722 involving the CYCLES and STAGES arguments to this function. If STAGES
723 is zero, we just use the value of CYCLES. Otherwise, STAGES is a factor
724 which is multiplied by MODULO_II to give the number of cycles. This is
725 only useful if the caller also calls set_modulo_params to enable modulo
726 scheduling. */
727
728 void
729 record_delay_slot_pair (rtx_insn *i1, rtx_insn *i2, int cycles, int stages)
730 {
731 struct delay_pair *p = XNEW (struct delay_pair);
732 struct delay_pair **slot;
733
734 p->i1 = i1;
735 p->i2 = i2;
736 p->cycles = cycles;
737 p->stages = stages;
738
739 if (!delay_htab)
740 {
741 delay_htab = new hash_table<delay_i1_hasher> (10);
742 delay_htab_i2 = new hash_table<delay_i2_hasher> (10);
743 }
744 slot = delay_htab->find_slot_with_hash (i1, htab_hash_pointer (i1), INSERT);
745 p->next_same_i1 = *slot;
746 *slot = p;
747 slot = delay_htab_i2->find_slot (p, INSERT);
748 *slot = p;
749 }
750
751 /* Examine the delay pair hashtable to see if INSN is a shadow for another,
752 and return the other insn if so. Return NULL otherwise. */
753 rtx_insn *
754 real_insn_for_shadow (rtx_insn *insn)
755 {
756 struct delay_pair *pair;
757
758 if (!delay_htab)
759 return NULL;
760
761 pair = delay_htab_i2->find_with_hash (insn, htab_hash_pointer (insn));
762 if (!pair || pair->stages > 0)
763 return NULL;
764 return pair->i1;
765 }
766
767 /* For a pair P of insns, return the fixed distance in cycles from the first
768 insn after which the second must be scheduled. */
769 static int
770 pair_delay (struct delay_pair *p)
771 {
772 if (p->stages == 0)
773 return p->cycles;
774 else
775 return p->stages * modulo_ii;
776 }
777
778 /* Given an insn INSN, add a dependence on its delayed shadow if it
779 has one. Also try to find situations where shadows depend on each other
780 and add dependencies to the real insns to limit the amount of backtracking
781 needed. */
782 void
783 add_delay_dependencies (rtx_insn *insn)
784 {
785 struct delay_pair *pair;
786 sd_iterator_def sd_it;
787 dep_t dep;
788
789 if (!delay_htab)
790 return;
791
792 pair = delay_htab_i2->find_with_hash (insn, htab_hash_pointer (insn));
793 if (!pair)
794 return;
795 add_dependence (insn, pair->i1, REG_DEP_ANTI);
796 if (pair->stages)
797 return;
798
799 FOR_EACH_DEP (pair->i2, SD_LIST_BACK, sd_it, dep)
800 {
801 rtx_insn *pro = DEP_PRO (dep);
802 struct delay_pair *other_pair
803 = delay_htab_i2->find_with_hash (pro, htab_hash_pointer (pro));
804 if (!other_pair || other_pair->stages)
805 continue;
806 if (pair_delay (other_pair) >= pair_delay (pair))
807 {
808 if (sched_verbose >= 4)
809 {
810 fprintf (sched_dump, ";;\tadding dependence %d <- %d\n",
811 INSN_UID (other_pair->i1),
812 INSN_UID (pair->i1));
813 fprintf (sched_dump, ";;\tpair1 %d <- %d, cost %d\n",
814 INSN_UID (pair->i1),
815 INSN_UID (pair->i2),
816 pair_delay (pair));
817 fprintf (sched_dump, ";;\tpair2 %d <- %d, cost %d\n",
818 INSN_UID (other_pair->i1),
819 INSN_UID (other_pair->i2),
820 pair_delay (other_pair));
821 }
822 add_dependence (pair->i1, other_pair->i1, REG_DEP_ANTI);
823 }
824 }
825 }
826 \f
827 /* Forward declarations. */
828
829 static int priority (rtx_insn *);
830 static int rank_for_schedule (const void *, const void *);
831 static void swap_sort (rtx_insn **, int);
832 static void queue_insn (rtx_insn *, int, const char *);
833 static int schedule_insn (rtx_insn *);
834 static void adjust_priority (rtx_insn *);
835 static void advance_one_cycle (void);
836 static void extend_h_i_d (void);
837
838
839 /* Notes handling mechanism:
840 =========================
841 Generally, NOTES are saved before scheduling and restored after scheduling.
842 The scheduler distinguishes between two types of notes:
843
844 (1) LOOP_BEGIN, LOOP_END, SETJMP, EHREGION_BEG, EHREGION_END notes:
845 Before scheduling a region, a pointer to the note is added to the insn
846 that follows or precedes it. (This happens as part of the data dependence
847 computation). After scheduling an insn, the pointer contained in it is
848 used for regenerating the corresponding note (in reemit_notes).
849
850 (2) All other notes (e.g. INSN_DELETED): Before scheduling a block,
851 these notes are put in a list (in rm_other_notes() and
852 unlink_other_notes ()). After scheduling the block, these notes are
853 inserted at the beginning of the block (in schedule_block()). */
854
855 static void ready_add (struct ready_list *, rtx_insn *, bool);
856 static rtx_insn *ready_remove_first (struct ready_list *);
857 static rtx_insn *ready_remove_first_dispatch (struct ready_list *ready);
858
859 static void queue_to_ready (struct ready_list *);
860 static int early_queue_to_ready (state_t, struct ready_list *);
861
862 /* The following functions are used to implement multi-pass scheduling
863 on the first cycle. */
864 static rtx_insn *ready_remove (struct ready_list *, int);
865 static void ready_remove_insn (rtx);
866
867 static void fix_inter_tick (rtx_insn *, rtx_insn *);
868 static int fix_tick_ready (rtx_insn *);
869 static void change_queue_index (rtx_insn *, int);
870
871 /* The following functions are used to implement scheduling of data/control
872 speculative instructions. */
873
874 static void extend_h_i_d (void);
875 static void init_h_i_d (rtx_insn *);
876 static int haifa_speculate_insn (rtx_insn *, ds_t, rtx *);
877 static void generate_recovery_code (rtx_insn *);
878 static void process_insn_forw_deps_be_in_spec (rtx, rtx_insn *, ds_t);
879 static void begin_speculative_block (rtx_insn *);
880 static void add_to_speculative_block (rtx_insn *);
881 static void init_before_recovery (basic_block *);
882 static void create_check_block_twin (rtx_insn *, bool);
883 static void fix_recovery_deps (basic_block);
884 static bool haifa_change_pattern (rtx_insn *, rtx);
885 static void dump_new_block_header (int, basic_block, rtx_insn *, rtx_insn *);
886 static void restore_bb_notes (basic_block);
887 static void fix_jump_move (rtx_insn *);
888 static void move_block_after_check (rtx_insn *);
889 static void move_succs (vec<edge, va_gc> **, basic_block);
890 static void sched_remove_insn (rtx_insn *);
891 static void clear_priorities (rtx_insn *, rtx_vec_t *);
892 static void calc_priorities (rtx_vec_t);
893 static void add_jump_dependencies (rtx_insn *, rtx_insn *);
894
895 #endif /* INSN_SCHEDULING */
896 \f
897 /* Point to state used for the current scheduling pass. */
898 struct haifa_sched_info *current_sched_info;
899 \f
900 #ifndef INSN_SCHEDULING
901 void
902 schedule_insns (void)
903 {
904 }
905 #else
906
907 /* Do register pressure sensitive insn scheduling if the flag is set
908 up. */
909 enum sched_pressure_algorithm sched_pressure;
910
911 /* Map regno -> its pressure class. The map defined only when
912 SCHED_PRESSURE != SCHED_PRESSURE_NONE. */
913 enum reg_class *sched_regno_pressure_class;
914
915 /* The current register pressure. Only elements corresponding pressure
916 classes are defined. */
917 static int curr_reg_pressure[N_REG_CLASSES];
918
919 /* Saved value of the previous array. */
920 static int saved_reg_pressure[N_REG_CLASSES];
921
922 /* Register living at given scheduling point. */
923 static bitmap curr_reg_live;
924
925 /* Saved value of the previous array. */
926 static bitmap saved_reg_live;
927
928 /* Registers mentioned in the current region. */
929 static bitmap region_ref_regs;
930
931 /* Initiate register pressure relative info for scheduling the current
932 region. Currently it is only clearing register mentioned in the
933 current region. */
934 void
935 sched_init_region_reg_pressure_info (void)
936 {
937 bitmap_clear (region_ref_regs);
938 }
939
940 /* PRESSURE[CL] describes the pressure on register class CL. Update it
941 for the birth (if BIRTH_P) or death (if !BIRTH_P) of register REGNO.
942 LIVE tracks the set of live registers; if it is null, assume that
943 every birth or death is genuine. */
944 static inline void
945 mark_regno_birth_or_death (bitmap live, int *pressure, int regno, bool birth_p)
946 {
947 enum reg_class pressure_class;
948
949 pressure_class = sched_regno_pressure_class[regno];
950 if (regno >= FIRST_PSEUDO_REGISTER)
951 {
952 if (pressure_class != NO_REGS)
953 {
954 if (birth_p)
955 {
956 if (!live || bitmap_set_bit (live, regno))
957 pressure[pressure_class]
958 += (ira_reg_class_max_nregs
959 [pressure_class][PSEUDO_REGNO_MODE (regno)]);
960 }
961 else
962 {
963 if (!live || bitmap_clear_bit (live, regno))
964 pressure[pressure_class]
965 -= (ira_reg_class_max_nregs
966 [pressure_class][PSEUDO_REGNO_MODE (regno)]);
967 }
968 }
969 }
970 else if (pressure_class != NO_REGS
971 && ! TEST_HARD_REG_BIT (ira_no_alloc_regs, regno))
972 {
973 if (birth_p)
974 {
975 if (!live || bitmap_set_bit (live, regno))
976 pressure[pressure_class]++;
977 }
978 else
979 {
980 if (!live || bitmap_clear_bit (live, regno))
981 pressure[pressure_class]--;
982 }
983 }
984 }
985
986 /* Initiate current register pressure related info from living
987 registers given by LIVE. */
988 static void
989 initiate_reg_pressure_info (bitmap live)
990 {
991 int i;
992 unsigned int j;
993 bitmap_iterator bi;
994
995 for (i = 0; i < ira_pressure_classes_num; i++)
996 curr_reg_pressure[ira_pressure_classes[i]] = 0;
997 bitmap_clear (curr_reg_live);
998 EXECUTE_IF_SET_IN_BITMAP (live, 0, j, bi)
999 if (sched_pressure == SCHED_PRESSURE_MODEL
1000 || current_nr_blocks == 1
1001 || bitmap_bit_p (region_ref_regs, j))
1002 mark_regno_birth_or_death (curr_reg_live, curr_reg_pressure, j, true);
1003 }
1004
1005 /* Mark registers in X as mentioned in the current region. */
1006 static void
1007 setup_ref_regs (rtx x)
1008 {
1009 int i, j, regno;
1010 const RTX_CODE code = GET_CODE (x);
1011 const char *fmt;
1012
1013 if (REG_P (x))
1014 {
1015 regno = REGNO (x);
1016 if (HARD_REGISTER_NUM_P (regno))
1017 bitmap_set_range (region_ref_regs, regno,
1018 hard_regno_nregs[regno][GET_MODE (x)]);
1019 else
1020 bitmap_set_bit (region_ref_regs, REGNO (x));
1021 return;
1022 }
1023 fmt = GET_RTX_FORMAT (code);
1024 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1025 if (fmt[i] == 'e')
1026 setup_ref_regs (XEXP (x, i));
1027 else if (fmt[i] == 'E')
1028 {
1029 for (j = 0; j < XVECLEN (x, i); j++)
1030 setup_ref_regs (XVECEXP (x, i, j));
1031 }
1032 }
1033
1034 /* Initiate current register pressure related info at the start of
1035 basic block BB. */
1036 static void
1037 initiate_bb_reg_pressure_info (basic_block bb)
1038 {
1039 unsigned int i ATTRIBUTE_UNUSED;
1040 rtx_insn *insn;
1041
1042 if (current_nr_blocks > 1)
1043 FOR_BB_INSNS (bb, insn)
1044 if (NONDEBUG_INSN_P (insn))
1045 setup_ref_regs (PATTERN (insn));
1046 initiate_reg_pressure_info (df_get_live_in (bb));
1047 #ifdef EH_RETURN_DATA_REGNO
1048 if (bb_has_eh_pred (bb))
1049 for (i = 0; ; ++i)
1050 {
1051 unsigned int regno = EH_RETURN_DATA_REGNO (i);
1052
1053 if (regno == INVALID_REGNUM)
1054 break;
1055 if (! bitmap_bit_p (df_get_live_in (bb), regno))
1056 mark_regno_birth_or_death (curr_reg_live, curr_reg_pressure,
1057 regno, true);
1058 }
1059 #endif
1060 }
1061
1062 /* Save current register pressure related info. */
1063 static void
1064 save_reg_pressure (void)
1065 {
1066 int i;
1067
1068 for (i = 0; i < ira_pressure_classes_num; i++)
1069 saved_reg_pressure[ira_pressure_classes[i]]
1070 = curr_reg_pressure[ira_pressure_classes[i]];
1071 bitmap_copy (saved_reg_live, curr_reg_live);
1072 }
1073
1074 /* Restore saved register pressure related info. */
1075 static void
1076 restore_reg_pressure (void)
1077 {
1078 int i;
1079
1080 for (i = 0; i < ira_pressure_classes_num; i++)
1081 curr_reg_pressure[ira_pressure_classes[i]]
1082 = saved_reg_pressure[ira_pressure_classes[i]];
1083 bitmap_copy (curr_reg_live, saved_reg_live);
1084 }
1085
1086 /* Return TRUE if the register is dying after its USE. */
1087 static bool
1088 dying_use_p (struct reg_use_data *use)
1089 {
1090 struct reg_use_data *next;
1091
1092 for (next = use->next_regno_use; next != use; next = next->next_regno_use)
1093 if (NONDEBUG_INSN_P (next->insn)
1094 && QUEUE_INDEX (next->insn) != QUEUE_SCHEDULED)
1095 return false;
1096 return true;
1097 }
1098
1099 /* Print info about the current register pressure and its excess for
1100 each pressure class. */
1101 static void
1102 print_curr_reg_pressure (void)
1103 {
1104 int i;
1105 enum reg_class cl;
1106
1107 fprintf (sched_dump, ";;\t");
1108 for (i = 0; i < ira_pressure_classes_num; i++)
1109 {
1110 cl = ira_pressure_classes[i];
1111 gcc_assert (curr_reg_pressure[cl] >= 0);
1112 fprintf (sched_dump, " %s:%d(%d)", reg_class_names[cl],
1113 curr_reg_pressure[cl],
1114 curr_reg_pressure[cl] - ira_class_hard_regs_num[cl]);
1115 }
1116 fprintf (sched_dump, "\n");
1117 }
1118 \f
1119 /* Determine if INSN has a condition that is clobbered if a register
1120 in SET_REGS is modified. */
1121 static bool
1122 cond_clobbered_p (rtx_insn *insn, HARD_REG_SET set_regs)
1123 {
1124 rtx pat = PATTERN (insn);
1125 gcc_assert (GET_CODE (pat) == COND_EXEC);
1126 if (TEST_HARD_REG_BIT (set_regs, REGNO (XEXP (COND_EXEC_TEST (pat), 0))))
1127 {
1128 sd_iterator_def sd_it;
1129 dep_t dep;
1130 haifa_change_pattern (insn, ORIG_PAT (insn));
1131 FOR_EACH_DEP (insn, SD_LIST_BACK, sd_it, dep)
1132 DEP_STATUS (dep) &= ~DEP_CANCELLED;
1133 TODO_SPEC (insn) = HARD_DEP;
1134 if (sched_verbose >= 2)
1135 fprintf (sched_dump,
1136 ";;\t\tdequeue insn %s because of clobbered condition\n",
1137 (*current_sched_info->print_insn) (insn, 0));
1138 return true;
1139 }
1140
1141 return false;
1142 }
1143
1144 /* This function should be called after modifying the pattern of INSN,
1145 to update scheduler data structures as needed. */
1146 static void
1147 update_insn_after_change (rtx_insn *insn)
1148 {
1149 sd_iterator_def sd_it;
1150 dep_t dep;
1151
1152 dfa_clear_single_insn_cache (insn);
1153
1154 sd_it = sd_iterator_start (insn,
1155 SD_LIST_FORW | SD_LIST_BACK | SD_LIST_RES_BACK);
1156 while (sd_iterator_cond (&sd_it, &dep))
1157 {
1158 DEP_COST (dep) = UNKNOWN_DEP_COST;
1159 sd_iterator_next (&sd_it);
1160 }
1161
1162 /* Invalidate INSN_COST, so it'll be recalculated. */
1163 INSN_COST (insn) = -1;
1164 /* Invalidate INSN_TICK, so it'll be recalculated. */
1165 INSN_TICK (insn) = INVALID_TICK;
1166 }
1167
1168
1169 /* Two VECs, one to hold dependencies for which pattern replacements
1170 need to be applied or restored at the start of the next cycle, and
1171 another to hold an integer that is either one, to apply the
1172 corresponding replacement, or zero to restore it. */
1173 static vec<dep_t> next_cycle_replace_deps;
1174 static vec<int> next_cycle_apply;
1175
1176 static void apply_replacement (dep_t, bool);
1177 static void restore_pattern (dep_t, bool);
1178
1179 /* Look at the remaining dependencies for insn NEXT, and compute and return
1180 the TODO_SPEC value we should use for it. This is called after one of
1181 NEXT's dependencies has been resolved.
1182 We also perform pattern replacements for predication, and for broken
1183 replacement dependencies. The latter is only done if FOR_BACKTRACK is
1184 false. */
1185
1186 static ds_t
1187 recompute_todo_spec (rtx_insn *next, bool for_backtrack)
1188 {
1189 ds_t new_ds;
1190 sd_iterator_def sd_it;
1191 dep_t dep, modify_dep = NULL;
1192 int n_spec = 0;
1193 int n_control = 0;
1194 int n_replace = 0;
1195 bool first_p = true;
1196
1197 if (sd_lists_empty_p (next, SD_LIST_BACK))
1198 /* NEXT has all its dependencies resolved. */
1199 return 0;
1200
1201 if (!sd_lists_empty_p (next, SD_LIST_HARD_BACK))
1202 return HARD_DEP;
1203
1204 /* Now we've got NEXT with speculative deps only.
1205 1. Look at the deps to see what we have to do.
1206 2. Check if we can do 'todo'. */
1207 new_ds = 0;
1208
1209 FOR_EACH_DEP (next, SD_LIST_BACK, sd_it, dep)
1210 {
1211 rtx_insn *pro = DEP_PRO (dep);
1212 ds_t ds = DEP_STATUS (dep) & SPECULATIVE;
1213
1214 if (DEBUG_INSN_P (pro) && !DEBUG_INSN_P (next))
1215 continue;
1216
1217 if (ds)
1218 {
1219 n_spec++;
1220 if (first_p)
1221 {
1222 first_p = false;
1223
1224 new_ds = ds;
1225 }
1226 else
1227 new_ds = ds_merge (new_ds, ds);
1228 }
1229 else if (DEP_TYPE (dep) == REG_DEP_CONTROL)
1230 {
1231 if (QUEUE_INDEX (pro) != QUEUE_SCHEDULED)
1232 {
1233 n_control++;
1234 modify_dep = dep;
1235 }
1236 DEP_STATUS (dep) &= ~DEP_CANCELLED;
1237 }
1238 else if (DEP_REPLACE (dep) != NULL)
1239 {
1240 if (QUEUE_INDEX (pro) != QUEUE_SCHEDULED)
1241 {
1242 n_replace++;
1243 modify_dep = dep;
1244 }
1245 DEP_STATUS (dep) &= ~DEP_CANCELLED;
1246 }
1247 }
1248
1249 if (n_replace > 0 && n_control == 0 && n_spec == 0)
1250 {
1251 if (!dbg_cnt (sched_breakdep))
1252 return HARD_DEP;
1253 FOR_EACH_DEP (next, SD_LIST_BACK, sd_it, dep)
1254 {
1255 struct dep_replacement *desc = DEP_REPLACE (dep);
1256 if (desc != NULL)
1257 {
1258 if (desc->insn == next && !for_backtrack)
1259 {
1260 gcc_assert (n_replace == 1);
1261 apply_replacement (dep, true);
1262 }
1263 DEP_STATUS (dep) |= DEP_CANCELLED;
1264 }
1265 }
1266 return 0;
1267 }
1268
1269 else if (n_control == 1 && n_replace == 0 && n_spec == 0)
1270 {
1271 rtx_insn *pro, *other;
1272 rtx new_pat;
1273 rtx cond = NULL_RTX;
1274 bool success;
1275 rtx_insn *prev = NULL;
1276 int i;
1277 unsigned regno;
1278
1279 if ((current_sched_info->flags & DO_PREDICATION) == 0
1280 || (ORIG_PAT (next) != NULL_RTX
1281 && PREDICATED_PAT (next) == NULL_RTX))
1282 return HARD_DEP;
1283
1284 pro = DEP_PRO (modify_dep);
1285 other = real_insn_for_shadow (pro);
1286 if (other != NULL_RTX)
1287 pro = other;
1288
1289 cond = sched_get_reverse_condition_uncached (pro);
1290 regno = REGNO (XEXP (cond, 0));
1291
1292 /* Find the last scheduled insn that modifies the condition register.
1293 We can stop looking once we find the insn we depend on through the
1294 REG_DEP_CONTROL; if the condition register isn't modified after it,
1295 we know that it still has the right value. */
1296 if (QUEUE_INDEX (pro) == QUEUE_SCHEDULED)
1297 FOR_EACH_VEC_ELT_REVERSE (scheduled_insns, i, prev)
1298 {
1299 HARD_REG_SET t;
1300
1301 find_all_hard_reg_sets (prev, &t, true);
1302 if (TEST_HARD_REG_BIT (t, regno))
1303 return HARD_DEP;
1304 if (prev == pro)
1305 break;
1306 }
1307 if (ORIG_PAT (next) == NULL_RTX)
1308 {
1309 ORIG_PAT (next) = PATTERN (next);
1310
1311 new_pat = gen_rtx_COND_EXEC (VOIDmode, cond, PATTERN (next));
1312 success = haifa_change_pattern (next, new_pat);
1313 if (!success)
1314 return HARD_DEP;
1315 PREDICATED_PAT (next) = new_pat;
1316 }
1317 else if (PATTERN (next) != PREDICATED_PAT (next))
1318 {
1319 bool success = haifa_change_pattern (next,
1320 PREDICATED_PAT (next));
1321 gcc_assert (success);
1322 }
1323 DEP_STATUS (modify_dep) |= DEP_CANCELLED;
1324 return DEP_CONTROL;
1325 }
1326
1327 if (PREDICATED_PAT (next) != NULL_RTX)
1328 {
1329 int tick = INSN_TICK (next);
1330 bool success = haifa_change_pattern (next,
1331 ORIG_PAT (next));
1332 INSN_TICK (next) = tick;
1333 gcc_assert (success);
1334 }
1335
1336 /* We can't handle the case where there are both speculative and control
1337 dependencies, so we return HARD_DEP in such a case. Also fail if
1338 we have speculative dependencies with not enough points, or more than
1339 one control dependency. */
1340 if ((n_spec > 0 && (n_control > 0 || n_replace > 0))
1341 || (n_spec > 0
1342 /* Too few points? */
1343 && ds_weak (new_ds) < spec_info->data_weakness_cutoff)
1344 || n_control > 0
1345 || n_replace > 0)
1346 return HARD_DEP;
1347
1348 return new_ds;
1349 }
1350 \f
1351 /* Pointer to the last instruction scheduled. */
1352 static rtx_insn *last_scheduled_insn;
1353
1354 /* Pointer to the last nondebug instruction scheduled within the
1355 block, or the prev_head of the scheduling block. Used by
1356 rank_for_schedule, so that insns independent of the last scheduled
1357 insn will be preferred over dependent instructions. */
1358 static rtx last_nondebug_scheduled_insn;
1359
1360 /* Pointer that iterates through the list of unscheduled insns if we
1361 have a dbg_cnt enabled. It always points at an insn prior to the
1362 first unscheduled one. */
1363 static rtx_insn *nonscheduled_insns_begin;
1364
1365 /* Compute cost of executing INSN.
1366 This is the number of cycles between instruction issue and
1367 instruction results. */
1368 int
1369 insn_cost (rtx_insn *insn)
1370 {
1371 int cost;
1372
1373 if (sel_sched_p ())
1374 {
1375 if (recog_memoized (insn) < 0)
1376 return 0;
1377
1378 cost = insn_default_latency (insn);
1379 if (cost < 0)
1380 cost = 0;
1381
1382 return cost;
1383 }
1384
1385 cost = INSN_COST (insn);
1386
1387 if (cost < 0)
1388 {
1389 /* A USE insn, or something else we don't need to
1390 understand. We can't pass these directly to
1391 result_ready_cost or insn_default_latency because it will
1392 trigger a fatal error for unrecognizable insns. */
1393 if (recog_memoized (insn) < 0)
1394 {
1395 INSN_COST (insn) = 0;
1396 return 0;
1397 }
1398 else
1399 {
1400 cost = insn_default_latency (insn);
1401 if (cost < 0)
1402 cost = 0;
1403
1404 INSN_COST (insn) = cost;
1405 }
1406 }
1407
1408 return cost;
1409 }
1410
1411 /* Compute cost of dependence LINK.
1412 This is the number of cycles between instruction issue and
1413 instruction results.
1414 ??? We also use this function to call recog_memoized on all insns. */
1415 int
1416 dep_cost_1 (dep_t link, dw_t dw)
1417 {
1418 rtx_insn *insn = DEP_PRO (link);
1419 rtx_insn *used = DEP_CON (link);
1420 int cost;
1421
1422 if (DEP_COST (link) != UNKNOWN_DEP_COST)
1423 return DEP_COST (link);
1424
1425 if (delay_htab)
1426 {
1427 struct delay_pair *delay_entry;
1428 delay_entry
1429 = delay_htab_i2->find_with_hash (used, htab_hash_pointer (used));
1430 if (delay_entry)
1431 {
1432 if (delay_entry->i1 == insn)
1433 {
1434 DEP_COST (link) = pair_delay (delay_entry);
1435 return DEP_COST (link);
1436 }
1437 }
1438 }
1439
1440 /* A USE insn should never require the value used to be computed.
1441 This allows the computation of a function's result and parameter
1442 values to overlap the return and call. We don't care about the
1443 dependence cost when only decreasing register pressure. */
1444 if (recog_memoized (used) < 0)
1445 {
1446 cost = 0;
1447 recog_memoized (insn);
1448 }
1449 else
1450 {
1451 enum reg_note dep_type = DEP_TYPE (link);
1452
1453 cost = insn_cost (insn);
1454
1455 if (INSN_CODE (insn) >= 0)
1456 {
1457 if (dep_type == REG_DEP_ANTI)
1458 cost = 0;
1459 else if (dep_type == REG_DEP_OUTPUT)
1460 {
1461 cost = (insn_default_latency (insn)
1462 - insn_default_latency (used));
1463 if (cost <= 0)
1464 cost = 1;
1465 }
1466 else if (bypass_p (insn))
1467 cost = insn_latency (insn, used);
1468 }
1469
1470
1471 if (targetm.sched.adjust_cost_2)
1472 cost = targetm.sched.adjust_cost_2 (used, (int) dep_type, insn, cost,
1473 dw);
1474 else if (targetm.sched.adjust_cost != NULL)
1475 {
1476 /* This variable is used for backward compatibility with the
1477 targets. */
1478 rtx_insn_list *dep_cost_rtx_link =
1479 alloc_INSN_LIST (NULL_RTX, NULL);
1480
1481 /* Make it self-cycled, so that if some tries to walk over this
1482 incomplete list he/she will be caught in an endless loop. */
1483 XEXP (dep_cost_rtx_link, 1) = dep_cost_rtx_link;
1484
1485 /* Targets use only REG_NOTE_KIND of the link. */
1486 PUT_REG_NOTE_KIND (dep_cost_rtx_link, DEP_TYPE (link));
1487
1488 cost = targetm.sched.adjust_cost (used, dep_cost_rtx_link,
1489 insn, cost);
1490
1491 free_INSN_LIST_node (dep_cost_rtx_link);
1492 }
1493
1494 if (cost < 0)
1495 cost = 0;
1496 }
1497
1498 DEP_COST (link) = cost;
1499 return cost;
1500 }
1501
1502 /* Compute cost of dependence LINK.
1503 This is the number of cycles between instruction issue and
1504 instruction results. */
1505 int
1506 dep_cost (dep_t link)
1507 {
1508 return dep_cost_1 (link, 0);
1509 }
1510
1511 /* Use this sel-sched.c friendly function in reorder2 instead of increasing
1512 INSN_PRIORITY explicitly. */
1513 void
1514 increase_insn_priority (rtx_insn *insn, int amount)
1515 {
1516 if (!sel_sched_p ())
1517 {
1518 /* We're dealing with haifa-sched.c INSN_PRIORITY. */
1519 if (INSN_PRIORITY_KNOWN (insn))
1520 INSN_PRIORITY (insn) += amount;
1521 }
1522 else
1523 {
1524 /* In sel-sched.c INSN_PRIORITY is not kept up to date.
1525 Use EXPR_PRIORITY instead. */
1526 sel_add_to_insn_priority (insn, amount);
1527 }
1528 }
1529
1530 /* Return 'true' if DEP should be included in priority calculations. */
1531 static bool
1532 contributes_to_priority_p (dep_t dep)
1533 {
1534 if (DEBUG_INSN_P (DEP_CON (dep))
1535 || DEBUG_INSN_P (DEP_PRO (dep)))
1536 return false;
1537
1538 /* Critical path is meaningful in block boundaries only. */
1539 if (!current_sched_info->contributes_to_priority (DEP_CON (dep),
1540 DEP_PRO (dep)))
1541 return false;
1542
1543 if (DEP_REPLACE (dep) != NULL)
1544 return false;
1545
1546 /* If flag COUNT_SPEC_IN_CRITICAL_PATH is set,
1547 then speculative instructions will less likely be
1548 scheduled. That is because the priority of
1549 their producers will increase, and, thus, the
1550 producers will more likely be scheduled, thus,
1551 resolving the dependence. */
1552 if (sched_deps_info->generate_spec_deps
1553 && !(spec_info->flags & COUNT_SPEC_IN_CRITICAL_PATH)
1554 && (DEP_STATUS (dep) & SPECULATIVE))
1555 return false;
1556
1557 return true;
1558 }
1559
1560 /* Compute the number of nondebug deps in list LIST for INSN. */
1561
1562 static int
1563 dep_list_size (rtx insn, sd_list_types_def list)
1564 {
1565 sd_iterator_def sd_it;
1566 dep_t dep;
1567 int dbgcount = 0, nodbgcount = 0;
1568
1569 if (!MAY_HAVE_DEBUG_INSNS)
1570 return sd_lists_size (insn, list);
1571
1572 FOR_EACH_DEP (insn, list, sd_it, dep)
1573 {
1574 if (DEBUG_INSN_P (DEP_CON (dep)))
1575 dbgcount++;
1576 else if (!DEBUG_INSN_P (DEP_PRO (dep)))
1577 nodbgcount++;
1578 }
1579
1580 gcc_assert (dbgcount + nodbgcount == sd_lists_size (insn, list));
1581
1582 return nodbgcount;
1583 }
1584
1585 /* Compute the priority number for INSN. */
1586 static int
1587 priority (rtx_insn *insn)
1588 {
1589 if (! INSN_P (insn))
1590 return 0;
1591
1592 /* We should not be interested in priority of an already scheduled insn. */
1593 gcc_assert (QUEUE_INDEX (insn) != QUEUE_SCHEDULED);
1594
1595 if (!INSN_PRIORITY_KNOWN (insn))
1596 {
1597 int this_priority = -1;
1598
1599 if (dep_list_size (insn, SD_LIST_FORW) == 0)
1600 /* ??? We should set INSN_PRIORITY to insn_cost when and insn has
1601 some forward deps but all of them are ignored by
1602 contributes_to_priority hook. At the moment we set priority of
1603 such insn to 0. */
1604 this_priority = insn_cost (insn);
1605 else
1606 {
1607 rtx_insn *prev_first, *twin;
1608 basic_block rec;
1609
1610 /* For recovery check instructions we calculate priority slightly
1611 different than that of normal instructions. Instead of walking
1612 through INSN_FORW_DEPS (check) list, we walk through
1613 INSN_FORW_DEPS list of each instruction in the corresponding
1614 recovery block. */
1615
1616 /* Selective scheduling does not define RECOVERY_BLOCK macro. */
1617 rec = sel_sched_p () ? NULL : RECOVERY_BLOCK (insn);
1618 if (!rec || rec == EXIT_BLOCK_PTR_FOR_FN (cfun))
1619 {
1620 prev_first = PREV_INSN (insn);
1621 twin = insn;
1622 }
1623 else
1624 {
1625 prev_first = NEXT_INSN (BB_HEAD (rec));
1626 twin = PREV_INSN (BB_END (rec));
1627 }
1628
1629 do
1630 {
1631 sd_iterator_def sd_it;
1632 dep_t dep;
1633
1634 FOR_EACH_DEP (twin, SD_LIST_FORW, sd_it, dep)
1635 {
1636 rtx_insn *next;
1637 int next_priority;
1638
1639 next = DEP_CON (dep);
1640
1641 if (BLOCK_FOR_INSN (next) != rec)
1642 {
1643 int cost;
1644
1645 if (!contributes_to_priority_p (dep))
1646 continue;
1647
1648 if (twin == insn)
1649 cost = dep_cost (dep);
1650 else
1651 {
1652 struct _dep _dep1, *dep1 = &_dep1;
1653
1654 init_dep (dep1, insn, next, REG_DEP_ANTI);
1655
1656 cost = dep_cost (dep1);
1657 }
1658
1659 next_priority = cost + priority (next);
1660
1661 if (next_priority > this_priority)
1662 this_priority = next_priority;
1663 }
1664 }
1665
1666 twin = PREV_INSN (twin);
1667 }
1668 while (twin != prev_first);
1669 }
1670
1671 if (this_priority < 0)
1672 {
1673 gcc_assert (this_priority == -1);
1674
1675 this_priority = insn_cost (insn);
1676 }
1677
1678 INSN_PRIORITY (insn) = this_priority;
1679 INSN_PRIORITY_STATUS (insn) = 1;
1680 }
1681
1682 return INSN_PRIORITY (insn);
1683 }
1684 \f
1685 /* Macros and functions for keeping the priority queue sorted, and
1686 dealing with queuing and dequeuing of instructions. */
1687
1688 /* For each pressure class CL, set DEATH[CL] to the number of registers
1689 in that class that die in INSN. */
1690
1691 static void
1692 calculate_reg_deaths (rtx_insn *insn, int *death)
1693 {
1694 int i;
1695 struct reg_use_data *use;
1696
1697 for (i = 0; i < ira_pressure_classes_num; i++)
1698 death[ira_pressure_classes[i]] = 0;
1699 for (use = INSN_REG_USE_LIST (insn); use != NULL; use = use->next_insn_use)
1700 if (dying_use_p (use))
1701 mark_regno_birth_or_death (0, death, use->regno, true);
1702 }
1703
1704 /* Setup info about the current register pressure impact of scheduling
1705 INSN at the current scheduling point. */
1706 static void
1707 setup_insn_reg_pressure_info (rtx_insn *insn)
1708 {
1709 int i, change, before, after, hard_regno;
1710 int excess_cost_change;
1711 enum machine_mode mode;
1712 enum reg_class cl;
1713 struct reg_pressure_data *pressure_info;
1714 int *max_reg_pressure;
1715 static int death[N_REG_CLASSES];
1716
1717 gcc_checking_assert (!DEBUG_INSN_P (insn));
1718
1719 excess_cost_change = 0;
1720 calculate_reg_deaths (insn, death);
1721 pressure_info = INSN_REG_PRESSURE (insn);
1722 max_reg_pressure = INSN_MAX_REG_PRESSURE (insn);
1723 gcc_assert (pressure_info != NULL && max_reg_pressure != NULL);
1724 for (i = 0; i < ira_pressure_classes_num; i++)
1725 {
1726 cl = ira_pressure_classes[i];
1727 gcc_assert (curr_reg_pressure[cl] >= 0);
1728 change = (int) pressure_info[i].set_increase - death[cl];
1729 before = MAX (0, max_reg_pressure[i] - ira_class_hard_regs_num[cl]);
1730 after = MAX (0, max_reg_pressure[i] + change
1731 - ira_class_hard_regs_num[cl]);
1732 hard_regno = ira_class_hard_regs[cl][0];
1733 gcc_assert (hard_regno >= 0);
1734 mode = reg_raw_mode[hard_regno];
1735 excess_cost_change += ((after - before)
1736 * (ira_memory_move_cost[mode][cl][0]
1737 + ira_memory_move_cost[mode][cl][1]));
1738 }
1739 INSN_REG_PRESSURE_EXCESS_COST_CHANGE (insn) = excess_cost_change;
1740 }
1741 \f
1742 /* This is the first page of code related to SCHED_PRESSURE_MODEL.
1743 It tries to make the scheduler take register pressure into account
1744 without introducing too many unnecessary stalls. It hooks into the
1745 main scheduling algorithm at several points:
1746
1747 - Before scheduling starts, model_start_schedule constructs a
1748 "model schedule" for the current block. This model schedule is
1749 chosen solely to keep register pressure down. It does not take the
1750 target's pipeline or the original instruction order into account,
1751 except as a tie-breaker. It also doesn't work to a particular
1752 pressure limit.
1753
1754 This model schedule gives us an idea of what pressure can be
1755 achieved for the block and gives us an example of a schedule that
1756 keeps to that pressure. It also makes the final schedule less
1757 dependent on the original instruction order. This is important
1758 because the original order can either be "wide" (many values live
1759 at once, such as in user-scheduled code) or "narrow" (few values
1760 live at once, such as after loop unrolling, where several
1761 iterations are executed sequentially).
1762
1763 We do not apply this model schedule to the rtx stream. We simply
1764 record it in model_schedule. We also compute the maximum pressure,
1765 MP, that was seen during this schedule.
1766
1767 - Instructions are added to the ready queue even if they require
1768 a stall. The length of the stall is instead computed as:
1769
1770 MAX (INSN_TICK (INSN) - clock_var, 0)
1771
1772 (= insn_delay). This allows rank_for_schedule to choose between
1773 introducing a deliberate stall or increasing pressure.
1774
1775 - Before sorting the ready queue, model_set_excess_costs assigns
1776 a pressure-based cost to each ready instruction in the queue.
1777 This is the instruction's INSN_REG_PRESSURE_EXCESS_COST_CHANGE
1778 (ECC for short) and is effectively measured in cycles.
1779
1780 - rank_for_schedule ranks instructions based on:
1781
1782 ECC (insn) + insn_delay (insn)
1783
1784 then as:
1785
1786 insn_delay (insn)
1787
1788 So, for example, an instruction X1 with an ECC of 1 that can issue
1789 now will win over an instruction X0 with an ECC of zero that would
1790 introduce a stall of one cycle. However, an instruction X2 with an
1791 ECC of 2 that can issue now will lose to both X0 and X1.
1792
1793 - When an instruction is scheduled, model_recompute updates the model
1794 schedule with the new pressures (some of which might now exceed the
1795 original maximum pressure MP). model_update_limit_points then searches
1796 for the new point of maximum pressure, if not already known. */
1797
1798 /* Used to separate high-verbosity debug information for SCHED_PRESSURE_MODEL
1799 from surrounding debug information. */
1800 #define MODEL_BAR \
1801 ";;\t\t+------------------------------------------------------\n"
1802
1803 /* Information about the pressure on a particular register class at a
1804 particular point of the model schedule. */
1805 struct model_pressure_data {
1806 /* The pressure at this point of the model schedule, or -1 if the
1807 point is associated with an instruction that has already been
1808 scheduled. */
1809 int ref_pressure;
1810
1811 /* The maximum pressure during or after this point of the model schedule. */
1812 int max_pressure;
1813 };
1814
1815 /* Per-instruction information that is used while building the model
1816 schedule. Here, "schedule" refers to the model schedule rather
1817 than the main schedule. */
1818 struct model_insn_info {
1819 /* The instruction itself. */
1820 rtx_insn *insn;
1821
1822 /* If this instruction is in model_worklist, these fields link to the
1823 previous (higher-priority) and next (lower-priority) instructions
1824 in the list. */
1825 struct model_insn_info *prev;
1826 struct model_insn_info *next;
1827
1828 /* While constructing the schedule, QUEUE_INDEX describes whether an
1829 instruction has already been added to the schedule (QUEUE_SCHEDULED),
1830 is in model_worklist (QUEUE_READY), or neither (QUEUE_NOWHERE).
1831 old_queue records the value that QUEUE_INDEX had before scheduling
1832 started, so that we can restore it once the schedule is complete. */
1833 int old_queue;
1834
1835 /* The relative importance of an unscheduled instruction. Higher
1836 values indicate greater importance. */
1837 unsigned int model_priority;
1838
1839 /* The length of the longest path of satisfied true dependencies
1840 that leads to this instruction. */
1841 unsigned int depth;
1842
1843 /* The length of the longest path of dependencies of any kind
1844 that leads from this instruction. */
1845 unsigned int alap;
1846
1847 /* The number of predecessor nodes that must still be scheduled. */
1848 int unscheduled_preds;
1849 };
1850
1851 /* Information about the pressure limit for a particular register class.
1852 This structure is used when applying a model schedule to the main
1853 schedule. */
1854 struct model_pressure_limit {
1855 /* The maximum register pressure seen in the original model schedule. */
1856 int orig_pressure;
1857
1858 /* The maximum register pressure seen in the current model schedule
1859 (which excludes instructions that have already been scheduled). */
1860 int pressure;
1861
1862 /* The point of the current model schedule at which PRESSURE is first
1863 reached. It is set to -1 if the value needs to be recomputed. */
1864 int point;
1865 };
1866
1867 /* Describes a particular way of measuring register pressure. */
1868 struct model_pressure_group {
1869 /* Index PCI describes the maximum pressure on ira_pressure_classes[PCI]. */
1870 struct model_pressure_limit limits[N_REG_CLASSES];
1871
1872 /* Index (POINT * ira_num_pressure_classes + PCI) describes the pressure
1873 on register class ira_pressure_classes[PCI] at point POINT of the
1874 current model schedule. A POINT of model_num_insns describes the
1875 pressure at the end of the schedule. */
1876 struct model_pressure_data *model;
1877 };
1878
1879 /* Index POINT gives the instruction at point POINT of the model schedule.
1880 This array doesn't change during main scheduling. */
1881 static vec<rtx_insn *> model_schedule;
1882
1883 /* The list of instructions in the model worklist, sorted in order of
1884 decreasing priority. */
1885 static struct model_insn_info *model_worklist;
1886
1887 /* Index I describes the instruction with INSN_LUID I. */
1888 static struct model_insn_info *model_insns;
1889
1890 /* The number of instructions in the model schedule. */
1891 static int model_num_insns;
1892
1893 /* The index of the first instruction in model_schedule that hasn't yet been
1894 added to the main schedule, or model_num_insns if all of them have. */
1895 static int model_curr_point;
1896
1897 /* Describes the pressure before each instruction in the model schedule. */
1898 static struct model_pressure_group model_before_pressure;
1899
1900 /* The first unused model_priority value (as used in model_insn_info). */
1901 static unsigned int model_next_priority;
1902
1903
1904 /* The model_pressure_data for ira_pressure_classes[PCI] in GROUP
1905 at point POINT of the model schedule. */
1906 #define MODEL_PRESSURE_DATA(GROUP, POINT, PCI) \
1907 (&(GROUP)->model[(POINT) * ira_pressure_classes_num + (PCI)])
1908
1909 /* The maximum pressure on ira_pressure_classes[PCI] in GROUP at or
1910 after point POINT of the model schedule. */
1911 #define MODEL_MAX_PRESSURE(GROUP, POINT, PCI) \
1912 (MODEL_PRESSURE_DATA (GROUP, POINT, PCI)->max_pressure)
1913
1914 /* The pressure on ira_pressure_classes[PCI] in GROUP at point POINT
1915 of the model schedule. */
1916 #define MODEL_REF_PRESSURE(GROUP, POINT, PCI) \
1917 (MODEL_PRESSURE_DATA (GROUP, POINT, PCI)->ref_pressure)
1918
1919 /* Information about INSN that is used when creating the model schedule. */
1920 #define MODEL_INSN_INFO(INSN) \
1921 (&model_insns[INSN_LUID (INSN)])
1922
1923 /* The instruction at point POINT of the model schedule. */
1924 #define MODEL_INSN(POINT) \
1925 (model_schedule[POINT])
1926
1927
1928 /* Return INSN's index in the model schedule, or model_num_insns if it
1929 doesn't belong to that schedule. */
1930
1931 static int
1932 model_index (rtx_insn *insn)
1933 {
1934 if (INSN_MODEL_INDEX (insn) == 0)
1935 return model_num_insns;
1936 return INSN_MODEL_INDEX (insn) - 1;
1937 }
1938
1939 /* Make sure that GROUP->limits is up-to-date for the current point
1940 of the model schedule. */
1941
1942 static void
1943 model_update_limit_points_in_group (struct model_pressure_group *group)
1944 {
1945 int pci, max_pressure, point;
1946
1947 for (pci = 0; pci < ira_pressure_classes_num; pci++)
1948 {
1949 /* We may have passed the final point at which the pressure in
1950 group->limits[pci].pressure was reached. Update the limit if so. */
1951 max_pressure = MODEL_MAX_PRESSURE (group, model_curr_point, pci);
1952 group->limits[pci].pressure = max_pressure;
1953
1954 /* Find the point at which MAX_PRESSURE is first reached. We need
1955 to search in three cases:
1956
1957 - We've already moved past the previous pressure point.
1958 In this case we search forward from model_curr_point.
1959
1960 - We scheduled the previous point of maximum pressure ahead of
1961 its position in the model schedule, but doing so didn't bring
1962 the pressure point earlier. In this case we search forward
1963 from that previous pressure point.
1964
1965 - Scheduling an instruction early caused the maximum pressure
1966 to decrease. In this case we will have set the pressure
1967 point to -1, and we search forward from model_curr_point. */
1968 point = MAX (group->limits[pci].point, model_curr_point);
1969 while (point < model_num_insns
1970 && MODEL_REF_PRESSURE (group, point, pci) < max_pressure)
1971 point++;
1972 group->limits[pci].point = point;
1973
1974 gcc_assert (MODEL_REF_PRESSURE (group, point, pci) == max_pressure);
1975 gcc_assert (MODEL_MAX_PRESSURE (group, point, pci) == max_pressure);
1976 }
1977 }
1978
1979 /* Make sure that all register-pressure limits are up-to-date for the
1980 current position in the model schedule. */
1981
1982 static void
1983 model_update_limit_points (void)
1984 {
1985 model_update_limit_points_in_group (&model_before_pressure);
1986 }
1987
1988 /* Return the model_index of the last unscheduled use in chain USE
1989 outside of USE's instruction. Return -1 if there are no other uses,
1990 or model_num_insns if the register is live at the end of the block. */
1991
1992 static int
1993 model_last_use_except (struct reg_use_data *use)
1994 {
1995 struct reg_use_data *next;
1996 int last, index;
1997
1998 last = -1;
1999 for (next = use->next_regno_use; next != use; next = next->next_regno_use)
2000 if (NONDEBUG_INSN_P (next->insn)
2001 && QUEUE_INDEX (next->insn) != QUEUE_SCHEDULED)
2002 {
2003 index = model_index (next->insn);
2004 if (index == model_num_insns)
2005 return model_num_insns;
2006 if (last < index)
2007 last = index;
2008 }
2009 return last;
2010 }
2011
2012 /* An instruction with model_index POINT has just been scheduled, and it
2013 adds DELTA to the pressure on ira_pressure_classes[PCI] after POINT - 1.
2014 Update MODEL_REF_PRESSURE (GROUP, POINT, PCI) and
2015 MODEL_MAX_PRESSURE (GROUP, POINT, PCI) accordingly. */
2016
2017 static void
2018 model_start_update_pressure (struct model_pressure_group *group,
2019 int point, int pci, int delta)
2020 {
2021 int next_max_pressure;
2022
2023 if (point == model_num_insns)
2024 {
2025 /* The instruction wasn't part of the model schedule; it was moved
2026 from a different block. Update the pressure for the end of
2027 the model schedule. */
2028 MODEL_REF_PRESSURE (group, point, pci) += delta;
2029 MODEL_MAX_PRESSURE (group, point, pci) += delta;
2030 }
2031 else
2032 {
2033 /* Record that this instruction has been scheduled. Nothing now
2034 changes between POINT and POINT + 1, so get the maximum pressure
2035 from the latter. If the maximum pressure decreases, the new
2036 pressure point may be before POINT. */
2037 MODEL_REF_PRESSURE (group, point, pci) = -1;
2038 next_max_pressure = MODEL_MAX_PRESSURE (group, point + 1, pci);
2039 if (MODEL_MAX_PRESSURE (group, point, pci) > next_max_pressure)
2040 {
2041 MODEL_MAX_PRESSURE (group, point, pci) = next_max_pressure;
2042 if (group->limits[pci].point == point)
2043 group->limits[pci].point = -1;
2044 }
2045 }
2046 }
2047
2048 /* Record that scheduling a later instruction has changed the pressure
2049 at point POINT of the model schedule by DELTA (which might be 0).
2050 Update GROUP accordingly. Return nonzero if these changes might
2051 trigger changes to previous points as well. */
2052
2053 static int
2054 model_update_pressure (struct model_pressure_group *group,
2055 int point, int pci, int delta)
2056 {
2057 int ref_pressure, max_pressure, next_max_pressure;
2058
2059 /* If POINT hasn't yet been scheduled, update its pressure. */
2060 ref_pressure = MODEL_REF_PRESSURE (group, point, pci);
2061 if (ref_pressure >= 0 && delta != 0)
2062 {
2063 ref_pressure += delta;
2064 MODEL_REF_PRESSURE (group, point, pci) = ref_pressure;
2065
2066 /* Check whether the maximum pressure in the overall schedule
2067 has increased. (This means that the MODEL_MAX_PRESSURE of
2068 every point <= POINT will need to increae too; see below.) */
2069 if (group->limits[pci].pressure < ref_pressure)
2070 group->limits[pci].pressure = ref_pressure;
2071
2072 /* If we are at maximum pressure, and the maximum pressure
2073 point was previously unknown or later than POINT,
2074 bring it forward. */
2075 if (group->limits[pci].pressure == ref_pressure
2076 && !IN_RANGE (group->limits[pci].point, 0, point))
2077 group->limits[pci].point = point;
2078
2079 /* If POINT used to be the point of maximum pressure, but isn't
2080 any longer, we need to recalculate it using a forward walk. */
2081 if (group->limits[pci].pressure > ref_pressure
2082 && group->limits[pci].point == point)
2083 group->limits[pci].point = -1;
2084 }
2085
2086 /* Update the maximum pressure at POINT. Changes here might also
2087 affect the maximum pressure at POINT - 1. */
2088 next_max_pressure = MODEL_MAX_PRESSURE (group, point + 1, pci);
2089 max_pressure = MAX (ref_pressure, next_max_pressure);
2090 if (MODEL_MAX_PRESSURE (group, point, pci) != max_pressure)
2091 {
2092 MODEL_MAX_PRESSURE (group, point, pci) = max_pressure;
2093 return 1;
2094 }
2095 return 0;
2096 }
2097
2098 /* INSN has just been scheduled. Update the model schedule accordingly. */
2099
2100 static void
2101 model_recompute (rtx_insn *insn)
2102 {
2103 struct {
2104 int last_use;
2105 int regno;
2106 } uses[FIRST_PSEUDO_REGISTER + MAX_RECOG_OPERANDS];
2107 struct reg_use_data *use;
2108 struct reg_pressure_data *reg_pressure;
2109 int delta[N_REG_CLASSES];
2110 int pci, point, mix, new_last, cl, ref_pressure, queue;
2111 unsigned int i, num_uses, num_pending_births;
2112 bool print_p;
2113
2114 /* The destinations of INSN were previously live from POINT onwards, but are
2115 now live from model_curr_point onwards. Set up DELTA accordingly. */
2116 point = model_index (insn);
2117 reg_pressure = INSN_REG_PRESSURE (insn);
2118 for (pci = 0; pci < ira_pressure_classes_num; pci++)
2119 {
2120 cl = ira_pressure_classes[pci];
2121 delta[cl] = reg_pressure[pci].set_increase;
2122 }
2123
2124 /* Record which registers previously died at POINT, but which now die
2125 before POINT. Adjust DELTA so that it represents the effect of
2126 this change after POINT - 1. Set NUM_PENDING_BIRTHS to the number of
2127 registers that will be born in the range [model_curr_point, POINT). */
2128 num_uses = 0;
2129 num_pending_births = 0;
2130 for (use = INSN_REG_USE_LIST (insn); use != NULL; use = use->next_insn_use)
2131 {
2132 new_last = model_last_use_except (use);
2133 if (new_last < point)
2134 {
2135 gcc_assert (num_uses < ARRAY_SIZE (uses));
2136 uses[num_uses].last_use = new_last;
2137 uses[num_uses].regno = use->regno;
2138 /* This register is no longer live after POINT - 1. */
2139 mark_regno_birth_or_death (NULL, delta, use->regno, false);
2140 num_uses++;
2141 if (new_last >= 0)
2142 num_pending_births++;
2143 }
2144 }
2145
2146 /* Update the MODEL_REF_PRESSURE and MODEL_MAX_PRESSURE for POINT.
2147 Also set each group pressure limit for POINT. */
2148 for (pci = 0; pci < ira_pressure_classes_num; pci++)
2149 {
2150 cl = ira_pressure_classes[pci];
2151 model_start_update_pressure (&model_before_pressure,
2152 point, pci, delta[cl]);
2153 }
2154
2155 /* Walk the model schedule backwards, starting immediately before POINT. */
2156 print_p = false;
2157 if (point != model_curr_point)
2158 do
2159 {
2160 point--;
2161 insn = MODEL_INSN (point);
2162 queue = QUEUE_INDEX (insn);
2163
2164 if (queue != QUEUE_SCHEDULED)
2165 {
2166 /* DELTA describes the effect of the move on the register pressure
2167 after POINT. Make it describe the effect on the pressure
2168 before POINT. */
2169 i = 0;
2170 while (i < num_uses)
2171 {
2172 if (uses[i].last_use == point)
2173 {
2174 /* This register is now live again. */
2175 mark_regno_birth_or_death (NULL, delta,
2176 uses[i].regno, true);
2177
2178 /* Remove this use from the array. */
2179 uses[i] = uses[num_uses - 1];
2180 num_uses--;
2181 num_pending_births--;
2182 }
2183 else
2184 i++;
2185 }
2186
2187 if (sched_verbose >= 5)
2188 {
2189 if (!print_p)
2190 {
2191 fprintf (sched_dump, MODEL_BAR);
2192 fprintf (sched_dump, ";;\t\t| New pressure for model"
2193 " schedule\n");
2194 fprintf (sched_dump, MODEL_BAR);
2195 print_p = true;
2196 }
2197
2198 fprintf (sched_dump, ";;\t\t| %3d %4d %-30s ",
2199 point, INSN_UID (insn),
2200 str_pattern_slim (PATTERN (insn)));
2201 for (pci = 0; pci < ira_pressure_classes_num; pci++)
2202 {
2203 cl = ira_pressure_classes[pci];
2204 ref_pressure = MODEL_REF_PRESSURE (&model_before_pressure,
2205 point, pci);
2206 fprintf (sched_dump, " %s:[%d->%d]",
2207 reg_class_names[ira_pressure_classes[pci]],
2208 ref_pressure, ref_pressure + delta[cl]);
2209 }
2210 fprintf (sched_dump, "\n");
2211 }
2212 }
2213
2214 /* Adjust the pressure at POINT. Set MIX to nonzero if POINT - 1
2215 might have changed as well. */
2216 mix = num_pending_births;
2217 for (pci = 0; pci < ira_pressure_classes_num; pci++)
2218 {
2219 cl = ira_pressure_classes[pci];
2220 mix |= delta[cl];
2221 mix |= model_update_pressure (&model_before_pressure,
2222 point, pci, delta[cl]);
2223 }
2224 }
2225 while (mix && point > model_curr_point);
2226
2227 if (print_p)
2228 fprintf (sched_dump, MODEL_BAR);
2229 }
2230
2231 /* After DEP, which was cancelled, has been resolved for insn NEXT,
2232 check whether the insn's pattern needs restoring. */
2233 static bool
2234 must_restore_pattern_p (rtx_insn *next, dep_t dep)
2235 {
2236 if (QUEUE_INDEX (next) == QUEUE_SCHEDULED)
2237 return false;
2238
2239 if (DEP_TYPE (dep) == REG_DEP_CONTROL)
2240 {
2241 gcc_assert (ORIG_PAT (next) != NULL_RTX);
2242 gcc_assert (next == DEP_CON (dep));
2243 }
2244 else
2245 {
2246 struct dep_replacement *desc = DEP_REPLACE (dep);
2247 if (desc->insn != next)
2248 {
2249 gcc_assert (*desc->loc == desc->orig);
2250 return false;
2251 }
2252 }
2253 return true;
2254 }
2255 \f
2256 /* model_spill_cost (CL, P, P') returns the cost of increasing the
2257 pressure on CL from P to P'. We use this to calculate a "base ECC",
2258 baseECC (CL, X), for each pressure class CL and each instruction X.
2259 Supposing X changes the pressure on CL from P to P', and that the
2260 maximum pressure on CL in the current model schedule is MP', then:
2261
2262 * if X occurs before or at the next point of maximum pressure in
2263 the model schedule and P' > MP', then:
2264
2265 baseECC (CL, X) = model_spill_cost (CL, MP, P')
2266
2267 The idea is that the pressure after scheduling a fixed set of
2268 instructions -- in this case, the set up to and including the
2269 next maximum pressure point -- is going to be the same regardless
2270 of the order; we simply want to keep the intermediate pressure
2271 under control. Thus X has a cost of zero unless scheduling it
2272 now would exceed MP'.
2273
2274 If all increases in the set are by the same amount, no zero-cost
2275 instruction will ever cause the pressure to exceed MP'. However,
2276 if X is instead moved past an instruction X' with pressure in the
2277 range (MP' - (P' - P), MP'), the pressure at X' will increase
2278 beyond MP'. Since baseECC is very much a heuristic anyway,
2279 it doesn't seem worth the overhead of tracking cases like these.
2280
2281 The cost of exceeding MP' is always based on the original maximum
2282 pressure MP. This is so that going 2 registers over the original
2283 limit has the same cost regardless of whether it comes from two
2284 separate +1 deltas or from a single +2 delta.
2285
2286 * if X occurs after the next point of maximum pressure in the model
2287 schedule and P' > P, then:
2288
2289 baseECC (CL, X) = model_spill_cost (CL, MP, MP' + (P' - P))
2290
2291 That is, if we move X forward across a point of maximum pressure,
2292 and if X increases the pressure by P' - P, then we conservatively
2293 assume that scheduling X next would increase the maximum pressure
2294 by P' - P. Again, the cost of doing this is based on the original
2295 maximum pressure MP, for the same reason as above.
2296
2297 * if P' < P, P > MP, and X occurs at or after the next point of
2298 maximum pressure, then:
2299
2300 baseECC (CL, X) = -model_spill_cost (CL, MAX (MP, P'), P)
2301
2302 That is, if we have already exceeded the original maximum pressure MP,
2303 and if X might reduce the maximum pressure again -- or at least push
2304 it further back, and thus allow more scheduling freedom -- it is given
2305 a negative cost to reflect the improvement.
2306
2307 * otherwise,
2308
2309 baseECC (CL, X) = 0
2310
2311 In this case, X is not expected to affect the maximum pressure MP',
2312 so it has zero cost.
2313
2314 We then create a combined value baseECC (X) that is the sum of
2315 baseECC (CL, X) for each pressure class CL.
2316
2317 baseECC (X) could itself be used as the ECC value described above.
2318 However, this is often too conservative, in the sense that it
2319 tends to make high-priority instructions that increase pressure
2320 wait too long in cases where introducing a spill would be better.
2321 For this reason the final ECC is a priority-adjusted form of
2322 baseECC (X). Specifically, we calculate:
2323
2324 P (X) = INSN_PRIORITY (X) - insn_delay (X) - baseECC (X)
2325 baseP = MAX { P (X) | baseECC (X) <= 0 }
2326
2327 Then:
2328
2329 ECC (X) = MAX (MIN (baseP - P (X), baseECC (X)), 0)
2330
2331 Thus an instruction's effect on pressure is ignored if it has a high
2332 enough priority relative to the ones that don't increase pressure.
2333 Negative values of baseECC (X) do not increase the priority of X
2334 itself, but they do make it harder for other instructions to
2335 increase the pressure further.
2336
2337 This pressure cost is deliberately timid. The intention has been
2338 to choose a heuristic that rarely interferes with the normal list
2339 scheduler in cases where that scheduler would produce good code.
2340 We simply want to curb some of its worst excesses. */
2341
2342 /* Return the cost of increasing the pressure in class CL from FROM to TO.
2343
2344 Here we use the very simplistic cost model that every register above
2345 ira_class_hard_regs_num[CL] has a spill cost of 1. We could use other
2346 measures instead, such as one based on MEMORY_MOVE_COST. However:
2347
2348 (1) In order for an instruction to be scheduled, the higher cost
2349 would need to be justified in a single saving of that many stalls.
2350 This is overly pessimistic, because the benefit of spilling is
2351 often to avoid a sequence of several short stalls rather than
2352 a single long one.
2353
2354 (2) The cost is still arbitrary. Because we are not allocating
2355 registers during scheduling, we have no way of knowing for
2356 sure how many memory accesses will be required by each spill,
2357 where the spills will be placed within the block, or even
2358 which block(s) will contain the spills.
2359
2360 So a higher cost than 1 is often too conservative in practice,
2361 forcing blocks to contain unnecessary stalls instead of spill code.
2362 The simple cost below seems to be the best compromise. It reduces
2363 the interference with the normal list scheduler, which helps make
2364 it more suitable for a default-on option. */
2365
2366 static int
2367 model_spill_cost (int cl, int from, int to)
2368 {
2369 from = MAX (from, ira_class_hard_regs_num[cl]);
2370 return MAX (to, from) - from;
2371 }
2372
2373 /* Return baseECC (ira_pressure_classes[PCI], POINT), given that
2374 P = curr_reg_pressure[ira_pressure_classes[PCI]] and that
2375 P' = P + DELTA. */
2376
2377 static int
2378 model_excess_group_cost (struct model_pressure_group *group,
2379 int point, int pci, int delta)
2380 {
2381 int pressure, cl;
2382
2383 cl = ira_pressure_classes[pci];
2384 if (delta < 0 && point >= group->limits[pci].point)
2385 {
2386 pressure = MAX (group->limits[pci].orig_pressure,
2387 curr_reg_pressure[cl] + delta);
2388 return -model_spill_cost (cl, pressure, curr_reg_pressure[cl]);
2389 }
2390
2391 if (delta > 0)
2392 {
2393 if (point > group->limits[pci].point)
2394 pressure = group->limits[pci].pressure + delta;
2395 else
2396 pressure = curr_reg_pressure[cl] + delta;
2397
2398 if (pressure > group->limits[pci].pressure)
2399 return model_spill_cost (cl, group->limits[pci].orig_pressure,
2400 pressure);
2401 }
2402
2403 return 0;
2404 }
2405
2406 /* Return baseECC (MODEL_INSN (INSN)). Dump the costs to sched_dump
2407 if PRINT_P. */
2408
2409 static int
2410 model_excess_cost (rtx_insn *insn, bool print_p)
2411 {
2412 int point, pci, cl, cost, this_cost, delta;
2413 struct reg_pressure_data *insn_reg_pressure;
2414 int insn_death[N_REG_CLASSES];
2415
2416 calculate_reg_deaths (insn, insn_death);
2417 point = model_index (insn);
2418 insn_reg_pressure = INSN_REG_PRESSURE (insn);
2419 cost = 0;
2420
2421 if (print_p)
2422 fprintf (sched_dump, ";;\t\t| %3d %4d | %4d %+3d |", point,
2423 INSN_UID (insn), INSN_PRIORITY (insn), insn_delay (insn));
2424
2425 /* Sum up the individual costs for each register class. */
2426 for (pci = 0; pci < ira_pressure_classes_num; pci++)
2427 {
2428 cl = ira_pressure_classes[pci];
2429 delta = insn_reg_pressure[pci].set_increase - insn_death[cl];
2430 this_cost = model_excess_group_cost (&model_before_pressure,
2431 point, pci, delta);
2432 cost += this_cost;
2433 if (print_p)
2434 fprintf (sched_dump, " %s:[%d base cost %d]",
2435 reg_class_names[cl], delta, this_cost);
2436 }
2437
2438 if (print_p)
2439 fprintf (sched_dump, "\n");
2440
2441 return cost;
2442 }
2443
2444 /* Dump the next points of maximum pressure for GROUP. */
2445
2446 static void
2447 model_dump_pressure_points (struct model_pressure_group *group)
2448 {
2449 int pci, cl;
2450
2451 fprintf (sched_dump, ";;\t\t| pressure points");
2452 for (pci = 0; pci < ira_pressure_classes_num; pci++)
2453 {
2454 cl = ira_pressure_classes[pci];
2455 fprintf (sched_dump, " %s:[%d->%d at ", reg_class_names[cl],
2456 curr_reg_pressure[cl], group->limits[pci].pressure);
2457 if (group->limits[pci].point < model_num_insns)
2458 fprintf (sched_dump, "%d:%d]", group->limits[pci].point,
2459 INSN_UID (MODEL_INSN (group->limits[pci].point)));
2460 else
2461 fprintf (sched_dump, "end]");
2462 }
2463 fprintf (sched_dump, "\n");
2464 }
2465
2466 /* Set INSN_REG_PRESSURE_EXCESS_COST_CHANGE for INSNS[0...COUNT-1]. */
2467
2468 static void
2469 model_set_excess_costs (rtx_insn **insns, int count)
2470 {
2471 int i, cost, priority_base, priority;
2472 bool print_p;
2473
2474 /* Record the baseECC value for each instruction in the model schedule,
2475 except that negative costs are converted to zero ones now rather thatn
2476 later. Do not assign a cost to debug instructions, since they must
2477 not change code-generation decisions. Experiments suggest we also
2478 get better results by not assigning a cost to instructions from
2479 a different block.
2480
2481 Set PRIORITY_BASE to baseP in the block comment above. This is the
2482 maximum priority of the "cheap" instructions, which should always
2483 include the next model instruction. */
2484 priority_base = 0;
2485 print_p = false;
2486 for (i = 0; i < count; i++)
2487 if (INSN_MODEL_INDEX (insns[i]))
2488 {
2489 if (sched_verbose >= 6 && !print_p)
2490 {
2491 fprintf (sched_dump, MODEL_BAR);
2492 fprintf (sched_dump, ";;\t\t| Pressure costs for ready queue\n");
2493 model_dump_pressure_points (&model_before_pressure);
2494 fprintf (sched_dump, MODEL_BAR);
2495 print_p = true;
2496 }
2497 cost = model_excess_cost (insns[i], print_p);
2498 if (cost <= 0)
2499 {
2500 priority = INSN_PRIORITY (insns[i]) - insn_delay (insns[i]) - cost;
2501 priority_base = MAX (priority_base, priority);
2502 cost = 0;
2503 }
2504 INSN_REG_PRESSURE_EXCESS_COST_CHANGE (insns[i]) = cost;
2505 }
2506 if (print_p)
2507 fprintf (sched_dump, MODEL_BAR);
2508
2509 /* Use MAX (baseECC, 0) and baseP to calculcate ECC for each
2510 instruction. */
2511 for (i = 0; i < count; i++)
2512 {
2513 cost = INSN_REG_PRESSURE_EXCESS_COST_CHANGE (insns[i]);
2514 priority = INSN_PRIORITY (insns[i]) - insn_delay (insns[i]);
2515 if (cost > 0 && priority > priority_base)
2516 {
2517 cost += priority_base - priority;
2518 INSN_REG_PRESSURE_EXCESS_COST_CHANGE (insns[i]) = MAX (cost, 0);
2519 }
2520 }
2521 }
2522 \f
2523
2524 /* Enum of rank_for_schedule heuristic decisions. */
2525 enum rfs_decision {
2526 RFS_DEBUG, RFS_LIVE_RANGE_SHRINK1, RFS_LIVE_RANGE_SHRINK2,
2527 RFS_SCHED_GROUP, RFS_PRESSURE_DELAY, RFS_PRESSURE_TICK,
2528 RFS_FEEDS_BACKTRACK_INSN, RFS_PRIORITY, RFS_SPECULATION,
2529 RFS_SCHED_RANK, RFS_LAST_INSN, RFS_PRESSURE_INDEX,
2530 RFS_DEP_COUNT, RFS_TIE, RFS_N };
2531
2532 /* Corresponding strings for print outs. */
2533 static const char *rfs_str[RFS_N] = {
2534 "RFS_DEBUG", "RFS_LIVE_RANGE_SHRINK1", "RFS_LIVE_RANGE_SHRINK2",
2535 "RFS_SCHED_GROUP", "RFS_PRESSURE_DELAY", "RFS_PRESSURE_TICK",
2536 "RFS_FEEDS_BACKTRACK_INSN", "RFS_PRIORITY", "RFS_SPECULATION",
2537 "RFS_SCHED_RANK", "RFS_LAST_INSN", "RFS_PRESSURE_INDEX",
2538 "RFS_DEP_COUNT", "RFS_TIE" };
2539
2540 /* Statistical breakdown of rank_for_schedule decisions. */
2541 typedef struct { unsigned stats[RFS_N]; } rank_for_schedule_stats_t;
2542 static rank_for_schedule_stats_t rank_for_schedule_stats;
2543
2544 static int
2545 rfs_result (enum rfs_decision decision, int result)
2546 {
2547 ++rank_for_schedule_stats.stats[decision];
2548 return result;
2549 }
2550
2551 /* Returns a positive value if x is preferred; returns a negative value if
2552 y is preferred. Should never return 0, since that will make the sort
2553 unstable. */
2554
2555 static int
2556 rank_for_schedule (const void *x, const void *y)
2557 {
2558 rtx_insn *tmp = *(rtx_insn * const *) y;
2559 rtx_insn *tmp2 = *(rtx_insn * const *) x;
2560 int tmp_class, tmp2_class;
2561 int val, priority_val, info_val, diff;
2562
2563 if (MAY_HAVE_DEBUG_INSNS)
2564 {
2565 /* Schedule debug insns as early as possible. */
2566 if (DEBUG_INSN_P (tmp) && !DEBUG_INSN_P (tmp2))
2567 return rfs_result (RFS_DEBUG, -1);
2568 else if (!DEBUG_INSN_P (tmp) && DEBUG_INSN_P (tmp2))
2569 return rfs_result (RFS_DEBUG, 1);
2570 else if (DEBUG_INSN_P (tmp) && DEBUG_INSN_P (tmp2))
2571 return rfs_result (RFS_DEBUG, INSN_LUID (tmp) - INSN_LUID (tmp2));
2572 }
2573
2574 if (live_range_shrinkage_p)
2575 {
2576 /* Don't use SCHED_PRESSURE_MODEL -- it results in much worse
2577 code. */
2578 gcc_assert (sched_pressure == SCHED_PRESSURE_WEIGHTED);
2579 if ((INSN_REG_PRESSURE_EXCESS_COST_CHANGE (tmp) < 0
2580 || INSN_REG_PRESSURE_EXCESS_COST_CHANGE (tmp2) < 0)
2581 && (diff = (INSN_REG_PRESSURE_EXCESS_COST_CHANGE (tmp)
2582 - INSN_REG_PRESSURE_EXCESS_COST_CHANGE (tmp2))) != 0)
2583 return rfs_result (RFS_LIVE_RANGE_SHRINK1, diff);
2584 /* Sort by INSN_LUID (original insn order), so that we make the
2585 sort stable. This minimizes instruction movement, thus
2586 minimizing sched's effect on debugging and cross-jumping. */
2587 return rfs_result (RFS_LIVE_RANGE_SHRINK2,
2588 INSN_LUID (tmp) - INSN_LUID (tmp2));
2589 }
2590
2591 /* The insn in a schedule group should be issued the first. */
2592 if (flag_sched_group_heuristic &&
2593 SCHED_GROUP_P (tmp) != SCHED_GROUP_P (tmp2))
2594 return rfs_result (RFS_SCHED_GROUP, SCHED_GROUP_P (tmp2) ? 1 : -1);
2595
2596 /* Make sure that priority of TMP and TMP2 are initialized. */
2597 gcc_assert (INSN_PRIORITY_KNOWN (tmp) && INSN_PRIORITY_KNOWN (tmp2));
2598
2599 if (sched_pressure != SCHED_PRESSURE_NONE)
2600 {
2601 /* Prefer insn whose scheduling results in the smallest register
2602 pressure excess. */
2603 if ((diff = (INSN_REG_PRESSURE_EXCESS_COST_CHANGE (tmp)
2604 + insn_delay (tmp)
2605 - INSN_REG_PRESSURE_EXCESS_COST_CHANGE (tmp2)
2606 - insn_delay (tmp2))))
2607 return rfs_result (RFS_PRESSURE_DELAY, diff);
2608 }
2609
2610 if (sched_pressure != SCHED_PRESSURE_NONE
2611 && (INSN_TICK (tmp2) > clock_var || INSN_TICK (tmp) > clock_var)
2612 && INSN_TICK (tmp2) != INSN_TICK (tmp))
2613 {
2614 diff = INSN_TICK (tmp) - INSN_TICK (tmp2);
2615 return rfs_result (RFS_PRESSURE_TICK, diff);
2616 }
2617
2618 /* If we are doing backtracking in this schedule, prefer insns that
2619 have forward dependencies with negative cost against an insn that
2620 was already scheduled. */
2621 if (current_sched_info->flags & DO_BACKTRACKING)
2622 {
2623 priority_val = FEEDS_BACKTRACK_INSN (tmp2) - FEEDS_BACKTRACK_INSN (tmp);
2624 if (priority_val)
2625 return rfs_result (RFS_FEEDS_BACKTRACK_INSN, priority_val);
2626 }
2627
2628 /* Prefer insn with higher priority. */
2629 priority_val = INSN_PRIORITY (tmp2) - INSN_PRIORITY (tmp);
2630
2631 if (flag_sched_critical_path_heuristic && priority_val)
2632 return rfs_result (RFS_PRIORITY, priority_val);
2633
2634 /* Prefer speculative insn with greater dependencies weakness. */
2635 if (flag_sched_spec_insn_heuristic && spec_info)
2636 {
2637 ds_t ds1, ds2;
2638 dw_t dw1, dw2;
2639 int dw;
2640
2641 ds1 = TODO_SPEC (tmp) & SPECULATIVE;
2642 if (ds1)
2643 dw1 = ds_weak (ds1);
2644 else
2645 dw1 = NO_DEP_WEAK;
2646
2647 ds2 = TODO_SPEC (tmp2) & SPECULATIVE;
2648 if (ds2)
2649 dw2 = ds_weak (ds2);
2650 else
2651 dw2 = NO_DEP_WEAK;
2652
2653 dw = dw2 - dw1;
2654 if (dw > (NO_DEP_WEAK / 8) || dw < -(NO_DEP_WEAK / 8))
2655 return rfs_result (RFS_SPECULATION, dw);
2656 }
2657
2658 info_val = (*current_sched_info->rank) (tmp, tmp2);
2659 if (flag_sched_rank_heuristic && info_val)
2660 return rfs_result (RFS_SCHED_RANK, info_val);
2661
2662 /* Compare insns based on their relation to the last scheduled
2663 non-debug insn. */
2664 if (flag_sched_last_insn_heuristic && last_nondebug_scheduled_insn)
2665 {
2666 dep_t dep1;
2667 dep_t dep2;
2668 rtx last = last_nondebug_scheduled_insn;
2669
2670 /* Classify the instructions into three classes:
2671 1) Data dependent on last schedule insn.
2672 2) Anti/Output dependent on last scheduled insn.
2673 3) Independent of last scheduled insn, or has latency of one.
2674 Choose the insn from the highest numbered class if different. */
2675 dep1 = sd_find_dep_between (last, tmp, true);
2676
2677 if (dep1 == NULL || dep_cost (dep1) == 1)
2678 tmp_class = 3;
2679 else if (/* Data dependence. */
2680 DEP_TYPE (dep1) == REG_DEP_TRUE)
2681 tmp_class = 1;
2682 else
2683 tmp_class = 2;
2684
2685 dep2 = sd_find_dep_between (last, tmp2, true);
2686
2687 if (dep2 == NULL || dep_cost (dep2) == 1)
2688 tmp2_class = 3;
2689 else if (/* Data dependence. */
2690 DEP_TYPE (dep2) == REG_DEP_TRUE)
2691 tmp2_class = 1;
2692 else
2693 tmp2_class = 2;
2694
2695 if ((val = tmp2_class - tmp_class))
2696 return rfs_result (RFS_LAST_INSN, val);
2697 }
2698
2699 /* Prefer instructions that occur earlier in the model schedule. */
2700 if (sched_pressure == SCHED_PRESSURE_MODEL
2701 && INSN_BB (tmp) == target_bb && INSN_BB (tmp2) == target_bb)
2702 {
2703 diff = model_index (tmp) - model_index (tmp2);
2704 gcc_assert (diff != 0);
2705 return rfs_result (RFS_PRESSURE_INDEX, diff);
2706 }
2707
2708 /* Prefer the insn which has more later insns that depend on it.
2709 This gives the scheduler more freedom when scheduling later
2710 instructions at the expense of added register pressure. */
2711
2712 val = (dep_list_size (tmp2, SD_LIST_FORW)
2713 - dep_list_size (tmp, SD_LIST_FORW));
2714
2715 if (flag_sched_dep_count_heuristic && val != 0)
2716 return rfs_result (RFS_DEP_COUNT, val);
2717
2718 /* If insns are equally good, sort by INSN_LUID (original insn order),
2719 so that we make the sort stable. This minimizes instruction movement,
2720 thus minimizing sched's effect on debugging and cross-jumping. */
2721 return rfs_result (RFS_TIE, INSN_LUID (tmp) - INSN_LUID (tmp2));
2722 }
2723
2724 /* Resort the array A in which only element at index N may be out of order. */
2725
2726 HAIFA_INLINE static void
2727 swap_sort (rtx_insn **a, int n)
2728 {
2729 rtx_insn *insn = a[n - 1];
2730 int i = n - 2;
2731
2732 while (i >= 0 && rank_for_schedule (a + i, &insn) >= 0)
2733 {
2734 a[i + 1] = a[i];
2735 i -= 1;
2736 }
2737 a[i + 1] = insn;
2738 }
2739
2740 /* Add INSN to the insn queue so that it can be executed at least
2741 N_CYCLES after the currently executing insn. Preserve insns
2742 chain for debugging purposes. REASON will be printed in debugging
2743 output. */
2744
2745 HAIFA_INLINE static void
2746 queue_insn (rtx_insn *insn, int n_cycles, const char *reason)
2747 {
2748 int next_q = NEXT_Q_AFTER (q_ptr, n_cycles);
2749 rtx_insn_list *link = alloc_INSN_LIST (insn, insn_queue[next_q]);
2750 int new_tick;
2751
2752 gcc_assert (n_cycles <= max_insn_queue_index);
2753 gcc_assert (!DEBUG_INSN_P (insn));
2754
2755 insn_queue[next_q] = link;
2756 q_size += 1;
2757
2758 if (sched_verbose >= 2)
2759 {
2760 fprintf (sched_dump, ";;\t\tReady-->Q: insn %s: ",
2761 (*current_sched_info->print_insn) (insn, 0));
2762
2763 fprintf (sched_dump, "queued for %d cycles (%s).\n", n_cycles, reason);
2764 }
2765
2766 QUEUE_INDEX (insn) = next_q;
2767
2768 if (current_sched_info->flags & DO_BACKTRACKING)
2769 {
2770 new_tick = clock_var + n_cycles;
2771 if (INSN_TICK (insn) == INVALID_TICK || INSN_TICK (insn) < new_tick)
2772 INSN_TICK (insn) = new_tick;
2773
2774 if (INSN_EXACT_TICK (insn) != INVALID_TICK
2775 && INSN_EXACT_TICK (insn) < clock_var + n_cycles)
2776 {
2777 must_backtrack = true;
2778 if (sched_verbose >= 2)
2779 fprintf (sched_dump, ";;\t\tcausing a backtrack.\n");
2780 }
2781 }
2782 }
2783
2784 /* Remove INSN from queue. */
2785 static void
2786 queue_remove (rtx_insn *insn)
2787 {
2788 gcc_assert (QUEUE_INDEX (insn) >= 0);
2789 remove_free_INSN_LIST_elem (insn, &insn_queue[QUEUE_INDEX (insn)]);
2790 q_size--;
2791 QUEUE_INDEX (insn) = QUEUE_NOWHERE;
2792 }
2793
2794 /* Return a pointer to the bottom of the ready list, i.e. the insn
2795 with the lowest priority. */
2796
2797 rtx_insn **
2798 ready_lastpos (struct ready_list *ready)
2799 {
2800 gcc_assert (ready->n_ready >= 1);
2801 return ready->vec + ready->first - ready->n_ready + 1;
2802 }
2803
2804 /* Add an element INSN to the ready list so that it ends up with the
2805 lowest/highest priority depending on FIRST_P. */
2806
2807 HAIFA_INLINE static void
2808 ready_add (struct ready_list *ready, rtx_insn *insn, bool first_p)
2809 {
2810 if (!first_p)
2811 {
2812 if (ready->first == ready->n_ready)
2813 {
2814 memmove (ready->vec + ready->veclen - ready->n_ready,
2815 ready_lastpos (ready),
2816 ready->n_ready * sizeof (rtx));
2817 ready->first = ready->veclen - 1;
2818 }
2819 ready->vec[ready->first - ready->n_ready] = insn;
2820 }
2821 else
2822 {
2823 if (ready->first == ready->veclen - 1)
2824 {
2825 if (ready->n_ready)
2826 /* ready_lastpos() fails when called with (ready->n_ready == 0). */
2827 memmove (ready->vec + ready->veclen - ready->n_ready - 1,
2828 ready_lastpos (ready),
2829 ready->n_ready * sizeof (rtx));
2830 ready->first = ready->veclen - 2;
2831 }
2832 ready->vec[++(ready->first)] = insn;
2833 }
2834
2835 ready->n_ready++;
2836 if (DEBUG_INSN_P (insn))
2837 ready->n_debug++;
2838
2839 gcc_assert (QUEUE_INDEX (insn) != QUEUE_READY);
2840 QUEUE_INDEX (insn) = QUEUE_READY;
2841
2842 if (INSN_EXACT_TICK (insn) != INVALID_TICK
2843 && INSN_EXACT_TICK (insn) < clock_var)
2844 {
2845 must_backtrack = true;
2846 }
2847 }
2848
2849 /* Remove the element with the highest priority from the ready list and
2850 return it. */
2851
2852 HAIFA_INLINE static rtx_insn *
2853 ready_remove_first (struct ready_list *ready)
2854 {
2855 rtx_insn *t;
2856
2857 gcc_assert (ready->n_ready);
2858 t = ready->vec[ready->first--];
2859 ready->n_ready--;
2860 if (DEBUG_INSN_P (t))
2861 ready->n_debug--;
2862 /* If the queue becomes empty, reset it. */
2863 if (ready->n_ready == 0)
2864 ready->first = ready->veclen - 1;
2865
2866 gcc_assert (QUEUE_INDEX (t) == QUEUE_READY);
2867 QUEUE_INDEX (t) = QUEUE_NOWHERE;
2868
2869 return t;
2870 }
2871
2872 /* The following code implements multi-pass scheduling for the first
2873 cycle. In other words, we will try to choose ready insn which
2874 permits to start maximum number of insns on the same cycle. */
2875
2876 /* Return a pointer to the element INDEX from the ready. INDEX for
2877 insn with the highest priority is 0, and the lowest priority has
2878 N_READY - 1. */
2879
2880 rtx_insn *
2881 ready_element (struct ready_list *ready, int index)
2882 {
2883 gcc_assert (ready->n_ready && index < ready->n_ready);
2884
2885 return ready->vec[ready->first - index];
2886 }
2887
2888 /* Remove the element INDEX from the ready list and return it. INDEX
2889 for insn with the highest priority is 0, and the lowest priority
2890 has N_READY - 1. */
2891
2892 HAIFA_INLINE static rtx_insn *
2893 ready_remove (struct ready_list *ready, int index)
2894 {
2895 rtx_insn *t;
2896 int i;
2897
2898 if (index == 0)
2899 return ready_remove_first (ready);
2900 gcc_assert (ready->n_ready && index < ready->n_ready);
2901 t = ready->vec[ready->first - index];
2902 ready->n_ready--;
2903 if (DEBUG_INSN_P (t))
2904 ready->n_debug--;
2905 for (i = index; i < ready->n_ready; i++)
2906 ready->vec[ready->first - i] = ready->vec[ready->first - i - 1];
2907 QUEUE_INDEX (t) = QUEUE_NOWHERE;
2908 return t;
2909 }
2910
2911 /* Remove INSN from the ready list. */
2912 static void
2913 ready_remove_insn (rtx insn)
2914 {
2915 int i;
2916
2917 for (i = 0; i < readyp->n_ready; i++)
2918 if (ready_element (readyp, i) == insn)
2919 {
2920 ready_remove (readyp, i);
2921 return;
2922 }
2923 gcc_unreachable ();
2924 }
2925
2926 /* Calculate difference of two statistics set WAS and NOW.
2927 Result returned in WAS. */
2928 static void
2929 rank_for_schedule_stats_diff (rank_for_schedule_stats_t *was,
2930 const rank_for_schedule_stats_t *now)
2931 {
2932 for (int i = 0; i < RFS_N; ++i)
2933 was->stats[i] = now->stats[i] - was->stats[i];
2934 }
2935
2936 /* Print rank_for_schedule statistics. */
2937 static void
2938 print_rank_for_schedule_stats (const char *prefix,
2939 const rank_for_schedule_stats_t *stats)
2940 {
2941 for (int i = 0; i < RFS_N; ++i)
2942 if (stats->stats[i])
2943 fprintf (sched_dump, "%s%20s: %u\n", prefix, rfs_str[i], stats->stats[i]);
2944 }
2945
2946 /* Sort the ready list READY by ascending priority, using the SCHED_SORT
2947 macro. */
2948
2949 void
2950 ready_sort (struct ready_list *ready)
2951 {
2952 int i;
2953 rtx_insn **first = ready_lastpos (ready);
2954
2955 if (sched_pressure == SCHED_PRESSURE_WEIGHTED)
2956 {
2957 for (i = 0; i < ready->n_ready; i++)
2958 if (!DEBUG_INSN_P (first[i]))
2959 setup_insn_reg_pressure_info (first[i]);
2960 }
2961 if (sched_pressure == SCHED_PRESSURE_MODEL
2962 && model_curr_point < model_num_insns)
2963 model_set_excess_costs (first, ready->n_ready);
2964
2965 rank_for_schedule_stats_t stats1;
2966 if (sched_verbose >= 4)
2967 stats1 = rank_for_schedule_stats;
2968
2969 if (ready->n_ready == 2)
2970 swap_sort (first, ready->n_ready);
2971 else if (ready->n_ready > 2)
2972 qsort (first, ready->n_ready, sizeof (rtx), rank_for_schedule);
2973
2974 if (sched_verbose >= 4)
2975 {
2976 rank_for_schedule_stats_diff (&stats1, &rank_for_schedule_stats);
2977 print_rank_for_schedule_stats (";;\t\t", &stats1);
2978 }
2979 }
2980
2981 /* PREV is an insn that is ready to execute. Adjust its priority if that
2982 will help shorten or lengthen register lifetimes as appropriate. Also
2983 provide a hook for the target to tweak itself. */
2984
2985 HAIFA_INLINE static void
2986 adjust_priority (rtx_insn *prev)
2987 {
2988 /* ??? There used to be code here to try and estimate how an insn
2989 affected register lifetimes, but it did it by looking at REG_DEAD
2990 notes, which we removed in schedule_region. Nor did it try to
2991 take into account register pressure or anything useful like that.
2992
2993 Revisit when we have a machine model to work with and not before. */
2994
2995 if (targetm.sched.adjust_priority)
2996 INSN_PRIORITY (prev) =
2997 targetm.sched.adjust_priority (prev, INSN_PRIORITY (prev));
2998 }
2999
3000 /* Advance DFA state STATE on one cycle. */
3001 void
3002 advance_state (state_t state)
3003 {
3004 if (targetm.sched.dfa_pre_advance_cycle)
3005 targetm.sched.dfa_pre_advance_cycle ();
3006
3007 if (targetm.sched.dfa_pre_cycle_insn)
3008 state_transition (state,
3009 targetm.sched.dfa_pre_cycle_insn ());
3010
3011 state_transition (state, NULL);
3012
3013 if (targetm.sched.dfa_post_cycle_insn)
3014 state_transition (state,
3015 targetm.sched.dfa_post_cycle_insn ());
3016
3017 if (targetm.sched.dfa_post_advance_cycle)
3018 targetm.sched.dfa_post_advance_cycle ();
3019 }
3020
3021 /* Advance time on one cycle. */
3022 HAIFA_INLINE static void
3023 advance_one_cycle (void)
3024 {
3025 advance_state (curr_state);
3026 if (sched_verbose >= 4)
3027 fprintf (sched_dump, ";;\tAdvance the current state.\n");
3028 }
3029
3030 /* Update register pressure after scheduling INSN. */
3031 static void
3032 update_register_pressure (rtx_insn *insn)
3033 {
3034 struct reg_use_data *use;
3035 struct reg_set_data *set;
3036
3037 gcc_checking_assert (!DEBUG_INSN_P (insn));
3038
3039 for (use = INSN_REG_USE_LIST (insn); use != NULL; use = use->next_insn_use)
3040 if (dying_use_p (use))
3041 mark_regno_birth_or_death (curr_reg_live, curr_reg_pressure,
3042 use->regno, false);
3043 for (set = INSN_REG_SET_LIST (insn); set != NULL; set = set->next_insn_set)
3044 mark_regno_birth_or_death (curr_reg_live, curr_reg_pressure,
3045 set->regno, true);
3046 }
3047
3048 /* Set up or update (if UPDATE_P) max register pressure (see its
3049 meaning in sched-int.h::_haifa_insn_data) for all current BB insns
3050 after insn AFTER. */
3051 static void
3052 setup_insn_max_reg_pressure (rtx_insn *after, bool update_p)
3053 {
3054 int i, p;
3055 bool eq_p;
3056 rtx_insn *insn;
3057 static int max_reg_pressure[N_REG_CLASSES];
3058
3059 save_reg_pressure ();
3060 for (i = 0; i < ira_pressure_classes_num; i++)
3061 max_reg_pressure[ira_pressure_classes[i]]
3062 = curr_reg_pressure[ira_pressure_classes[i]];
3063 for (insn = NEXT_INSN (after);
3064 insn != NULL_RTX && ! BARRIER_P (insn)
3065 && BLOCK_FOR_INSN (insn) == BLOCK_FOR_INSN (after);
3066 insn = NEXT_INSN (insn))
3067 if (NONDEBUG_INSN_P (insn))
3068 {
3069 eq_p = true;
3070 for (i = 0; i < ira_pressure_classes_num; i++)
3071 {
3072 p = max_reg_pressure[ira_pressure_classes[i]];
3073 if (INSN_MAX_REG_PRESSURE (insn)[i] != p)
3074 {
3075 eq_p = false;
3076 INSN_MAX_REG_PRESSURE (insn)[i]
3077 = max_reg_pressure[ira_pressure_classes[i]];
3078 }
3079 }
3080 if (update_p && eq_p)
3081 break;
3082 update_register_pressure (insn);
3083 for (i = 0; i < ira_pressure_classes_num; i++)
3084 if (max_reg_pressure[ira_pressure_classes[i]]
3085 < curr_reg_pressure[ira_pressure_classes[i]])
3086 max_reg_pressure[ira_pressure_classes[i]]
3087 = curr_reg_pressure[ira_pressure_classes[i]];
3088 }
3089 restore_reg_pressure ();
3090 }
3091
3092 /* Update the current register pressure after scheduling INSN. Update
3093 also max register pressure for unscheduled insns of the current
3094 BB. */
3095 static void
3096 update_reg_and_insn_max_reg_pressure (rtx_insn *insn)
3097 {
3098 int i;
3099 int before[N_REG_CLASSES];
3100
3101 for (i = 0; i < ira_pressure_classes_num; i++)
3102 before[i] = curr_reg_pressure[ira_pressure_classes[i]];
3103 update_register_pressure (insn);
3104 for (i = 0; i < ira_pressure_classes_num; i++)
3105 if (curr_reg_pressure[ira_pressure_classes[i]] != before[i])
3106 break;
3107 if (i < ira_pressure_classes_num)
3108 setup_insn_max_reg_pressure (insn, true);
3109 }
3110
3111 /* Set up register pressure at the beginning of basic block BB whose
3112 insns starting after insn AFTER. Set up also max register pressure
3113 for all insns of the basic block. */
3114 void
3115 sched_setup_bb_reg_pressure_info (basic_block bb, rtx_insn *after)
3116 {
3117 gcc_assert (sched_pressure == SCHED_PRESSURE_WEIGHTED);
3118 initiate_bb_reg_pressure_info (bb);
3119 setup_insn_max_reg_pressure (after, false);
3120 }
3121 \f
3122 /* If doing predication while scheduling, verify whether INSN, which
3123 has just been scheduled, clobbers the conditions of any
3124 instructions that must be predicated in order to break their
3125 dependencies. If so, remove them from the queues so that they will
3126 only be scheduled once their control dependency is resolved. */
3127
3128 static void
3129 check_clobbered_conditions (rtx insn)
3130 {
3131 HARD_REG_SET t;
3132 int i;
3133
3134 if ((current_sched_info->flags & DO_PREDICATION) == 0)
3135 return;
3136
3137 find_all_hard_reg_sets (insn, &t, true);
3138
3139 restart:
3140 for (i = 0; i < ready.n_ready; i++)
3141 {
3142 rtx_insn *x = ready_element (&ready, i);
3143 if (TODO_SPEC (x) == DEP_CONTROL && cond_clobbered_p (x, t))
3144 {
3145 ready_remove_insn (x);
3146 goto restart;
3147 }
3148 }
3149 for (i = 0; i <= max_insn_queue_index; i++)
3150 {
3151 rtx_insn_list *link;
3152 int q = NEXT_Q_AFTER (q_ptr, i);
3153
3154 restart_queue:
3155 for (link = insn_queue[q]; link; link = link->next ())
3156 {
3157 rtx_insn *x = link->insn ();
3158 if (TODO_SPEC (x) == DEP_CONTROL && cond_clobbered_p (x, t))
3159 {
3160 queue_remove (x);
3161 goto restart_queue;
3162 }
3163 }
3164 }
3165 }
3166 \f
3167 /* Return (in order):
3168
3169 - positive if INSN adversely affects the pressure on one
3170 register class
3171
3172 - negative if INSN reduces the pressure on one register class
3173
3174 - 0 if INSN doesn't affect the pressure on any register class. */
3175
3176 static int
3177 model_classify_pressure (struct model_insn_info *insn)
3178 {
3179 struct reg_pressure_data *reg_pressure;
3180 int death[N_REG_CLASSES];
3181 int pci, cl, sum;
3182
3183 calculate_reg_deaths (insn->insn, death);
3184 reg_pressure = INSN_REG_PRESSURE (insn->insn);
3185 sum = 0;
3186 for (pci = 0; pci < ira_pressure_classes_num; pci++)
3187 {
3188 cl = ira_pressure_classes[pci];
3189 if (death[cl] < reg_pressure[pci].set_increase)
3190 return 1;
3191 sum += reg_pressure[pci].set_increase - death[cl];
3192 }
3193 return sum;
3194 }
3195
3196 /* Return true if INSN1 should come before INSN2 in the model schedule. */
3197
3198 static int
3199 model_order_p (struct model_insn_info *insn1, struct model_insn_info *insn2)
3200 {
3201 unsigned int height1, height2;
3202 unsigned int priority1, priority2;
3203
3204 /* Prefer instructions with a higher model priority. */
3205 if (insn1->model_priority != insn2->model_priority)
3206 return insn1->model_priority > insn2->model_priority;
3207
3208 /* Combine the length of the longest path of satisfied true dependencies
3209 that leads to each instruction (depth) with the length of the longest
3210 path of any dependencies that leads from the instruction (alap).
3211 Prefer instructions with the greatest combined length. If the combined
3212 lengths are equal, prefer instructions with the greatest depth.
3213
3214 The idea is that, if we have a set S of "equal" instructions that each
3215 have ALAP value X, and we pick one such instruction I, any true-dependent
3216 successors of I that have ALAP value X - 1 should be preferred over S.
3217 This encourages the schedule to be "narrow" rather than "wide".
3218 However, if I is a low-priority instruction that we decided to
3219 schedule because of its model_classify_pressure, and if there
3220 is a set of higher-priority instructions T, the aforementioned
3221 successors of I should not have the edge over T. */
3222 height1 = insn1->depth + insn1->alap;
3223 height2 = insn2->depth + insn2->alap;
3224 if (height1 != height2)
3225 return height1 > height2;
3226 if (insn1->depth != insn2->depth)
3227 return insn1->depth > insn2->depth;
3228
3229 /* We have no real preference between INSN1 an INSN2 as far as attempts
3230 to reduce pressure go. Prefer instructions with higher priorities. */
3231 priority1 = INSN_PRIORITY (insn1->insn);
3232 priority2 = INSN_PRIORITY (insn2->insn);
3233 if (priority1 != priority2)
3234 return priority1 > priority2;
3235
3236 /* Use the original rtl sequence as a tie-breaker. */
3237 return insn1 < insn2;
3238 }
3239
3240 /* Add INSN to the model worklist immediately after PREV. Add it to the
3241 beginning of the list if PREV is null. */
3242
3243 static void
3244 model_add_to_worklist_at (struct model_insn_info *insn,
3245 struct model_insn_info *prev)
3246 {
3247 gcc_assert (QUEUE_INDEX (insn->insn) == QUEUE_NOWHERE);
3248 QUEUE_INDEX (insn->insn) = QUEUE_READY;
3249
3250 insn->prev = prev;
3251 if (prev)
3252 {
3253 insn->next = prev->next;
3254 prev->next = insn;
3255 }
3256 else
3257 {
3258 insn->next = model_worklist;
3259 model_worklist = insn;
3260 }
3261 if (insn->next)
3262 insn->next->prev = insn;
3263 }
3264
3265 /* Remove INSN from the model worklist. */
3266
3267 static void
3268 model_remove_from_worklist (struct model_insn_info *insn)
3269 {
3270 gcc_assert (QUEUE_INDEX (insn->insn) == QUEUE_READY);
3271 QUEUE_INDEX (insn->insn) = QUEUE_NOWHERE;
3272
3273 if (insn->prev)
3274 insn->prev->next = insn->next;
3275 else
3276 model_worklist = insn->next;
3277 if (insn->next)
3278 insn->next->prev = insn->prev;
3279 }
3280
3281 /* Add INSN to the model worklist. Start looking for a suitable position
3282 between neighbors PREV and NEXT, testing at most MAX_SCHED_READY_INSNS
3283 insns either side. A null PREV indicates the beginning of the list and
3284 a null NEXT indicates the end. */
3285
3286 static void
3287 model_add_to_worklist (struct model_insn_info *insn,
3288 struct model_insn_info *prev,
3289 struct model_insn_info *next)
3290 {
3291 int count;
3292
3293 count = MAX_SCHED_READY_INSNS;
3294 if (count > 0 && prev && model_order_p (insn, prev))
3295 do
3296 {
3297 count--;
3298 prev = prev->prev;
3299 }
3300 while (count > 0 && prev && model_order_p (insn, prev));
3301 else
3302 while (count > 0 && next && model_order_p (next, insn))
3303 {
3304 count--;
3305 prev = next;
3306 next = next->next;
3307 }
3308 model_add_to_worklist_at (insn, prev);
3309 }
3310
3311 /* INSN may now have a higher priority (in the model_order_p sense)
3312 than before. Move it up the worklist if necessary. */
3313
3314 static void
3315 model_promote_insn (struct model_insn_info *insn)
3316 {
3317 struct model_insn_info *prev;
3318 int count;
3319
3320 prev = insn->prev;
3321 count = MAX_SCHED_READY_INSNS;
3322 while (count > 0 && prev && model_order_p (insn, prev))
3323 {
3324 count--;
3325 prev = prev->prev;
3326 }
3327 if (prev != insn->prev)
3328 {
3329 model_remove_from_worklist (insn);
3330 model_add_to_worklist_at (insn, prev);
3331 }
3332 }
3333
3334 /* Add INSN to the end of the model schedule. */
3335
3336 static void
3337 model_add_to_schedule (rtx_insn *insn)
3338 {
3339 unsigned int point;
3340
3341 gcc_assert (QUEUE_INDEX (insn) == QUEUE_NOWHERE);
3342 QUEUE_INDEX (insn) = QUEUE_SCHEDULED;
3343
3344 point = model_schedule.length ();
3345 model_schedule.quick_push (insn);
3346 INSN_MODEL_INDEX (insn) = point + 1;
3347 }
3348
3349 /* Analyze the instructions that are to be scheduled, setting up
3350 MODEL_INSN_INFO (...) and model_num_insns accordingly. Add ready
3351 instructions to model_worklist. */
3352
3353 static void
3354 model_analyze_insns (void)
3355 {
3356 rtx_insn *start, *end, *iter;
3357 sd_iterator_def sd_it;
3358 dep_t dep;
3359 struct model_insn_info *insn, *con;
3360
3361 model_num_insns = 0;
3362 start = PREV_INSN (current_sched_info->next_tail);
3363 end = current_sched_info->prev_head;
3364 for (iter = start; iter != end; iter = PREV_INSN (iter))
3365 if (NONDEBUG_INSN_P (iter))
3366 {
3367 insn = MODEL_INSN_INFO (iter);
3368 insn->insn = iter;
3369 FOR_EACH_DEP (iter, SD_LIST_FORW, sd_it, dep)
3370 {
3371 con = MODEL_INSN_INFO (DEP_CON (dep));
3372 if (con->insn && insn->alap < con->alap + 1)
3373 insn->alap = con->alap + 1;
3374 }
3375
3376 insn->old_queue = QUEUE_INDEX (iter);
3377 QUEUE_INDEX (iter) = QUEUE_NOWHERE;
3378
3379 insn->unscheduled_preds = dep_list_size (iter, SD_LIST_HARD_BACK);
3380 if (insn->unscheduled_preds == 0)
3381 model_add_to_worklist (insn, NULL, model_worklist);
3382
3383 model_num_insns++;
3384 }
3385 }
3386
3387 /* The global state describes the register pressure at the start of the
3388 model schedule. Initialize GROUP accordingly. */
3389
3390 static void
3391 model_init_pressure_group (struct model_pressure_group *group)
3392 {
3393 int pci, cl;
3394
3395 for (pci = 0; pci < ira_pressure_classes_num; pci++)
3396 {
3397 cl = ira_pressure_classes[pci];
3398 group->limits[pci].pressure = curr_reg_pressure[cl];
3399 group->limits[pci].point = 0;
3400 }
3401 /* Use index model_num_insns to record the state after the last
3402 instruction in the model schedule. */
3403 group->model = XNEWVEC (struct model_pressure_data,
3404 (model_num_insns + 1) * ira_pressure_classes_num);
3405 }
3406
3407 /* Record that MODEL_REF_PRESSURE (GROUP, POINT, PCI) is PRESSURE.
3408 Update the maximum pressure for the whole schedule. */
3409
3410 static void
3411 model_record_pressure (struct model_pressure_group *group,
3412 int point, int pci, int pressure)
3413 {
3414 MODEL_REF_PRESSURE (group, point, pci) = pressure;
3415 if (group->limits[pci].pressure < pressure)
3416 {
3417 group->limits[pci].pressure = pressure;
3418 group->limits[pci].point = point;
3419 }
3420 }
3421
3422 /* INSN has just been added to the end of the model schedule. Record its
3423 register-pressure information. */
3424
3425 static void
3426 model_record_pressures (struct model_insn_info *insn)
3427 {
3428 struct reg_pressure_data *reg_pressure;
3429 int point, pci, cl, delta;
3430 int death[N_REG_CLASSES];
3431
3432 point = model_index (insn->insn);
3433 if (sched_verbose >= 2)
3434 {
3435 if (point == 0)
3436 {
3437 fprintf (sched_dump, "\n;;\tModel schedule:\n;;\n");
3438 fprintf (sched_dump, ";;\t| idx insn | mpri hght dpth prio |\n");
3439 }
3440 fprintf (sched_dump, ";;\t| %3d %4d | %4d %4d %4d %4d | %-30s ",
3441 point, INSN_UID (insn->insn), insn->model_priority,
3442 insn->depth + insn->alap, insn->depth,
3443 INSN_PRIORITY (insn->insn),
3444 str_pattern_slim (PATTERN (insn->insn)));
3445 }
3446 calculate_reg_deaths (insn->insn, death);
3447 reg_pressure = INSN_REG_PRESSURE (insn->insn);
3448 for (pci = 0; pci < ira_pressure_classes_num; pci++)
3449 {
3450 cl = ira_pressure_classes[pci];
3451 delta = reg_pressure[pci].set_increase - death[cl];
3452 if (sched_verbose >= 2)
3453 fprintf (sched_dump, " %s:[%d,%+d]", reg_class_names[cl],
3454 curr_reg_pressure[cl], delta);
3455 model_record_pressure (&model_before_pressure, point, pci,
3456 curr_reg_pressure[cl]);
3457 }
3458 if (sched_verbose >= 2)
3459 fprintf (sched_dump, "\n");
3460 }
3461
3462 /* All instructions have been added to the model schedule. Record the
3463 final register pressure in GROUP and set up all MODEL_MAX_PRESSUREs. */
3464
3465 static void
3466 model_record_final_pressures (struct model_pressure_group *group)
3467 {
3468 int point, pci, max_pressure, ref_pressure, cl;
3469
3470 for (pci = 0; pci < ira_pressure_classes_num; pci++)
3471 {
3472 /* Record the final pressure for this class. */
3473 cl = ira_pressure_classes[pci];
3474 point = model_num_insns;
3475 ref_pressure = curr_reg_pressure[cl];
3476 model_record_pressure (group, point, pci, ref_pressure);
3477
3478 /* Record the original maximum pressure. */
3479 group->limits[pci].orig_pressure = group->limits[pci].pressure;
3480
3481 /* Update the MODEL_MAX_PRESSURE for every point of the schedule. */
3482 max_pressure = ref_pressure;
3483 MODEL_MAX_PRESSURE (group, point, pci) = max_pressure;
3484 while (point > 0)
3485 {
3486 point--;
3487 ref_pressure = MODEL_REF_PRESSURE (group, point, pci);
3488 max_pressure = MAX (max_pressure, ref_pressure);
3489 MODEL_MAX_PRESSURE (group, point, pci) = max_pressure;
3490 }
3491 }
3492 }
3493
3494 /* Update all successors of INSN, given that INSN has just been scheduled. */
3495
3496 static void
3497 model_add_successors_to_worklist (struct model_insn_info *insn)
3498 {
3499 sd_iterator_def sd_it;
3500 struct model_insn_info *con;
3501 dep_t dep;
3502
3503 FOR_EACH_DEP (insn->insn, SD_LIST_FORW, sd_it, dep)
3504 {
3505 con = MODEL_INSN_INFO (DEP_CON (dep));
3506 /* Ignore debug instructions, and instructions from other blocks. */
3507 if (con->insn)
3508 {
3509 con->unscheduled_preds--;
3510
3511 /* Update the depth field of each true-dependent successor.
3512 Increasing the depth gives them a higher priority than
3513 before. */
3514 if (DEP_TYPE (dep) == REG_DEP_TRUE && con->depth < insn->depth + 1)
3515 {
3516 con->depth = insn->depth + 1;
3517 if (QUEUE_INDEX (con->insn) == QUEUE_READY)
3518 model_promote_insn (con);
3519 }
3520
3521 /* If this is a true dependency, or if there are no remaining
3522 dependencies for CON (meaning that CON only had non-true
3523 dependencies), make sure that CON is on the worklist.
3524 We don't bother otherwise because it would tend to fill the
3525 worklist with a lot of low-priority instructions that are not
3526 yet ready to issue. */
3527 if ((con->depth > 0 || con->unscheduled_preds == 0)
3528 && QUEUE_INDEX (con->insn) == QUEUE_NOWHERE)
3529 model_add_to_worklist (con, insn, insn->next);
3530 }
3531 }
3532 }
3533
3534 /* Give INSN a higher priority than any current instruction, then give
3535 unscheduled predecessors of INSN a higher priority still. If any of
3536 those predecessors are not on the model worklist, do the same for its
3537 predecessors, and so on. */
3538
3539 static void
3540 model_promote_predecessors (struct model_insn_info *insn)
3541 {
3542 struct model_insn_info *pro, *first;
3543 sd_iterator_def sd_it;
3544 dep_t dep;
3545
3546 if (sched_verbose >= 7)
3547 fprintf (sched_dump, ";;\t+--- priority of %d = %d, priority of",
3548 INSN_UID (insn->insn), model_next_priority);
3549 insn->model_priority = model_next_priority++;
3550 model_remove_from_worklist (insn);
3551 model_add_to_worklist_at (insn, NULL);
3552
3553 first = NULL;
3554 for (;;)
3555 {
3556 FOR_EACH_DEP (insn->insn, SD_LIST_HARD_BACK, sd_it, dep)
3557 {
3558 pro = MODEL_INSN_INFO (DEP_PRO (dep));
3559 /* The first test is to ignore debug instructions, and instructions
3560 from other blocks. */
3561 if (pro->insn
3562 && pro->model_priority != model_next_priority
3563 && QUEUE_INDEX (pro->insn) != QUEUE_SCHEDULED)
3564 {
3565 pro->model_priority = model_next_priority;
3566 if (sched_verbose >= 7)
3567 fprintf (sched_dump, " %d", INSN_UID (pro->insn));
3568 if (QUEUE_INDEX (pro->insn) == QUEUE_READY)
3569 {
3570 /* PRO is already in the worklist, but it now has
3571 a higher priority than before. Move it at the
3572 appropriate place. */
3573 model_remove_from_worklist (pro);
3574 model_add_to_worklist (pro, NULL, model_worklist);
3575 }
3576 else
3577 {
3578 /* PRO isn't in the worklist. Recursively process
3579 its predecessors until we find one that is. */
3580 pro->next = first;
3581 first = pro;
3582 }
3583 }
3584 }
3585 if (!first)
3586 break;
3587 insn = first;
3588 first = insn->next;
3589 }
3590 if (sched_verbose >= 7)
3591 fprintf (sched_dump, " = %d\n", model_next_priority);
3592 model_next_priority++;
3593 }
3594
3595 /* Pick one instruction from model_worklist and process it. */
3596
3597 static void
3598 model_choose_insn (void)
3599 {
3600 struct model_insn_info *insn, *fallback;
3601 int count;
3602
3603 if (sched_verbose >= 7)
3604 {
3605 fprintf (sched_dump, ";;\t+--- worklist:\n");
3606 insn = model_worklist;
3607 count = MAX_SCHED_READY_INSNS;
3608 while (count > 0 && insn)
3609 {
3610 fprintf (sched_dump, ";;\t+--- %d [%d, %d, %d, %d]\n",
3611 INSN_UID (insn->insn), insn->model_priority,
3612 insn->depth + insn->alap, insn->depth,
3613 INSN_PRIORITY (insn->insn));
3614 count--;
3615 insn = insn->next;
3616 }
3617 }
3618
3619 /* Look for a ready instruction whose model_classify_priority is zero
3620 or negative, picking the highest-priority one. Adding such an
3621 instruction to the schedule now should do no harm, and may actually
3622 do some good.
3623
3624 Failing that, see whether there is an instruction with the highest
3625 extant model_priority that is not yet ready, but which would reduce
3626 pressure if it became ready. This is designed to catch cases like:
3627
3628 (set (mem (reg R1)) (reg R2))
3629
3630 where the instruction is the last remaining use of R1 and where the
3631 value of R2 is not yet available (or vice versa). The death of R1
3632 means that this instruction already reduces pressure. It is of
3633 course possible that the computation of R2 involves other registers
3634 that are hard to kill, but such cases are rare enough for this
3635 heuristic to be a win in general.
3636
3637 Failing that, just pick the highest-priority instruction in the
3638 worklist. */
3639 count = MAX_SCHED_READY_INSNS;
3640 insn = model_worklist;
3641 fallback = 0;
3642 for (;;)
3643 {
3644 if (count == 0 || !insn)
3645 {
3646 insn = fallback ? fallback : model_worklist;
3647 break;
3648 }
3649 if (insn->unscheduled_preds)
3650 {
3651 if (model_worklist->model_priority == insn->model_priority
3652 && !fallback
3653 && model_classify_pressure (insn) < 0)
3654 fallback = insn;
3655 }
3656 else
3657 {
3658 if (model_classify_pressure (insn) <= 0)
3659 break;
3660 }
3661 count--;
3662 insn = insn->next;
3663 }
3664
3665 if (sched_verbose >= 7 && insn != model_worklist)
3666 {
3667 if (insn->unscheduled_preds)
3668 fprintf (sched_dump, ";;\t+--- promoting insn %d, with dependencies\n",
3669 INSN_UID (insn->insn));
3670 else
3671 fprintf (sched_dump, ";;\t+--- promoting insn %d, which is ready\n",
3672 INSN_UID (insn->insn));
3673 }
3674 if (insn->unscheduled_preds)
3675 /* INSN isn't yet ready to issue. Give all its predecessors the
3676 highest priority. */
3677 model_promote_predecessors (insn);
3678 else
3679 {
3680 /* INSN is ready. Add it to the end of model_schedule and
3681 process its successors. */
3682 model_add_successors_to_worklist (insn);
3683 model_remove_from_worklist (insn);
3684 model_add_to_schedule (insn->insn);
3685 model_record_pressures (insn);
3686 update_register_pressure (insn->insn);
3687 }
3688 }
3689
3690 /* Restore all QUEUE_INDEXs to the values that they had before
3691 model_start_schedule was called. */
3692
3693 static void
3694 model_reset_queue_indices (void)
3695 {
3696 unsigned int i;
3697 rtx_insn *insn;
3698
3699 FOR_EACH_VEC_ELT (model_schedule, i, insn)
3700 QUEUE_INDEX (insn) = MODEL_INSN_INFO (insn)->old_queue;
3701 }
3702
3703 /* We have calculated the model schedule and spill costs. Print a summary
3704 to sched_dump. */
3705
3706 static void
3707 model_dump_pressure_summary (void)
3708 {
3709 int pci, cl;
3710
3711 fprintf (sched_dump, ";; Pressure summary:");
3712 for (pci = 0; pci < ira_pressure_classes_num; pci++)
3713 {
3714 cl = ira_pressure_classes[pci];
3715 fprintf (sched_dump, " %s:%d", reg_class_names[cl],
3716 model_before_pressure.limits[pci].pressure);
3717 }
3718 fprintf (sched_dump, "\n\n");
3719 }
3720
3721 /* Initialize the SCHED_PRESSURE_MODEL information for the current
3722 scheduling region. */
3723
3724 static void
3725 model_start_schedule (void)
3726 {
3727 basic_block bb;
3728
3729 model_next_priority = 1;
3730 model_schedule.create (sched_max_luid);
3731 model_insns = XCNEWVEC (struct model_insn_info, sched_max_luid);
3732
3733 bb = BLOCK_FOR_INSN (NEXT_INSN (current_sched_info->prev_head));
3734 initiate_reg_pressure_info (df_get_live_in (bb));
3735
3736 model_analyze_insns ();
3737 model_init_pressure_group (&model_before_pressure);
3738 while (model_worklist)
3739 model_choose_insn ();
3740 gcc_assert (model_num_insns == (int) model_schedule.length ());
3741 if (sched_verbose >= 2)
3742 fprintf (sched_dump, "\n");
3743
3744 model_record_final_pressures (&model_before_pressure);
3745 model_reset_queue_indices ();
3746
3747 XDELETEVEC (model_insns);
3748
3749 model_curr_point = 0;
3750 initiate_reg_pressure_info (df_get_live_in (bb));
3751 if (sched_verbose >= 1)
3752 model_dump_pressure_summary ();
3753 }
3754
3755 /* Free the information associated with GROUP. */
3756
3757 static void
3758 model_finalize_pressure_group (struct model_pressure_group *group)
3759 {
3760 XDELETEVEC (group->model);
3761 }
3762
3763 /* Free the information created by model_start_schedule. */
3764
3765 static void
3766 model_end_schedule (void)
3767 {
3768 model_finalize_pressure_group (&model_before_pressure);
3769 model_schedule.release ();
3770 }
3771 \f
3772 /* A structure that holds local state for the loop in schedule_block. */
3773 struct sched_block_state
3774 {
3775 /* True if no real insns have been scheduled in the current cycle. */
3776 bool first_cycle_insn_p;
3777 /* True if a shadow insn has been scheduled in the current cycle, which
3778 means that no more normal insns can be issued. */
3779 bool shadows_only_p;
3780 /* True if we're winding down a modulo schedule, which means that we only
3781 issue insns with INSN_EXACT_TICK set. */
3782 bool modulo_epilogue;
3783 /* Initialized with the machine's issue rate every cycle, and updated
3784 by calls to the variable_issue hook. */
3785 int can_issue_more;
3786 };
3787
3788 /* INSN is the "currently executing insn". Launch each insn which was
3789 waiting on INSN. READY is the ready list which contains the insns
3790 that are ready to fire. CLOCK is the current cycle. The function
3791 returns necessary cycle advance after issuing the insn (it is not
3792 zero for insns in a schedule group). */
3793
3794 static int
3795 schedule_insn (rtx_insn *insn)
3796 {
3797 sd_iterator_def sd_it;
3798 dep_t dep;
3799 int i;
3800 int advance = 0;
3801
3802 if (sched_verbose >= 1)
3803 {
3804 struct reg_pressure_data *pressure_info;
3805 fprintf (sched_dump, ";;\t%3i--> %s %-40s:",
3806 clock_var, (*current_sched_info->print_insn) (insn, 1),
3807 str_pattern_slim (PATTERN (insn)));
3808
3809 if (recog_memoized (insn) < 0)
3810 fprintf (sched_dump, "nothing");
3811 else
3812 print_reservation (sched_dump, insn);
3813 pressure_info = INSN_REG_PRESSURE (insn);
3814 if (pressure_info != NULL)
3815 {
3816 fputc (':', sched_dump);
3817 for (i = 0; i < ira_pressure_classes_num; i++)
3818 fprintf (sched_dump, "%s%s%+d(%d)",
3819 scheduled_insns.length () > 1
3820 && INSN_LUID (insn)
3821 < INSN_LUID (scheduled_insns[scheduled_insns.length () - 2]) ? "@" : "",
3822 reg_class_names[ira_pressure_classes[i]],
3823 pressure_info[i].set_increase, pressure_info[i].change);
3824 }
3825 if (sched_pressure == SCHED_PRESSURE_MODEL
3826 && model_curr_point < model_num_insns
3827 && model_index (insn) == model_curr_point)
3828 fprintf (sched_dump, ":model %d", model_curr_point);
3829 fputc ('\n', sched_dump);
3830 }
3831
3832 if (sched_pressure == SCHED_PRESSURE_WEIGHTED && !DEBUG_INSN_P (insn))
3833 update_reg_and_insn_max_reg_pressure (insn);
3834
3835 /* Scheduling instruction should have all its dependencies resolved and
3836 should have been removed from the ready list. */
3837 gcc_assert (sd_lists_empty_p (insn, SD_LIST_HARD_BACK));
3838
3839 /* Reset debug insns invalidated by moving this insn. */
3840 if (MAY_HAVE_DEBUG_INSNS && !DEBUG_INSN_P (insn))
3841 for (sd_it = sd_iterator_start (insn, SD_LIST_BACK);
3842 sd_iterator_cond (&sd_it, &dep);)
3843 {
3844 rtx_insn *dbg = DEP_PRO (dep);
3845 struct reg_use_data *use, *next;
3846
3847 if (DEP_STATUS (dep) & DEP_CANCELLED)
3848 {
3849 sd_iterator_next (&sd_it);
3850 continue;
3851 }
3852
3853 gcc_assert (DEBUG_INSN_P (dbg));
3854
3855 if (sched_verbose >= 6)
3856 fprintf (sched_dump, ";;\t\tresetting: debug insn %d\n",
3857 INSN_UID (dbg));
3858
3859 /* ??? Rather than resetting the debug insn, we might be able
3860 to emit a debug temp before the just-scheduled insn, but
3861 this would involve checking that the expression at the
3862 point of the debug insn is equivalent to the expression
3863 before the just-scheduled insn. They might not be: the
3864 expression in the debug insn may depend on other insns not
3865 yet scheduled that set MEMs, REGs or even other debug
3866 insns. It's not clear that attempting to preserve debug
3867 information in these cases is worth the effort, given how
3868 uncommon these resets are and the likelihood that the debug
3869 temps introduced won't survive the schedule change. */
3870 INSN_VAR_LOCATION_LOC (dbg) = gen_rtx_UNKNOWN_VAR_LOC ();
3871 df_insn_rescan (dbg);
3872
3873 /* Unknown location doesn't use any registers. */
3874 for (use = INSN_REG_USE_LIST (dbg); use != NULL; use = next)
3875 {
3876 struct reg_use_data *prev = use;
3877
3878 /* Remove use from the cyclic next_regno_use chain first. */
3879 while (prev->next_regno_use != use)
3880 prev = prev->next_regno_use;
3881 prev->next_regno_use = use->next_regno_use;
3882 next = use->next_insn_use;
3883 free (use);
3884 }
3885 INSN_REG_USE_LIST (dbg) = NULL;
3886
3887 /* We delete rather than resolve these deps, otherwise we
3888 crash in sched_free_deps(), because forward deps are
3889 expected to be released before backward deps. */
3890 sd_delete_dep (sd_it);
3891 }
3892
3893 gcc_assert (QUEUE_INDEX (insn) == QUEUE_NOWHERE);
3894 QUEUE_INDEX (insn) = QUEUE_SCHEDULED;
3895
3896 if (sched_pressure == SCHED_PRESSURE_MODEL
3897 && model_curr_point < model_num_insns
3898 && NONDEBUG_INSN_P (insn))
3899 {
3900 if (model_index (insn) == model_curr_point)
3901 do
3902 model_curr_point++;
3903 while (model_curr_point < model_num_insns
3904 && (QUEUE_INDEX (MODEL_INSN (model_curr_point))
3905 == QUEUE_SCHEDULED));
3906 else
3907 model_recompute (insn);
3908 model_update_limit_points ();
3909 update_register_pressure (insn);
3910 if (sched_verbose >= 2)
3911 print_curr_reg_pressure ();
3912 }
3913
3914 gcc_assert (INSN_TICK (insn) >= MIN_TICK);
3915 if (INSN_TICK (insn) > clock_var)
3916 /* INSN has been prematurely moved from the queue to the ready list.
3917 This is possible only if following flag is set. */
3918 gcc_assert (flag_sched_stalled_insns);
3919
3920 /* ??? Probably, if INSN is scheduled prematurely, we should leave
3921 INSN_TICK untouched. This is a machine-dependent issue, actually. */
3922 INSN_TICK (insn) = clock_var;
3923
3924 check_clobbered_conditions (insn);
3925
3926 /* Update dependent instructions. First, see if by scheduling this insn
3927 now we broke a dependence in a way that requires us to change another
3928 insn. */
3929 for (sd_it = sd_iterator_start (insn, SD_LIST_SPEC_BACK);
3930 sd_iterator_cond (&sd_it, &dep); sd_iterator_next (&sd_it))
3931 {
3932 struct dep_replacement *desc = DEP_REPLACE (dep);
3933 rtx_insn *pro = DEP_PRO (dep);
3934 if (QUEUE_INDEX (pro) != QUEUE_SCHEDULED
3935 && desc != NULL && desc->insn == pro)
3936 apply_replacement (dep, false);
3937 }
3938
3939 /* Go through and resolve forward dependencies. */
3940 for (sd_it = sd_iterator_start (insn, SD_LIST_FORW);
3941 sd_iterator_cond (&sd_it, &dep);)
3942 {
3943 rtx_insn *next = DEP_CON (dep);
3944 bool cancelled = (DEP_STATUS (dep) & DEP_CANCELLED) != 0;
3945
3946 /* Resolve the dependence between INSN and NEXT.
3947 sd_resolve_dep () moves current dep to another list thus
3948 advancing the iterator. */
3949 sd_resolve_dep (sd_it);
3950
3951 if (cancelled)
3952 {
3953 if (must_restore_pattern_p (next, dep))
3954 restore_pattern (dep, false);
3955 continue;
3956 }
3957
3958 /* Don't bother trying to mark next as ready if insn is a debug
3959 insn. If insn is the last hard dependency, it will have
3960 already been discounted. */
3961 if (DEBUG_INSN_P (insn) && !DEBUG_INSN_P (next))
3962 continue;
3963
3964 if (!IS_SPECULATION_BRANCHY_CHECK_P (insn))
3965 {
3966 int effective_cost;
3967
3968 effective_cost = try_ready (next);
3969
3970 if (effective_cost >= 0
3971 && SCHED_GROUP_P (next)
3972 && advance < effective_cost)
3973 advance = effective_cost;
3974 }
3975 else
3976 /* Check always has only one forward dependence (to the first insn in
3977 the recovery block), therefore, this will be executed only once. */
3978 {
3979 gcc_assert (sd_lists_empty_p (insn, SD_LIST_FORW));
3980 fix_recovery_deps (RECOVERY_BLOCK (insn));
3981 }
3982 }
3983
3984 /* Annotate the instruction with issue information -- TImode
3985 indicates that the instruction is expected not to be able
3986 to issue on the same cycle as the previous insn. A machine
3987 may use this information to decide how the instruction should
3988 be aligned. */
3989 if (issue_rate > 1
3990 && GET_CODE (PATTERN (insn)) != USE
3991 && GET_CODE (PATTERN (insn)) != CLOBBER
3992 && !DEBUG_INSN_P (insn))
3993 {
3994 if (reload_completed)
3995 PUT_MODE (insn, clock_var > last_clock_var ? TImode : VOIDmode);
3996 last_clock_var = clock_var;
3997 }
3998
3999 if (nonscheduled_insns_begin != NULL_RTX)
4000 /* Indicate to debug counters that INSN is scheduled. */
4001 nonscheduled_insns_begin = insn;
4002
4003 return advance;
4004 }
4005
4006 /* Functions for handling of notes. */
4007
4008 /* Add note list that ends on FROM_END to the end of TO_ENDP. */
4009 void
4010 concat_note_lists (rtx_insn *from_end, rtx_insn **to_endp)
4011 {
4012 rtx_insn *from_start;
4013
4014 /* It's easy when have nothing to concat. */
4015 if (from_end == NULL)
4016 return;
4017
4018 /* It's also easy when destination is empty. */
4019 if (*to_endp == NULL)
4020 {
4021 *to_endp = from_end;
4022 return;
4023 }
4024
4025 from_start = from_end;
4026 while (PREV_INSN (from_start) != NULL)
4027 from_start = PREV_INSN (from_start);
4028
4029 SET_PREV_INSN (from_start) = *to_endp;
4030 SET_NEXT_INSN (*to_endp) = from_start;
4031 *to_endp = from_end;
4032 }
4033
4034 /* Delete notes between HEAD and TAIL and put them in the chain
4035 of notes ended by NOTE_LIST. */
4036 void
4037 remove_notes (rtx_insn *head, rtx_insn *tail)
4038 {
4039 rtx_insn *next_tail, *insn, *next;
4040
4041 note_list = 0;
4042 if (head == tail && !INSN_P (head))
4043 return;
4044
4045 next_tail = NEXT_INSN (tail);
4046 for (insn = head; insn != next_tail; insn = next)
4047 {
4048 next = NEXT_INSN (insn);
4049 if (!NOTE_P (insn))
4050 continue;
4051
4052 switch (NOTE_KIND (insn))
4053 {
4054 case NOTE_INSN_BASIC_BLOCK:
4055 continue;
4056
4057 case NOTE_INSN_EPILOGUE_BEG:
4058 if (insn != tail)
4059 {
4060 remove_insn (insn);
4061 add_reg_note (next, REG_SAVE_NOTE,
4062 GEN_INT (NOTE_INSN_EPILOGUE_BEG));
4063 break;
4064 }
4065 /* FALLTHRU */
4066
4067 default:
4068 remove_insn (insn);
4069
4070 /* Add the note to list that ends at NOTE_LIST. */
4071 SET_PREV_INSN (insn) = note_list;
4072 SET_NEXT_INSN (insn) = NULL_RTX;
4073 if (note_list)
4074 SET_NEXT_INSN (note_list) = insn;
4075 note_list = insn;
4076 break;
4077 }
4078
4079 gcc_assert ((sel_sched_p () || insn != tail) && insn != head);
4080 }
4081 }
4082
4083 /* A structure to record enough data to allow us to backtrack the scheduler to
4084 a previous state. */
4085 struct haifa_saved_data
4086 {
4087 /* Next entry on the list. */
4088 struct haifa_saved_data *next;
4089
4090 /* Backtracking is associated with scheduling insns that have delay slots.
4091 DELAY_PAIR points to the structure that contains the insns involved, and
4092 the number of cycles between them. */
4093 struct delay_pair *delay_pair;
4094
4095 /* Data used by the frontend (e.g. sched-ebb or sched-rgn). */
4096 void *fe_saved_data;
4097 /* Data used by the backend. */
4098 void *be_saved_data;
4099
4100 /* Copies of global state. */
4101 int clock_var, last_clock_var;
4102 struct ready_list ready;
4103 state_t curr_state;
4104
4105 rtx_insn *last_scheduled_insn;
4106 rtx last_nondebug_scheduled_insn;
4107 rtx_insn *nonscheduled_insns_begin;
4108 int cycle_issued_insns;
4109
4110 /* Copies of state used in the inner loop of schedule_block. */
4111 struct sched_block_state sched_block;
4112
4113 /* We don't need to save q_ptr, as its value is arbitrary and we can set it
4114 to 0 when restoring. */
4115 int q_size;
4116 rtx_insn_list **insn_queue;
4117
4118 /* Describe pattern replacements that occurred since this backtrack point
4119 was queued. */
4120 vec<dep_t> replacement_deps;
4121 vec<int> replace_apply;
4122
4123 /* A copy of the next-cycle replacement vectors at the time of the backtrack
4124 point. */
4125 vec<dep_t> next_cycle_deps;
4126 vec<int> next_cycle_apply;
4127 };
4128
4129 /* A record, in reverse order, of all scheduled insns which have delay slots
4130 and may require backtracking. */
4131 static struct haifa_saved_data *backtrack_queue;
4132
4133 /* For every dependency of INSN, set the FEEDS_BACKTRACK_INSN bit according
4134 to SET_P. */
4135 static void
4136 mark_backtrack_feeds (rtx insn, int set_p)
4137 {
4138 sd_iterator_def sd_it;
4139 dep_t dep;
4140 FOR_EACH_DEP (insn, SD_LIST_HARD_BACK, sd_it, dep)
4141 {
4142 FEEDS_BACKTRACK_INSN (DEP_PRO (dep)) = set_p;
4143 }
4144 }
4145
4146 /* Save the current scheduler state so that we can backtrack to it
4147 later if necessary. PAIR gives the insns that make it necessary to
4148 save this point. SCHED_BLOCK is the local state of schedule_block
4149 that need to be saved. */
4150 static void
4151 save_backtrack_point (struct delay_pair *pair,
4152 struct sched_block_state sched_block)
4153 {
4154 int i;
4155 struct haifa_saved_data *save = XNEW (struct haifa_saved_data);
4156
4157 save->curr_state = xmalloc (dfa_state_size);
4158 memcpy (save->curr_state, curr_state, dfa_state_size);
4159
4160 save->ready.first = ready.first;
4161 save->ready.n_ready = ready.n_ready;
4162 save->ready.n_debug = ready.n_debug;
4163 save->ready.veclen = ready.veclen;
4164 save->ready.vec = XNEWVEC (rtx_insn *, ready.veclen);
4165 memcpy (save->ready.vec, ready.vec, ready.veclen * sizeof (rtx));
4166
4167 save->insn_queue = XNEWVEC (rtx_insn_list *, max_insn_queue_index + 1);
4168 save->q_size = q_size;
4169 for (i = 0; i <= max_insn_queue_index; i++)
4170 {
4171 int q = NEXT_Q_AFTER (q_ptr, i);
4172 save->insn_queue[i] = copy_INSN_LIST (insn_queue[q]);
4173 }
4174
4175 save->clock_var = clock_var;
4176 save->last_clock_var = last_clock_var;
4177 save->cycle_issued_insns = cycle_issued_insns;
4178 save->last_scheduled_insn = last_scheduled_insn;
4179 save->last_nondebug_scheduled_insn = last_nondebug_scheduled_insn;
4180 save->nonscheduled_insns_begin = nonscheduled_insns_begin;
4181
4182 save->sched_block = sched_block;
4183
4184 save->replacement_deps.create (0);
4185 save->replace_apply.create (0);
4186 save->next_cycle_deps = next_cycle_replace_deps.copy ();
4187 save->next_cycle_apply = next_cycle_apply.copy ();
4188
4189 if (current_sched_info->save_state)
4190 save->fe_saved_data = (*current_sched_info->save_state) ();
4191
4192 if (targetm.sched.alloc_sched_context)
4193 {
4194 save->be_saved_data = targetm.sched.alloc_sched_context ();
4195 targetm.sched.init_sched_context (save->be_saved_data, false);
4196 }
4197 else
4198 save->be_saved_data = NULL;
4199
4200 save->delay_pair = pair;
4201
4202 save->next = backtrack_queue;
4203 backtrack_queue = save;
4204
4205 while (pair)
4206 {
4207 mark_backtrack_feeds (pair->i2, 1);
4208 INSN_TICK (pair->i2) = INVALID_TICK;
4209 INSN_EXACT_TICK (pair->i2) = clock_var + pair_delay (pair);
4210 SHADOW_P (pair->i2) = pair->stages == 0;
4211 pair = pair->next_same_i1;
4212 }
4213 }
4214
4215 /* Walk the ready list and all queues. If any insns have unresolved backwards
4216 dependencies, these must be cancelled deps, broken by predication. Set or
4217 clear (depending on SET) the DEP_CANCELLED bit in DEP_STATUS. */
4218
4219 static void
4220 toggle_cancelled_flags (bool set)
4221 {
4222 int i;
4223 sd_iterator_def sd_it;
4224 dep_t dep;
4225
4226 if (ready.n_ready > 0)
4227 {
4228 rtx_insn **first = ready_lastpos (&ready);
4229 for (i = 0; i < ready.n_ready; i++)
4230 FOR_EACH_DEP (first[i], SD_LIST_BACK, sd_it, dep)
4231 if (!DEBUG_INSN_P (DEP_PRO (dep)))
4232 {
4233 if (set)
4234 DEP_STATUS (dep) |= DEP_CANCELLED;
4235 else
4236 DEP_STATUS (dep) &= ~DEP_CANCELLED;
4237 }
4238 }
4239 for (i = 0; i <= max_insn_queue_index; i++)
4240 {
4241 int q = NEXT_Q_AFTER (q_ptr, i);
4242 rtx_insn_list *link;
4243 for (link = insn_queue[q]; link; link = link->next ())
4244 {
4245 rtx_insn *insn = link->insn ();
4246 FOR_EACH_DEP (insn, SD_LIST_BACK, sd_it, dep)
4247 if (!DEBUG_INSN_P (DEP_PRO (dep)))
4248 {
4249 if (set)
4250 DEP_STATUS (dep) |= DEP_CANCELLED;
4251 else
4252 DEP_STATUS (dep) &= ~DEP_CANCELLED;
4253 }
4254 }
4255 }
4256 }
4257
4258 /* Undo the replacements that have occurred after backtrack point SAVE
4259 was placed. */
4260 static void
4261 undo_replacements_for_backtrack (struct haifa_saved_data *save)
4262 {
4263 while (!save->replacement_deps.is_empty ())
4264 {
4265 dep_t dep = save->replacement_deps.pop ();
4266 int apply_p = save->replace_apply.pop ();
4267
4268 if (apply_p)
4269 restore_pattern (dep, true);
4270 else
4271 apply_replacement (dep, true);
4272 }
4273 save->replacement_deps.release ();
4274 save->replace_apply.release ();
4275 }
4276
4277 /* Pop entries from the SCHEDULED_INSNS vector up to and including INSN.
4278 Restore their dependencies to an unresolved state, and mark them as
4279 queued nowhere. */
4280
4281 static void
4282 unschedule_insns_until (rtx insn)
4283 {
4284 auto_vec<rtx_insn *> recompute_vec;
4285
4286 /* Make two passes over the insns to be unscheduled. First, we clear out
4287 dependencies and other trivial bookkeeping. */
4288 for (;;)
4289 {
4290 rtx_insn *last;
4291 sd_iterator_def sd_it;
4292 dep_t dep;
4293
4294 last = scheduled_insns.pop ();
4295
4296 /* This will be changed by restore_backtrack_point if the insn is in
4297 any queue. */
4298 QUEUE_INDEX (last) = QUEUE_NOWHERE;
4299 if (last != insn)
4300 INSN_TICK (last) = INVALID_TICK;
4301
4302 if (modulo_ii > 0 && INSN_UID (last) < modulo_iter0_max_uid)
4303 modulo_insns_scheduled--;
4304
4305 for (sd_it = sd_iterator_start (last, SD_LIST_RES_FORW);
4306 sd_iterator_cond (&sd_it, &dep);)
4307 {
4308 rtx_insn *con = DEP_CON (dep);
4309 sd_unresolve_dep (sd_it);
4310 if (!MUST_RECOMPUTE_SPEC_P (con))
4311 {
4312 MUST_RECOMPUTE_SPEC_P (con) = 1;
4313 recompute_vec.safe_push (con);
4314 }
4315 }
4316
4317 if (last == insn)
4318 break;
4319 }
4320
4321 /* A second pass, to update ready and speculation status for insns
4322 depending on the unscheduled ones. The first pass must have
4323 popped the scheduled_insns vector up to the point where we
4324 restart scheduling, as recompute_todo_spec requires it to be
4325 up-to-date. */
4326 while (!recompute_vec.is_empty ())
4327 {
4328 rtx_insn *con;
4329
4330 con = recompute_vec.pop ();
4331 MUST_RECOMPUTE_SPEC_P (con) = 0;
4332 if (!sd_lists_empty_p (con, SD_LIST_HARD_BACK))
4333 {
4334 TODO_SPEC (con) = HARD_DEP;
4335 INSN_TICK (con) = INVALID_TICK;
4336 if (PREDICATED_PAT (con) != NULL_RTX)
4337 haifa_change_pattern (con, ORIG_PAT (con));
4338 }
4339 else if (QUEUE_INDEX (con) != QUEUE_SCHEDULED)
4340 TODO_SPEC (con) = recompute_todo_spec (con, true);
4341 }
4342 }
4343
4344 /* Restore scheduler state from the topmost entry on the backtracking queue.
4345 PSCHED_BLOCK_P points to the local data of schedule_block that we must
4346 overwrite with the saved data.
4347 The caller must already have called unschedule_insns_until. */
4348
4349 static void
4350 restore_last_backtrack_point (struct sched_block_state *psched_block)
4351 {
4352 int i;
4353 struct haifa_saved_data *save = backtrack_queue;
4354
4355 backtrack_queue = save->next;
4356
4357 if (current_sched_info->restore_state)
4358 (*current_sched_info->restore_state) (save->fe_saved_data);
4359
4360 if (targetm.sched.alloc_sched_context)
4361 {
4362 targetm.sched.set_sched_context (save->be_saved_data);
4363 targetm.sched.free_sched_context (save->be_saved_data);
4364 }
4365
4366 /* Do this first since it clobbers INSN_TICK of the involved
4367 instructions. */
4368 undo_replacements_for_backtrack (save);
4369
4370 /* Clear the QUEUE_INDEX of everything in the ready list or one
4371 of the queues. */
4372 if (ready.n_ready > 0)
4373 {
4374 rtx_insn **first = ready_lastpos (&ready);
4375 for (i = 0; i < ready.n_ready; i++)
4376 {
4377 rtx_insn *insn = first[i];
4378 QUEUE_INDEX (insn) = QUEUE_NOWHERE;
4379 INSN_TICK (insn) = INVALID_TICK;
4380 }
4381 }
4382 for (i = 0; i <= max_insn_queue_index; i++)
4383 {
4384 int q = NEXT_Q_AFTER (q_ptr, i);
4385
4386 for (rtx_insn_list *link = insn_queue[q]; link; link = link->next ())
4387 {
4388 rtx_insn *x = link->insn ();
4389 QUEUE_INDEX (x) = QUEUE_NOWHERE;
4390 INSN_TICK (x) = INVALID_TICK;
4391 }
4392 free_INSN_LIST_list (&insn_queue[q]);
4393 }
4394
4395 free (ready.vec);
4396 ready = save->ready;
4397
4398 if (ready.n_ready > 0)
4399 {
4400 rtx_insn **first = ready_lastpos (&ready);
4401 for (i = 0; i < ready.n_ready; i++)
4402 {
4403 rtx_insn *insn = first[i];
4404 QUEUE_INDEX (insn) = QUEUE_READY;
4405 TODO_SPEC (insn) = recompute_todo_spec (insn, true);
4406 INSN_TICK (insn) = save->clock_var;
4407 }
4408 }
4409
4410 q_ptr = 0;
4411 q_size = save->q_size;
4412 for (i = 0; i <= max_insn_queue_index; i++)
4413 {
4414 int q = NEXT_Q_AFTER (q_ptr, i);
4415
4416 insn_queue[q] = save->insn_queue[q];
4417
4418 for (rtx_insn_list *link = insn_queue[q]; link; link = link->next ())
4419 {
4420 rtx_insn *x = link->insn ();
4421 QUEUE_INDEX (x) = i;
4422 TODO_SPEC (x) = recompute_todo_spec (x, true);
4423 INSN_TICK (x) = save->clock_var + i;
4424 }
4425 }
4426 free (save->insn_queue);
4427
4428 toggle_cancelled_flags (true);
4429
4430 clock_var = save->clock_var;
4431 last_clock_var = save->last_clock_var;
4432 cycle_issued_insns = save->cycle_issued_insns;
4433 last_scheduled_insn = save->last_scheduled_insn;
4434 last_nondebug_scheduled_insn = save->last_nondebug_scheduled_insn;
4435 nonscheduled_insns_begin = save->nonscheduled_insns_begin;
4436
4437 *psched_block = save->sched_block;
4438
4439 memcpy (curr_state, save->curr_state, dfa_state_size);
4440 free (save->curr_state);
4441
4442 mark_backtrack_feeds (save->delay_pair->i2, 0);
4443
4444 gcc_assert (next_cycle_replace_deps.is_empty ());
4445 next_cycle_replace_deps = save->next_cycle_deps.copy ();
4446 next_cycle_apply = save->next_cycle_apply.copy ();
4447
4448 free (save);
4449
4450 for (save = backtrack_queue; save; save = save->next)
4451 {
4452 mark_backtrack_feeds (save->delay_pair->i2, 1);
4453 }
4454 }
4455
4456 /* Discard all data associated with the topmost entry in the backtrack
4457 queue. If RESET_TICK is false, we just want to free the data. If true,
4458 we are doing this because we discovered a reason to backtrack. In the
4459 latter case, also reset the INSN_TICK for the shadow insn. */
4460 static void
4461 free_topmost_backtrack_point (bool reset_tick)
4462 {
4463 struct haifa_saved_data *save = backtrack_queue;
4464 int i;
4465
4466 backtrack_queue = save->next;
4467
4468 if (reset_tick)
4469 {
4470 struct delay_pair *pair = save->delay_pair;
4471 while (pair)
4472 {
4473 INSN_TICK (pair->i2) = INVALID_TICK;
4474 INSN_EXACT_TICK (pair->i2) = INVALID_TICK;
4475 pair = pair->next_same_i1;
4476 }
4477 undo_replacements_for_backtrack (save);
4478 }
4479 else
4480 {
4481 save->replacement_deps.release ();
4482 save->replace_apply.release ();
4483 }
4484
4485 if (targetm.sched.free_sched_context)
4486 targetm.sched.free_sched_context (save->be_saved_data);
4487 if (current_sched_info->restore_state)
4488 free (save->fe_saved_data);
4489 for (i = 0; i <= max_insn_queue_index; i++)
4490 free_INSN_LIST_list (&save->insn_queue[i]);
4491 free (save->insn_queue);
4492 free (save->curr_state);
4493 free (save->ready.vec);
4494 free (save);
4495 }
4496
4497 /* Free the entire backtrack queue. */
4498 static void
4499 free_backtrack_queue (void)
4500 {
4501 while (backtrack_queue)
4502 free_topmost_backtrack_point (false);
4503 }
4504
4505 /* Apply a replacement described by DESC. If IMMEDIATELY is false, we
4506 may have to postpone the replacement until the start of the next cycle,
4507 at which point we will be called again with IMMEDIATELY true. This is
4508 only done for machines which have instruction packets with explicit
4509 parallelism however. */
4510 static void
4511 apply_replacement (dep_t dep, bool immediately)
4512 {
4513 struct dep_replacement *desc = DEP_REPLACE (dep);
4514 if (!immediately && targetm.sched.exposed_pipeline && reload_completed)
4515 {
4516 next_cycle_replace_deps.safe_push (dep);
4517 next_cycle_apply.safe_push (1);
4518 }
4519 else
4520 {
4521 bool success;
4522
4523 if (QUEUE_INDEX (desc->insn) == QUEUE_SCHEDULED)
4524 return;
4525
4526 if (sched_verbose >= 5)
4527 fprintf (sched_dump, "applying replacement for insn %d\n",
4528 INSN_UID (desc->insn));
4529
4530 success = validate_change (desc->insn, desc->loc, desc->newval, 0);
4531 gcc_assert (success);
4532
4533 update_insn_after_change (desc->insn);
4534 if ((TODO_SPEC (desc->insn) & (HARD_DEP | DEP_POSTPONED)) == 0)
4535 fix_tick_ready (desc->insn);
4536
4537 if (backtrack_queue != NULL)
4538 {
4539 backtrack_queue->replacement_deps.safe_push (dep);
4540 backtrack_queue->replace_apply.safe_push (1);
4541 }
4542 }
4543 }
4544
4545 /* We have determined that a pattern involved in DEP must be restored.
4546 If IMMEDIATELY is false, we may have to postpone the replacement
4547 until the start of the next cycle, at which point we will be called
4548 again with IMMEDIATELY true. */
4549 static void
4550 restore_pattern (dep_t dep, bool immediately)
4551 {
4552 rtx_insn *next = DEP_CON (dep);
4553 int tick = INSN_TICK (next);
4554
4555 /* If we already scheduled the insn, the modified version is
4556 correct. */
4557 if (QUEUE_INDEX (next) == QUEUE_SCHEDULED)
4558 return;
4559
4560 if (!immediately && targetm.sched.exposed_pipeline && reload_completed)
4561 {
4562 next_cycle_replace_deps.safe_push (dep);
4563 next_cycle_apply.safe_push (0);
4564 return;
4565 }
4566
4567
4568 if (DEP_TYPE (dep) == REG_DEP_CONTROL)
4569 {
4570 if (sched_verbose >= 5)
4571 fprintf (sched_dump, "restoring pattern for insn %d\n",
4572 INSN_UID (next));
4573 haifa_change_pattern (next, ORIG_PAT (next));
4574 }
4575 else
4576 {
4577 struct dep_replacement *desc = DEP_REPLACE (dep);
4578 bool success;
4579
4580 if (sched_verbose >= 5)
4581 fprintf (sched_dump, "restoring pattern for insn %d\n",
4582 INSN_UID (desc->insn));
4583 tick = INSN_TICK (desc->insn);
4584
4585 success = validate_change (desc->insn, desc->loc, desc->orig, 0);
4586 gcc_assert (success);
4587 update_insn_after_change (desc->insn);
4588 if (backtrack_queue != NULL)
4589 {
4590 backtrack_queue->replacement_deps.safe_push (dep);
4591 backtrack_queue->replace_apply.safe_push (0);
4592 }
4593 }
4594 INSN_TICK (next) = tick;
4595 if (TODO_SPEC (next) == DEP_POSTPONED)
4596 return;
4597
4598 if (sd_lists_empty_p (next, SD_LIST_BACK))
4599 TODO_SPEC (next) = 0;
4600 else if (!sd_lists_empty_p (next, SD_LIST_HARD_BACK))
4601 TODO_SPEC (next) = HARD_DEP;
4602 }
4603
4604 /* Perform pattern replacements that were queued up until the next
4605 cycle. */
4606 static void
4607 perform_replacements_new_cycle (void)
4608 {
4609 int i;
4610 dep_t dep;
4611 FOR_EACH_VEC_ELT (next_cycle_replace_deps, i, dep)
4612 {
4613 int apply_p = next_cycle_apply[i];
4614 if (apply_p)
4615 apply_replacement (dep, true);
4616 else
4617 restore_pattern (dep, true);
4618 }
4619 next_cycle_replace_deps.truncate (0);
4620 next_cycle_apply.truncate (0);
4621 }
4622
4623 /* Compute INSN_TICK_ESTIMATE for INSN. PROCESSED is a bitmap of
4624 instructions we've previously encountered, a set bit prevents
4625 recursion. BUDGET is a limit on how far ahead we look, it is
4626 reduced on recursive calls. Return true if we produced a good
4627 estimate, or false if we exceeded the budget. */
4628 static bool
4629 estimate_insn_tick (bitmap processed, rtx_insn *insn, int budget)
4630 {
4631 sd_iterator_def sd_it;
4632 dep_t dep;
4633 int earliest = INSN_TICK (insn);
4634
4635 FOR_EACH_DEP (insn, SD_LIST_BACK, sd_it, dep)
4636 {
4637 rtx_insn *pro = DEP_PRO (dep);
4638 int t;
4639
4640 if (DEP_STATUS (dep) & DEP_CANCELLED)
4641 continue;
4642
4643 if (QUEUE_INDEX (pro) == QUEUE_SCHEDULED)
4644 gcc_assert (INSN_TICK (pro) + dep_cost (dep) <= INSN_TICK (insn));
4645 else
4646 {
4647 int cost = dep_cost (dep);
4648 if (cost >= budget)
4649 return false;
4650 if (!bitmap_bit_p (processed, INSN_LUID (pro)))
4651 {
4652 if (!estimate_insn_tick (processed, pro, budget - cost))
4653 return false;
4654 }
4655 gcc_assert (INSN_TICK_ESTIMATE (pro) != INVALID_TICK);
4656 t = INSN_TICK_ESTIMATE (pro) + cost;
4657 if (earliest == INVALID_TICK || t > earliest)
4658 earliest = t;
4659 }
4660 }
4661 bitmap_set_bit (processed, INSN_LUID (insn));
4662 INSN_TICK_ESTIMATE (insn) = earliest;
4663 return true;
4664 }
4665
4666 /* Examine the pair of insns in P, and estimate (optimistically, assuming
4667 infinite resources) the cycle in which the delayed shadow can be issued.
4668 Return the number of cycles that must pass before the real insn can be
4669 issued in order to meet this constraint. */
4670 static int
4671 estimate_shadow_tick (struct delay_pair *p)
4672 {
4673 bitmap_head processed;
4674 int t;
4675 bool cutoff;
4676 bitmap_initialize (&processed, 0);
4677
4678 cutoff = !estimate_insn_tick (&processed, p->i2,
4679 max_insn_queue_index + pair_delay (p));
4680 bitmap_clear (&processed);
4681 if (cutoff)
4682 return max_insn_queue_index;
4683 t = INSN_TICK_ESTIMATE (p->i2) - (clock_var + pair_delay (p) + 1);
4684 if (t > 0)
4685 return t;
4686 return 0;
4687 }
4688
4689 /* If INSN has no unresolved backwards dependencies, add it to the schedule and
4690 recursively resolve all its forward dependencies. */
4691 static void
4692 resolve_dependencies (rtx_insn *insn)
4693 {
4694 sd_iterator_def sd_it;
4695 dep_t dep;
4696
4697 /* Don't use sd_lists_empty_p; it ignores debug insns. */
4698 if (DEPS_LIST_FIRST (INSN_HARD_BACK_DEPS (insn)) != NULL
4699 || DEPS_LIST_FIRST (INSN_SPEC_BACK_DEPS (insn)) != NULL)
4700 return;
4701
4702 if (sched_verbose >= 4)
4703 fprintf (sched_dump, ";;\tquickly resolving %d\n", INSN_UID (insn));
4704
4705 if (QUEUE_INDEX (insn) >= 0)
4706 queue_remove (insn);
4707
4708 scheduled_insns.safe_push (insn);
4709
4710 /* Update dependent instructions. */
4711 for (sd_it = sd_iterator_start (insn, SD_LIST_FORW);
4712 sd_iterator_cond (&sd_it, &dep);)
4713 {
4714 rtx_insn *next = DEP_CON (dep);
4715
4716 if (sched_verbose >= 4)
4717 fprintf (sched_dump, ";;\t\tdep %d against %d\n", INSN_UID (insn),
4718 INSN_UID (next));
4719
4720 /* Resolve the dependence between INSN and NEXT.
4721 sd_resolve_dep () moves current dep to another list thus
4722 advancing the iterator. */
4723 sd_resolve_dep (sd_it);
4724
4725 if (!IS_SPECULATION_BRANCHY_CHECK_P (insn))
4726 {
4727 resolve_dependencies (next);
4728 }
4729 else
4730 /* Check always has only one forward dependence (to the first insn in
4731 the recovery block), therefore, this will be executed only once. */
4732 {
4733 gcc_assert (sd_lists_empty_p (insn, SD_LIST_FORW));
4734 }
4735 }
4736 }
4737
4738
4739 /* Return the head and tail pointers of ebb starting at BEG and ending
4740 at END. */
4741 void
4742 get_ebb_head_tail (basic_block beg, basic_block end,
4743 rtx_insn **headp, rtx_insn **tailp)
4744 {
4745 rtx_insn *beg_head = BB_HEAD (beg);
4746 rtx_insn * beg_tail = BB_END (beg);
4747 rtx_insn * end_head = BB_HEAD (end);
4748 rtx_insn * end_tail = BB_END (end);
4749
4750 /* Don't include any notes or labels at the beginning of the BEG
4751 basic block, or notes at the end of the END basic blocks. */
4752
4753 if (LABEL_P (beg_head))
4754 beg_head = NEXT_INSN (beg_head);
4755
4756 while (beg_head != beg_tail)
4757 if (NOTE_P (beg_head))
4758 beg_head = NEXT_INSN (beg_head);
4759 else if (DEBUG_INSN_P (beg_head))
4760 {
4761 rtx_insn * note, *next;
4762
4763 for (note = NEXT_INSN (beg_head);
4764 note != beg_tail;
4765 note = next)
4766 {
4767 next = NEXT_INSN (note);
4768 if (NOTE_P (note))
4769 {
4770 if (sched_verbose >= 9)
4771 fprintf (sched_dump, "reorder %i\n", INSN_UID (note));
4772
4773 reorder_insns_nobb (note, note, PREV_INSN (beg_head));
4774
4775 if (BLOCK_FOR_INSN (note) != beg)
4776 df_insn_change_bb (note, beg);
4777 }
4778 else if (!DEBUG_INSN_P (note))
4779 break;
4780 }
4781
4782 break;
4783 }
4784 else
4785 break;
4786
4787 *headp = beg_head;
4788
4789 if (beg == end)
4790 end_head = beg_head;
4791 else if (LABEL_P (end_head))
4792 end_head = NEXT_INSN (end_head);
4793
4794 while (end_head != end_tail)
4795 if (NOTE_P (end_tail))
4796 end_tail = PREV_INSN (end_tail);
4797 else if (DEBUG_INSN_P (end_tail))
4798 {
4799 rtx_insn * note, *prev;
4800
4801 for (note = PREV_INSN (end_tail);
4802 note != end_head;
4803 note = prev)
4804 {
4805 prev = PREV_INSN (note);
4806 if (NOTE_P (note))
4807 {
4808 if (sched_verbose >= 9)
4809 fprintf (sched_dump, "reorder %i\n", INSN_UID (note));
4810
4811 reorder_insns_nobb (note, note, end_tail);
4812
4813 if (end_tail == BB_END (end))
4814 BB_END (end) = note;
4815
4816 if (BLOCK_FOR_INSN (note) != end)
4817 df_insn_change_bb (note, end);
4818 }
4819 else if (!DEBUG_INSN_P (note))
4820 break;
4821 }
4822
4823 break;
4824 }
4825 else
4826 break;
4827
4828 *tailp = end_tail;
4829 }
4830
4831 /* Return nonzero if there are no real insns in the range [ HEAD, TAIL ]. */
4832
4833 int
4834 no_real_insns_p (const rtx_insn *head, const rtx_insn *tail)
4835 {
4836 while (head != NEXT_INSN (tail))
4837 {
4838 if (!NOTE_P (head) && !LABEL_P (head))
4839 return 0;
4840 head = NEXT_INSN (head);
4841 }
4842 return 1;
4843 }
4844
4845 /* Restore-other-notes: NOTE_LIST is the end of a chain of notes
4846 previously found among the insns. Insert them just before HEAD. */
4847 rtx_insn *
4848 restore_other_notes (rtx_insn *head, basic_block head_bb)
4849 {
4850 if (note_list != 0)
4851 {
4852 rtx_insn *note_head = note_list;
4853
4854 if (head)
4855 head_bb = BLOCK_FOR_INSN (head);
4856 else
4857 head = NEXT_INSN (bb_note (head_bb));
4858
4859 while (PREV_INSN (note_head))
4860 {
4861 set_block_for_insn (note_head, head_bb);
4862 note_head = PREV_INSN (note_head);
4863 }
4864 /* In the above cycle we've missed this note. */
4865 set_block_for_insn (note_head, head_bb);
4866
4867 SET_PREV_INSN (note_head) = PREV_INSN (head);
4868 SET_NEXT_INSN (PREV_INSN (head)) = note_head;
4869 SET_PREV_INSN (head) = note_list;
4870 SET_NEXT_INSN (note_list) = head;
4871
4872 if (BLOCK_FOR_INSN (head) != head_bb)
4873 BB_END (head_bb) = note_list;
4874
4875 head = note_head;
4876 }
4877
4878 return head;
4879 }
4880
4881 /* When we know we are going to discard the schedule due to a failed attempt
4882 at modulo scheduling, undo all replacements. */
4883 static void
4884 undo_all_replacements (void)
4885 {
4886 rtx_insn *insn;
4887 int i;
4888
4889 FOR_EACH_VEC_ELT (scheduled_insns, i, insn)
4890 {
4891 sd_iterator_def sd_it;
4892 dep_t dep;
4893
4894 /* See if we must undo a replacement. */
4895 for (sd_it = sd_iterator_start (insn, SD_LIST_RES_FORW);
4896 sd_iterator_cond (&sd_it, &dep); sd_iterator_next (&sd_it))
4897 {
4898 struct dep_replacement *desc = DEP_REPLACE (dep);
4899 if (desc != NULL)
4900 validate_change (desc->insn, desc->loc, desc->orig, 0);
4901 }
4902 }
4903 }
4904
4905 /* Return first non-scheduled insn in the current scheduling block.
4906 This is mostly used for debug-counter purposes. */
4907 static rtx_insn *
4908 first_nonscheduled_insn (void)
4909 {
4910 rtx_insn *insn = (nonscheduled_insns_begin != NULL_RTX
4911 ? nonscheduled_insns_begin
4912 : current_sched_info->prev_head);
4913
4914 do
4915 {
4916 insn = next_nonnote_nondebug_insn (insn);
4917 }
4918 while (QUEUE_INDEX (insn) == QUEUE_SCHEDULED);
4919
4920 return insn;
4921 }
4922
4923 /* Move insns that became ready to fire from queue to ready list. */
4924
4925 static void
4926 queue_to_ready (struct ready_list *ready)
4927 {
4928 rtx_insn *insn;
4929 rtx_insn_list *link;
4930 rtx skip_insn;
4931
4932 q_ptr = NEXT_Q (q_ptr);
4933
4934 if (dbg_cnt (sched_insn) == false)
4935 /* If debug counter is activated do not requeue the first
4936 nonscheduled insn. */
4937 skip_insn = first_nonscheduled_insn ();
4938 else
4939 skip_insn = NULL_RTX;
4940
4941 /* Add all pending insns that can be scheduled without stalls to the
4942 ready list. */
4943 for (link = insn_queue[q_ptr]; link; link = link->next ())
4944 {
4945 insn = link->insn ();
4946 q_size -= 1;
4947
4948 if (sched_verbose >= 2)
4949 fprintf (sched_dump, ";;\t\tQ-->Ready: insn %s: ",
4950 (*current_sched_info->print_insn) (insn, 0));
4951
4952 /* If the ready list is full, delay the insn for 1 cycle.
4953 See the comment in schedule_block for the rationale. */
4954 if (!reload_completed
4955 && (ready->n_ready - ready->n_debug > MAX_SCHED_READY_INSNS
4956 || (sched_pressure == SCHED_PRESSURE_MODEL
4957 /* Limit pressure recalculations to MAX_SCHED_READY_INSNS
4958 instructions too. */
4959 && model_index (insn) > (model_curr_point
4960 + MAX_SCHED_READY_INSNS)))
4961 && !(sched_pressure == SCHED_PRESSURE_MODEL
4962 && model_curr_point < model_num_insns
4963 /* Always allow the next model instruction to issue. */
4964 && model_index (insn) == model_curr_point)
4965 && !SCHED_GROUP_P (insn)
4966 && insn != skip_insn)
4967 {
4968 if (sched_verbose >= 2)
4969 fprintf (sched_dump, "keeping in queue, ready full\n");
4970 queue_insn (insn, 1, "ready full");
4971 }
4972 else
4973 {
4974 ready_add (ready, insn, false);
4975 if (sched_verbose >= 2)
4976 fprintf (sched_dump, "moving to ready without stalls\n");
4977 }
4978 }
4979 free_INSN_LIST_list (&insn_queue[q_ptr]);
4980
4981 /* If there are no ready insns, stall until one is ready and add all
4982 of the pending insns at that point to the ready list. */
4983 if (ready->n_ready == 0)
4984 {
4985 int stalls;
4986
4987 for (stalls = 1; stalls <= max_insn_queue_index; stalls++)
4988 {
4989 if ((link = insn_queue[NEXT_Q_AFTER (q_ptr, stalls)]))
4990 {
4991 for (; link; link = link->next ())
4992 {
4993 insn = link->insn ();
4994 q_size -= 1;
4995
4996 if (sched_verbose >= 2)
4997 fprintf (sched_dump, ";;\t\tQ-->Ready: insn %s: ",
4998 (*current_sched_info->print_insn) (insn, 0));
4999
5000 ready_add (ready, insn, false);
5001 if (sched_verbose >= 2)
5002 fprintf (sched_dump, "moving to ready with %d stalls\n", stalls);
5003 }
5004 free_INSN_LIST_list (&insn_queue[NEXT_Q_AFTER (q_ptr, stalls)]);
5005
5006 advance_one_cycle ();
5007
5008 break;
5009 }
5010
5011 advance_one_cycle ();
5012 }
5013
5014 q_ptr = NEXT_Q_AFTER (q_ptr, stalls);
5015 clock_var += stalls;
5016 if (sched_verbose >= 2)
5017 fprintf (sched_dump, ";;\tAdvancing clock by %d cycle[s] to %d\n",
5018 stalls, clock_var);
5019 }
5020 }
5021
5022 /* Used by early_queue_to_ready. Determines whether it is "ok" to
5023 prematurely move INSN from the queue to the ready list. Currently,
5024 if a target defines the hook 'is_costly_dependence', this function
5025 uses the hook to check whether there exist any dependences which are
5026 considered costly by the target, between INSN and other insns that
5027 have already been scheduled. Dependences are checked up to Y cycles
5028 back, with default Y=1; The flag -fsched-stalled-insns-dep=Y allows
5029 controlling this value.
5030 (Other considerations could be taken into account instead (or in
5031 addition) depending on user flags and target hooks. */
5032
5033 static bool
5034 ok_for_early_queue_removal (rtx insn)
5035 {
5036 if (targetm.sched.is_costly_dependence)
5037 {
5038 rtx prev_insn;
5039 int n_cycles;
5040 int i = scheduled_insns.length ();
5041 for (n_cycles = flag_sched_stalled_insns_dep; n_cycles; n_cycles--)
5042 {
5043 while (i-- > 0)
5044 {
5045 int cost;
5046
5047 prev_insn = scheduled_insns[i];
5048
5049 if (!NOTE_P (prev_insn))
5050 {
5051 dep_t dep;
5052
5053 dep = sd_find_dep_between (prev_insn, insn, true);
5054
5055 if (dep != NULL)
5056 {
5057 cost = dep_cost (dep);
5058
5059 if (targetm.sched.is_costly_dependence (dep, cost,
5060 flag_sched_stalled_insns_dep - n_cycles))
5061 return false;
5062 }
5063 }
5064
5065 if (GET_MODE (prev_insn) == TImode) /* end of dispatch group */
5066 break;
5067 }
5068
5069 if (i == 0)
5070 break;
5071 }
5072 }
5073
5074 return true;
5075 }
5076
5077
5078 /* Remove insns from the queue, before they become "ready" with respect
5079 to FU latency considerations. */
5080
5081 static int
5082 early_queue_to_ready (state_t state, struct ready_list *ready)
5083 {
5084 rtx_insn *insn;
5085 rtx_insn_list *link;
5086 rtx_insn_list *next_link;
5087 rtx_insn_list *prev_link;
5088 bool move_to_ready;
5089 int cost;
5090 state_t temp_state = alloca (dfa_state_size);
5091 int stalls;
5092 int insns_removed = 0;
5093
5094 /*
5095 Flag '-fsched-stalled-insns=X' determines the aggressiveness of this
5096 function:
5097
5098 X == 0: There is no limit on how many queued insns can be removed
5099 prematurely. (flag_sched_stalled_insns = -1).
5100
5101 X >= 1: Only X queued insns can be removed prematurely in each
5102 invocation. (flag_sched_stalled_insns = X).
5103
5104 Otherwise: Early queue removal is disabled.
5105 (flag_sched_stalled_insns = 0)
5106 */
5107
5108 if (! flag_sched_stalled_insns)
5109 return 0;
5110
5111 for (stalls = 0; stalls <= max_insn_queue_index; stalls++)
5112 {
5113 if ((link = insn_queue[NEXT_Q_AFTER (q_ptr, stalls)]))
5114 {
5115 if (sched_verbose > 6)
5116 fprintf (sched_dump, ";; look at index %d + %d\n", q_ptr, stalls);
5117
5118 prev_link = 0;
5119 while (link)
5120 {
5121 next_link = link->next ();
5122 insn = link->insn ();
5123 if (insn && sched_verbose > 6)
5124 print_rtl_single (sched_dump, insn);
5125
5126 memcpy (temp_state, state, dfa_state_size);
5127 if (recog_memoized (insn) < 0)
5128 /* non-negative to indicate that it's not ready
5129 to avoid infinite Q->R->Q->R... */
5130 cost = 0;
5131 else
5132 cost = state_transition (temp_state, insn);
5133
5134 if (sched_verbose >= 6)
5135 fprintf (sched_dump, "transition cost = %d\n", cost);
5136
5137 move_to_ready = false;
5138 if (cost < 0)
5139 {
5140 move_to_ready = ok_for_early_queue_removal (insn);
5141 if (move_to_ready == true)
5142 {
5143 /* move from Q to R */
5144 q_size -= 1;
5145 ready_add (ready, insn, false);
5146
5147 if (prev_link)
5148 XEXP (prev_link, 1) = next_link;
5149 else
5150 insn_queue[NEXT_Q_AFTER (q_ptr, stalls)] = next_link;
5151
5152 free_INSN_LIST_node (link);
5153
5154 if (sched_verbose >= 2)
5155 fprintf (sched_dump, ";;\t\tEarly Q-->Ready: insn %s\n",
5156 (*current_sched_info->print_insn) (insn, 0));
5157
5158 insns_removed++;
5159 if (insns_removed == flag_sched_stalled_insns)
5160 /* Remove no more than flag_sched_stalled_insns insns
5161 from Q at a time. */
5162 return insns_removed;
5163 }
5164 }
5165
5166 if (move_to_ready == false)
5167 prev_link = link;
5168
5169 link = next_link;
5170 } /* while link */
5171 } /* if link */
5172
5173 } /* for stalls.. */
5174
5175 return insns_removed;
5176 }
5177
5178
5179 /* Print the ready list for debugging purposes.
5180 If READY_TRY is non-zero then only print insns that max_issue
5181 will consider. */
5182 static void
5183 debug_ready_list_1 (struct ready_list *ready, signed char *ready_try)
5184 {
5185 rtx_insn **p;
5186 int i;
5187
5188 if (ready->n_ready == 0)
5189 {
5190 fprintf (sched_dump, "\n");
5191 return;
5192 }
5193
5194 p = ready_lastpos (ready);
5195 for (i = 0; i < ready->n_ready; i++)
5196 {
5197 if (ready_try != NULL && ready_try[ready->n_ready - i - 1])
5198 continue;
5199
5200 fprintf (sched_dump, " %s:%d",
5201 (*current_sched_info->print_insn) (p[i], 0),
5202 INSN_LUID (p[i]));
5203 if (sched_pressure != SCHED_PRESSURE_NONE)
5204 fprintf (sched_dump, "(cost=%d",
5205 INSN_REG_PRESSURE_EXCESS_COST_CHANGE (p[i]));
5206 fprintf (sched_dump, ":prio=%d", INSN_PRIORITY (p[i]));
5207 if (INSN_TICK (p[i]) > clock_var)
5208 fprintf (sched_dump, ":delay=%d", INSN_TICK (p[i]) - clock_var);
5209 if (sched_pressure != SCHED_PRESSURE_NONE)
5210 fprintf (sched_dump, ")");
5211 }
5212 fprintf (sched_dump, "\n");
5213 }
5214
5215 /* Print the ready list. Callable from debugger. */
5216 static void
5217 debug_ready_list (struct ready_list *ready)
5218 {
5219 debug_ready_list_1 (ready, NULL);
5220 }
5221
5222 /* Search INSN for REG_SAVE_NOTE notes and convert them back into insn
5223 NOTEs. This is used for NOTE_INSN_EPILOGUE_BEG, so that sched-ebb
5224 replaces the epilogue note in the correct basic block. */
5225 void
5226 reemit_notes (rtx_insn *insn)
5227 {
5228 rtx note;
5229 rtx_insn *last = insn;
5230
5231 for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
5232 {
5233 if (REG_NOTE_KIND (note) == REG_SAVE_NOTE)
5234 {
5235 enum insn_note note_type = (enum insn_note) INTVAL (XEXP (note, 0));
5236
5237 last = emit_note_before (note_type, last);
5238 remove_note (insn, note);
5239 }
5240 }
5241 }
5242
5243 /* Move INSN. Reemit notes if needed. Update CFG, if needed. */
5244 static void
5245 move_insn (rtx_insn *insn, rtx_insn *last, rtx nt)
5246 {
5247 if (PREV_INSN (insn) != last)
5248 {
5249 basic_block bb;
5250 rtx_insn *note;
5251 int jump_p = 0;
5252
5253 bb = BLOCK_FOR_INSN (insn);
5254
5255 /* BB_HEAD is either LABEL or NOTE. */
5256 gcc_assert (BB_HEAD (bb) != insn);
5257
5258 if (BB_END (bb) == insn)
5259 /* If this is last instruction in BB, move end marker one
5260 instruction up. */
5261 {
5262 /* Jumps are always placed at the end of basic block. */
5263 jump_p = control_flow_insn_p (insn);
5264
5265 gcc_assert (!jump_p
5266 || ((common_sched_info->sched_pass_id == SCHED_RGN_PASS)
5267 && IS_SPECULATION_BRANCHY_CHECK_P (insn))
5268 || (common_sched_info->sched_pass_id
5269 == SCHED_EBB_PASS));
5270
5271 gcc_assert (BLOCK_FOR_INSN (PREV_INSN (insn)) == bb);
5272
5273 BB_END (bb) = PREV_INSN (insn);
5274 }
5275
5276 gcc_assert (BB_END (bb) != last);
5277
5278 if (jump_p)
5279 /* We move the block note along with jump. */
5280 {
5281 gcc_assert (nt);
5282
5283 note = NEXT_INSN (insn);
5284 while (NOTE_NOT_BB_P (note) && note != nt)
5285 note = NEXT_INSN (note);
5286
5287 if (note != nt
5288 && (LABEL_P (note)
5289 || BARRIER_P (note)))
5290 note = NEXT_INSN (note);
5291
5292 gcc_assert (NOTE_INSN_BASIC_BLOCK_P (note));
5293 }
5294 else
5295 note = insn;
5296
5297 SET_NEXT_INSN (PREV_INSN (insn)) = NEXT_INSN (note);
5298 SET_PREV_INSN (NEXT_INSN (note)) = PREV_INSN (insn);
5299
5300 SET_NEXT_INSN (note) = NEXT_INSN (last);
5301 SET_PREV_INSN (NEXT_INSN (last)) = note;
5302
5303 SET_NEXT_INSN (last) = insn;
5304 SET_PREV_INSN (insn) = last;
5305
5306 bb = BLOCK_FOR_INSN (last);
5307
5308 if (jump_p)
5309 {
5310 fix_jump_move (insn);
5311
5312 if (BLOCK_FOR_INSN (insn) != bb)
5313 move_block_after_check (insn);
5314
5315 gcc_assert (BB_END (bb) == last);
5316 }
5317
5318 df_insn_change_bb (insn, bb);
5319
5320 /* Update BB_END, if needed. */
5321 if (BB_END (bb) == last)
5322 BB_END (bb) = insn;
5323 }
5324
5325 SCHED_GROUP_P (insn) = 0;
5326 }
5327
5328 /* Return true if scheduling INSN will finish current clock cycle. */
5329 static bool
5330 insn_finishes_cycle_p (rtx_insn *insn)
5331 {
5332 if (SCHED_GROUP_P (insn))
5333 /* After issuing INSN, rest of the sched_group will be forced to issue
5334 in order. Don't make any plans for the rest of cycle. */
5335 return true;
5336
5337 /* Finishing the block will, apparently, finish the cycle. */
5338 if (current_sched_info->insn_finishes_block_p
5339 && current_sched_info->insn_finishes_block_p (insn))
5340 return true;
5341
5342 return false;
5343 }
5344
5345 /* Define type for target data used in multipass scheduling. */
5346 #ifndef TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DATA_T
5347 # define TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DATA_T int
5348 #endif
5349 typedef TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DATA_T first_cycle_multipass_data_t;
5350
5351 /* The following structure describe an entry of the stack of choices. */
5352 struct choice_entry
5353 {
5354 /* Ordinal number of the issued insn in the ready queue. */
5355 int index;
5356 /* The number of the rest insns whose issues we should try. */
5357 int rest;
5358 /* The number of issued essential insns. */
5359 int n;
5360 /* State after issuing the insn. */
5361 state_t state;
5362 /* Target-specific data. */
5363 first_cycle_multipass_data_t target_data;
5364 };
5365
5366 /* The following array is used to implement a stack of choices used in
5367 function max_issue. */
5368 static struct choice_entry *choice_stack;
5369
5370 /* This holds the value of the target dfa_lookahead hook. */
5371 int dfa_lookahead;
5372
5373 /* The following variable value is maximal number of tries of issuing
5374 insns for the first cycle multipass insn scheduling. We define
5375 this value as constant*(DFA_LOOKAHEAD**ISSUE_RATE). We would not
5376 need this constraint if all real insns (with non-negative codes)
5377 had reservations because in this case the algorithm complexity is
5378 O(DFA_LOOKAHEAD**ISSUE_RATE). Unfortunately, the dfa descriptions
5379 might be incomplete and such insn might occur. For such
5380 descriptions, the complexity of algorithm (without the constraint)
5381 could achieve DFA_LOOKAHEAD ** N , where N is the queue length. */
5382 static int max_lookahead_tries;
5383
5384 /* The following value is value of hook
5385 `first_cycle_multipass_dfa_lookahead' at the last call of
5386 `max_issue'. */
5387 static int cached_first_cycle_multipass_dfa_lookahead = 0;
5388
5389 /* The following value is value of `issue_rate' at the last call of
5390 `sched_init'. */
5391 static int cached_issue_rate = 0;
5392
5393 /* The following function returns maximal (or close to maximal) number
5394 of insns which can be issued on the same cycle and one of which
5395 insns is insns with the best rank (the first insn in READY). To
5396 make this function tries different samples of ready insns. READY
5397 is current queue `ready'. Global array READY_TRY reflects what
5398 insns are already issued in this try. The function stops immediately,
5399 if it reached the such a solution, that all instruction can be issued.
5400 INDEX will contain index of the best insn in READY. The following
5401 function is used only for first cycle multipass scheduling.
5402
5403 PRIVILEGED_N >= 0
5404
5405 This function expects recognized insns only. All USEs,
5406 CLOBBERs, etc must be filtered elsewhere. */
5407 int
5408 max_issue (struct ready_list *ready, int privileged_n, state_t state,
5409 bool first_cycle_insn_p, int *index)
5410 {
5411 int n, i, all, n_ready, best, delay, tries_num;
5412 int more_issue;
5413 struct choice_entry *top;
5414 rtx_insn *insn;
5415
5416 n_ready = ready->n_ready;
5417 gcc_assert (dfa_lookahead >= 1 && privileged_n >= 0
5418 && privileged_n <= n_ready);
5419
5420 /* Init MAX_LOOKAHEAD_TRIES. */
5421 if (cached_first_cycle_multipass_dfa_lookahead != dfa_lookahead)
5422 {
5423 cached_first_cycle_multipass_dfa_lookahead = dfa_lookahead;
5424 max_lookahead_tries = 100;
5425 for (i = 0; i < issue_rate; i++)
5426 max_lookahead_tries *= dfa_lookahead;
5427 }
5428
5429 /* Init max_points. */
5430 more_issue = issue_rate - cycle_issued_insns;
5431 gcc_assert (more_issue >= 0);
5432
5433 /* The number of the issued insns in the best solution. */
5434 best = 0;
5435
5436 top = choice_stack;
5437
5438 /* Set initial state of the search. */
5439 memcpy (top->state, state, dfa_state_size);
5440 top->rest = dfa_lookahead;
5441 top->n = 0;
5442 if (targetm.sched.first_cycle_multipass_begin)
5443 targetm.sched.first_cycle_multipass_begin (&top->target_data,
5444 ready_try, n_ready,
5445 first_cycle_insn_p);
5446
5447 /* Count the number of the insns to search among. */
5448 for (all = i = 0; i < n_ready; i++)
5449 if (!ready_try [i])
5450 all++;
5451
5452 if (sched_verbose >= 2)
5453 {
5454 fprintf (sched_dump, ";;\t\tmax_issue among %d insns:", all);
5455 debug_ready_list_1 (ready, ready_try);
5456 }
5457
5458 /* I is the index of the insn to try next. */
5459 i = 0;
5460 tries_num = 0;
5461 for (;;)
5462 {
5463 if (/* If we've reached a dead end or searched enough of what we have
5464 been asked... */
5465 top->rest == 0
5466 /* or have nothing else to try... */
5467 || i >= n_ready
5468 /* or should not issue more. */
5469 || top->n >= more_issue)
5470 {
5471 /* ??? (... || i == n_ready). */
5472 gcc_assert (i <= n_ready);
5473
5474 /* We should not issue more than issue_rate instructions. */
5475 gcc_assert (top->n <= more_issue);
5476
5477 if (top == choice_stack)
5478 break;
5479
5480 if (best < top - choice_stack)
5481 {
5482 if (privileged_n)
5483 {
5484 n = privileged_n;
5485 /* Try to find issued privileged insn. */
5486 while (n && !ready_try[--n])
5487 ;
5488 }
5489
5490 if (/* If all insns are equally good... */
5491 privileged_n == 0
5492 /* Or a privileged insn will be issued. */
5493 || ready_try[n])
5494 /* Then we have a solution. */
5495 {
5496 best = top - choice_stack;
5497 /* This is the index of the insn issued first in this
5498 solution. */
5499 *index = choice_stack [1].index;
5500 if (top->n == more_issue || best == all)
5501 break;
5502 }
5503 }
5504
5505 /* Set ready-list index to point to the last insn
5506 ('i++' below will advance it to the next insn). */
5507 i = top->index;
5508
5509 /* Backtrack. */
5510 ready_try [i] = 0;
5511
5512 if (targetm.sched.first_cycle_multipass_backtrack)
5513 targetm.sched.first_cycle_multipass_backtrack (&top->target_data,
5514 ready_try, n_ready);
5515
5516 top--;
5517 memcpy (state, top->state, dfa_state_size);
5518 }
5519 else if (!ready_try [i])
5520 {
5521 tries_num++;
5522 if (tries_num > max_lookahead_tries)
5523 break;
5524 insn = ready_element (ready, i);
5525 delay = state_transition (state, insn);
5526 if (delay < 0)
5527 {
5528 if (state_dead_lock_p (state)
5529 || insn_finishes_cycle_p (insn))
5530 /* We won't issue any more instructions in the next
5531 choice_state. */
5532 top->rest = 0;
5533 else
5534 top->rest--;
5535
5536 n = top->n;
5537 if (memcmp (top->state, state, dfa_state_size) != 0)
5538 n++;
5539
5540 /* Advance to the next choice_entry. */
5541 top++;
5542 /* Initialize it. */
5543 top->rest = dfa_lookahead;
5544 top->index = i;
5545 top->n = n;
5546 memcpy (top->state, state, dfa_state_size);
5547 ready_try [i] = 1;
5548
5549 if (targetm.sched.first_cycle_multipass_issue)
5550 targetm.sched.first_cycle_multipass_issue (&top->target_data,
5551 ready_try, n_ready,
5552 insn,
5553 &((top - 1)
5554 ->target_data));
5555
5556 i = -1;
5557 }
5558 }
5559
5560 /* Increase ready-list index. */
5561 i++;
5562 }
5563
5564 if (targetm.sched.first_cycle_multipass_end)
5565 targetm.sched.first_cycle_multipass_end (best != 0
5566 ? &choice_stack[1].target_data
5567 : NULL);
5568
5569 /* Restore the original state of the DFA. */
5570 memcpy (state, choice_stack->state, dfa_state_size);
5571
5572 return best;
5573 }
5574
5575 /* The following function chooses insn from READY and modifies
5576 READY. The following function is used only for first
5577 cycle multipass scheduling.
5578 Return:
5579 -1 if cycle should be advanced,
5580 0 if INSN_PTR is set to point to the desirable insn,
5581 1 if choose_ready () should be restarted without advancing the cycle. */
5582 static int
5583 choose_ready (struct ready_list *ready, bool first_cycle_insn_p,
5584 rtx_insn **insn_ptr)
5585 {
5586 int lookahead;
5587
5588 if (dbg_cnt (sched_insn) == false)
5589 {
5590 if (nonscheduled_insns_begin == NULL_RTX)
5591 nonscheduled_insns_begin = current_sched_info->prev_head;
5592
5593 rtx_insn *insn = first_nonscheduled_insn ();
5594
5595 if (QUEUE_INDEX (insn) == QUEUE_READY)
5596 /* INSN is in the ready_list. */
5597 {
5598 ready_remove_insn (insn);
5599 *insn_ptr = insn;
5600 return 0;
5601 }
5602
5603 /* INSN is in the queue. Advance cycle to move it to the ready list. */
5604 gcc_assert (QUEUE_INDEX (insn) >= 0);
5605 return -1;
5606 }
5607
5608 lookahead = 0;
5609
5610 if (targetm.sched.first_cycle_multipass_dfa_lookahead)
5611 lookahead = targetm.sched.first_cycle_multipass_dfa_lookahead ();
5612 if (lookahead <= 0 || SCHED_GROUP_P (ready_element (ready, 0))
5613 || DEBUG_INSN_P (ready_element (ready, 0)))
5614 {
5615 if (targetm.sched.dispatch (NULL, IS_DISPATCH_ON))
5616 *insn_ptr = ready_remove_first_dispatch (ready);
5617 else
5618 *insn_ptr = ready_remove_first (ready);
5619
5620 return 0;
5621 }
5622 else
5623 {
5624 /* Try to choose the best insn. */
5625 int index = 0, i;
5626 rtx_insn *insn;
5627
5628 insn = ready_element (ready, 0);
5629 if (INSN_CODE (insn) < 0)
5630 {
5631 *insn_ptr = ready_remove_first (ready);
5632 return 0;
5633 }
5634
5635 /* Filter the search space. */
5636 for (i = 0; i < ready->n_ready; i++)
5637 {
5638 ready_try[i] = 0;
5639
5640 insn = ready_element (ready, i);
5641
5642 /* If this insn is recognizable we should have already
5643 recognized it earlier.
5644 ??? Not very clear where this is supposed to be done.
5645 See dep_cost_1. */
5646 gcc_checking_assert (INSN_CODE (insn) >= 0
5647 || recog_memoized (insn) < 0);
5648 if (INSN_CODE (insn) < 0)
5649 {
5650 /* Non-recognized insns at position 0 are handled above. */
5651 gcc_assert (i > 0);
5652 ready_try[i] = 1;
5653 continue;
5654 }
5655
5656 if (targetm.sched.first_cycle_multipass_dfa_lookahead_guard)
5657 {
5658 ready_try[i]
5659 = (targetm.sched.first_cycle_multipass_dfa_lookahead_guard
5660 (insn, i));
5661
5662 if (ready_try[i] < 0)
5663 /* Queue instruction for several cycles.
5664 We need to restart choose_ready as we have changed
5665 the ready list. */
5666 {
5667 change_queue_index (insn, -ready_try[i]);
5668 return 1;
5669 }
5670
5671 /* Make sure that we didn't end up with 0'th insn filtered out.
5672 Don't be tempted to make life easier for backends and just
5673 requeue 0'th insn if (ready_try[0] == 0) and restart
5674 choose_ready. Backends should be very considerate about
5675 requeueing instructions -- especially the highest priority
5676 one at position 0. */
5677 gcc_assert (ready_try[i] == 0 || i > 0);
5678 if (ready_try[i])
5679 continue;
5680 }
5681
5682 gcc_assert (ready_try[i] == 0);
5683 /* INSN made it through the scrutiny of filters! */
5684 }
5685
5686 if (max_issue (ready, 1, curr_state, first_cycle_insn_p, &index) == 0)
5687 {
5688 *insn_ptr = ready_remove_first (ready);
5689 if (sched_verbose >= 4)
5690 fprintf (sched_dump, ";;\t\tChosen insn (but can't issue) : %s \n",
5691 (*current_sched_info->print_insn) (*insn_ptr, 0));
5692 return 0;
5693 }
5694 else
5695 {
5696 if (sched_verbose >= 4)
5697 fprintf (sched_dump, ";;\t\tChosen insn : %s\n",
5698 (*current_sched_info->print_insn)
5699 (ready_element (ready, index), 0));
5700
5701 *insn_ptr = ready_remove (ready, index);
5702 return 0;
5703 }
5704 }
5705 }
5706
5707 /* This function is called when we have successfully scheduled a
5708 block. It uses the schedule stored in the scheduled_insns vector
5709 to rearrange the RTL. PREV_HEAD is used as the anchor to which we
5710 append the scheduled insns; TAIL is the insn after the scheduled
5711 block. TARGET_BB is the argument passed to schedule_block. */
5712
5713 static void
5714 commit_schedule (rtx_insn *prev_head, rtx_insn *tail, basic_block *target_bb)
5715 {
5716 unsigned int i;
5717 rtx_insn *insn;
5718
5719 last_scheduled_insn = prev_head;
5720 for (i = 0;
5721 scheduled_insns.iterate (i, &insn);
5722 i++)
5723 {
5724 if (control_flow_insn_p (last_scheduled_insn)
5725 || current_sched_info->advance_target_bb (*target_bb, insn))
5726 {
5727 *target_bb = current_sched_info->advance_target_bb (*target_bb, 0);
5728
5729 if (sched_verbose)
5730 {
5731 rtx_insn *x;
5732
5733 x = next_real_insn (last_scheduled_insn);
5734 gcc_assert (x);
5735 dump_new_block_header (1, *target_bb, x, tail);
5736 }
5737
5738 last_scheduled_insn = bb_note (*target_bb);
5739 }
5740
5741 if (current_sched_info->begin_move_insn)
5742 (*current_sched_info->begin_move_insn) (insn, last_scheduled_insn);
5743 move_insn (insn, last_scheduled_insn,
5744 current_sched_info->next_tail);
5745 if (!DEBUG_INSN_P (insn))
5746 reemit_notes (insn);
5747 last_scheduled_insn = insn;
5748 }
5749
5750 scheduled_insns.truncate (0);
5751 }
5752
5753 /* Examine all insns on the ready list and queue those which can't be
5754 issued in this cycle. TEMP_STATE is temporary scheduler state we
5755 can use as scratch space. If FIRST_CYCLE_INSN_P is true, no insns
5756 have been issued for the current cycle, which means it is valid to
5757 issue an asm statement.
5758
5759 If SHADOWS_ONLY_P is true, we eliminate all real insns and only
5760 leave those for which SHADOW_P is true. If MODULO_EPILOGUE is true,
5761 we only leave insns which have an INSN_EXACT_TICK. */
5762
5763 static void
5764 prune_ready_list (state_t temp_state, bool first_cycle_insn_p,
5765 bool shadows_only_p, bool modulo_epilogue_p)
5766 {
5767 int i, pass;
5768 bool sched_group_found = false;
5769 int min_cost_group = 1;
5770
5771 for (i = 0; i < ready.n_ready; i++)
5772 {
5773 rtx_insn *insn = ready_element (&ready, i);
5774 if (SCHED_GROUP_P (insn))
5775 {
5776 sched_group_found = true;
5777 break;
5778 }
5779 }
5780
5781 /* Make two passes if there's a SCHED_GROUP_P insn; make sure to handle
5782 such an insn first and note its cost, then schedule all other insns
5783 for one cycle later. */
5784 for (pass = sched_group_found ? 0 : 1; pass < 2; )
5785 {
5786 int n = ready.n_ready;
5787 for (i = 0; i < n; i++)
5788 {
5789 rtx_insn *insn = ready_element (&ready, i);
5790 int cost = 0;
5791 const char *reason = "resource conflict";
5792
5793 if (DEBUG_INSN_P (insn))
5794 continue;
5795
5796 if (sched_group_found && !SCHED_GROUP_P (insn))
5797 {
5798 if (pass == 0)
5799 continue;
5800 cost = min_cost_group;
5801 reason = "not in sched group";
5802 }
5803 else if (modulo_epilogue_p
5804 && INSN_EXACT_TICK (insn) == INVALID_TICK)
5805 {
5806 cost = max_insn_queue_index;
5807 reason = "not an epilogue insn";
5808 }
5809 else if (shadows_only_p && !SHADOW_P (insn))
5810 {
5811 cost = 1;
5812 reason = "not a shadow";
5813 }
5814 else if (recog_memoized (insn) < 0)
5815 {
5816 if (!first_cycle_insn_p
5817 && (GET_CODE (PATTERN (insn)) == ASM_INPUT
5818 || asm_noperands (PATTERN (insn)) >= 0))
5819 cost = 1;
5820 reason = "asm";
5821 }
5822 else if (sched_pressure != SCHED_PRESSURE_NONE)
5823 {
5824 if (sched_pressure == SCHED_PRESSURE_MODEL
5825 && INSN_TICK (insn) <= clock_var)
5826 {
5827 memcpy (temp_state, curr_state, dfa_state_size);
5828 if (state_transition (temp_state, insn) >= 0)
5829 INSN_TICK (insn) = clock_var + 1;
5830 }
5831 cost = 0;
5832 }
5833 else
5834 {
5835 int delay_cost = 0;
5836
5837 if (delay_htab)
5838 {
5839 struct delay_pair *delay_entry;
5840 delay_entry
5841 = delay_htab->find_with_hash (insn,
5842 htab_hash_pointer (insn));
5843 while (delay_entry && delay_cost == 0)
5844 {
5845 delay_cost = estimate_shadow_tick (delay_entry);
5846 if (delay_cost > max_insn_queue_index)
5847 delay_cost = max_insn_queue_index;
5848 delay_entry = delay_entry->next_same_i1;
5849 }
5850 }
5851
5852 memcpy (temp_state, curr_state, dfa_state_size);
5853 cost = state_transition (temp_state, insn);
5854 if (cost < 0)
5855 cost = 0;
5856 else if (cost == 0)
5857 cost = 1;
5858 if (cost < delay_cost)
5859 {
5860 cost = delay_cost;
5861 reason = "shadow tick";
5862 }
5863 }
5864 if (cost >= 1)
5865 {
5866 if (SCHED_GROUP_P (insn) && cost > min_cost_group)
5867 min_cost_group = cost;
5868 ready_remove (&ready, i);
5869 queue_insn (insn, cost, reason);
5870 if (i + 1 < n)
5871 break;
5872 }
5873 }
5874 if (i == n)
5875 pass++;
5876 }
5877 }
5878
5879 /* Called when we detect that the schedule is impossible. We examine the
5880 backtrack queue to find the earliest insn that caused this condition. */
5881
5882 static struct haifa_saved_data *
5883 verify_shadows (void)
5884 {
5885 struct haifa_saved_data *save, *earliest_fail = NULL;
5886 for (save = backtrack_queue; save; save = save->next)
5887 {
5888 int t;
5889 struct delay_pair *pair = save->delay_pair;
5890 rtx_insn *i1 = pair->i1;
5891
5892 for (; pair; pair = pair->next_same_i1)
5893 {
5894 rtx_insn *i2 = pair->i2;
5895
5896 if (QUEUE_INDEX (i2) == QUEUE_SCHEDULED)
5897 continue;
5898
5899 t = INSN_TICK (i1) + pair_delay (pair);
5900 if (t < clock_var)
5901 {
5902 if (sched_verbose >= 2)
5903 fprintf (sched_dump,
5904 ";;\t\tfailed delay requirements for %d/%d (%d->%d)"
5905 ", not ready\n",
5906 INSN_UID (pair->i1), INSN_UID (pair->i2),
5907 INSN_TICK (pair->i1), INSN_EXACT_TICK (pair->i2));
5908 earliest_fail = save;
5909 break;
5910 }
5911 if (QUEUE_INDEX (i2) >= 0)
5912 {
5913 int queued_for = INSN_TICK (i2);
5914
5915 if (t < queued_for)
5916 {
5917 if (sched_verbose >= 2)
5918 fprintf (sched_dump,
5919 ";;\t\tfailed delay requirements for %d/%d"
5920 " (%d->%d), queued too late\n",
5921 INSN_UID (pair->i1), INSN_UID (pair->i2),
5922 INSN_TICK (pair->i1), INSN_EXACT_TICK (pair->i2));
5923 earliest_fail = save;
5924 break;
5925 }
5926 }
5927 }
5928 }
5929
5930 return earliest_fail;
5931 }
5932
5933 /* Print instructions together with useful scheduling information between
5934 HEAD and TAIL (inclusive). */
5935 static void
5936 dump_insn_stream (rtx_insn *head, rtx_insn *tail)
5937 {
5938 fprintf (sched_dump, ";;\t| insn | prio |\n");
5939
5940 rtx_insn *next_tail = NEXT_INSN (tail);
5941 for (rtx_insn *insn = head; insn != next_tail; insn = NEXT_INSN (insn))
5942 {
5943 int priority = NOTE_P (insn) ? 0 : INSN_PRIORITY (insn);
5944 const char *pattern = (NOTE_P (insn)
5945 ? "note"
5946 : str_pattern_slim (PATTERN (insn)));
5947
5948 fprintf (sched_dump, ";;\t| %4d | %4d | %-30s ",
5949 INSN_UID (insn), priority, pattern);
5950
5951 if (sched_verbose >= 4)
5952 {
5953 if (NOTE_P (insn) || recog_memoized (insn) < 0)
5954 fprintf (sched_dump, "nothing");
5955 else
5956 print_reservation (sched_dump, insn);
5957 }
5958 fprintf (sched_dump, "\n");
5959 }
5960 }
5961
5962 /* Use forward list scheduling to rearrange insns of block pointed to by
5963 TARGET_BB, possibly bringing insns from subsequent blocks in the same
5964 region. */
5965
5966 bool
5967 schedule_block (basic_block *target_bb, state_t init_state)
5968 {
5969 int i;
5970 bool success = modulo_ii == 0;
5971 struct sched_block_state ls;
5972 state_t temp_state = NULL; /* It is used for multipass scheduling. */
5973 int sort_p, advance, start_clock_var;
5974
5975 /* Head/tail info for this block. */
5976 rtx_insn *prev_head = current_sched_info->prev_head;
5977 rtx_insn *next_tail = current_sched_info->next_tail;
5978 rtx_insn *head = NEXT_INSN (prev_head);
5979 rtx_insn *tail = PREV_INSN (next_tail);
5980
5981 if ((current_sched_info->flags & DONT_BREAK_DEPENDENCIES) == 0
5982 && sched_pressure != SCHED_PRESSURE_MODEL)
5983 find_modifiable_mems (head, tail);
5984
5985 /* We used to have code to avoid getting parameters moved from hard
5986 argument registers into pseudos.
5987
5988 However, it was removed when it proved to be of marginal benefit
5989 and caused problems because schedule_block and compute_forward_dependences
5990 had different notions of what the "head" insn was. */
5991
5992 gcc_assert (head != tail || INSN_P (head));
5993
5994 haifa_recovery_bb_recently_added_p = false;
5995
5996 backtrack_queue = NULL;
5997
5998 /* Debug info. */
5999 if (sched_verbose)
6000 {
6001 dump_new_block_header (0, *target_bb, head, tail);
6002
6003 if (sched_verbose >= 2)
6004 {
6005 dump_insn_stream (head, tail);
6006 memset (&rank_for_schedule_stats, 0,
6007 sizeof (rank_for_schedule_stats));
6008 }
6009 }
6010
6011 if (init_state == NULL)
6012 state_reset (curr_state);
6013 else
6014 memcpy (curr_state, init_state, dfa_state_size);
6015
6016 /* Clear the ready list. */
6017 ready.first = ready.veclen - 1;
6018 ready.n_ready = 0;
6019 ready.n_debug = 0;
6020
6021 /* It is used for first cycle multipass scheduling. */
6022 temp_state = alloca (dfa_state_size);
6023
6024 if (targetm.sched.init)
6025 targetm.sched.init (sched_dump, sched_verbose, ready.veclen);
6026
6027 /* We start inserting insns after PREV_HEAD. */
6028 last_scheduled_insn = prev_head;
6029 last_nondebug_scheduled_insn = NULL_RTX;
6030 nonscheduled_insns_begin = NULL;
6031
6032 gcc_assert ((NOTE_P (last_scheduled_insn)
6033 || DEBUG_INSN_P (last_scheduled_insn))
6034 && BLOCK_FOR_INSN (last_scheduled_insn) == *target_bb);
6035
6036 /* Initialize INSN_QUEUE. Q_SIZE is the total number of insns in the
6037 queue. */
6038 q_ptr = 0;
6039 q_size = 0;
6040
6041 insn_queue = XALLOCAVEC (rtx_insn_list *, max_insn_queue_index + 1);
6042 memset (insn_queue, 0, (max_insn_queue_index + 1) * sizeof (rtx));
6043
6044 /* Start just before the beginning of time. */
6045 clock_var = -1;
6046
6047 /* We need queue and ready lists and clock_var be initialized
6048 in try_ready () (which is called through init_ready_list ()). */
6049 (*current_sched_info->init_ready_list) ();
6050
6051 if (sched_pressure == SCHED_PRESSURE_MODEL)
6052 model_start_schedule ();
6053
6054 /* The algorithm is O(n^2) in the number of ready insns at any given
6055 time in the worst case. Before reload we are more likely to have
6056 big lists so truncate them to a reasonable size. */
6057 if (!reload_completed
6058 && ready.n_ready - ready.n_debug > MAX_SCHED_READY_INSNS)
6059 {
6060 ready_sort (&ready);
6061
6062 /* Find first free-standing insn past MAX_SCHED_READY_INSNS.
6063 If there are debug insns, we know they're first. */
6064 for (i = MAX_SCHED_READY_INSNS + ready.n_debug; i < ready.n_ready; i++)
6065 if (!SCHED_GROUP_P (ready_element (&ready, i)))
6066 break;
6067
6068 if (sched_verbose >= 2)
6069 {
6070 fprintf (sched_dump,
6071 ";;\t\tReady list on entry: %d insns\n", ready.n_ready);
6072 fprintf (sched_dump,
6073 ";;\t\t before reload => truncated to %d insns\n", i);
6074 }
6075
6076 /* Delay all insns past it for 1 cycle. If debug counter is
6077 activated make an exception for the insn right after
6078 nonscheduled_insns_begin. */
6079 {
6080 rtx_insn *skip_insn;
6081
6082 if (dbg_cnt (sched_insn) == false)
6083 skip_insn = first_nonscheduled_insn ();
6084 else
6085 skip_insn = NULL;
6086
6087 while (i < ready.n_ready)
6088 {
6089 rtx_insn *insn;
6090
6091 insn = ready_remove (&ready, i);
6092
6093 if (insn != skip_insn)
6094 queue_insn (insn, 1, "list truncated");
6095 }
6096 if (skip_insn)
6097 ready_add (&ready, skip_insn, true);
6098 }
6099 }
6100
6101 /* Now we can restore basic block notes and maintain precise cfg. */
6102 restore_bb_notes (*target_bb);
6103
6104 last_clock_var = -1;
6105
6106 advance = 0;
6107
6108 gcc_assert (scheduled_insns.length () == 0);
6109 sort_p = TRUE;
6110 must_backtrack = false;
6111 modulo_insns_scheduled = 0;
6112
6113 ls.modulo_epilogue = false;
6114 ls.first_cycle_insn_p = true;
6115
6116 /* Loop until all the insns in BB are scheduled. */
6117 while ((*current_sched_info->schedule_more_p) ())
6118 {
6119 perform_replacements_new_cycle ();
6120 do
6121 {
6122 start_clock_var = clock_var;
6123
6124 clock_var++;
6125
6126 advance_one_cycle ();
6127
6128 /* Add to the ready list all pending insns that can be issued now.
6129 If there are no ready insns, increment clock until one
6130 is ready and add all pending insns at that point to the ready
6131 list. */
6132 queue_to_ready (&ready);
6133
6134 gcc_assert (ready.n_ready);
6135
6136 if (sched_verbose >= 2)
6137 {
6138 fprintf (sched_dump, ";;\t\tReady list after queue_to_ready:");
6139 debug_ready_list (&ready);
6140 }
6141 advance -= clock_var - start_clock_var;
6142 }
6143 while (advance > 0);
6144
6145 if (ls.modulo_epilogue)
6146 {
6147 int stage = clock_var / modulo_ii;
6148 if (stage > modulo_last_stage * 2 + 2)
6149 {
6150 if (sched_verbose >= 2)
6151 fprintf (sched_dump,
6152 ";;\t\tmodulo scheduled succeeded at II %d\n",
6153 modulo_ii);
6154 success = true;
6155 goto end_schedule;
6156 }
6157 }
6158 else if (modulo_ii > 0)
6159 {
6160 int stage = clock_var / modulo_ii;
6161 if (stage > modulo_max_stages)
6162 {
6163 if (sched_verbose >= 2)
6164 fprintf (sched_dump,
6165 ";;\t\tfailing schedule due to excessive stages\n");
6166 goto end_schedule;
6167 }
6168 if (modulo_n_insns == modulo_insns_scheduled
6169 && stage > modulo_last_stage)
6170 {
6171 if (sched_verbose >= 2)
6172 fprintf (sched_dump,
6173 ";;\t\tfound kernel after %d stages, II %d\n",
6174 stage, modulo_ii);
6175 ls.modulo_epilogue = true;
6176 }
6177 }
6178
6179 prune_ready_list (temp_state, true, false, ls.modulo_epilogue);
6180 if (ready.n_ready == 0)
6181 continue;
6182 if (must_backtrack)
6183 goto do_backtrack;
6184
6185 ls.shadows_only_p = false;
6186 cycle_issued_insns = 0;
6187 ls.can_issue_more = issue_rate;
6188 for (;;)
6189 {
6190 rtx_insn *insn;
6191 int cost;
6192 bool asm_p;
6193
6194 if (sort_p && ready.n_ready > 0)
6195 {
6196 /* Sort the ready list based on priority. This must be
6197 done every iteration through the loop, as schedule_insn
6198 may have readied additional insns that will not be
6199 sorted correctly. */
6200 ready_sort (&ready);
6201
6202 if (sched_verbose >= 2)
6203 {
6204 fprintf (sched_dump,
6205 ";;\t\tReady list after ready_sort: ");
6206 debug_ready_list (&ready);
6207 }
6208 }
6209
6210 /* We don't want md sched reorder to even see debug isns, so put
6211 them out right away. */
6212 if (ready.n_ready && DEBUG_INSN_P (ready_element (&ready, 0))
6213 && (*current_sched_info->schedule_more_p) ())
6214 {
6215 while (ready.n_ready && DEBUG_INSN_P (ready_element (&ready, 0)))
6216 {
6217 rtx_insn *insn = ready_remove_first (&ready);
6218 gcc_assert (DEBUG_INSN_P (insn));
6219 (*current_sched_info->begin_schedule_ready) (insn);
6220 scheduled_insns.safe_push (insn);
6221 last_scheduled_insn = insn;
6222 advance = schedule_insn (insn);
6223 gcc_assert (advance == 0);
6224 if (ready.n_ready > 0)
6225 ready_sort (&ready);
6226 }
6227 }
6228
6229 if (ls.first_cycle_insn_p && !ready.n_ready)
6230 break;
6231
6232 resume_after_backtrack:
6233 /* Allow the target to reorder the list, typically for
6234 better instruction bundling. */
6235 if (sort_p
6236 && (ready.n_ready == 0
6237 || !SCHED_GROUP_P (ready_element (&ready, 0))))
6238 {
6239 if (ls.first_cycle_insn_p && targetm.sched.reorder)
6240 ls.can_issue_more
6241 = targetm.sched.reorder (sched_dump, sched_verbose,
6242 ready_lastpos (&ready),
6243 &ready.n_ready, clock_var);
6244 else if (!ls.first_cycle_insn_p && targetm.sched.reorder2)
6245 ls.can_issue_more
6246 = targetm.sched.reorder2 (sched_dump, sched_verbose,
6247 ready.n_ready
6248 ? ready_lastpos (&ready) : NULL,
6249 &ready.n_ready, clock_var);
6250 }
6251
6252 restart_choose_ready:
6253 if (sched_verbose >= 2)
6254 {
6255 fprintf (sched_dump, ";;\tReady list (t = %3d): ",
6256 clock_var);
6257 debug_ready_list (&ready);
6258 if (sched_pressure == SCHED_PRESSURE_WEIGHTED)
6259 print_curr_reg_pressure ();
6260 }
6261
6262 if (ready.n_ready == 0
6263 && ls.can_issue_more
6264 && reload_completed)
6265 {
6266 /* Allow scheduling insns directly from the queue in case
6267 there's nothing better to do (ready list is empty) but
6268 there are still vacant dispatch slots in the current cycle. */
6269 if (sched_verbose >= 6)
6270 fprintf (sched_dump,";;\t\tSecond chance\n");
6271 memcpy (temp_state, curr_state, dfa_state_size);
6272 if (early_queue_to_ready (temp_state, &ready))
6273 ready_sort (&ready);
6274 }
6275
6276 if (ready.n_ready == 0
6277 || !ls.can_issue_more
6278 || state_dead_lock_p (curr_state)
6279 || !(*current_sched_info->schedule_more_p) ())
6280 break;
6281
6282 /* Select and remove the insn from the ready list. */
6283 if (sort_p)
6284 {
6285 int res;
6286
6287 insn = NULL;
6288 res = choose_ready (&ready, ls.first_cycle_insn_p, &insn);
6289
6290 if (res < 0)
6291 /* Finish cycle. */
6292 break;
6293 if (res > 0)
6294 goto restart_choose_ready;
6295
6296 gcc_assert (insn != NULL_RTX);
6297 }
6298 else
6299 insn = ready_remove_first (&ready);
6300
6301 if (sched_pressure != SCHED_PRESSURE_NONE
6302 && INSN_TICK (insn) > clock_var)
6303 {
6304 ready_add (&ready, insn, true);
6305 advance = 1;
6306 break;
6307 }
6308
6309 if (targetm.sched.dfa_new_cycle
6310 && targetm.sched.dfa_new_cycle (sched_dump, sched_verbose,
6311 insn, last_clock_var,
6312 clock_var, &sort_p))
6313 /* SORT_P is used by the target to override sorting
6314 of the ready list. This is needed when the target
6315 has modified its internal structures expecting that
6316 the insn will be issued next. As we need the insn
6317 to have the highest priority (so it will be returned by
6318 the ready_remove_first call above), we invoke
6319 ready_add (&ready, insn, true).
6320 But, still, there is one issue: INSN can be later
6321 discarded by scheduler's front end through
6322 current_sched_info->can_schedule_ready_p, hence, won't
6323 be issued next. */
6324 {
6325 ready_add (&ready, insn, true);
6326 break;
6327 }
6328
6329 sort_p = TRUE;
6330
6331 if (current_sched_info->can_schedule_ready_p
6332 && ! (*current_sched_info->can_schedule_ready_p) (insn))
6333 /* We normally get here only if we don't want to move
6334 insn from the split block. */
6335 {
6336 TODO_SPEC (insn) = DEP_POSTPONED;
6337 goto restart_choose_ready;
6338 }
6339
6340 if (delay_htab)
6341 {
6342 /* If this insn is the first part of a delay-slot pair, record a
6343 backtrack point. */
6344 struct delay_pair *delay_entry;
6345 delay_entry
6346 = delay_htab->find_with_hash (insn, htab_hash_pointer (insn));
6347 if (delay_entry)
6348 {
6349 save_backtrack_point (delay_entry, ls);
6350 if (sched_verbose >= 2)
6351 fprintf (sched_dump, ";;\t\tsaving backtrack point\n");
6352 }
6353 }
6354
6355 /* DECISION is made. */
6356
6357 if (modulo_ii > 0 && INSN_UID (insn) < modulo_iter0_max_uid)
6358 {
6359 modulo_insns_scheduled++;
6360 modulo_last_stage = clock_var / modulo_ii;
6361 }
6362 if (TODO_SPEC (insn) & SPECULATIVE)
6363 generate_recovery_code (insn);
6364
6365 if (targetm.sched.dispatch (NULL, IS_DISPATCH_ON))
6366 targetm.sched.dispatch_do (insn, ADD_TO_DISPATCH_WINDOW);
6367
6368 /* Update counters, etc in the scheduler's front end. */
6369 (*current_sched_info->begin_schedule_ready) (insn);
6370 scheduled_insns.safe_push (insn);
6371 gcc_assert (NONDEBUG_INSN_P (insn));
6372 last_nondebug_scheduled_insn = last_scheduled_insn = insn;
6373
6374 if (recog_memoized (insn) >= 0)
6375 {
6376 memcpy (temp_state, curr_state, dfa_state_size);
6377 cost = state_transition (curr_state, insn);
6378 if (sched_pressure != SCHED_PRESSURE_WEIGHTED)
6379 gcc_assert (cost < 0);
6380 if (memcmp (temp_state, curr_state, dfa_state_size) != 0)
6381 cycle_issued_insns++;
6382 asm_p = false;
6383 }
6384 else
6385 asm_p = (GET_CODE (PATTERN (insn)) == ASM_INPUT
6386 || asm_noperands (PATTERN (insn)) >= 0);
6387
6388 if (targetm.sched.variable_issue)
6389 ls.can_issue_more =
6390 targetm.sched.variable_issue (sched_dump, sched_verbose,
6391 insn, ls.can_issue_more);
6392 /* A naked CLOBBER or USE generates no instruction, so do
6393 not count them against the issue rate. */
6394 else if (GET_CODE (PATTERN (insn)) != USE
6395 && GET_CODE (PATTERN (insn)) != CLOBBER)
6396 ls.can_issue_more--;
6397 advance = schedule_insn (insn);
6398
6399 if (SHADOW_P (insn))
6400 ls.shadows_only_p = true;
6401
6402 /* After issuing an asm insn we should start a new cycle. */
6403 if (advance == 0 && asm_p)
6404 advance = 1;
6405
6406 if (must_backtrack)
6407 break;
6408
6409 if (advance != 0)
6410 break;
6411
6412 ls.first_cycle_insn_p = false;
6413 if (ready.n_ready > 0)
6414 prune_ready_list (temp_state, false, ls.shadows_only_p,
6415 ls.modulo_epilogue);
6416 }
6417
6418 do_backtrack:
6419 if (!must_backtrack)
6420 for (i = 0; i < ready.n_ready; i++)
6421 {
6422 rtx_insn *insn = ready_element (&ready, i);
6423 if (INSN_EXACT_TICK (insn) == clock_var)
6424 {
6425 must_backtrack = true;
6426 clock_var++;
6427 break;
6428 }
6429 }
6430 if (must_backtrack && modulo_ii > 0)
6431 {
6432 if (modulo_backtracks_left == 0)
6433 goto end_schedule;
6434 modulo_backtracks_left--;
6435 }
6436 while (must_backtrack)
6437 {
6438 struct haifa_saved_data *failed;
6439 rtx_insn *failed_insn;
6440
6441 must_backtrack = false;
6442 failed = verify_shadows ();
6443 gcc_assert (failed);
6444
6445 failed_insn = failed->delay_pair->i1;
6446 /* Clear these queues. */
6447 perform_replacements_new_cycle ();
6448 toggle_cancelled_flags (false);
6449 unschedule_insns_until (failed_insn);
6450 while (failed != backtrack_queue)
6451 free_topmost_backtrack_point (true);
6452 restore_last_backtrack_point (&ls);
6453 if (sched_verbose >= 2)
6454 fprintf (sched_dump, ";;\t\trewind to cycle %d\n", clock_var);
6455 /* Delay by at least a cycle. This could cause additional
6456 backtracking. */
6457 queue_insn (failed_insn, 1, "backtracked");
6458 advance = 0;
6459 if (must_backtrack)
6460 continue;
6461 if (ready.n_ready > 0)
6462 goto resume_after_backtrack;
6463 else
6464 {
6465 if (clock_var == 0 && ls.first_cycle_insn_p)
6466 goto end_schedule;
6467 advance = 1;
6468 break;
6469 }
6470 }
6471 ls.first_cycle_insn_p = true;
6472 }
6473 if (ls.modulo_epilogue)
6474 success = true;
6475 end_schedule:
6476 if (!ls.first_cycle_insn_p || advance)
6477 advance_one_cycle ();
6478 perform_replacements_new_cycle ();
6479 if (modulo_ii > 0)
6480 {
6481 /* Once again, debug insn suckiness: they can be on the ready list
6482 even if they have unresolved dependencies. To make our view
6483 of the world consistent, remove such "ready" insns. */
6484 restart_debug_insn_loop:
6485 for (i = ready.n_ready - 1; i >= 0; i--)
6486 {
6487 rtx_insn *x;
6488
6489 x = ready_element (&ready, i);
6490 if (DEPS_LIST_FIRST (INSN_HARD_BACK_DEPS (x)) != NULL
6491 || DEPS_LIST_FIRST (INSN_SPEC_BACK_DEPS (x)) != NULL)
6492 {
6493 ready_remove (&ready, i);
6494 goto restart_debug_insn_loop;
6495 }
6496 }
6497 for (i = ready.n_ready - 1; i >= 0; i--)
6498 {
6499 rtx_insn *x;
6500
6501 x = ready_element (&ready, i);
6502 resolve_dependencies (x);
6503 }
6504 for (i = 0; i <= max_insn_queue_index; i++)
6505 {
6506 rtx_insn_list *link;
6507 while ((link = insn_queue[i]) != NULL)
6508 {
6509 rtx_insn *x = link->insn ();
6510 insn_queue[i] = link->next ();
6511 QUEUE_INDEX (x) = QUEUE_NOWHERE;
6512 free_INSN_LIST_node (link);
6513 resolve_dependencies (x);
6514 }
6515 }
6516 }
6517
6518 if (!success)
6519 undo_all_replacements ();
6520
6521 /* Debug info. */
6522 if (sched_verbose)
6523 {
6524 fprintf (sched_dump, ";;\tReady list (final): ");
6525 debug_ready_list (&ready);
6526 }
6527
6528 if (modulo_ii == 0 && current_sched_info->queue_must_finish_empty)
6529 /* Sanity check -- queue must be empty now. Meaningless if region has
6530 multiple bbs. */
6531 gcc_assert (!q_size && !ready.n_ready && !ready.n_debug);
6532 else if (modulo_ii == 0)
6533 {
6534 /* We must maintain QUEUE_INDEX between blocks in region. */
6535 for (i = ready.n_ready - 1; i >= 0; i--)
6536 {
6537 rtx_insn *x;
6538
6539 x = ready_element (&ready, i);
6540 QUEUE_INDEX (x) = QUEUE_NOWHERE;
6541 TODO_SPEC (x) = HARD_DEP;
6542 }
6543
6544 if (q_size)
6545 for (i = 0; i <= max_insn_queue_index; i++)
6546 {
6547 rtx_insn_list *link;
6548 for (link = insn_queue[i]; link; link = link->next ())
6549 {
6550 rtx_insn *x;
6551
6552 x = link->insn ();
6553 QUEUE_INDEX (x) = QUEUE_NOWHERE;
6554 TODO_SPEC (x) = HARD_DEP;
6555 }
6556 free_INSN_LIST_list (&insn_queue[i]);
6557 }
6558 }
6559
6560 if (sched_pressure == SCHED_PRESSURE_MODEL)
6561 model_end_schedule ();
6562
6563 if (success)
6564 {
6565 commit_schedule (prev_head, tail, target_bb);
6566 if (sched_verbose)
6567 fprintf (sched_dump, ";; total time = %d\n", clock_var);
6568 }
6569 else
6570 last_scheduled_insn = tail;
6571
6572 scheduled_insns.truncate (0);
6573
6574 if (!current_sched_info->queue_must_finish_empty
6575 || haifa_recovery_bb_recently_added_p)
6576 {
6577 /* INSN_TICK (minimum clock tick at which the insn becomes
6578 ready) may be not correct for the insn in the subsequent
6579 blocks of the region. We should use a correct value of
6580 `clock_var' or modify INSN_TICK. It is better to keep
6581 clock_var value equal to 0 at the start of a basic block.
6582 Therefore we modify INSN_TICK here. */
6583 fix_inter_tick (NEXT_INSN (prev_head), last_scheduled_insn);
6584 }
6585
6586 if (targetm.sched.finish)
6587 {
6588 targetm.sched.finish (sched_dump, sched_verbose);
6589 /* Target might have added some instructions to the scheduled block
6590 in its md_finish () hook. These new insns don't have any data
6591 initialized and to identify them we extend h_i_d so that they'll
6592 get zero luids. */
6593 sched_extend_luids ();
6594 }
6595
6596 /* Update head/tail boundaries. */
6597 head = NEXT_INSN (prev_head);
6598 tail = last_scheduled_insn;
6599
6600 if (sched_verbose)
6601 {
6602 fprintf (sched_dump, ";; new head = %d\n;; new tail = %d\n",
6603 INSN_UID (head), INSN_UID (tail));
6604
6605 if (sched_verbose >= 2)
6606 {
6607 dump_insn_stream (head, tail);
6608 print_rank_for_schedule_stats (";; TOTAL ", &rank_for_schedule_stats);
6609 }
6610
6611 fprintf (sched_dump, "\n");
6612 }
6613
6614 head = restore_other_notes (head, NULL);
6615
6616 current_sched_info->head = head;
6617 current_sched_info->tail = tail;
6618
6619 free_backtrack_queue ();
6620
6621 return success;
6622 }
6623 \f
6624 /* Set_priorities: compute priority of each insn in the block. */
6625
6626 int
6627 set_priorities (rtx_insn *head, rtx_insn *tail)
6628 {
6629 rtx_insn *insn;
6630 int n_insn;
6631 int sched_max_insns_priority =
6632 current_sched_info->sched_max_insns_priority;
6633 rtx_insn *prev_head;
6634
6635 if (head == tail && ! INSN_P (head))
6636 gcc_unreachable ();
6637
6638 n_insn = 0;
6639
6640 prev_head = PREV_INSN (head);
6641 for (insn = tail; insn != prev_head; insn = PREV_INSN (insn))
6642 {
6643 if (!INSN_P (insn))
6644 continue;
6645
6646 n_insn++;
6647 (void) priority (insn);
6648
6649 gcc_assert (INSN_PRIORITY_KNOWN (insn));
6650
6651 sched_max_insns_priority = MAX (sched_max_insns_priority,
6652 INSN_PRIORITY (insn));
6653 }
6654
6655 current_sched_info->sched_max_insns_priority = sched_max_insns_priority;
6656
6657 return n_insn;
6658 }
6659
6660 /* Set dump and sched_verbose for the desired debugging output. If no
6661 dump-file was specified, but -fsched-verbose=N (any N), print to stderr.
6662 For -fsched-verbose=N, N>=10, print everything to stderr. */
6663 void
6664 setup_sched_dump (void)
6665 {
6666 sched_verbose = sched_verbose_param;
6667 if (sched_verbose_param == 0 && dump_file)
6668 sched_verbose = 1;
6669 sched_dump = ((sched_verbose_param >= 10 || !dump_file)
6670 ? stderr : dump_file);
6671 }
6672
6673 /* Allocate data for register pressure sensitive scheduling. */
6674 static void
6675 alloc_global_sched_pressure_data (void)
6676 {
6677 if (sched_pressure != SCHED_PRESSURE_NONE)
6678 {
6679 int i, max_regno = max_reg_num ();
6680
6681 if (sched_dump != NULL)
6682 /* We need info about pseudos for rtl dumps about pseudo
6683 classes and costs. */
6684 regstat_init_n_sets_and_refs ();
6685 ira_set_pseudo_classes (true, sched_verbose ? sched_dump : NULL);
6686 sched_regno_pressure_class
6687 = (enum reg_class *) xmalloc (max_regno * sizeof (enum reg_class));
6688 for (i = 0; i < max_regno; i++)
6689 sched_regno_pressure_class[i]
6690 = (i < FIRST_PSEUDO_REGISTER
6691 ? ira_pressure_class_translate[REGNO_REG_CLASS (i)]
6692 : ira_pressure_class_translate[reg_allocno_class (i)]);
6693 curr_reg_live = BITMAP_ALLOC (NULL);
6694 if (sched_pressure == SCHED_PRESSURE_WEIGHTED)
6695 {
6696 saved_reg_live = BITMAP_ALLOC (NULL);
6697 region_ref_regs = BITMAP_ALLOC (NULL);
6698 }
6699 }
6700 }
6701
6702 /* Free data for register pressure sensitive scheduling. Also called
6703 from schedule_region when stopping sched-pressure early. */
6704 void
6705 free_global_sched_pressure_data (void)
6706 {
6707 if (sched_pressure != SCHED_PRESSURE_NONE)
6708 {
6709 if (regstat_n_sets_and_refs != NULL)
6710 regstat_free_n_sets_and_refs ();
6711 if (sched_pressure == SCHED_PRESSURE_WEIGHTED)
6712 {
6713 BITMAP_FREE (region_ref_regs);
6714 BITMAP_FREE (saved_reg_live);
6715 }
6716 BITMAP_FREE (curr_reg_live);
6717 free (sched_regno_pressure_class);
6718 }
6719 }
6720
6721 /* Initialize some global state for the scheduler. This function works
6722 with the common data shared between all the schedulers. It is called
6723 from the scheduler specific initialization routine. */
6724
6725 void
6726 sched_init (void)
6727 {
6728 /* Disable speculative loads in their presence if cc0 defined. */
6729 #ifdef HAVE_cc0
6730 flag_schedule_speculative_load = 0;
6731 #endif
6732
6733 if (targetm.sched.dispatch (NULL, IS_DISPATCH_ON))
6734 targetm.sched.dispatch_do (NULL, DISPATCH_INIT);
6735
6736 if (live_range_shrinkage_p)
6737 sched_pressure = SCHED_PRESSURE_WEIGHTED;
6738 else if (flag_sched_pressure
6739 && !reload_completed
6740 && common_sched_info->sched_pass_id == SCHED_RGN_PASS)
6741 sched_pressure = ((enum sched_pressure_algorithm)
6742 PARAM_VALUE (PARAM_SCHED_PRESSURE_ALGORITHM));
6743 else
6744 sched_pressure = SCHED_PRESSURE_NONE;
6745
6746 if (sched_pressure != SCHED_PRESSURE_NONE)
6747 ira_setup_eliminable_regset ();
6748
6749 /* Initialize SPEC_INFO. */
6750 if (targetm.sched.set_sched_flags)
6751 {
6752 spec_info = &spec_info_var;
6753 targetm.sched.set_sched_flags (spec_info);
6754
6755 if (spec_info->mask != 0)
6756 {
6757 spec_info->data_weakness_cutoff =
6758 (PARAM_VALUE (PARAM_SCHED_SPEC_PROB_CUTOFF) * MAX_DEP_WEAK) / 100;
6759 spec_info->control_weakness_cutoff =
6760 (PARAM_VALUE (PARAM_SCHED_SPEC_PROB_CUTOFF)
6761 * REG_BR_PROB_BASE) / 100;
6762 }
6763 else
6764 /* So we won't read anything accidentally. */
6765 spec_info = NULL;
6766
6767 }
6768 else
6769 /* So we won't read anything accidentally. */
6770 spec_info = 0;
6771
6772 /* Initialize issue_rate. */
6773 if (targetm.sched.issue_rate)
6774 issue_rate = targetm.sched.issue_rate ();
6775 else
6776 issue_rate = 1;
6777
6778 if (cached_issue_rate != issue_rate)
6779 {
6780 cached_issue_rate = issue_rate;
6781 /* To invalidate max_lookahead_tries: */
6782 cached_first_cycle_multipass_dfa_lookahead = 0;
6783 }
6784
6785 if (targetm.sched.first_cycle_multipass_dfa_lookahead)
6786 dfa_lookahead = targetm.sched.first_cycle_multipass_dfa_lookahead ();
6787 else
6788 dfa_lookahead = 0;
6789
6790 if (targetm.sched.init_dfa_pre_cycle_insn)
6791 targetm.sched.init_dfa_pre_cycle_insn ();
6792
6793 if (targetm.sched.init_dfa_post_cycle_insn)
6794 targetm.sched.init_dfa_post_cycle_insn ();
6795
6796 dfa_start ();
6797 dfa_state_size = state_size ();
6798
6799 init_alias_analysis ();
6800
6801 if (!sched_no_dce)
6802 df_set_flags (DF_LR_RUN_DCE);
6803 df_note_add_problem ();
6804
6805 /* More problems needed for interloop dep calculation in SMS. */
6806 if (common_sched_info->sched_pass_id == SCHED_SMS_PASS)
6807 {
6808 df_rd_add_problem ();
6809 df_chain_add_problem (DF_DU_CHAIN + DF_UD_CHAIN);
6810 }
6811
6812 df_analyze ();
6813
6814 /* Do not run DCE after reload, as this can kill nops inserted
6815 by bundling. */
6816 if (reload_completed)
6817 df_clear_flags (DF_LR_RUN_DCE);
6818
6819 regstat_compute_calls_crossed ();
6820
6821 if (targetm.sched.init_global)
6822 targetm.sched.init_global (sched_dump, sched_verbose, get_max_uid () + 1);
6823
6824 alloc_global_sched_pressure_data ();
6825
6826 curr_state = xmalloc (dfa_state_size);
6827 }
6828
6829 static void haifa_init_only_bb (basic_block, basic_block);
6830
6831 /* Initialize data structures specific to the Haifa scheduler. */
6832 void
6833 haifa_sched_init (void)
6834 {
6835 setup_sched_dump ();
6836 sched_init ();
6837
6838 scheduled_insns.create (0);
6839
6840 if (spec_info != NULL)
6841 {
6842 sched_deps_info->use_deps_list = 1;
6843 sched_deps_info->generate_spec_deps = 1;
6844 }
6845
6846 /* Initialize luids, dependency caches, target and h_i_d for the
6847 whole function. */
6848 {
6849 bb_vec_t bbs;
6850 bbs.create (n_basic_blocks_for_fn (cfun));
6851 basic_block bb;
6852
6853 sched_init_bbs ();
6854
6855 FOR_EACH_BB_FN (bb, cfun)
6856 bbs.quick_push (bb);
6857 sched_init_luids (bbs);
6858 sched_deps_init (true);
6859 sched_extend_target ();
6860 haifa_init_h_i_d (bbs);
6861
6862 bbs.release ();
6863 }
6864
6865 sched_init_only_bb = haifa_init_only_bb;
6866 sched_split_block = sched_split_block_1;
6867 sched_create_empty_bb = sched_create_empty_bb_1;
6868 haifa_recovery_bb_ever_added_p = false;
6869
6870 nr_begin_data = nr_begin_control = nr_be_in_data = nr_be_in_control = 0;
6871 before_recovery = 0;
6872 after_recovery = 0;
6873
6874 modulo_ii = 0;
6875 }
6876
6877 /* Finish work with the data specific to the Haifa scheduler. */
6878 void
6879 haifa_sched_finish (void)
6880 {
6881 sched_create_empty_bb = NULL;
6882 sched_split_block = NULL;
6883 sched_init_only_bb = NULL;
6884
6885 if (spec_info && spec_info->dump)
6886 {
6887 char c = reload_completed ? 'a' : 'b';
6888
6889 fprintf (spec_info->dump,
6890 ";; %s:\n", current_function_name ());
6891
6892 fprintf (spec_info->dump,
6893 ";; Procedure %cr-begin-data-spec motions == %d\n",
6894 c, nr_begin_data);
6895 fprintf (spec_info->dump,
6896 ";; Procedure %cr-be-in-data-spec motions == %d\n",
6897 c, nr_be_in_data);
6898 fprintf (spec_info->dump,
6899 ";; Procedure %cr-begin-control-spec motions == %d\n",
6900 c, nr_begin_control);
6901 fprintf (spec_info->dump,
6902 ";; Procedure %cr-be-in-control-spec motions == %d\n",
6903 c, nr_be_in_control);
6904 }
6905
6906 scheduled_insns.release ();
6907
6908 /* Finalize h_i_d, dependency caches, and luids for the whole
6909 function. Target will be finalized in md_global_finish (). */
6910 sched_deps_finish ();
6911 sched_finish_luids ();
6912 current_sched_info = NULL;
6913 sched_finish ();
6914 }
6915
6916 /* Free global data used during insn scheduling. This function works with
6917 the common data shared between the schedulers. */
6918
6919 void
6920 sched_finish (void)
6921 {
6922 haifa_finish_h_i_d ();
6923 free_global_sched_pressure_data ();
6924 free (curr_state);
6925
6926 if (targetm.sched.finish_global)
6927 targetm.sched.finish_global (sched_dump, sched_verbose);
6928
6929 end_alias_analysis ();
6930
6931 regstat_free_calls_crossed ();
6932
6933 dfa_finish ();
6934 }
6935
6936 /* Free all delay_pair structures that were recorded. */
6937 void
6938 free_delay_pairs (void)
6939 {
6940 if (delay_htab)
6941 {
6942 delay_htab->empty ();
6943 delay_htab_i2->empty ();
6944 }
6945 }
6946
6947 /* Fix INSN_TICKs of the instructions in the current block as well as
6948 INSN_TICKs of their dependents.
6949 HEAD and TAIL are the begin and the end of the current scheduled block. */
6950 static void
6951 fix_inter_tick (rtx_insn *head, rtx_insn *tail)
6952 {
6953 /* Set of instructions with corrected INSN_TICK. */
6954 bitmap_head processed;
6955 /* ??? It is doubtful if we should assume that cycle advance happens on
6956 basic block boundaries. Basically insns that are unconditionally ready
6957 on the start of the block are more preferable then those which have
6958 a one cycle dependency over insn from the previous block. */
6959 int next_clock = clock_var + 1;
6960
6961 bitmap_initialize (&processed, 0);
6962
6963 /* Iterates over scheduled instructions and fix their INSN_TICKs and
6964 INSN_TICKs of dependent instructions, so that INSN_TICKs are consistent
6965 across different blocks. */
6966 for (tail = NEXT_INSN (tail); head != tail; head = NEXT_INSN (head))
6967 {
6968 if (INSN_P (head))
6969 {
6970 int tick;
6971 sd_iterator_def sd_it;
6972 dep_t dep;
6973
6974 tick = INSN_TICK (head);
6975 gcc_assert (tick >= MIN_TICK);
6976
6977 /* Fix INSN_TICK of instruction from just scheduled block. */
6978 if (bitmap_set_bit (&processed, INSN_LUID (head)))
6979 {
6980 tick -= next_clock;
6981
6982 if (tick < MIN_TICK)
6983 tick = MIN_TICK;
6984
6985 INSN_TICK (head) = tick;
6986 }
6987
6988 if (DEBUG_INSN_P (head))
6989 continue;
6990
6991 FOR_EACH_DEP (head, SD_LIST_RES_FORW, sd_it, dep)
6992 {
6993 rtx_insn *next;
6994
6995 next = DEP_CON (dep);
6996 tick = INSN_TICK (next);
6997
6998 if (tick != INVALID_TICK
6999 /* If NEXT has its INSN_TICK calculated, fix it.
7000 If not - it will be properly calculated from
7001 scratch later in fix_tick_ready. */
7002 && bitmap_set_bit (&processed, INSN_LUID (next)))
7003 {
7004 tick -= next_clock;
7005
7006 if (tick < MIN_TICK)
7007 tick = MIN_TICK;
7008
7009 if (tick > INTER_TICK (next))
7010 INTER_TICK (next) = tick;
7011 else
7012 tick = INTER_TICK (next);
7013
7014 INSN_TICK (next) = tick;
7015 }
7016 }
7017 }
7018 }
7019 bitmap_clear (&processed);
7020 }
7021
7022 /* Check if NEXT is ready to be added to the ready or queue list.
7023 If "yes", add it to the proper list.
7024 Returns:
7025 -1 - is not ready yet,
7026 0 - added to the ready list,
7027 0 < N - queued for N cycles. */
7028 int
7029 try_ready (rtx_insn *next)
7030 {
7031 ds_t old_ts, new_ts;
7032
7033 old_ts = TODO_SPEC (next);
7034
7035 gcc_assert (!(old_ts & ~(SPECULATIVE | HARD_DEP | DEP_CONTROL | DEP_POSTPONED))
7036 && (old_ts == HARD_DEP
7037 || old_ts == DEP_POSTPONED
7038 || (old_ts & SPECULATIVE)
7039 || old_ts == DEP_CONTROL));
7040
7041 new_ts = recompute_todo_spec (next, false);
7042
7043 if (new_ts & (HARD_DEP | DEP_POSTPONED))
7044 gcc_assert (new_ts == old_ts
7045 && QUEUE_INDEX (next) == QUEUE_NOWHERE);
7046 else if (current_sched_info->new_ready)
7047 new_ts = current_sched_info->new_ready (next, new_ts);
7048
7049 /* * if !(old_ts & SPECULATIVE) (e.g. HARD_DEP or 0), then insn might
7050 have its original pattern or changed (speculative) one. This is due
7051 to changing ebb in region scheduling.
7052 * But if (old_ts & SPECULATIVE), then we are pretty sure that insn
7053 has speculative pattern.
7054
7055 We can't assert (!(new_ts & HARD_DEP) || new_ts == old_ts) here because
7056 control-speculative NEXT could have been discarded by sched-rgn.c
7057 (the same case as when discarded by can_schedule_ready_p ()). */
7058
7059 if ((new_ts & SPECULATIVE)
7060 /* If (old_ts == new_ts), then (old_ts & SPECULATIVE) and we don't
7061 need to change anything. */
7062 && new_ts != old_ts)
7063 {
7064 int res;
7065 rtx new_pat;
7066
7067 gcc_assert ((new_ts & SPECULATIVE) && !(new_ts & ~SPECULATIVE));
7068
7069 res = haifa_speculate_insn (next, new_ts, &new_pat);
7070
7071 switch (res)
7072 {
7073 case -1:
7074 /* It would be nice to change DEP_STATUS of all dependences,
7075 which have ((DEP_STATUS & SPECULATIVE) == new_ts) to HARD_DEP,
7076 so we won't reanalyze anything. */
7077 new_ts = HARD_DEP;
7078 break;
7079
7080 case 0:
7081 /* We follow the rule, that every speculative insn
7082 has non-null ORIG_PAT. */
7083 if (!ORIG_PAT (next))
7084 ORIG_PAT (next) = PATTERN (next);
7085 break;
7086
7087 case 1:
7088 if (!ORIG_PAT (next))
7089 /* If we gonna to overwrite the original pattern of insn,
7090 save it. */
7091 ORIG_PAT (next) = PATTERN (next);
7092
7093 res = haifa_change_pattern (next, new_pat);
7094 gcc_assert (res);
7095 break;
7096
7097 default:
7098 gcc_unreachable ();
7099 }
7100 }
7101
7102 /* We need to restore pattern only if (new_ts == 0), because otherwise it is
7103 either correct (new_ts & SPECULATIVE),
7104 or we simply don't care (new_ts & HARD_DEP). */
7105
7106 gcc_assert (!ORIG_PAT (next)
7107 || !IS_SPECULATION_BRANCHY_CHECK_P (next));
7108
7109 TODO_SPEC (next) = new_ts;
7110
7111 if (new_ts & (HARD_DEP | DEP_POSTPONED))
7112 {
7113 /* We can't assert (QUEUE_INDEX (next) == QUEUE_NOWHERE) here because
7114 control-speculative NEXT could have been discarded by sched-rgn.c
7115 (the same case as when discarded by can_schedule_ready_p ()). */
7116 /*gcc_assert (QUEUE_INDEX (next) == QUEUE_NOWHERE);*/
7117
7118 change_queue_index (next, QUEUE_NOWHERE);
7119
7120 return -1;
7121 }
7122 else if (!(new_ts & BEGIN_SPEC)
7123 && ORIG_PAT (next) && PREDICATED_PAT (next) == NULL_RTX
7124 && !IS_SPECULATION_CHECK_P (next))
7125 /* We should change pattern of every previously speculative
7126 instruction - and we determine if NEXT was speculative by using
7127 ORIG_PAT field. Except one case - speculation checks have ORIG_PAT
7128 pat too, so skip them. */
7129 {
7130 bool success = haifa_change_pattern (next, ORIG_PAT (next));
7131 gcc_assert (success);
7132 ORIG_PAT (next) = 0;
7133 }
7134
7135 if (sched_verbose >= 2)
7136 {
7137 fprintf (sched_dump, ";;\t\tdependencies resolved: insn %s",
7138 (*current_sched_info->print_insn) (next, 0));
7139
7140 if (spec_info && spec_info->dump)
7141 {
7142 if (new_ts & BEGIN_DATA)
7143 fprintf (spec_info->dump, "; data-spec;");
7144 if (new_ts & BEGIN_CONTROL)
7145 fprintf (spec_info->dump, "; control-spec;");
7146 if (new_ts & BE_IN_CONTROL)
7147 fprintf (spec_info->dump, "; in-control-spec;");
7148 }
7149 if (TODO_SPEC (next) & DEP_CONTROL)
7150 fprintf (sched_dump, " predicated");
7151 fprintf (sched_dump, "\n");
7152 }
7153
7154 adjust_priority (next);
7155
7156 return fix_tick_ready (next);
7157 }
7158
7159 /* Calculate INSN_TICK of NEXT and add it to either ready or queue list. */
7160 static int
7161 fix_tick_ready (rtx_insn *next)
7162 {
7163 int tick, delay;
7164
7165 if (!DEBUG_INSN_P (next) && !sd_lists_empty_p (next, SD_LIST_RES_BACK))
7166 {
7167 int full_p;
7168 sd_iterator_def sd_it;
7169 dep_t dep;
7170
7171 tick = INSN_TICK (next);
7172 /* if tick is not equal to INVALID_TICK, then update
7173 INSN_TICK of NEXT with the most recent resolved dependence
7174 cost. Otherwise, recalculate from scratch. */
7175 full_p = (tick == INVALID_TICK);
7176
7177 FOR_EACH_DEP (next, SD_LIST_RES_BACK, sd_it, dep)
7178 {
7179 rtx_insn *pro = DEP_PRO (dep);
7180 int tick1;
7181
7182 gcc_assert (INSN_TICK (pro) >= MIN_TICK);
7183
7184 tick1 = INSN_TICK (pro) + dep_cost (dep);
7185 if (tick1 > tick)
7186 tick = tick1;
7187
7188 if (!full_p)
7189 break;
7190 }
7191 }
7192 else
7193 tick = -1;
7194
7195 INSN_TICK (next) = tick;
7196
7197 delay = tick - clock_var;
7198 if (delay <= 0 || sched_pressure != SCHED_PRESSURE_NONE)
7199 delay = QUEUE_READY;
7200
7201 change_queue_index (next, delay);
7202
7203 return delay;
7204 }
7205
7206 /* Move NEXT to the proper queue list with (DELAY >= 1),
7207 or add it to the ready list (DELAY == QUEUE_READY),
7208 or remove it from ready and queue lists at all (DELAY == QUEUE_NOWHERE). */
7209 static void
7210 change_queue_index (rtx_insn *next, int delay)
7211 {
7212 int i = QUEUE_INDEX (next);
7213
7214 gcc_assert (QUEUE_NOWHERE <= delay && delay <= max_insn_queue_index
7215 && delay != 0);
7216 gcc_assert (i != QUEUE_SCHEDULED);
7217
7218 if ((delay > 0 && NEXT_Q_AFTER (q_ptr, delay) == i)
7219 || (delay < 0 && delay == i))
7220 /* We have nothing to do. */
7221 return;
7222
7223 /* Remove NEXT from wherever it is now. */
7224 if (i == QUEUE_READY)
7225 ready_remove_insn (next);
7226 else if (i >= 0)
7227 queue_remove (next);
7228
7229 /* Add it to the proper place. */
7230 if (delay == QUEUE_READY)
7231 ready_add (readyp, next, false);
7232 else if (delay >= 1)
7233 queue_insn (next, delay, "change queue index");
7234
7235 if (sched_verbose >= 2)
7236 {
7237 fprintf (sched_dump, ";;\t\ttick updated: insn %s",
7238 (*current_sched_info->print_insn) (next, 0));
7239
7240 if (delay == QUEUE_READY)
7241 fprintf (sched_dump, " into ready\n");
7242 else if (delay >= 1)
7243 fprintf (sched_dump, " into queue with cost=%d\n", delay);
7244 else
7245 fprintf (sched_dump, " removed from ready or queue lists\n");
7246 }
7247 }
7248
7249 static int sched_ready_n_insns = -1;
7250
7251 /* Initialize per region data structures. */
7252 void
7253 sched_extend_ready_list (int new_sched_ready_n_insns)
7254 {
7255 int i;
7256
7257 if (sched_ready_n_insns == -1)
7258 /* At the first call we need to initialize one more choice_stack
7259 entry. */
7260 {
7261 i = 0;
7262 sched_ready_n_insns = 0;
7263 scheduled_insns.reserve (new_sched_ready_n_insns);
7264 }
7265 else
7266 i = sched_ready_n_insns + 1;
7267
7268 ready.veclen = new_sched_ready_n_insns + issue_rate;
7269 ready.vec = XRESIZEVEC (rtx_insn *, ready.vec, ready.veclen);
7270
7271 gcc_assert (new_sched_ready_n_insns >= sched_ready_n_insns);
7272
7273 ready_try = (signed char *) xrecalloc (ready_try, new_sched_ready_n_insns,
7274 sched_ready_n_insns,
7275 sizeof (*ready_try));
7276
7277 /* We allocate +1 element to save initial state in the choice_stack[0]
7278 entry. */
7279 choice_stack = XRESIZEVEC (struct choice_entry, choice_stack,
7280 new_sched_ready_n_insns + 1);
7281
7282 for (; i <= new_sched_ready_n_insns; i++)
7283 {
7284 choice_stack[i].state = xmalloc (dfa_state_size);
7285
7286 if (targetm.sched.first_cycle_multipass_init)
7287 targetm.sched.first_cycle_multipass_init (&(choice_stack[i]
7288 .target_data));
7289 }
7290
7291 sched_ready_n_insns = new_sched_ready_n_insns;
7292 }
7293
7294 /* Free per region data structures. */
7295 void
7296 sched_finish_ready_list (void)
7297 {
7298 int i;
7299
7300 free (ready.vec);
7301 ready.vec = NULL;
7302 ready.veclen = 0;
7303
7304 free (ready_try);
7305 ready_try = NULL;
7306
7307 for (i = 0; i <= sched_ready_n_insns; i++)
7308 {
7309 if (targetm.sched.first_cycle_multipass_fini)
7310 targetm.sched.first_cycle_multipass_fini (&(choice_stack[i]
7311 .target_data));
7312
7313 free (choice_stack [i].state);
7314 }
7315 free (choice_stack);
7316 choice_stack = NULL;
7317
7318 sched_ready_n_insns = -1;
7319 }
7320
7321 static int
7322 haifa_luid_for_non_insn (rtx x)
7323 {
7324 gcc_assert (NOTE_P (x) || LABEL_P (x));
7325
7326 return 0;
7327 }
7328
7329 /* Generates recovery code for INSN. */
7330 static void
7331 generate_recovery_code (rtx_insn *insn)
7332 {
7333 if (TODO_SPEC (insn) & BEGIN_SPEC)
7334 begin_speculative_block (insn);
7335
7336 /* Here we have insn with no dependencies to
7337 instructions other then CHECK_SPEC ones. */
7338
7339 if (TODO_SPEC (insn) & BE_IN_SPEC)
7340 add_to_speculative_block (insn);
7341 }
7342
7343 /* Helper function.
7344 Tries to add speculative dependencies of type FS between instructions
7345 in deps_list L and TWIN. */
7346 static void
7347 process_insn_forw_deps_be_in_spec (rtx insn, rtx_insn *twin, ds_t fs)
7348 {
7349 sd_iterator_def sd_it;
7350 dep_t dep;
7351
7352 FOR_EACH_DEP (insn, SD_LIST_FORW, sd_it, dep)
7353 {
7354 ds_t ds;
7355 rtx_insn *consumer;
7356
7357 consumer = DEP_CON (dep);
7358
7359 ds = DEP_STATUS (dep);
7360
7361 if (/* If we want to create speculative dep. */
7362 fs
7363 /* And we can do that because this is a true dep. */
7364 && (ds & DEP_TYPES) == DEP_TRUE)
7365 {
7366 gcc_assert (!(ds & BE_IN_SPEC));
7367
7368 if (/* If this dep can be overcome with 'begin speculation'. */
7369 ds & BEGIN_SPEC)
7370 /* Then we have a choice: keep the dep 'begin speculative'
7371 or transform it into 'be in speculative'. */
7372 {
7373 if (/* In try_ready we assert that if insn once became ready
7374 it can be removed from the ready (or queue) list only
7375 due to backend decision. Hence we can't let the
7376 probability of the speculative dep to decrease. */
7377 ds_weak (ds) <= ds_weak (fs))
7378 {
7379 ds_t new_ds;
7380
7381 new_ds = (ds & ~BEGIN_SPEC) | fs;
7382
7383 if (/* consumer can 'be in speculative'. */
7384 sched_insn_is_legitimate_for_speculation_p (consumer,
7385 new_ds))
7386 /* Transform it to be in speculative. */
7387 ds = new_ds;
7388 }
7389 }
7390 else
7391 /* Mark the dep as 'be in speculative'. */
7392 ds |= fs;
7393 }
7394
7395 {
7396 dep_def _new_dep, *new_dep = &_new_dep;
7397
7398 init_dep_1 (new_dep, twin, consumer, DEP_TYPE (dep), ds);
7399 sd_add_dep (new_dep, false);
7400 }
7401 }
7402 }
7403
7404 /* Generates recovery code for BEGIN speculative INSN. */
7405 static void
7406 begin_speculative_block (rtx_insn *insn)
7407 {
7408 if (TODO_SPEC (insn) & BEGIN_DATA)
7409 nr_begin_data++;
7410 if (TODO_SPEC (insn) & BEGIN_CONTROL)
7411 nr_begin_control++;
7412
7413 create_check_block_twin (insn, false);
7414
7415 TODO_SPEC (insn) &= ~BEGIN_SPEC;
7416 }
7417
7418 static void haifa_init_insn (rtx_insn *);
7419
7420 /* Generates recovery code for BE_IN speculative INSN. */
7421 static void
7422 add_to_speculative_block (rtx_insn *insn)
7423 {
7424 ds_t ts;
7425 sd_iterator_def sd_it;
7426 dep_t dep;
7427 rtx_insn_list *twins = NULL;
7428 rtx_vec_t priorities_roots;
7429
7430 ts = TODO_SPEC (insn);
7431 gcc_assert (!(ts & ~BE_IN_SPEC));
7432
7433 if (ts & BE_IN_DATA)
7434 nr_be_in_data++;
7435 if (ts & BE_IN_CONTROL)
7436 nr_be_in_control++;
7437
7438 TODO_SPEC (insn) &= ~BE_IN_SPEC;
7439 gcc_assert (!TODO_SPEC (insn));
7440
7441 DONE_SPEC (insn) |= ts;
7442
7443 /* First we convert all simple checks to branchy. */
7444 for (sd_it = sd_iterator_start (insn, SD_LIST_SPEC_BACK);
7445 sd_iterator_cond (&sd_it, &dep);)
7446 {
7447 rtx_insn *check = DEP_PRO (dep);
7448
7449 if (IS_SPECULATION_SIMPLE_CHECK_P (check))
7450 {
7451 create_check_block_twin (check, true);
7452
7453 /* Restart search. */
7454 sd_it = sd_iterator_start (insn, SD_LIST_SPEC_BACK);
7455 }
7456 else
7457 /* Continue search. */
7458 sd_iterator_next (&sd_it);
7459 }
7460
7461 priorities_roots.create (0);
7462 clear_priorities (insn, &priorities_roots);
7463
7464 while (1)
7465 {
7466 rtx_insn *check, *twin;
7467 basic_block rec;
7468
7469 /* Get the first backward dependency of INSN. */
7470 sd_it = sd_iterator_start (insn, SD_LIST_SPEC_BACK);
7471 if (!sd_iterator_cond (&sd_it, &dep))
7472 /* INSN has no backward dependencies left. */
7473 break;
7474
7475 gcc_assert ((DEP_STATUS (dep) & BEGIN_SPEC) == 0
7476 && (DEP_STATUS (dep) & BE_IN_SPEC) != 0
7477 && (DEP_STATUS (dep) & DEP_TYPES) == DEP_TRUE);
7478
7479 check = DEP_PRO (dep);
7480
7481 gcc_assert (!IS_SPECULATION_CHECK_P (check) && !ORIG_PAT (check)
7482 && QUEUE_INDEX (check) == QUEUE_NOWHERE);
7483
7484 rec = BLOCK_FOR_INSN (check);
7485
7486 twin = emit_insn_before (copy_insn (PATTERN (insn)), BB_END (rec));
7487 haifa_init_insn (twin);
7488
7489 sd_copy_back_deps (twin, insn, true);
7490
7491 if (sched_verbose && spec_info->dump)
7492 /* INSN_BB (insn) isn't determined for twin insns yet.
7493 So we can't use current_sched_info->print_insn. */
7494 fprintf (spec_info->dump, ";;\t\tGenerated twin insn : %d/rec%d\n",
7495 INSN_UID (twin), rec->index);
7496
7497 twins = alloc_INSN_LIST (twin, twins);
7498
7499 /* Add dependences between TWIN and all appropriate
7500 instructions from REC. */
7501 FOR_EACH_DEP (insn, SD_LIST_SPEC_BACK, sd_it, dep)
7502 {
7503 rtx_insn *pro = DEP_PRO (dep);
7504
7505 gcc_assert (DEP_TYPE (dep) == REG_DEP_TRUE);
7506
7507 /* INSN might have dependencies from the instructions from
7508 several recovery blocks. At this iteration we process those
7509 producers that reside in REC. */
7510 if (BLOCK_FOR_INSN (pro) == rec)
7511 {
7512 dep_def _new_dep, *new_dep = &_new_dep;
7513
7514 init_dep (new_dep, pro, twin, REG_DEP_TRUE);
7515 sd_add_dep (new_dep, false);
7516 }
7517 }
7518
7519 process_insn_forw_deps_be_in_spec (insn, twin, ts);
7520
7521 /* Remove all dependencies between INSN and insns in REC. */
7522 for (sd_it = sd_iterator_start (insn, SD_LIST_SPEC_BACK);
7523 sd_iterator_cond (&sd_it, &dep);)
7524 {
7525 rtx_insn *pro = DEP_PRO (dep);
7526
7527 if (BLOCK_FOR_INSN (pro) == rec)
7528 sd_delete_dep (sd_it);
7529 else
7530 sd_iterator_next (&sd_it);
7531 }
7532 }
7533
7534 /* We couldn't have added the dependencies between INSN and TWINS earlier
7535 because that would make TWINS appear in the INSN_BACK_DEPS (INSN). */
7536 while (twins)
7537 {
7538 rtx_insn *twin;
7539 rtx_insn_list *next_node;
7540
7541 twin = twins->insn ();
7542
7543 {
7544 dep_def _new_dep, *new_dep = &_new_dep;
7545
7546 init_dep (new_dep, insn, twin, REG_DEP_OUTPUT);
7547 sd_add_dep (new_dep, false);
7548 }
7549
7550 next_node = twins->next ();
7551 free_INSN_LIST_node (twins);
7552 twins = next_node;
7553 }
7554
7555 calc_priorities (priorities_roots);
7556 priorities_roots.release ();
7557 }
7558
7559 /* Extends and fills with zeros (only the new part) array pointed to by P. */
7560 void *
7561 xrecalloc (void *p, size_t new_nmemb, size_t old_nmemb, size_t size)
7562 {
7563 gcc_assert (new_nmemb >= old_nmemb);
7564 p = XRESIZEVAR (void, p, new_nmemb * size);
7565 memset (((char *) p) + old_nmemb * size, 0, (new_nmemb - old_nmemb) * size);
7566 return p;
7567 }
7568
7569 /* Helper function.
7570 Find fallthru edge from PRED. */
7571 edge
7572 find_fallthru_edge_from (basic_block pred)
7573 {
7574 edge e;
7575 basic_block succ;
7576
7577 succ = pred->next_bb;
7578 gcc_assert (succ->prev_bb == pred);
7579
7580 if (EDGE_COUNT (pred->succs) <= EDGE_COUNT (succ->preds))
7581 {
7582 e = find_fallthru_edge (pred->succs);
7583
7584 if (e)
7585 {
7586 gcc_assert (e->dest == succ);
7587 return e;
7588 }
7589 }
7590 else
7591 {
7592 e = find_fallthru_edge (succ->preds);
7593
7594 if (e)
7595 {
7596 gcc_assert (e->src == pred);
7597 return e;
7598 }
7599 }
7600
7601 return NULL;
7602 }
7603
7604 /* Extend per basic block data structures. */
7605 static void
7606 sched_extend_bb (void)
7607 {
7608 /* The following is done to keep current_sched_info->next_tail non null. */
7609 rtx_insn *end = BB_END (EXIT_BLOCK_PTR_FOR_FN (cfun)->prev_bb);
7610 rtx_insn *insn = DEBUG_INSN_P (end) ? prev_nondebug_insn (end) : end;
7611 if (NEXT_INSN (end) == 0
7612 || (!NOTE_P (insn)
7613 && !LABEL_P (insn)
7614 /* Don't emit a NOTE if it would end up before a BARRIER. */
7615 && !BARRIER_P (NEXT_INSN (end))))
7616 {
7617 rtx_note *note = emit_note_after (NOTE_INSN_DELETED, end);
7618 /* Make note appear outside BB. */
7619 set_block_for_insn (note, NULL);
7620 BB_END (EXIT_BLOCK_PTR_FOR_FN (cfun)->prev_bb) = end;
7621 }
7622 }
7623
7624 /* Init per basic block data structures. */
7625 void
7626 sched_init_bbs (void)
7627 {
7628 sched_extend_bb ();
7629 }
7630
7631 /* Initialize BEFORE_RECOVERY variable. */
7632 static void
7633 init_before_recovery (basic_block *before_recovery_ptr)
7634 {
7635 basic_block last;
7636 edge e;
7637
7638 last = EXIT_BLOCK_PTR_FOR_FN (cfun)->prev_bb;
7639 e = find_fallthru_edge_from (last);
7640
7641 if (e)
7642 {
7643 /* We create two basic blocks:
7644 1. Single instruction block is inserted right after E->SRC
7645 and has jump to
7646 2. Empty block right before EXIT_BLOCK.
7647 Between these two blocks recovery blocks will be emitted. */
7648
7649 basic_block single, empty;
7650 rtx_insn *x;
7651 rtx label;
7652
7653 /* If the fallthrough edge to exit we've found is from the block we've
7654 created before, don't do anything more. */
7655 if (last == after_recovery)
7656 return;
7657
7658 adding_bb_to_current_region_p = false;
7659
7660 single = sched_create_empty_bb (last);
7661 empty = sched_create_empty_bb (single);
7662
7663 /* Add new blocks to the root loop. */
7664 if (current_loops != NULL)
7665 {
7666 add_bb_to_loop (single, (*current_loops->larray)[0]);
7667 add_bb_to_loop (empty, (*current_loops->larray)[0]);
7668 }
7669
7670 single->count = last->count;
7671 empty->count = last->count;
7672 single->frequency = last->frequency;
7673 empty->frequency = last->frequency;
7674 BB_COPY_PARTITION (single, last);
7675 BB_COPY_PARTITION (empty, last);
7676
7677 redirect_edge_succ (e, single);
7678 make_single_succ_edge (single, empty, 0);
7679 make_single_succ_edge (empty, EXIT_BLOCK_PTR_FOR_FN (cfun),
7680 EDGE_FALLTHRU);
7681
7682 label = block_label (empty);
7683 x = emit_jump_insn_after (gen_jump (label), BB_END (single));
7684 JUMP_LABEL (x) = label;
7685 LABEL_NUSES (label)++;
7686 haifa_init_insn (x);
7687
7688 emit_barrier_after (x);
7689
7690 sched_init_only_bb (empty, NULL);
7691 sched_init_only_bb (single, NULL);
7692 sched_extend_bb ();
7693
7694 adding_bb_to_current_region_p = true;
7695 before_recovery = single;
7696 after_recovery = empty;
7697
7698 if (before_recovery_ptr)
7699 *before_recovery_ptr = before_recovery;
7700
7701 if (sched_verbose >= 2 && spec_info->dump)
7702 fprintf (spec_info->dump,
7703 ";;\t\tFixed fallthru to EXIT : %d->>%d->%d->>EXIT\n",
7704 last->index, single->index, empty->index);
7705 }
7706 else
7707 before_recovery = last;
7708 }
7709
7710 /* Returns new recovery block. */
7711 basic_block
7712 sched_create_recovery_block (basic_block *before_recovery_ptr)
7713 {
7714 rtx label;
7715 rtx_insn *barrier;
7716 basic_block rec;
7717
7718 haifa_recovery_bb_recently_added_p = true;
7719 haifa_recovery_bb_ever_added_p = true;
7720
7721 init_before_recovery (before_recovery_ptr);
7722
7723 barrier = get_last_bb_insn (before_recovery);
7724 gcc_assert (BARRIER_P (barrier));
7725
7726 label = emit_label_after (gen_label_rtx (), barrier);
7727
7728 rec = create_basic_block (label, label, before_recovery);
7729
7730 /* A recovery block always ends with an unconditional jump. */
7731 emit_barrier_after (BB_END (rec));
7732
7733 if (BB_PARTITION (before_recovery) != BB_UNPARTITIONED)
7734 BB_SET_PARTITION (rec, BB_COLD_PARTITION);
7735
7736 if (sched_verbose && spec_info->dump)
7737 fprintf (spec_info->dump, ";;\t\tGenerated recovery block rec%d\n",
7738 rec->index);
7739
7740 return rec;
7741 }
7742
7743 /* Create edges: FIRST_BB -> REC; FIRST_BB -> SECOND_BB; REC -> SECOND_BB
7744 and emit necessary jumps. */
7745 void
7746 sched_create_recovery_edges (basic_block first_bb, basic_block rec,
7747 basic_block second_bb)
7748 {
7749 rtx label;
7750 rtx jump;
7751 int edge_flags;
7752
7753 /* This is fixing of incoming edge. */
7754 /* ??? Which other flags should be specified? */
7755 if (BB_PARTITION (first_bb) != BB_PARTITION (rec))
7756 /* Partition type is the same, if it is "unpartitioned". */
7757 edge_flags = EDGE_CROSSING;
7758 else
7759 edge_flags = 0;
7760
7761 make_edge (first_bb, rec, edge_flags);
7762 label = block_label (second_bb);
7763 jump = emit_jump_insn_after (gen_jump (label), BB_END (rec));
7764 JUMP_LABEL (jump) = label;
7765 LABEL_NUSES (label)++;
7766
7767 if (BB_PARTITION (second_bb) != BB_PARTITION (rec))
7768 /* Partition type is the same, if it is "unpartitioned". */
7769 {
7770 /* Rewritten from cfgrtl.c. */
7771 if (flag_reorder_blocks_and_partition
7772 && targetm_common.have_named_sections)
7773 {
7774 /* We don't need the same note for the check because
7775 any_condjump_p (check) == true. */
7776 CROSSING_JUMP_P (jump) = 1;
7777 }
7778 edge_flags = EDGE_CROSSING;
7779 }
7780 else
7781 edge_flags = 0;
7782
7783 make_single_succ_edge (rec, second_bb, edge_flags);
7784 if (dom_info_available_p (CDI_DOMINATORS))
7785 set_immediate_dominator (CDI_DOMINATORS, rec, first_bb);
7786 }
7787
7788 /* This function creates recovery code for INSN. If MUTATE_P is nonzero,
7789 INSN is a simple check, that should be converted to branchy one. */
7790 static void
7791 create_check_block_twin (rtx_insn *insn, bool mutate_p)
7792 {
7793 basic_block rec;
7794 rtx_insn *label, *check, *twin;
7795 rtx check_pat;
7796 ds_t fs;
7797 sd_iterator_def sd_it;
7798 dep_t dep;
7799 dep_def _new_dep, *new_dep = &_new_dep;
7800 ds_t todo_spec;
7801
7802 gcc_assert (ORIG_PAT (insn) != NULL_RTX);
7803
7804 if (!mutate_p)
7805 todo_spec = TODO_SPEC (insn);
7806 else
7807 {
7808 gcc_assert (IS_SPECULATION_SIMPLE_CHECK_P (insn)
7809 && (TODO_SPEC (insn) & SPECULATIVE) == 0);
7810
7811 todo_spec = CHECK_SPEC (insn);
7812 }
7813
7814 todo_spec &= SPECULATIVE;
7815
7816 /* Create recovery block. */
7817 if (mutate_p || targetm.sched.needs_block_p (todo_spec))
7818 {
7819 rec = sched_create_recovery_block (NULL);
7820 label = BB_HEAD (rec);
7821 }
7822 else
7823 {
7824 rec = EXIT_BLOCK_PTR_FOR_FN (cfun);
7825 label = NULL;
7826 }
7827
7828 /* Emit CHECK. */
7829 check_pat = targetm.sched.gen_spec_check (insn, label, todo_spec);
7830
7831 if (rec != EXIT_BLOCK_PTR_FOR_FN (cfun))
7832 {
7833 /* To have mem_reg alive at the beginning of second_bb,
7834 we emit check BEFORE insn, so insn after splitting
7835 insn will be at the beginning of second_bb, which will
7836 provide us with the correct life information. */
7837 check = emit_jump_insn_before (check_pat, insn);
7838 JUMP_LABEL (check) = label;
7839 LABEL_NUSES (label)++;
7840 }
7841 else
7842 check = emit_insn_before (check_pat, insn);
7843
7844 /* Extend data structures. */
7845 haifa_init_insn (check);
7846
7847 /* CHECK is being added to current region. Extend ready list. */
7848 gcc_assert (sched_ready_n_insns != -1);
7849 sched_extend_ready_list (sched_ready_n_insns + 1);
7850
7851 if (current_sched_info->add_remove_insn)
7852 current_sched_info->add_remove_insn (insn, 0);
7853
7854 RECOVERY_BLOCK (check) = rec;
7855
7856 if (sched_verbose && spec_info->dump)
7857 fprintf (spec_info->dump, ";;\t\tGenerated check insn : %s\n",
7858 (*current_sched_info->print_insn) (check, 0));
7859
7860 gcc_assert (ORIG_PAT (insn));
7861
7862 /* Initialize TWIN (twin is a duplicate of original instruction
7863 in the recovery block). */
7864 if (rec != EXIT_BLOCK_PTR_FOR_FN (cfun))
7865 {
7866 sd_iterator_def sd_it;
7867 dep_t dep;
7868
7869 FOR_EACH_DEP (insn, SD_LIST_RES_BACK, sd_it, dep)
7870 if ((DEP_STATUS (dep) & DEP_OUTPUT) != 0)
7871 {
7872 struct _dep _dep2, *dep2 = &_dep2;
7873
7874 init_dep (dep2, DEP_PRO (dep), check, REG_DEP_TRUE);
7875
7876 sd_add_dep (dep2, true);
7877 }
7878
7879 twin = emit_insn_after (ORIG_PAT (insn), BB_END (rec));
7880 haifa_init_insn (twin);
7881
7882 if (sched_verbose && spec_info->dump)
7883 /* INSN_BB (insn) isn't determined for twin insns yet.
7884 So we can't use current_sched_info->print_insn. */
7885 fprintf (spec_info->dump, ";;\t\tGenerated twin insn : %d/rec%d\n",
7886 INSN_UID (twin), rec->index);
7887 }
7888 else
7889 {
7890 ORIG_PAT (check) = ORIG_PAT (insn);
7891 HAS_INTERNAL_DEP (check) = 1;
7892 twin = check;
7893 /* ??? We probably should change all OUTPUT dependencies to
7894 (TRUE | OUTPUT). */
7895 }
7896
7897 /* Copy all resolved back dependencies of INSN to TWIN. This will
7898 provide correct value for INSN_TICK (TWIN). */
7899 sd_copy_back_deps (twin, insn, true);
7900
7901 if (rec != EXIT_BLOCK_PTR_FOR_FN (cfun))
7902 /* In case of branchy check, fix CFG. */
7903 {
7904 basic_block first_bb, second_bb;
7905 rtx_insn *jump;
7906
7907 first_bb = BLOCK_FOR_INSN (check);
7908 second_bb = sched_split_block (first_bb, check);
7909
7910 sched_create_recovery_edges (first_bb, rec, second_bb);
7911
7912 sched_init_only_bb (second_bb, first_bb);
7913 sched_init_only_bb (rec, EXIT_BLOCK_PTR_FOR_FN (cfun));
7914
7915 jump = BB_END (rec);
7916 haifa_init_insn (jump);
7917 }
7918
7919 /* Move backward dependences from INSN to CHECK and
7920 move forward dependences from INSN to TWIN. */
7921
7922 /* First, create dependencies between INSN's producers and CHECK & TWIN. */
7923 FOR_EACH_DEP (insn, SD_LIST_BACK, sd_it, dep)
7924 {
7925 rtx_insn *pro = DEP_PRO (dep);
7926 ds_t ds;
7927
7928 /* If BEGIN_DATA: [insn ~~TRUE~~> producer]:
7929 check --TRUE--> producer ??? or ANTI ???
7930 twin --TRUE--> producer
7931 twin --ANTI--> check
7932
7933 If BEGIN_CONTROL: [insn ~~ANTI~~> producer]:
7934 check --ANTI--> producer
7935 twin --ANTI--> producer
7936 twin --ANTI--> check
7937
7938 If BE_IN_SPEC: [insn ~~TRUE~~> producer]:
7939 check ~~TRUE~~> producer
7940 twin ~~TRUE~~> producer
7941 twin --ANTI--> check */
7942
7943 ds = DEP_STATUS (dep);
7944
7945 if (ds & BEGIN_SPEC)
7946 {
7947 gcc_assert (!mutate_p);
7948 ds &= ~BEGIN_SPEC;
7949 }
7950
7951 init_dep_1 (new_dep, pro, check, DEP_TYPE (dep), ds);
7952 sd_add_dep (new_dep, false);
7953
7954 if (rec != EXIT_BLOCK_PTR_FOR_FN (cfun))
7955 {
7956 DEP_CON (new_dep) = twin;
7957 sd_add_dep (new_dep, false);
7958 }
7959 }
7960
7961 /* Second, remove backward dependencies of INSN. */
7962 for (sd_it = sd_iterator_start (insn, SD_LIST_SPEC_BACK);
7963 sd_iterator_cond (&sd_it, &dep);)
7964 {
7965 if ((DEP_STATUS (dep) & BEGIN_SPEC)
7966 || mutate_p)
7967 /* We can delete this dep because we overcome it with
7968 BEGIN_SPECULATION. */
7969 sd_delete_dep (sd_it);
7970 else
7971 sd_iterator_next (&sd_it);
7972 }
7973
7974 /* Future Speculations. Determine what BE_IN speculations will be like. */
7975 fs = 0;
7976
7977 /* Fields (DONE_SPEC (x) & BEGIN_SPEC) and CHECK_SPEC (x) are set only
7978 here. */
7979
7980 gcc_assert (!DONE_SPEC (insn));
7981
7982 if (!mutate_p)
7983 {
7984 ds_t ts = TODO_SPEC (insn);
7985
7986 DONE_SPEC (insn) = ts & BEGIN_SPEC;
7987 CHECK_SPEC (check) = ts & BEGIN_SPEC;
7988
7989 /* Luckiness of future speculations solely depends upon initial
7990 BEGIN speculation. */
7991 if (ts & BEGIN_DATA)
7992 fs = set_dep_weak (fs, BE_IN_DATA, get_dep_weak (ts, BEGIN_DATA));
7993 if (ts & BEGIN_CONTROL)
7994 fs = set_dep_weak (fs, BE_IN_CONTROL,
7995 get_dep_weak (ts, BEGIN_CONTROL));
7996 }
7997 else
7998 CHECK_SPEC (check) = CHECK_SPEC (insn);
7999
8000 /* Future speculations: call the helper. */
8001 process_insn_forw_deps_be_in_spec (insn, twin, fs);
8002
8003 if (rec != EXIT_BLOCK_PTR_FOR_FN (cfun))
8004 {
8005 /* Which types of dependencies should we use here is,
8006 generally, machine-dependent question... But, for now,
8007 it is not. */
8008
8009 if (!mutate_p)
8010 {
8011 init_dep (new_dep, insn, check, REG_DEP_TRUE);
8012 sd_add_dep (new_dep, false);
8013
8014 init_dep (new_dep, insn, twin, REG_DEP_OUTPUT);
8015 sd_add_dep (new_dep, false);
8016 }
8017 else
8018 {
8019 if (spec_info->dump)
8020 fprintf (spec_info->dump, ";;\t\tRemoved simple check : %s\n",
8021 (*current_sched_info->print_insn) (insn, 0));
8022
8023 /* Remove all dependencies of the INSN. */
8024 {
8025 sd_it = sd_iterator_start (insn, (SD_LIST_FORW
8026 | SD_LIST_BACK
8027 | SD_LIST_RES_BACK));
8028 while (sd_iterator_cond (&sd_it, &dep))
8029 sd_delete_dep (sd_it);
8030 }
8031
8032 /* If former check (INSN) already was moved to the ready (or queue)
8033 list, add new check (CHECK) there too. */
8034 if (QUEUE_INDEX (insn) != QUEUE_NOWHERE)
8035 try_ready (check);
8036
8037 /* Remove old check from instruction stream and free its
8038 data. */
8039 sched_remove_insn (insn);
8040 }
8041
8042 init_dep (new_dep, check, twin, REG_DEP_ANTI);
8043 sd_add_dep (new_dep, false);
8044 }
8045 else
8046 {
8047 init_dep_1 (new_dep, insn, check, REG_DEP_TRUE, DEP_TRUE | DEP_OUTPUT);
8048 sd_add_dep (new_dep, false);
8049 }
8050
8051 if (!mutate_p)
8052 /* Fix priorities. If MUTATE_P is nonzero, this is not necessary,
8053 because it'll be done later in add_to_speculative_block. */
8054 {
8055 rtx_vec_t priorities_roots = rtx_vec_t ();
8056
8057 clear_priorities (twin, &priorities_roots);
8058 calc_priorities (priorities_roots);
8059 priorities_roots.release ();
8060 }
8061 }
8062
8063 /* Removes dependency between instructions in the recovery block REC
8064 and usual region instructions. It keeps inner dependences so it
8065 won't be necessary to recompute them. */
8066 static void
8067 fix_recovery_deps (basic_block rec)
8068 {
8069 rtx_insn *note, *insn, *jump;
8070 rtx_insn_list *ready_list = 0;
8071 bitmap_head in_ready;
8072 rtx_insn_list *link;
8073
8074 bitmap_initialize (&in_ready, 0);
8075
8076 /* NOTE - a basic block note. */
8077 note = NEXT_INSN (BB_HEAD (rec));
8078 gcc_assert (NOTE_INSN_BASIC_BLOCK_P (note));
8079 insn = BB_END (rec);
8080 gcc_assert (JUMP_P (insn));
8081 insn = PREV_INSN (insn);
8082
8083 do
8084 {
8085 sd_iterator_def sd_it;
8086 dep_t dep;
8087
8088 for (sd_it = sd_iterator_start (insn, SD_LIST_FORW);
8089 sd_iterator_cond (&sd_it, &dep);)
8090 {
8091 rtx_insn *consumer = DEP_CON (dep);
8092
8093 if (BLOCK_FOR_INSN (consumer) != rec)
8094 {
8095 sd_delete_dep (sd_it);
8096
8097 if (bitmap_set_bit (&in_ready, INSN_LUID (consumer)))
8098 ready_list = alloc_INSN_LIST (consumer, ready_list);
8099 }
8100 else
8101 {
8102 gcc_assert ((DEP_STATUS (dep) & DEP_TYPES) == DEP_TRUE);
8103
8104 sd_iterator_next (&sd_it);
8105 }
8106 }
8107
8108 insn = PREV_INSN (insn);
8109 }
8110 while (insn != note);
8111
8112 bitmap_clear (&in_ready);
8113
8114 /* Try to add instructions to the ready or queue list. */
8115 for (link = ready_list; link; link = link->next ())
8116 try_ready (link->insn ());
8117 free_INSN_LIST_list (&ready_list);
8118
8119 /* Fixing jump's dependences. */
8120 insn = BB_HEAD (rec);
8121 jump = BB_END (rec);
8122
8123 gcc_assert (LABEL_P (insn));
8124 insn = NEXT_INSN (insn);
8125
8126 gcc_assert (NOTE_INSN_BASIC_BLOCK_P (insn));
8127 add_jump_dependencies (insn, jump);
8128 }
8129
8130 /* Change pattern of INSN to NEW_PAT. Invalidate cached haifa
8131 instruction data. */
8132 static bool
8133 haifa_change_pattern (rtx_insn *insn, rtx new_pat)
8134 {
8135 int t;
8136
8137 t = validate_change (insn, &PATTERN (insn), new_pat, 0);
8138 if (!t)
8139 return false;
8140
8141 update_insn_after_change (insn);
8142 return true;
8143 }
8144
8145 /* -1 - can't speculate,
8146 0 - for speculation with REQUEST mode it is OK to use
8147 current instruction pattern,
8148 1 - need to change pattern for *NEW_PAT to be speculative. */
8149 int
8150 sched_speculate_insn (rtx_insn *insn, ds_t request, rtx *new_pat)
8151 {
8152 gcc_assert (current_sched_info->flags & DO_SPECULATION
8153 && (request & SPECULATIVE)
8154 && sched_insn_is_legitimate_for_speculation_p (insn, request));
8155
8156 if ((request & spec_info->mask) != request)
8157 return -1;
8158
8159 if (request & BE_IN_SPEC
8160 && !(request & BEGIN_SPEC))
8161 return 0;
8162
8163 return targetm.sched.speculate_insn (insn, request, new_pat);
8164 }
8165
8166 static int
8167 haifa_speculate_insn (rtx_insn *insn, ds_t request, rtx *new_pat)
8168 {
8169 gcc_assert (sched_deps_info->generate_spec_deps
8170 && !IS_SPECULATION_CHECK_P (insn));
8171
8172 if (HAS_INTERNAL_DEP (insn)
8173 || SCHED_GROUP_P (insn))
8174 return -1;
8175
8176 return sched_speculate_insn (insn, request, new_pat);
8177 }
8178
8179 /* Print some information about block BB, which starts with HEAD and
8180 ends with TAIL, before scheduling it.
8181 I is zero, if scheduler is about to start with the fresh ebb. */
8182 static void
8183 dump_new_block_header (int i, basic_block bb, rtx_insn *head, rtx_insn *tail)
8184 {
8185 if (!i)
8186 fprintf (sched_dump,
8187 ";; ======================================================\n");
8188 else
8189 fprintf (sched_dump,
8190 ";; =====================ADVANCING TO=====================\n");
8191 fprintf (sched_dump,
8192 ";; -- basic block %d from %d to %d -- %s reload\n",
8193 bb->index, INSN_UID (head), INSN_UID (tail),
8194 (reload_completed ? "after" : "before"));
8195 fprintf (sched_dump,
8196 ";; ======================================================\n");
8197 fprintf (sched_dump, "\n");
8198 }
8199
8200 /* Unlink basic block notes and labels and saves them, so they
8201 can be easily restored. We unlink basic block notes in EBB to
8202 provide back-compatibility with the previous code, as target backends
8203 assume, that there'll be only instructions between
8204 current_sched_info->{head and tail}. We restore these notes as soon
8205 as we can.
8206 FIRST (LAST) is the first (last) basic block in the ebb.
8207 NB: In usual case (FIRST == LAST) nothing is really done. */
8208 void
8209 unlink_bb_notes (basic_block first, basic_block last)
8210 {
8211 /* We DON'T unlink basic block notes of the first block in the ebb. */
8212 if (first == last)
8213 return;
8214
8215 bb_header = XNEWVEC (rtx_insn *, last_basic_block_for_fn (cfun));
8216
8217 /* Make a sentinel. */
8218 if (last->next_bb != EXIT_BLOCK_PTR_FOR_FN (cfun))
8219 bb_header[last->next_bb->index] = 0;
8220
8221 first = first->next_bb;
8222 do
8223 {
8224 rtx_insn *prev, *label, *note, *next;
8225
8226 label = BB_HEAD (last);
8227 if (LABEL_P (label))
8228 note = NEXT_INSN (label);
8229 else
8230 note = label;
8231 gcc_assert (NOTE_INSN_BASIC_BLOCK_P (note));
8232
8233 prev = PREV_INSN (label);
8234 next = NEXT_INSN (note);
8235 gcc_assert (prev && next);
8236
8237 SET_NEXT_INSN (prev) = next;
8238 SET_PREV_INSN (next) = prev;
8239
8240 bb_header[last->index] = label;
8241
8242 if (last == first)
8243 break;
8244
8245 last = last->prev_bb;
8246 }
8247 while (1);
8248 }
8249
8250 /* Restore basic block notes.
8251 FIRST is the first basic block in the ebb. */
8252 static void
8253 restore_bb_notes (basic_block first)
8254 {
8255 if (!bb_header)
8256 return;
8257
8258 /* We DON'T unlink basic block notes of the first block in the ebb. */
8259 first = first->next_bb;
8260 /* Remember: FIRST is actually a second basic block in the ebb. */
8261
8262 while (first != EXIT_BLOCK_PTR_FOR_FN (cfun)
8263 && bb_header[first->index])
8264 {
8265 rtx_insn *prev, *label, *note, *next;
8266
8267 label = bb_header[first->index];
8268 prev = PREV_INSN (label);
8269 next = NEXT_INSN (prev);
8270
8271 if (LABEL_P (label))
8272 note = NEXT_INSN (label);
8273 else
8274 note = label;
8275 gcc_assert (NOTE_INSN_BASIC_BLOCK_P (note));
8276
8277 bb_header[first->index] = 0;
8278
8279 SET_NEXT_INSN (prev) = label;
8280 SET_NEXT_INSN (note) = next;
8281 SET_PREV_INSN (next) = note;
8282
8283 first = first->next_bb;
8284 }
8285
8286 free (bb_header);
8287 bb_header = 0;
8288 }
8289
8290 /* Helper function.
8291 Fix CFG after both in- and inter-block movement of
8292 control_flow_insn_p JUMP. */
8293 static void
8294 fix_jump_move (rtx_insn *jump)
8295 {
8296 basic_block bb, jump_bb, jump_bb_next;
8297
8298 bb = BLOCK_FOR_INSN (PREV_INSN (jump));
8299 jump_bb = BLOCK_FOR_INSN (jump);
8300 jump_bb_next = jump_bb->next_bb;
8301
8302 gcc_assert (common_sched_info->sched_pass_id == SCHED_EBB_PASS
8303 || IS_SPECULATION_BRANCHY_CHECK_P (jump));
8304
8305 if (!NOTE_INSN_BASIC_BLOCK_P (BB_END (jump_bb_next)))
8306 /* if jump_bb_next is not empty. */
8307 BB_END (jump_bb) = BB_END (jump_bb_next);
8308
8309 if (BB_END (bb) != PREV_INSN (jump))
8310 /* Then there are instruction after jump that should be placed
8311 to jump_bb_next. */
8312 BB_END (jump_bb_next) = BB_END (bb);
8313 else
8314 /* Otherwise jump_bb_next is empty. */
8315 BB_END (jump_bb_next) = NEXT_INSN (BB_HEAD (jump_bb_next));
8316
8317 /* To make assertion in move_insn happy. */
8318 BB_END (bb) = PREV_INSN (jump);
8319
8320 update_bb_for_insn (jump_bb_next);
8321 }
8322
8323 /* Fix CFG after interblock movement of control_flow_insn_p JUMP. */
8324 static void
8325 move_block_after_check (rtx_insn *jump)
8326 {
8327 basic_block bb, jump_bb, jump_bb_next;
8328 vec<edge, va_gc> *t;
8329
8330 bb = BLOCK_FOR_INSN (PREV_INSN (jump));
8331 jump_bb = BLOCK_FOR_INSN (jump);
8332 jump_bb_next = jump_bb->next_bb;
8333
8334 update_bb_for_insn (jump_bb);
8335
8336 gcc_assert (IS_SPECULATION_CHECK_P (jump)
8337 || IS_SPECULATION_CHECK_P (BB_END (jump_bb_next)));
8338
8339 unlink_block (jump_bb_next);
8340 link_block (jump_bb_next, bb);
8341
8342 t = bb->succs;
8343 bb->succs = 0;
8344 move_succs (&(jump_bb->succs), bb);
8345 move_succs (&(jump_bb_next->succs), jump_bb);
8346 move_succs (&t, jump_bb_next);
8347
8348 df_mark_solutions_dirty ();
8349
8350 common_sched_info->fix_recovery_cfg
8351 (bb->index, jump_bb->index, jump_bb_next->index);
8352 }
8353
8354 /* Helper function for move_block_after_check.
8355 This functions attaches edge vector pointed to by SUCCSP to
8356 block TO. */
8357 static void
8358 move_succs (vec<edge, va_gc> **succsp, basic_block to)
8359 {
8360 edge e;
8361 edge_iterator ei;
8362
8363 gcc_assert (to->succs == 0);
8364
8365 to->succs = *succsp;
8366
8367 FOR_EACH_EDGE (e, ei, to->succs)
8368 e->src = to;
8369
8370 *succsp = 0;
8371 }
8372
8373 /* Remove INSN from the instruction stream.
8374 INSN should have any dependencies. */
8375 static void
8376 sched_remove_insn (rtx_insn *insn)
8377 {
8378 sd_finish_insn (insn);
8379
8380 change_queue_index (insn, QUEUE_NOWHERE);
8381 current_sched_info->add_remove_insn (insn, 1);
8382 delete_insn (insn);
8383 }
8384
8385 /* Clear priorities of all instructions, that are forward dependent on INSN.
8386 Store in vector pointed to by ROOTS_PTR insns on which priority () should
8387 be invoked to initialize all cleared priorities. */
8388 static void
8389 clear_priorities (rtx_insn *insn, rtx_vec_t *roots_ptr)
8390 {
8391 sd_iterator_def sd_it;
8392 dep_t dep;
8393 bool insn_is_root_p = true;
8394
8395 gcc_assert (QUEUE_INDEX (insn) != QUEUE_SCHEDULED);
8396
8397 FOR_EACH_DEP (insn, SD_LIST_BACK, sd_it, dep)
8398 {
8399 rtx_insn *pro = DEP_PRO (dep);
8400
8401 if (INSN_PRIORITY_STATUS (pro) >= 0
8402 && QUEUE_INDEX (insn) != QUEUE_SCHEDULED)
8403 {
8404 /* If DEP doesn't contribute to priority then INSN itself should
8405 be added to priority roots. */
8406 if (contributes_to_priority_p (dep))
8407 insn_is_root_p = false;
8408
8409 INSN_PRIORITY_STATUS (pro) = -1;
8410 clear_priorities (pro, roots_ptr);
8411 }
8412 }
8413
8414 if (insn_is_root_p)
8415 roots_ptr->safe_push (insn);
8416 }
8417
8418 /* Recompute priorities of instructions, whose priorities might have been
8419 changed. ROOTS is a vector of instructions whose priority computation will
8420 trigger initialization of all cleared priorities. */
8421 static void
8422 calc_priorities (rtx_vec_t roots)
8423 {
8424 int i;
8425 rtx_insn *insn;
8426
8427 FOR_EACH_VEC_ELT (roots, i, insn)
8428 priority (insn);
8429 }
8430
8431
8432 /* Add dependences between JUMP and other instructions in the recovery
8433 block. INSN is the first insn the recovery block. */
8434 static void
8435 add_jump_dependencies (rtx_insn *insn, rtx_insn *jump)
8436 {
8437 do
8438 {
8439 insn = NEXT_INSN (insn);
8440 if (insn == jump)
8441 break;
8442
8443 if (dep_list_size (insn, SD_LIST_FORW) == 0)
8444 {
8445 dep_def _new_dep, *new_dep = &_new_dep;
8446
8447 init_dep (new_dep, insn, jump, REG_DEP_ANTI);
8448 sd_add_dep (new_dep, false);
8449 }
8450 }
8451 while (1);
8452
8453 gcc_assert (!sd_lists_empty_p (jump, SD_LIST_BACK));
8454 }
8455
8456 /* Extend data structures for logical insn UID. */
8457 void
8458 sched_extend_luids (void)
8459 {
8460 int new_luids_max_uid = get_max_uid () + 1;
8461
8462 sched_luids.safe_grow_cleared (new_luids_max_uid);
8463 }
8464
8465 /* Initialize LUID for INSN. */
8466 void
8467 sched_init_insn_luid (rtx_insn *insn)
8468 {
8469 int i = INSN_P (insn) ? 1 : common_sched_info->luid_for_non_insn (insn);
8470 int luid;
8471
8472 if (i >= 0)
8473 {
8474 luid = sched_max_luid;
8475 sched_max_luid += i;
8476 }
8477 else
8478 luid = -1;
8479
8480 SET_INSN_LUID (insn, luid);
8481 }
8482
8483 /* Initialize luids for BBS.
8484 The hook common_sched_info->luid_for_non_insn () is used to determine
8485 if notes, labels, etc. need luids. */
8486 void
8487 sched_init_luids (bb_vec_t bbs)
8488 {
8489 int i;
8490 basic_block bb;
8491
8492 sched_extend_luids ();
8493 FOR_EACH_VEC_ELT (bbs, i, bb)
8494 {
8495 rtx_insn *insn;
8496
8497 FOR_BB_INSNS (bb, insn)
8498 sched_init_insn_luid (insn);
8499 }
8500 }
8501
8502 /* Free LUIDs. */
8503 void
8504 sched_finish_luids (void)
8505 {
8506 sched_luids.release ();
8507 sched_max_luid = 1;
8508 }
8509
8510 /* Return logical uid of INSN. Helpful while debugging. */
8511 int
8512 insn_luid (rtx_insn *insn)
8513 {
8514 return INSN_LUID (insn);
8515 }
8516
8517 /* Extend per insn data in the target. */
8518 void
8519 sched_extend_target (void)
8520 {
8521 if (targetm.sched.h_i_d_extended)
8522 targetm.sched.h_i_d_extended ();
8523 }
8524
8525 /* Extend global scheduler structures (those, that live across calls to
8526 schedule_block) to include information about just emitted INSN. */
8527 static void
8528 extend_h_i_d (void)
8529 {
8530 int reserve = (get_max_uid () + 1 - h_i_d.length ());
8531 if (reserve > 0
8532 && ! h_i_d.space (reserve))
8533 {
8534 h_i_d.safe_grow_cleared (3 * get_max_uid () / 2);
8535 sched_extend_target ();
8536 }
8537 }
8538
8539 /* Initialize h_i_d entry of the INSN with default values.
8540 Values, that are not explicitly initialized here, hold zero. */
8541 static void
8542 init_h_i_d (rtx_insn *insn)
8543 {
8544 if (INSN_LUID (insn) > 0)
8545 {
8546 INSN_COST (insn) = -1;
8547 QUEUE_INDEX (insn) = QUEUE_NOWHERE;
8548 INSN_TICK (insn) = INVALID_TICK;
8549 INSN_EXACT_TICK (insn) = INVALID_TICK;
8550 INTER_TICK (insn) = INVALID_TICK;
8551 TODO_SPEC (insn) = HARD_DEP;
8552 }
8553 }
8554
8555 /* Initialize haifa_insn_data for BBS. */
8556 void
8557 haifa_init_h_i_d (bb_vec_t bbs)
8558 {
8559 int i;
8560 basic_block bb;
8561
8562 extend_h_i_d ();
8563 FOR_EACH_VEC_ELT (bbs, i, bb)
8564 {
8565 rtx_insn *insn;
8566
8567 FOR_BB_INSNS (bb, insn)
8568 init_h_i_d (insn);
8569 }
8570 }
8571
8572 /* Finalize haifa_insn_data. */
8573 void
8574 haifa_finish_h_i_d (void)
8575 {
8576 int i;
8577 haifa_insn_data_t data;
8578 struct reg_use_data *use, *next;
8579
8580 FOR_EACH_VEC_ELT (h_i_d, i, data)
8581 {
8582 free (data->max_reg_pressure);
8583 free (data->reg_pressure);
8584 for (use = data->reg_use_list; use != NULL; use = next)
8585 {
8586 next = use->next_insn_use;
8587 free (use);
8588 }
8589 }
8590 h_i_d.release ();
8591 }
8592
8593 /* Init data for the new insn INSN. */
8594 static void
8595 haifa_init_insn (rtx_insn *insn)
8596 {
8597 gcc_assert (insn != NULL);
8598
8599 sched_extend_luids ();
8600 sched_init_insn_luid (insn);
8601 sched_extend_target ();
8602 sched_deps_init (false);
8603 extend_h_i_d ();
8604 init_h_i_d (insn);
8605
8606 if (adding_bb_to_current_region_p)
8607 {
8608 sd_init_insn (insn);
8609
8610 /* Extend dependency caches by one element. */
8611 extend_dependency_caches (1, false);
8612 }
8613 if (sched_pressure != SCHED_PRESSURE_NONE)
8614 init_insn_reg_pressure_info (insn);
8615 }
8616
8617 /* Init data for the new basic block BB which comes after AFTER. */
8618 static void
8619 haifa_init_only_bb (basic_block bb, basic_block after)
8620 {
8621 gcc_assert (bb != NULL);
8622
8623 sched_init_bbs ();
8624
8625 if (common_sched_info->add_block)
8626 /* This changes only data structures of the front-end. */
8627 common_sched_info->add_block (bb, after);
8628 }
8629
8630 /* A generic version of sched_split_block (). */
8631 basic_block
8632 sched_split_block_1 (basic_block first_bb, rtx after)
8633 {
8634 edge e;
8635
8636 e = split_block (first_bb, after);
8637 gcc_assert (e->src == first_bb);
8638
8639 /* sched_split_block emits note if *check == BB_END. Probably it
8640 is better to rip that note off. */
8641
8642 return e->dest;
8643 }
8644
8645 /* A generic version of sched_create_empty_bb (). */
8646 basic_block
8647 sched_create_empty_bb_1 (basic_block after)
8648 {
8649 return create_empty_bb (after);
8650 }
8651
8652 /* Insert PAT as an INSN into the schedule and update the necessary data
8653 structures to account for it. */
8654 rtx_insn *
8655 sched_emit_insn (rtx pat)
8656 {
8657 rtx_insn *insn = emit_insn_before (pat, first_nonscheduled_insn ());
8658 haifa_init_insn (insn);
8659
8660 if (current_sched_info->add_remove_insn)
8661 current_sched_info->add_remove_insn (insn, 0);
8662
8663 (*current_sched_info->begin_schedule_ready) (insn);
8664 scheduled_insns.safe_push (insn);
8665
8666 last_scheduled_insn = insn;
8667 return insn;
8668 }
8669
8670 /* This function returns a candidate satisfying dispatch constraints from
8671 the ready list. */
8672
8673 static rtx_insn *
8674 ready_remove_first_dispatch (struct ready_list *ready)
8675 {
8676 int i;
8677 rtx_insn *insn = ready_element (ready, 0);
8678
8679 if (ready->n_ready == 1
8680 || !INSN_P (insn)
8681 || INSN_CODE (insn) < 0
8682 || !active_insn_p (insn)
8683 || targetm.sched.dispatch (insn, FITS_DISPATCH_WINDOW))
8684 return ready_remove_first (ready);
8685
8686 for (i = 1; i < ready->n_ready; i++)
8687 {
8688 insn = ready_element (ready, i);
8689
8690 if (!INSN_P (insn)
8691 || INSN_CODE (insn) < 0
8692 || !active_insn_p (insn))
8693 continue;
8694
8695 if (targetm.sched.dispatch (insn, FITS_DISPATCH_WINDOW))
8696 {
8697 /* Return ith element of ready. */
8698 insn = ready_remove (ready, i);
8699 return insn;
8700 }
8701 }
8702
8703 if (targetm.sched.dispatch (NULL, DISPATCH_VIOLATION))
8704 return ready_remove_first (ready);
8705
8706 for (i = 1; i < ready->n_ready; i++)
8707 {
8708 insn = ready_element (ready, i);
8709
8710 if (!INSN_P (insn)
8711 || INSN_CODE (insn) < 0
8712 || !active_insn_p (insn))
8713 continue;
8714
8715 /* Return i-th element of ready. */
8716 if (targetm.sched.dispatch (insn, IS_CMP))
8717 return ready_remove (ready, i);
8718 }
8719
8720 return ready_remove_first (ready);
8721 }
8722
8723 /* Get number of ready insn in the ready list. */
8724
8725 int
8726 number_in_ready (void)
8727 {
8728 return ready.n_ready;
8729 }
8730
8731 /* Get number of ready's in the ready list. */
8732
8733 rtx_insn *
8734 get_ready_element (int i)
8735 {
8736 return ready_element (&ready, i);
8737 }
8738
8739 #endif /* INSN_SCHEDULING */