forked from OSchip/llvm-project
parent
3b6eb1e5ea
commit
3222c0985b
|
@ -8,7 +8,8 @@
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
//
|
//
|
||||||
// This file implements the ScheduleDAG class, which is used as the common
|
// This file implements the ScheduleDAG class, which is used as the common
|
||||||
// base class for instruction schedulers.
|
// base class for instruction schedulers. This encapsulates the scheduling DAG,
|
||||||
|
// which is shared between SelectionDAG and MachineInstr scheduling.
|
||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
|
|
@ -112,6 +112,8 @@ namespace llvm {
|
||||||
/// Live Intervals provides reaching defs in preRA scheduling.
|
/// Live Intervals provides reaching defs in preRA scheduling.
|
||||||
LiveIntervals *LIS;
|
LiveIntervals *LIS;
|
||||||
|
|
||||||
|
/// After calling BuildSchedGraph, each machine instruction in the current
|
||||||
|
/// scheduling region is mapped to an SUnit.
|
||||||
DenseMap<MachineInstr*, SUnit*> MISUnitMap;
|
DenseMap<MachineInstr*, SUnit*> MISUnitMap;
|
||||||
|
|
||||||
/// UnitLatencies (misnamed) flag avoids computing def-use latencies, using
|
/// UnitLatencies (misnamed) flag avoids computing def-use latencies, using
|
||||||
|
|
Loading…
Reference in New Issue