2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / sched-int.h
blobaa5007ba8633a3a20f0d8f7e4dd36729e796c71a
1 /* Instruction scheduling pass. This file contains definitions used
2 internally in the scheduler.
3 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4 2001, 2003, 2004, 2005, 2006, 2007, 2008, 2009
5 Free Software Foundation, Inc.
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 3, or (at your option) any later
12 version.
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
23 #ifndef GCC_SCHED_INT_H
24 #define GCC_SCHED_INT_H
26 #ifdef INSN_SCHEDULING
28 /* For state_t. */
29 #include "insn-attr.h"
30 #include "df.h"
31 #include "basic-block.h"
33 /* For VEC (int, heap). */
34 #include "vecprim.h"
36 /* Identificator of a scheduler pass. */
37 enum sched_pass_id_t { SCHED_PASS_UNKNOWN, SCHED_RGN_PASS, SCHED_EBB_PASS,
38 SCHED_SMS_PASS, SCHED_SEL_PASS };
40 typedef VEC (basic_block, heap) *bb_vec_t;
41 typedef VEC (rtx, heap) *insn_vec_t;
42 typedef VEC(rtx, heap) *rtx_vec_t;
44 struct sched_scan_info_def
46 /* This hook notifies scheduler frontend to extend its internal per basic
47 block data structures. This hook should be called once before a series of
48 calls to bb_init (). */
49 void (*extend_bb) (void);
51 /* This hook makes scheduler frontend to initialize its internal data
52 structures for the passed basic block. */
53 void (*init_bb) (basic_block);
55 /* This hook notifies scheduler frontend to extend its internal per insn data
56 structures. This hook should be called once before a series of calls to
57 insn_init (). */
58 void (*extend_insn) (void);
60 /* This hook makes scheduler frontend to initialize its internal data
61 structures for the passed insn. */
62 void (*init_insn) (rtx);
65 extern const struct sched_scan_info_def *sched_scan_info;
67 extern void sched_scan (const struct sched_scan_info_def *,
68 bb_vec_t, basic_block, insn_vec_t, rtx);
70 extern void sched_init_bbs (void);
72 extern void sched_init_luids (bb_vec_t, basic_block, insn_vec_t, rtx);
73 extern void sched_finish_luids (void);
75 extern void sched_extend_target (void);
77 extern void haifa_init_h_i_d (bb_vec_t, basic_block, insn_vec_t, rtx);
78 extern void haifa_finish_h_i_d (void);
80 /* Hooks that are common to all the schedulers. */
81 struct common_sched_info_def
83 /* Called after blocks were rearranged due to movement of jump instruction.
84 The first parameter - index of basic block, in which jump currently is.
85 The second parameter - index of basic block, in which jump used
86 to be.
87 The third parameter - index of basic block, that follows the second
88 parameter. */
89 void (*fix_recovery_cfg) (int, int, int);
91 /* Called to notify frontend, that new basic block is being added.
92 The first parameter - new basic block.
93 The second parameter - block, after which new basic block is being added,
94 or EXIT_BLOCK_PTR, if recovery block is being added,
95 or NULL, if standalone block is being added. */
96 void (*add_block) (basic_block, basic_block);
98 /* Estimate number of insns in the basic block. */
99 int (*estimate_number_of_insns) (basic_block);
101 /* Given a non-insn (!INSN_P (x)) return
102 -1 - if this rtx don't need a luid.
103 0 - if it should have the same luid as the previous insn.
104 1 - if it needs a separate luid. */
105 int (*luid_for_non_insn) (rtx);
107 /* Scheduler pass identifier. It is preferably used in assertions. */
108 enum sched_pass_id_t sched_pass_id;
111 extern struct common_sched_info_def *common_sched_info;
113 extern const struct common_sched_info_def haifa_common_sched_info;
115 /* Return true if selective scheduling pass is working. */
116 static inline bool
117 sel_sched_p (void)
119 return common_sched_info->sched_pass_id == SCHED_SEL_PASS;
122 /* Returns maximum priority that an insn was assigned to. */
123 extern int get_rgn_sched_max_insns_priority (void);
125 /* Increases effective priority for INSN by AMOUNT. */
126 extern void sel_add_to_insn_priority (rtx, int);
128 /* True if during selective scheduling we need to emulate some of haifa
129 scheduler behaviour. */
130 extern int sched_emulate_haifa_p;
132 /* Mapping from INSN_UID to INSN_LUID. In the end all other per insn data
133 structures should be indexed by luid. */
134 extern VEC (int, heap) *sched_luids;
135 #define INSN_LUID(INSN) (VEC_index (int, sched_luids, INSN_UID (INSN)))
136 #define LUID_BY_UID(UID) (VEC_index (int, sched_luids, UID))
138 #define SET_INSN_LUID(INSN, LUID) \
139 (VEC_replace (int, sched_luids, INSN_UID (INSN), (LUID)))
141 /* The highest INSN_LUID. */
142 extern int sched_max_luid;
144 extern int insn_luid (rtx);
146 /* This list holds ripped off notes from the current block. These notes will
147 be attached to the beginning of the block when its scheduling is
148 finished. */
149 extern rtx note_list;
151 extern void remove_notes (rtx, rtx);
152 extern rtx restore_other_notes (rtx, basic_block);
153 extern void sched_insns_init (rtx);
154 extern void sched_insns_finish (void);
156 extern void *xrecalloc (void *, size_t, size_t, size_t);
157 extern rtx bb_note (basic_block);
159 extern void reemit_notes (rtx);
161 /* Functions in haifa-sched.c. */
162 extern int haifa_classify_insn (const_rtx);
164 /* Functions in sel-sched-ir.c. */
165 extern void sel_find_rgns (void);
166 extern void sel_mark_hard_insn (rtx);
168 extern size_t dfa_state_size;
170 extern void advance_state (state_t);
172 extern void setup_sched_dump (void);
173 extern void sched_init (void);
174 extern void sched_finish (void);
176 extern bool sel_insn_is_speculation_check (rtx);
178 /* Describe the ready list of the scheduler.
179 VEC holds space enough for all insns in the current region. VECLEN
180 says how many exactly.
181 FIRST is the index of the element with the highest priority; i.e. the
182 last one in the ready list, since elements are ordered by ascending
183 priority.
184 N_READY determines how many insns are on the ready list. */
185 struct ready_list
187 rtx *vec;
188 int veclen;
189 int first;
190 int n_ready;
193 extern char *ready_try;
194 extern struct ready_list ready;
196 extern int max_issue (struct ready_list *, int, state_t, int *);
198 extern void ebb_compute_jump_reg_dependencies (rtx, regset, regset, regset);
200 extern edge find_fallthru_edge (basic_block);
202 extern void (* sched_init_only_bb) (basic_block, basic_block);
203 extern basic_block (* sched_split_block) (basic_block, rtx);
204 extern basic_block sched_split_block_1 (basic_block, rtx);
205 extern basic_block (* sched_create_empty_bb) (basic_block);
206 extern basic_block sched_create_empty_bb_1 (basic_block);
208 extern basic_block sched_create_recovery_block (basic_block *);
209 extern void sched_create_recovery_edges (basic_block, basic_block,
210 basic_block);
212 /* Pointer to data describing the current DFA state. */
213 extern state_t curr_state;
215 /* Type to represent status of a dependence. */
216 typedef int ds_t;
218 /* Type to represent weakness of speculative dependence. */
219 typedef int dw_t;
221 extern enum reg_note ds_to_dk (ds_t);
222 extern ds_t dk_to_ds (enum reg_note);
224 /* Information about the dependency. */
225 struct _dep
227 /* Producer. */
228 rtx pro;
230 /* Consumer. */
231 rtx con;
233 /* Dependency major type. This field is superseded by STATUS below.
234 Though, it is still in place because some targets use it. */
235 enum reg_note type;
237 /* Dependency status. This field holds all dependency types and additional
238 information for speculative dependencies. */
239 ds_t status;
242 typedef struct _dep dep_def;
243 typedef dep_def *dep_t;
245 #define DEP_PRO(D) ((D)->pro)
246 #define DEP_CON(D) ((D)->con)
247 #define DEP_TYPE(D) ((D)->type)
248 #define DEP_STATUS(D) ((D)->status)
250 /* Functions to work with dep. */
252 extern void init_dep_1 (dep_t, rtx, rtx, enum reg_note, ds_t);
253 extern void init_dep (dep_t, rtx, rtx, enum reg_note);
255 extern void sd_debug_dep (dep_t);
257 /* Definition of this struct resides below. */
258 struct _dep_node;
259 typedef struct _dep_node *dep_node_t;
261 /* A link in the dependency list. This is essentially an equivalent of a
262 single {INSN, DEPS}_LIST rtx. */
263 struct _dep_link
265 /* Dep node with all the data. */
266 dep_node_t node;
268 /* Next link in the list. For the last one it is NULL. */
269 struct _dep_link *next;
271 /* Pointer to the next field of the previous link in the list.
272 For the first link this points to the deps_list->first.
274 With help of this field it is easy to remove and insert links to the
275 list. */
276 struct _dep_link **prev_nextp;
278 typedef struct _dep_link *dep_link_t;
280 #define DEP_LINK_NODE(N) ((N)->node)
281 #define DEP_LINK_NEXT(N) ((N)->next)
282 #define DEP_LINK_PREV_NEXTP(N) ((N)->prev_nextp)
284 /* Macros to work dep_link. For most usecases only part of the dependency
285 information is need. These macros conveniently provide that piece of
286 information. */
288 #define DEP_LINK_DEP(N) (DEP_NODE_DEP (DEP_LINK_NODE (N)))
289 #define DEP_LINK_PRO(N) (DEP_PRO (DEP_LINK_DEP (N)))
290 #define DEP_LINK_CON(N) (DEP_CON (DEP_LINK_DEP (N)))
291 #define DEP_LINK_TYPE(N) (DEP_TYPE (DEP_LINK_DEP (N)))
292 #define DEP_LINK_STATUS(N) (DEP_STATUS (DEP_LINK_DEP (N)))
294 /* A list of dep_links. */
295 struct _deps_list
297 /* First element. */
298 dep_link_t first;
300 /* Total number of elements in the list. */
301 int n_links;
303 typedef struct _deps_list *deps_list_t;
305 #define DEPS_LIST_FIRST(L) ((L)->first)
306 #define DEPS_LIST_N_LINKS(L) ((L)->n_links)
308 /* Suppose we have a dependence Y between insn pro1 and con1, where pro1 has
309 additional dependents con0 and con2, and con1 is dependent on additional
310 insns pro0 and pro1:
312 .con0 pro0
313 . ^ |
314 . | |
315 . | |
316 . X A
317 . | |
318 . | |
319 . | V
320 .pro1--Y-->con1
321 . | ^
322 . | |
323 . | |
324 . Z B
325 . | |
326 . | |
327 . V |
328 .con2 pro2
330 This is represented using a "dep_node" for each dependence arc, which are
331 connected as follows (diagram is centered around Y which is fully shown;
332 other dep_nodes shown partially):
334 . +------------+ +--------------+ +------------+
335 . : dep_node X : | dep_node Y | : dep_node Z :
336 . : : | | : :
337 . : : | | : :
338 . : forw : | forw | : forw :
339 . : +--------+ : | +--------+ | : +--------+ :
340 forw_deps : |dep_link| : | |dep_link| | : |dep_link| :
341 +-----+ : | +----+ | : | | +----+ | | : | +----+ | :
342 |first|----->| |next|-+------+->| |next|-+--+----->| |next|-+--->NULL
343 +-----+ : | +----+ | : | | +----+ | | : | +----+ | :
344 . ^ ^ : | ^ | : | | ^ | | : | | :
345 . | | : | | | : | | | | | : | | :
346 . | +--<----+--+ +--+---<--+--+--+ +--+--+--<---+--+ | :
347 . | : | | | : | | | | | : | | | :
348 . | : | +----+ | : | | +----+ | | : | +----+ | :
349 . | : | |prev| | : | | |prev| | | : | |prev| | :
350 . | : | |next| | : | | |next| | | : | |next| | :
351 . | : | +----+ | : | | +----+ | | : | +----+ | :
352 . | : | | :<-+ | | | |<-+ : | | :<-+
353 . | : | +----+ | : | | | +----+ | | | : | +----+ | : |
354 . | : | |node|-+----+ | | |node|-+--+--+ : | |node|-+----+
355 . | : | +----+ | : | | +----+ | | : | +----+ | :
356 . | : | | : | | | | : | | :
357 . | : +--------+ : | +--------+ | : +--------+ :
358 . | : : | | : :
359 . | : SAME pro1 : | +--------+ | : SAME pro1 :
360 . | : DIFF con0 : | |dep | | : DIFF con2 :
361 . | : : | | | | : :
362 . | | | +----+ | |
363 .RTX<------------------------+--+-|pro1| | |
364 .pro1 | | +----+ | |
365 . | | | |
366 . | | +----+ | |
367 .RTX<------------------------+--+-|con1| | |
368 .con1 | | +----+ | |
369 . | | | | |
370 . | | | +----+ | |
371 . | | | |kind| | |
372 . | | | +----+ | |
373 . | : : | | |stat| | | : :
374 . | : DIFF pro0 : | | +----+ | | : DIFF pro2 :
375 . | : SAME con1 : | | | | : SAME con1 :
376 . | : : | +--------+ | : :
377 . | : : | | : :
378 . | : back : | back | : back :
379 . v : +--------+ : | +--------+ | : +--------+ :
380 back_deps : |dep_link| : | |dep_link| | : |dep_link| :
381 +-----+ : | +----+ | : | | +----+ | | : | +----+ | :
382 |first|----->| |next|-+------+->| |next|-+--+----->| |next|-+--->NULL
383 +-----+ : | +----+ | : | | +----+ | | : | +----+ | :
384 . ^ : | ^ | : | | ^ | | : | | :
385 . | : | | | : | | | | | : | | :
386 . +--<----+--+ +--+---<--+--+--+ +--+--+--<---+--+ | :
387 . : | | | : | | | | | : | | | :
388 . : | +----+ | : | | +----+ | | : | +----+ | :
389 . : | |prev| | : | | |prev| | | : | |prev| | :
390 . : | |next| | : | | |next| | | : | |next| | :
391 . : | +----+ | : | | +----+ | | : | +----+ | :
392 . : | | :<-+ | | | |<-+ : | | :<-+
393 . : | +----+ | : | | | +----+ | | | : | +----+ | : |
394 . : | |node|-+----+ | | |node|-+--+--+ : | |node|-+----+
395 . : | +----+ | : | | +----+ | | : | +----+ | :
396 . : | | : | | | | : | | :
397 . : +--------+ : | +--------+ | : +--------+ :
398 . : : | | : :
399 . : dep_node A : | dep_node Y | : dep_node B :
400 . +------------+ +--------------+ +------------+
403 struct _dep_node
405 /* Backward link. */
406 struct _dep_link back;
408 /* The dep. */
409 struct _dep dep;
411 /* Forward link. */
412 struct _dep_link forw;
415 #define DEP_NODE_BACK(N) (&(N)->back)
416 #define DEP_NODE_DEP(N) (&(N)->dep)
417 #define DEP_NODE_FORW(N) (&(N)->forw)
419 /* The following enumeration values tell us what dependencies we
420 should use to implement the barrier. We use true-dependencies for
421 TRUE_BARRIER and anti-dependencies for MOVE_BARRIER. */
422 enum reg_pending_barrier_mode
424 NOT_A_BARRIER = 0,
425 MOVE_BARRIER,
426 TRUE_BARRIER
429 /* Whether a register movement is associated with a call. */
430 enum post_call_group
432 not_post_call,
433 post_call,
434 post_call_initial
437 /* Insns which affect pseudo-registers. */
438 struct deps_reg
440 rtx uses;
441 rtx sets;
442 rtx clobbers;
443 int uses_length;
444 int clobbers_length;
447 /* Describe state of dependencies used during sched_analyze phase. */
448 struct deps
450 /* The *_insns and *_mems are paired lists. Each pending memory operation
451 will have a pointer to the MEM rtx on one list and a pointer to the
452 containing insn on the other list in the same place in the list. */
454 /* We can't use add_dependence like the old code did, because a single insn
455 may have multiple memory accesses, and hence needs to be on the list
456 once for each memory access. Add_dependence won't let you add an insn
457 to a list more than once. */
459 /* An INSN_LIST containing all insns with pending read operations. */
460 rtx pending_read_insns;
462 /* An EXPR_LIST containing all MEM rtx's which are pending reads. */
463 rtx pending_read_mems;
465 /* An INSN_LIST containing all insns with pending write operations. */
466 rtx pending_write_insns;
468 /* An EXPR_LIST containing all MEM rtx's which are pending writes. */
469 rtx pending_write_mems;
471 /* We must prevent the above lists from ever growing too large since
472 the number of dependencies produced is at least O(N*N),
473 and execution time is at least O(4*N*N), as a function of the
474 length of these pending lists. */
476 /* Indicates the length of the pending_read list. */
477 int pending_read_list_length;
479 /* Indicates the length of the pending_write list. */
480 int pending_write_list_length;
482 /* Length of the pending memory flush list. Large functions with no
483 calls may build up extremely large lists. */
484 int pending_flush_length;
486 /* The last insn upon which all memory references must depend.
487 This is an insn which flushed the pending lists, creating a dependency
488 between it and all previously pending memory references. This creates
489 a barrier (or a checkpoint) which no memory reference is allowed to cross.
491 This includes all non constant CALL_INSNs. When we do interprocedural
492 alias analysis, this restriction can be relaxed.
493 This may also be an INSN that writes memory if the pending lists grow
494 too large. */
495 rtx last_pending_memory_flush;
497 /* A list of the last function calls we have seen. We use a list to
498 represent last function calls from multiple predecessor blocks.
499 Used to prevent register lifetimes from expanding unnecessarily. */
500 rtx last_function_call;
502 /* A list of insns which use a pseudo register that does not already
503 cross a call. We create dependencies between each of those insn
504 and the next call insn, to ensure that they won't cross a call after
505 scheduling is done. */
506 rtx sched_before_next_call;
508 /* Used to keep post-call pseudo/hard reg movements together with
509 the call. */
510 enum post_call_group in_post_call_group_p;
512 /* The maximum register number for the following arrays. Before reload
513 this is max_reg_num; after reload it is FIRST_PSEUDO_REGISTER. */
514 int max_reg;
516 /* Element N is the next insn that sets (hard or pseudo) register
517 N within the current basic block; or zero, if there is no
518 such insn. Needed for new registers which may be introduced
519 by splitting insns. */
520 struct deps_reg *reg_last;
522 /* Element N is set for each register that has any nonzero element
523 in reg_last[N].{uses,sets,clobbers}. */
524 regset_head reg_last_in_use;
526 /* Element N is set for each register that is conditionally set. */
527 regset_head reg_conditional_sets;
529 /* Shows the last value of reg_pending_barrier associated with the insn. */
530 enum reg_pending_barrier_mode last_reg_pending_barrier;
532 /* True when this context should be treated as a readonly by
533 the analysis. */
534 BOOL_BITFIELD readonly : 1;
537 typedef struct deps *deps_t;
539 /* This structure holds some state of the current scheduling pass, and
540 contains some function pointers that abstract out some of the non-generic
541 functionality from functions such as schedule_block or schedule_insn.
542 There is one global variable, current_sched_info, which points to the
543 sched_info structure currently in use. */
544 struct haifa_sched_info
546 /* Add all insns that are initially ready to the ready list. Called once
547 before scheduling a set of insns. */
548 void (*init_ready_list) (void);
549 /* Called after taking an insn from the ready list. Returns nonzero if
550 this insn can be scheduled, nonzero if we should silently discard it. */
551 int (*can_schedule_ready_p) (rtx);
552 /* Return nonzero if there are more insns that should be scheduled. */
553 int (*schedule_more_p) (void);
554 /* Called after an insn has all its hard dependencies resolved.
555 Adjusts status of instruction (which is passed through second parameter)
556 to indicate if instruction should be moved to the ready list or the
557 queue, or if it should silently discard it (until next resolved
558 dependence). */
559 ds_t (*new_ready) (rtx, ds_t);
560 /* Compare priority of two insns. Return a positive number if the second
561 insn is to be preferred for scheduling, and a negative one if the first
562 is to be preferred. Zero if they are equally good. */
563 int (*rank) (rtx, rtx);
564 /* Return a string that contains the insn uid and optionally anything else
565 necessary to identify this insn in an output. It's valid to use a
566 static buffer for this. The ALIGNED parameter should cause the string
567 to be formatted so that multiple output lines will line up nicely. */
568 const char *(*print_insn) (const_rtx, int);
569 /* Return nonzero if an insn should be included in priority
570 calculations. */
571 int (*contributes_to_priority) (rtx, rtx);
573 /* Return true if scheduling insn (passed as the parameter) will trigger
574 finish of scheduling current block. */
575 bool (*insn_finishes_block_p) (rtx);
577 /* The boundaries of the set of insns to be scheduled. */
578 rtx prev_head, next_tail;
580 /* Filled in after the schedule is finished; the first and last scheduled
581 insns. */
582 rtx head, tail;
584 /* If nonzero, enables an additional sanity check in schedule_block. */
585 unsigned int queue_must_finish_empty:1;
587 /* Maximum priority that has been assigned to an insn. */
588 int sched_max_insns_priority;
590 /* Hooks to support speculative scheduling. */
592 /* Called to notify frontend that instruction is being added (second
593 parameter == 0) or removed (second parameter == 1). */
594 void (*add_remove_insn) (rtx, int);
596 /* Called to notify frontend that instruction is being scheduled.
597 The first parameter - instruction to scheduled, the second parameter -
598 last scheduled instruction. */
599 void (*begin_schedule_ready) (rtx, rtx);
601 /* If the second parameter is not NULL, return nonnull value, if the
602 basic block should be advanced.
603 If the second parameter is NULL, return the next basic block in EBB.
604 The first parameter is the current basic block in EBB. */
605 basic_block (*advance_target_bb) (basic_block, rtx);
607 /* ??? FIXME: should use straight bitfields inside sched_info instead of
608 this flag field. */
609 unsigned int flags;
612 /* This structure holds description of the properties for speculative
613 scheduling. */
614 struct spec_info_def
616 /* Holds types of allowed speculations: BEGIN_{DATA|CONTROL},
617 BE_IN_{DATA_CONTROL}. */
618 int mask;
620 /* A dump file for additional information on speculative scheduling. */
621 FILE *dump;
623 /* Minimal cumulative weakness of speculative instruction's
624 dependencies, so that insn will be scheduled. */
625 dw_t data_weakness_cutoff;
627 /* Minimal usefulness of speculative instruction to be considered for
628 scheduling. */
629 int control_weakness_cutoff;
631 /* Flags from the enum SPEC_SCHED_FLAGS. */
632 int flags;
634 typedef struct spec_info_def *spec_info_t;
636 extern spec_info_t spec_info;
638 extern struct haifa_sched_info *current_sched_info;
640 /* Indexed by INSN_UID, the collection of all data associated with
641 a single instruction. */
643 struct _haifa_deps_insn_data
645 /* The number of incoming edges in the forward dependency graph.
646 As scheduling proceeds, counts are decreased. An insn moves to
647 the ready queue when its counter reaches zero. */
648 int dep_count;
650 /* Nonzero if instruction has internal dependence
651 (e.g. add_dependence was invoked with (insn == elem)). */
652 unsigned int has_internal_dep;
654 /* NB: We can't place 'struct _deps_list' here instead of deps_list_t into
655 h_i_d because when h_i_d extends, addresses of the deps_list->first
656 change without updating deps_list->first->next->prev_nextp. Thus
657 BACK_DEPS and RESOLVED_BACK_DEPS are allocated on the heap and FORW_DEPS
658 list is allocated on the obstack. */
660 /* A list of hard backward dependencies. The insn is a consumer of all the
661 deps mentioned here. */
662 deps_list_t hard_back_deps;
664 /* A list of speculative (weak) dependencies. The insn is a consumer of all
665 the deps mentioned here. */
666 deps_list_t spec_back_deps;
668 /* A list of insns which depend on the instruction. Unlike 'back_deps',
669 it represents forward dependencies. */
670 deps_list_t forw_deps;
672 /* A list of scheduled producers of the instruction. Links are being moved
673 from 'back_deps' to 'resolved_back_deps' while scheduling. */
674 deps_list_t resolved_back_deps;
676 /* A list of scheduled consumers of the instruction. Links are being moved
677 from 'forw_deps' to 'resolved_forw_deps' while scheduling to fasten the
678 search in 'forw_deps'. */
679 deps_list_t resolved_forw_deps;
681 /* Some insns (e.g. call) are not allowed to move across blocks. */
682 unsigned int cant_move : 1;
685 struct _haifa_insn_data
687 /* We can't place 'struct _deps_list' into h_i_d instead of deps_list_t
688 because when h_i_d extends, addresses of the deps_list->first
689 change without updating deps_list->first->next->prev_nextp. */
691 /* Logical uid gives the original ordering of the insns. */
692 int luid;
694 /* A priority for each insn. */
695 int priority;
697 /* The minimum clock tick at which the insn becomes ready. This is
698 used to note timing constraints for the insns in the pending list. */
699 int tick;
701 /* INTER_TICK is used to adjust INSN_TICKs of instructions from the
702 subsequent blocks in a region. */
703 int inter_tick;
705 /* See comment on QUEUE_INDEX macro in haifa-sched.c. */
706 int queue_index;
708 short cost;
710 /* This weight is an estimation of the insn's contribution to
711 register pressure. */
712 short reg_weight;
714 /* Set if there's DEF-USE dependence between some speculatively
715 moved load insn and this one. */
716 unsigned int fed_by_spec_load : 1;
717 unsigned int is_load_insn : 1;
719 /* '> 0' if priority is valid,
720 '== 0' if priority was not yet computed,
721 '< 0' if priority in invalid and should be recomputed. */
722 signed char priority_status;
724 /* What speculations are necessary to apply to schedule the instruction. */
725 ds_t todo_spec;
727 /* What speculations were already applied. */
728 ds_t done_spec;
730 /* What speculations are checked by this instruction. */
731 ds_t check_spec;
733 /* Recovery block for speculation checks. */
734 basic_block recovery_block;
736 /* Original pattern of the instruction. */
737 rtx orig_pat;
740 typedef struct _haifa_insn_data haifa_insn_data_def;
741 typedef haifa_insn_data_def *haifa_insn_data_t;
743 DEF_VEC_O (haifa_insn_data_def);
744 DEF_VEC_ALLOC_O (haifa_insn_data_def, heap);
746 extern VEC(haifa_insn_data_def, heap) *h_i_d;
748 #define HID(INSN) (VEC_index (haifa_insn_data_def, h_i_d, INSN_UID (INSN)))
750 /* Accessor macros for h_i_d. There are more in haifa-sched.c and
751 sched-rgn.c. */
752 #define INSN_PRIORITY(INSN) (HID (INSN)->priority)
753 #define INSN_REG_WEIGHT(INSN) (HID (INSN)->reg_weight)
754 #define INSN_PRIORITY_STATUS(INSN) (HID (INSN)->priority_status)
756 typedef struct _haifa_deps_insn_data haifa_deps_insn_data_def;
757 typedef haifa_deps_insn_data_def *haifa_deps_insn_data_t;
759 DEF_VEC_O (haifa_deps_insn_data_def);
760 DEF_VEC_ALLOC_O (haifa_deps_insn_data_def, heap);
762 extern VEC(haifa_deps_insn_data_def, heap) *h_d_i_d;
764 #define HDID(INSN) (VEC_index (haifa_deps_insn_data_def, h_d_i_d, \
765 INSN_LUID (INSN)))
766 #define INSN_DEP_COUNT(INSN) (HDID (INSN)->dep_count)
767 #define HAS_INTERNAL_DEP(INSN) (HDID (INSN)->has_internal_dep)
768 #define INSN_FORW_DEPS(INSN) (HDID (INSN)->forw_deps)
769 #define INSN_RESOLVED_BACK_DEPS(INSN) (HDID (INSN)->resolved_back_deps)
770 #define INSN_RESOLVED_FORW_DEPS(INSN) (HDID (INSN)->resolved_forw_deps)
771 #define INSN_HARD_BACK_DEPS(INSN) (HDID (INSN)->hard_back_deps)
772 #define INSN_SPEC_BACK_DEPS(INSN) (HDID (INSN)->spec_back_deps)
773 #define CANT_MOVE(INSN) (HDID (INSN)->cant_move)
774 #define CANT_MOVE_BY_LUID(LUID) (VEC_index (haifa_deps_insn_data_def, h_d_i_d, \
775 LUID)->cant_move)
778 #define INSN_PRIORITY(INSN) (HID (INSN)->priority)
779 #define INSN_PRIORITY_STATUS(INSN) (HID (INSN)->priority_status)
780 #define INSN_PRIORITY_KNOWN(INSN) (INSN_PRIORITY_STATUS (INSN) > 0)
781 #define TODO_SPEC(INSN) (HID (INSN)->todo_spec)
782 #define DONE_SPEC(INSN) (HID (INSN)->done_spec)
783 #define CHECK_SPEC(INSN) (HID (INSN)->check_spec)
784 #define RECOVERY_BLOCK(INSN) (HID (INSN)->recovery_block)
785 #define ORIG_PAT(INSN) (HID (INSN)->orig_pat)
787 /* INSN is either a simple or a branchy speculation check. */
788 #define IS_SPECULATION_CHECK_P(INSN) \
789 (sel_sched_p () ? sel_insn_is_speculation_check (INSN) : RECOVERY_BLOCK (INSN) != NULL)
791 /* INSN is a speculation check that will simply reexecute the speculatively
792 scheduled instruction if the speculation fails. */
793 #define IS_SPECULATION_SIMPLE_CHECK_P(INSN) \
794 (RECOVERY_BLOCK (INSN) == EXIT_BLOCK_PTR)
796 /* INSN is a speculation check that will branch to RECOVERY_BLOCK if the
797 speculation fails. Insns in that block will reexecute the speculatively
798 scheduled code and then will return immediately after INSN thus preserving
799 semantics of the program. */
800 #define IS_SPECULATION_BRANCHY_CHECK_P(INSN) \
801 (RECOVERY_BLOCK (INSN) != NULL && RECOVERY_BLOCK (INSN) != EXIT_BLOCK_PTR)
803 /* Dep status (aka ds_t) of the link encapsulates information, that is needed
804 for speculative scheduling. Namely, it is 4 integers in the range
805 [0, MAX_DEP_WEAK] and 3 bits.
806 The integers correspond to the probability of the dependence to *not*
807 exist, it is the probability, that overcoming of this dependence will
808 not be followed by execution of the recovery code. Nevertheless,
809 whatever high the probability of success is, recovery code should still
810 be generated to preserve semantics of the program. To find a way to
811 get/set these integers, please refer to the {get, set}_dep_weak ()
812 functions in sched-deps.c .
813 The 3 bits in the DEP_STATUS correspond to 3 dependence types: true-,
814 output- and anti- dependence. It is not enough for speculative scheduling
815 to know just the major type of all the dependence between two instructions,
816 as only true dependence can be overcome.
817 There also is the 4-th bit in the DEP_STATUS (HARD_DEP), that is reserved
818 for using to describe instruction's status. It is set whenever instruction
819 has at least one dependence, that cannot be overcame.
820 See also: check_dep_status () in sched-deps.c . */
822 /* We exclude sign bit. */
823 #define BITS_PER_DEP_STATUS (HOST_BITS_PER_INT - 1)
825 /* First '4' stands for 3 dep type bits and HARD_DEP bit.
826 Second '4' stands for BEGIN_{DATA, CONTROL}, BE_IN_{DATA, CONTROL}
827 dep weakness. */
828 #define BITS_PER_DEP_WEAK ((BITS_PER_DEP_STATUS - 4) / 4)
830 /* Mask of speculative weakness in dep_status. */
831 #define DEP_WEAK_MASK ((1 << BITS_PER_DEP_WEAK) - 1)
833 /* This constant means that dependence is fake with 99.999...% probability.
834 This is the maximum value, that can appear in dep_status.
835 Note, that we don't want MAX_DEP_WEAK to be the same as DEP_WEAK_MASK for
836 debugging reasons. Though, it can be set to DEP_WEAK_MASK, and, when
837 done so, we'll get fast (mul for)/(div by) NO_DEP_WEAK. */
838 #define MAX_DEP_WEAK (DEP_WEAK_MASK - 1)
840 /* This constant means that dependence is 99.999...% real and it is a really
841 bad idea to overcome it (though this can be done, preserving program
842 semantics). */
843 #define MIN_DEP_WEAK 1
845 /* This constant represents 100% probability.
846 E.g. it is used to represent weakness of dependence, that doesn't exist. */
847 #define NO_DEP_WEAK (MAX_DEP_WEAK + MIN_DEP_WEAK)
849 /* Default weakness of speculative dependence. Used when we can't say
850 neither bad nor good about the dependence. */
851 #define UNCERTAIN_DEP_WEAK (MAX_DEP_WEAK - MAX_DEP_WEAK / 4)
853 /* Offset for speculative weaknesses in dep_status. */
854 enum SPEC_TYPES_OFFSETS {
855 BEGIN_DATA_BITS_OFFSET = 0,
856 BE_IN_DATA_BITS_OFFSET = BEGIN_DATA_BITS_OFFSET + BITS_PER_DEP_WEAK,
857 BEGIN_CONTROL_BITS_OFFSET = BE_IN_DATA_BITS_OFFSET + BITS_PER_DEP_WEAK,
858 BE_IN_CONTROL_BITS_OFFSET = BEGIN_CONTROL_BITS_OFFSET + BITS_PER_DEP_WEAK
861 /* The following defines provide numerous constants used to distinguish between
862 different types of speculative dependencies. */
864 /* Dependence can be overcome with generation of new data speculative
865 instruction. */
866 #define BEGIN_DATA (((ds_t) DEP_WEAK_MASK) << BEGIN_DATA_BITS_OFFSET)
868 /* This dependence is to the instruction in the recovery block, that was
869 formed to recover after data-speculation failure.
870 Thus, this dependence can overcome with generating of the copy of
871 this instruction in the recovery block. */
872 #define BE_IN_DATA (((ds_t) DEP_WEAK_MASK) << BE_IN_DATA_BITS_OFFSET)
874 /* Dependence can be overcome with generation of new control speculative
875 instruction. */
876 #define BEGIN_CONTROL (((ds_t) DEP_WEAK_MASK) << BEGIN_CONTROL_BITS_OFFSET)
878 /* This dependence is to the instruction in the recovery block, that was
879 formed to recover after control-speculation failure.
880 Thus, this dependence can be overcome with generating of the copy of
881 this instruction in the recovery block. */
882 #define BE_IN_CONTROL (((ds_t) DEP_WEAK_MASK) << BE_IN_CONTROL_BITS_OFFSET)
884 /* A few convenient combinations. */
885 #define BEGIN_SPEC (BEGIN_DATA | BEGIN_CONTROL)
886 #define DATA_SPEC (BEGIN_DATA | BE_IN_DATA)
887 #define CONTROL_SPEC (BEGIN_CONTROL | BE_IN_CONTROL)
888 #define SPECULATIVE (DATA_SPEC | CONTROL_SPEC)
889 #define BE_IN_SPEC (BE_IN_DATA | BE_IN_CONTROL)
891 /* Constants, that are helpful in iterating through dep_status. */
892 #define FIRST_SPEC_TYPE BEGIN_DATA
893 #define LAST_SPEC_TYPE BE_IN_CONTROL
894 #define SPEC_TYPE_SHIFT BITS_PER_DEP_WEAK
896 /* Dependence on instruction can be of multiple types
897 (e.g. true and output). This fields enhance REG_NOTE_KIND information
898 of the dependence. */
899 #define DEP_TRUE (((ds_t) 1) << (BE_IN_CONTROL_BITS_OFFSET + BITS_PER_DEP_WEAK))
900 #define DEP_OUTPUT (DEP_TRUE << 1)
901 #define DEP_ANTI (DEP_OUTPUT << 1)
903 #define DEP_TYPES (DEP_TRUE | DEP_OUTPUT | DEP_ANTI)
905 /* Instruction has non-speculative dependence. This bit represents the
906 property of an instruction - not the one of a dependence.
907 Therefore, it can appear only in TODO_SPEC field of an instruction. */
908 #define HARD_DEP (DEP_ANTI << 1)
910 /* This represents the results of calling sched-deps.c functions,
911 which modify dependencies. */
912 enum DEPS_ADJUST_RESULT {
913 /* No dependence needed (e.g. producer == consumer). */
914 DEP_NODEP,
915 /* Dependence is already present and wasn't modified. */
916 DEP_PRESENT,
917 /* Existing dependence was modified to include additional information. */
918 DEP_CHANGED,
919 /* New dependence has been created. */
920 DEP_CREATED
923 /* Represents the bits that can be set in the flags field of the
924 sched_info structure. */
925 enum SCHED_FLAGS {
926 /* If set, generate links between instruction as DEPS_LIST.
927 Otherwise, generate usual INSN_LIST links. */
928 USE_DEPS_LIST = 1,
929 /* Perform data or control (or both) speculation.
930 Results in generation of data and control speculative dependencies.
931 Requires USE_DEPS_LIST set. */
932 DO_SPECULATION = USE_DEPS_LIST << 1,
933 SCHED_RGN = DO_SPECULATION << 1,
934 SCHED_EBB = SCHED_RGN << 1,
935 /* Scheduler can possibly create new basic blocks. Used for assertions. */
936 NEW_BBS = SCHED_EBB << 1,
937 SEL_SCHED = NEW_BBS << 1
940 enum SPEC_SCHED_FLAGS {
941 COUNT_SPEC_IN_CRITICAL_PATH = 1,
942 PREFER_NON_DATA_SPEC = COUNT_SPEC_IN_CRITICAL_PATH << 1,
943 PREFER_NON_CONTROL_SPEC = PREFER_NON_DATA_SPEC << 1,
944 SEL_SCHED_SPEC_DONT_CHECK_CONTROL = PREFER_NON_CONTROL_SPEC << 1
947 #define NOTE_NOT_BB_P(NOTE) (NOTE_P (NOTE) && (NOTE_KIND (NOTE) \
948 != NOTE_INSN_BASIC_BLOCK))
950 extern FILE *sched_dump;
951 extern int sched_verbose;
953 extern spec_info_t spec_info;
954 extern bool haifa_recovery_bb_ever_added_p;
956 /* Exception Free Loads:
958 We define five classes of speculative loads: IFREE, IRISKY,
959 PFREE, PRISKY, and MFREE.
961 IFREE loads are loads that are proved to be exception-free, just
962 by examining the load insn. Examples for such loads are loads
963 from TOC and loads of global data.
965 IRISKY loads are loads that are proved to be exception-risky,
966 just by examining the load insn. Examples for such loads are
967 volatile loads and loads from shared memory.
969 PFREE loads are loads for which we can prove, by examining other
970 insns, that they are exception-free. Currently, this class consists
971 of loads for which we are able to find a "similar load", either in
972 the target block, or, if only one split-block exists, in that split
973 block. Load2 is similar to load1 if both have same single base
974 register. We identify only part of the similar loads, by finding
975 an insn upon which both load1 and load2 have a DEF-USE dependence.
977 PRISKY loads are loads for which we can prove, by examining other
978 insns, that they are exception-risky. Currently we have two proofs for
979 such loads. The first proof detects loads that are probably guarded by a
980 test on the memory address. This proof is based on the
981 backward and forward data dependence information for the region.
982 Let load-insn be the examined load.
983 Load-insn is PRISKY iff ALL the following hold:
985 - insn1 is not in the same block as load-insn
986 - there is a DEF-USE dependence chain (insn1, ..., load-insn)
987 - test-insn is either a compare or a branch, not in the same block
988 as load-insn
989 - load-insn is reachable from test-insn
990 - there is a DEF-USE dependence chain (insn1, ..., test-insn)
992 This proof might fail when the compare and the load are fed
993 by an insn not in the region. To solve this, we will add to this
994 group all loads that have no input DEF-USE dependence.
996 The second proof detects loads that are directly or indirectly
997 fed by a speculative load. This proof is affected by the
998 scheduling process. We will use the flag fed_by_spec_load.
999 Initially, all insns have this flag reset. After a speculative
1000 motion of an insn, if insn is either a load, or marked as
1001 fed_by_spec_load, we will also mark as fed_by_spec_load every
1002 insn1 for which a DEF-USE dependence (insn, insn1) exists. A
1003 load which is fed_by_spec_load is also PRISKY.
1005 MFREE (maybe-free) loads are all the remaining loads. They may be
1006 exception-free, but we cannot prove it.
1008 Now, all loads in IFREE and PFREE classes are considered
1009 exception-free, while all loads in IRISKY and PRISKY classes are
1010 considered exception-risky. As for loads in the MFREE class,
1011 these are considered either exception-free or exception-risky,
1012 depending on whether we are pessimistic or optimistic. We have
1013 to take the pessimistic approach to assure the safety of
1014 speculative scheduling, but we can take the optimistic approach
1015 by invoking the -fsched_spec_load_dangerous option. */
1017 enum INSN_TRAP_CLASS
1019 TRAP_FREE = 0, IFREE = 1, PFREE_CANDIDATE = 2,
1020 PRISKY_CANDIDATE = 3, IRISKY = 4, TRAP_RISKY = 5
1023 #define WORST_CLASS(class1, class2) \
1024 ((class1 > class2) ? class1 : class2)
1026 #ifndef __GNUC__
1027 #define __inline
1028 #endif
1030 #ifndef HAIFA_INLINE
1031 #define HAIFA_INLINE __inline
1032 #endif
1034 struct sched_deps_info_def
1036 /* Called when computing dependencies for a JUMP_INSN. This function
1037 should store the set of registers that must be considered as set by
1038 the jump in the regset. */
1039 void (*compute_jump_reg_dependencies) (rtx, regset, regset, regset);
1041 /* Start analyzing insn. */
1042 void (*start_insn) (rtx);
1044 /* Finish analyzing insn. */
1045 void (*finish_insn) (void);
1047 /* Start analyzing insn LHS (Left Hand Side). */
1048 void (*start_lhs) (rtx);
1050 /* Finish analyzing insn LHS. */
1051 void (*finish_lhs) (void);
1053 /* Start analyzing insn RHS (Right Hand Side). */
1054 void (*start_rhs) (rtx);
1056 /* Finish analyzing insn RHS. */
1057 void (*finish_rhs) (void);
1059 /* Note set of the register. */
1060 void (*note_reg_set) (int);
1062 /* Note clobber of the register. */
1063 void (*note_reg_clobber) (int);
1065 /* Note use of the register. */
1066 void (*note_reg_use) (int);
1068 /* Note memory dependence of type DS between MEM1 and MEM2 (which is
1069 in the INSN2). */
1070 void (*note_mem_dep) (rtx mem1, rtx mem2, rtx insn2, ds_t ds);
1072 /* Note a dependence of type DS from the INSN. */
1073 void (*note_dep) (rtx insn, ds_t ds);
1075 /* Nonzero if we should use cselib for better alias analysis. This
1076 must be 0 if the dependency information is used after sched_analyze
1077 has completed, e.g. if we're using it to initialize state for successor
1078 blocks in region scheduling. */
1079 unsigned int use_cselib : 1;
1081 /* If set, generate links between instruction as DEPS_LIST.
1082 Otherwise, generate usual INSN_LIST links. */
1083 unsigned int use_deps_list : 1;
1085 /* Generate data and control speculative dependencies.
1086 Requires USE_DEPS_LIST set. */
1087 unsigned int generate_spec_deps : 1;
1090 extern struct sched_deps_info_def *sched_deps_info;
1093 /* Functions in sched-deps.c. */
1094 extern bool sched_insns_conditions_mutex_p (const_rtx, const_rtx);
1095 extern bool sched_insn_is_legitimate_for_speculation_p (const_rtx, ds_t);
1096 extern void add_dependence (rtx, rtx, enum reg_note);
1097 extern void sched_analyze (struct deps *, rtx, rtx);
1098 extern void init_deps (struct deps *);
1099 extern void free_deps (struct deps *);
1100 extern void init_deps_global (void);
1101 extern void finish_deps_global (void);
1102 extern void deps_analyze_insn (struct deps *, rtx);
1103 extern void remove_from_deps (struct deps *, rtx);
1105 extern dw_t get_dep_weak_1 (ds_t, ds_t);
1106 extern dw_t get_dep_weak (ds_t, ds_t);
1107 extern ds_t set_dep_weak (ds_t, ds_t, dw_t);
1108 extern dw_t estimate_dep_weak (rtx, rtx);
1109 extern ds_t ds_merge (ds_t, ds_t);
1110 extern ds_t ds_full_merge (ds_t, ds_t, rtx, rtx);
1111 extern ds_t ds_max_merge (ds_t, ds_t);
1112 extern dw_t ds_weak (ds_t);
1113 extern ds_t ds_get_speculation_types (ds_t);
1114 extern ds_t ds_get_max_dep_weak (ds_t);
1116 extern void sched_deps_init (bool);
1117 extern void sched_deps_finish (void);
1119 extern void haifa_note_reg_set (int);
1120 extern void haifa_note_reg_clobber (int);
1121 extern void haifa_note_reg_use (int);
1123 extern void maybe_extend_reg_info_p (void);
1125 extern void deps_start_bb (struct deps *, rtx);
1126 extern enum reg_note ds_to_dt (ds_t);
1128 extern bool deps_pools_are_empty_p (void);
1129 extern void sched_free_deps (rtx, rtx, bool);
1130 extern void extend_dependency_caches (int, bool);
1132 extern void debug_ds (ds_t);
1134 /* Functions in haifa-sched.c. */
1135 extern int haifa_classify_insn (const_rtx);
1136 extern void get_ebb_head_tail (basic_block, basic_block, rtx *, rtx *);
1137 extern int no_real_insns_p (const_rtx, const_rtx);
1139 extern int insn_cost (rtx);
1140 extern int dep_cost_1 (dep_t, dw_t);
1141 extern int dep_cost (dep_t);
1142 extern int set_priorities (rtx, rtx);
1144 extern void schedule_block (basic_block *);
1146 extern int cycle_issued_insns;
1147 extern int issue_rate;
1148 extern int dfa_lookahead;
1150 extern void ready_sort (struct ready_list *);
1151 extern rtx ready_element (struct ready_list *, int);
1152 extern rtx *ready_lastpos (struct ready_list *);
1154 extern int try_ready (rtx);
1155 extern void sched_extend_ready_list (int);
1156 extern void sched_finish_ready_list (void);
1157 extern void sched_change_pattern (rtx, rtx);
1158 extern int sched_speculate_insn (rtx, ds_t, rtx *);
1159 extern void unlink_bb_notes (basic_block, basic_block);
1160 extern void add_block (basic_block, basic_block);
1161 extern rtx bb_note (basic_block);
1162 extern void concat_note_lists (rtx, rtx *);
1163 extern rtx sched_emit_insn (rtx);
1166 /* Types and functions in sched-rgn.c. */
1168 /* A region is the main entity for interblock scheduling: insns
1169 are allowed to move between blocks in the same region, along
1170 control flow graph edges, in the 'up' direction. */
1171 typedef struct
1173 /* Number of extended basic blocks in region. */
1174 int rgn_nr_blocks;
1175 /* cblocks in the region (actually index in rgn_bb_table). */
1176 int rgn_blocks;
1177 /* Dependencies for this region are already computed. Basically, indicates,
1178 that this is a recovery block. */
1179 unsigned int dont_calc_deps : 1;
1180 /* This region has at least one non-trivial ebb. */
1181 unsigned int has_real_ebb : 1;
1183 region;
1185 extern int nr_regions;
1186 extern region *rgn_table;
1187 extern int *rgn_bb_table;
1188 extern int *block_to_bb;
1189 extern int *containing_rgn;
1191 #define RGN_NR_BLOCKS(rgn) (rgn_table[rgn].rgn_nr_blocks)
1192 #define RGN_BLOCKS(rgn) (rgn_table[rgn].rgn_blocks)
1193 #define RGN_DONT_CALC_DEPS(rgn) (rgn_table[rgn].dont_calc_deps)
1194 #define RGN_HAS_REAL_EBB(rgn) (rgn_table[rgn].has_real_ebb)
1195 #define BLOCK_TO_BB(block) (block_to_bb[block])
1196 #define CONTAINING_RGN(block) (containing_rgn[block])
1198 /* The mapping from ebb to block. */
1199 extern int *ebb_head;
1200 #define BB_TO_BLOCK(ebb) (rgn_bb_table[ebb_head[ebb]])
1201 #define EBB_FIRST_BB(ebb) BASIC_BLOCK (BB_TO_BLOCK (ebb))
1202 #define EBB_LAST_BB(ebb) BASIC_BLOCK (rgn_bb_table[ebb_head[ebb + 1] - 1])
1203 #define INSN_BB(INSN) (BLOCK_TO_BB (BLOCK_NUM (INSN)))
1205 extern int current_nr_blocks;
1206 extern int current_blocks;
1207 extern int target_bb;
1209 extern bool sched_is_disabled_for_current_region_p (void);
1210 extern void sched_rgn_init (bool);
1211 extern void sched_rgn_finish (void);
1212 extern void rgn_setup_region (int);
1213 extern void sched_rgn_compute_dependencies (int);
1214 extern void sched_rgn_local_init (int);
1215 extern void sched_rgn_local_finish (void);
1216 extern void sched_rgn_local_free (void);
1217 extern void extend_regions (void);
1218 extern void rgn_make_new_region_out_of_new_block (basic_block);
1220 extern void compute_priorities (void);
1221 extern void increase_insn_priority (rtx, int);
1222 extern void debug_rgn_dependencies (int);
1223 extern void debug_dependencies (rtx, rtx);
1224 extern void free_rgn_deps (void);
1225 extern int contributes_to_priority (rtx, rtx);
1226 extern void extend_rgns (int *, int *, sbitmap, int *);
1227 extern void deps_join (struct deps *, struct deps *);
1229 extern void rgn_setup_common_sched_info (void);
1230 extern void rgn_setup_sched_infos (void);
1232 extern void debug_regions (void);
1233 extern void debug_region (int);
1234 extern void dump_region_dot (FILE *, int);
1235 extern void dump_region_dot_file (const char *, int);
1237 extern void haifa_sched_init (void);
1238 extern void haifa_sched_finish (void);
1240 /* sched-deps.c interface to walk, add, search, update, resolve, delete
1241 and debug instruction dependencies. */
1243 /* Constants defining dependences lists. */
1245 /* No list. */
1246 #define SD_LIST_NONE (0)
1248 /* hard_back_deps. */
1249 #define SD_LIST_HARD_BACK (1)
1251 /* spec_back_deps. */
1252 #define SD_LIST_SPEC_BACK (2)
1254 /* forw_deps. */
1255 #define SD_LIST_FORW (4)
1257 /* resolved_back_deps. */
1258 #define SD_LIST_RES_BACK (8)
1260 /* resolved_forw_deps. */
1261 #define SD_LIST_RES_FORW (16)
1263 #define SD_LIST_BACK (SD_LIST_HARD_BACK | SD_LIST_SPEC_BACK)
1265 /* A type to hold above flags. */
1266 typedef int sd_list_types_def;
1268 extern void sd_next_list (const_rtx, sd_list_types_def *, deps_list_t *, bool *);
1270 /* Iterator to walk through, resolve and delete dependencies. */
1271 struct _sd_iterator
1273 /* What lists to walk. Can be any combination of SD_LIST_* flags. */
1274 sd_list_types_def types;
1276 /* Instruction dependencies lists of which will be walked. */
1277 rtx insn;
1279 /* Pointer to the next field of the previous element. This is not
1280 simply a pointer to the next element to allow easy deletion from the
1281 list. When a dep is being removed from the list the iterator
1282 will automatically advance because the value in *linkp will start
1283 referring to the next element. */
1284 dep_link_t *linkp;
1286 /* True if the current list is a resolved one. */
1287 bool resolved_p;
1290 typedef struct _sd_iterator sd_iterator_def;
1292 /* ??? We can move some definitions that are used in below inline functions
1293 out of sched-int.h to sched-deps.c provided that the below functions will
1294 become global externals.
1295 These definitions include:
1296 * struct _deps_list: opaque pointer is needed at global scope.
1297 * struct _dep_link: opaque pointer is needed at scope of sd_iterator_def.
1298 * struct _dep_node: opaque pointer is needed at scope of
1299 struct _deps_link. */
1301 /* Return initialized iterator. */
1302 static inline sd_iterator_def
1303 sd_iterator_start (rtx insn, sd_list_types_def types)
1305 /* Some dep_link a pointer to which will return NULL. */
1306 static dep_link_t null_link = NULL;
1308 sd_iterator_def i;
1310 i.types = types;
1311 i.insn = insn;
1312 i.linkp = &null_link;
1314 /* Avoid 'uninitialized warning'. */
1315 i.resolved_p = false;
1317 return i;
1320 /* Return the current element. */
1321 static inline bool
1322 sd_iterator_cond (sd_iterator_def *it_ptr, dep_t *dep_ptr)
1324 dep_link_t link = *it_ptr->linkp;
1326 if (link != NULL)
1328 *dep_ptr = DEP_LINK_DEP (link);
1329 return true;
1331 else
1333 sd_list_types_def types = it_ptr->types;
1335 if (types != SD_LIST_NONE)
1336 /* Switch to next list. */
1338 deps_list_t list;
1340 sd_next_list (it_ptr->insn,
1341 &it_ptr->types, &list, &it_ptr->resolved_p);
1343 it_ptr->linkp = &DEPS_LIST_FIRST (list);
1345 return sd_iterator_cond (it_ptr, dep_ptr);
1348 *dep_ptr = NULL;
1349 return false;
1353 /* Advance iterator. */
1354 static inline void
1355 sd_iterator_next (sd_iterator_def *it_ptr)
1357 it_ptr->linkp = &DEP_LINK_NEXT (*it_ptr->linkp);
1360 /* A cycle wrapper. */
1361 #define FOR_EACH_DEP(INSN, LIST_TYPES, ITER, DEP) \
1362 for ((ITER) = sd_iterator_start ((INSN), (LIST_TYPES)); \
1363 sd_iterator_cond (&(ITER), &(DEP)); \
1364 sd_iterator_next (&(ITER)))
1366 extern int sd_lists_size (const_rtx, sd_list_types_def);
1367 extern bool sd_lists_empty_p (const_rtx, sd_list_types_def);
1368 extern void sd_init_insn (rtx);
1369 extern void sd_finish_insn (rtx);
1370 extern dep_t sd_find_dep_between (rtx, rtx, bool);
1371 extern void sd_add_dep (dep_t, bool);
1372 extern enum DEPS_ADJUST_RESULT sd_add_or_update_dep (dep_t, bool);
1373 extern void sd_resolve_dep (sd_iterator_def);
1374 extern void sd_copy_back_deps (rtx, rtx, bool);
1375 extern void sd_delete_dep (sd_iterator_def);
1376 extern void sd_debug_lists (rtx, sd_list_types_def);
1378 #endif /* INSN_SCHEDULING */
1380 /* Functions in sched-vis.c. These must be outside INSN_SCHEDULING as
1381 sched-vis.c is compiled always. */
1382 extern void print_insn (char *, const_rtx, int);
1383 extern void print_pattern (char *, const_rtx, int);
1384 extern void print_value (char *, const_rtx, int);
1386 #endif /* GCC_SCHED_INT_H */