diff options
author | Dan Gohman <gohman@apple.com> | 2008-11-11 17:50:47 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-11-11 17:50:47 +0000 |
commit | 5499e89d06ba27f89dbffb028cbce72e3a3c95ed (patch) | |
tree | 06107b6286caec31bb139422ead1cfae0027e1ac /llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp | |
parent | fbd2f4006b702df389acf539034727b744c08444 (diff) | |
download | bcm5719-llvm-5499e89d06ba27f89dbffb028cbce72e3a3c95ed.tar.gz bcm5719-llvm-5499e89d06ba27f89dbffb028cbce72e3a3c95ed.zip |
Change the scheduler accessor methods to accept an explicit TargetMachine
argument instead of taking the SelectionDAG's TargetMachine. This is
needed for some upcoming scheduler changes.
llvm-svn: 59055
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp b/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp index 067407b1eb8..178c3f6ca4e 100644 --- a/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp @@ -541,8 +541,9 @@ void LatencyPriorityQueue::AdjustPriorityOfUnscheduledPreds(SUnit *SU) { /// recognizer and deletes it when done. ScheduleDAG* llvm::createTDListDAGScheduler(SelectionDAGISel *IS, SelectionDAG *DAG, + const TargetMachine *TM, MachineBasicBlock *BB, bool Fast) { - return new ScheduleDAGList(*DAG, BB, DAG->getTarget(), + return new ScheduleDAGList(*DAG, BB, *TM, new LatencyPriorityQueue(), IS->CreateTargetHazardRecognizer()); } |