aboutsummaryrefslogtreecommitdiff
path: root/gcc/sched-int.h
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim@codesourcery.com>2009-07-09 18:15:22 +0000
committerMaxim Kuvyrkov <mkuvyrkov@gcc.gnu.org>2009-07-09 18:15:22 +0000
commit356c23b3059cc4516ee59c51ab0947a4308624ac (patch)
tree3cb914bdfcf5212d19e7a8855b5c111e763388ba /gcc/sched-int.h
parent5223c588529b44e0538b2b99e48c2cce6f96818b (diff)
downloadgcc-356c23b3059cc4516ee59c51ab0947a4308624ac.zip
gcc-356c23b3059cc4516ee59c51ab0947a4308624ac.tar.gz
gcc-356c23b3059cc4516ee59c51ab0947a4308624ac.tar.bz2
haifa-sched.c (insn_finishes_cycle_p): New static function.
* haifa-sched.c (insn_finishes_cycle_p): New static function. (max_issue): Use it. * sched-int.h (struct sched_info: insn_finishes_block_p): New scheduler hook. * sched-rgn.c (rgn_insn_finishes_block_p): Implement it. (region_sched_info): Update. * sched-ebb.c (ebb_sched_info): Update. * modulo-sched.c (sms_sched_info): Update. * sel-sched-ir.c (sched_sel_haifa_sched_info): Update. From-SVN: r149427
Diffstat (limited to 'gcc/sched-int.h')
-rw-r--r--gcc/sched-int.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/sched-int.h b/gcc/sched-int.h
index 1b6a034..aa5007b 100644
--- a/gcc/sched-int.h
+++ b/gcc/sched-int.h
@@ -570,6 +570,10 @@ struct haifa_sched_info
calculations. */
int (*contributes_to_priority) (rtx, rtx);
+ /* Return true if scheduling insn (passed as the parameter) will trigger
+ finish of scheduling current block. */
+ bool (*insn_finishes_block_p) (rtx);
+
/* The boundaries of the set of insns to be scheduled. */
rtx prev_head, next_tail;