2009-02-06 17:12:10 +00:00
|
|
|
//==- ScheduleDAGInstrs.h - MachineInstr Scheduling --------------*- C++ -*-==//
|
2008-11-19 23:18:57 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the ScheduleDAGInstrs class, which implements
|
|
|
|
// scheduling for a MachineInstr-based dependency graph.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-02-06 17:12:10 +00:00
|
|
|
#ifndef SCHEDULEDAGINSTRS_H
|
|
|
|
#define SCHEDULEDAGINSTRS_H
|
2008-11-19 23:18:57 +00:00
|
|
|
|
|
|
|
#include "llvm/CodeGen/ScheduleDAG.h"
|
2009-01-15 19:20:50 +00:00
|
|
|
#include "llvm/Target/TargetRegisterInfo.h"
|
2008-11-19 23:18:57 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
2008-12-16 03:25:46 +00:00
|
|
|
class MachineLoopInfo;
|
|
|
|
class MachineDominatorTree;
|
|
|
|
|
2008-11-19 23:18:57 +00:00
|
|
|
class ScheduleDAGInstrs : public ScheduleDAG {
|
2008-12-16 03:25:46 +00:00
|
|
|
const MachineLoopInfo &MLI;
|
|
|
|
const MachineDominatorTree &MDT;
|
|
|
|
|
2009-01-15 19:20:50 +00:00
|
|
|
/// Defs, Uses - Remember where defs and uses of each physical register
|
|
|
|
/// are as we iterate upward through the instructions. This is allocated
|
|
|
|
/// here instead of inside BuildSchedGraph to avoid the need for it to be
|
|
|
|
/// initialized and destructed for each block.
|
|
|
|
std::vector<SUnit *> Defs[TargetRegisterInfo::FirstVirtualRegister];
|
|
|
|
std::vector<SUnit *> Uses[TargetRegisterInfo::FirstVirtualRegister];
|
|
|
|
|
|
|
|
/// PendingLoads - Remember where unknown loads are after the most recent
|
|
|
|
/// unknown store, as we iterate. As with Defs and Uses, this is here
|
|
|
|
/// to minimize construction/destruction.
|
|
|
|
std::vector<SUnit *> PendingLoads;
|
|
|
|
|
2008-11-19 23:18:57 +00:00
|
|
|
public:
|
2009-01-15 19:20:50 +00:00
|
|
|
explicit ScheduleDAGInstrs(MachineFunction &mf,
|
|
|
|
const MachineLoopInfo &mli,
|
|
|
|
const MachineDominatorTree &mdt);
|
2008-11-19 23:18:57 +00:00
|
|
|
|
|
|
|
virtual ~ScheduleDAGInstrs() {}
|
|
|
|
|
|
|
|
/// NewSUnit - Creates a new SUnit and return a ptr to it.
|
|
|
|
///
|
|
|
|
SUnit *NewSUnit(MachineInstr *MI) {
|
2008-12-22 21:08:08 +00:00
|
|
|
#ifndef NDEBUG
|
2009-01-20 09:05:19 +00:00
|
|
|
const SUnit *Addr = SUnits.empty() ? 0 : &SUnits[0];
|
2008-12-22 21:08:08 +00:00
|
|
|
#endif
|
2008-11-19 23:18:57 +00:00
|
|
|
SUnits.push_back(SUnit(MI, (unsigned)SUnits.size()));
|
2009-01-20 09:05:19 +00:00
|
|
|
assert((Addr == 0 || Addr == &SUnits[0]) &&
|
|
|
|
"SUnits std::vector reallocated on the fly!");
|
2008-11-19 23:18:57 +00:00
|
|
|
SUnits.back().OrigNode = &SUnits.back();
|
|
|
|
return &SUnits.back();
|
|
|
|
}
|
|
|
|
|
2008-12-23 18:36:58 +00:00
|
|
|
/// BuildSchedGraph - Build SUnits from the MachineBasicBlock that we are
|
2008-11-19 23:18:57 +00:00
|
|
|
/// input.
|
2008-12-23 18:36:58 +00:00
|
|
|
virtual void BuildSchedGraph();
|
2008-11-19 23:18:57 +00:00
|
|
|
|
2008-11-21 00:12:10 +00:00
|
|
|
/// ComputeLatency - Compute node latency.
|
|
|
|
///
|
|
|
|
virtual void ComputeLatency(SUnit *SU);
|
|
|
|
|
2008-11-19 23:18:57 +00:00
|
|
|
virtual MachineBasicBlock *EmitSchedule();
|
|
|
|
|
|
|
|
/// Schedule - Order nodes according to selected style, filling
|
|
|
|
/// in the Sequence member.
|
|
|
|
///
|
|
|
|
virtual void Schedule() = 0;
|
|
|
|
|
|
|
|
virtual void dumpNode(const SUnit *SU) const;
|
|
|
|
|
|
|
|
virtual std::string getGraphNodeLabel(const SUnit *SU) const;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|