mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
Move things around to make the file navigable, even though it will probably be split up later.
llvm-svn: 148170
This commit is contained in:
parent
c0e7b19ff0
commit
ce507adb56
@ -28,11 +28,16 @@
|
|||||||
|
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
// Machine Instruction Scheduling Pass and Registry
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
/// MachineSchedulerPass runs after coalescing and before register allocation.
|
/// MachineSchedulerPass runs after coalescing and before register allocation.
|
||||||
class MachineSchedulerPass : public MachineFunctionPass {
|
class MachineSchedulerPass : public MachineFunctionPass {
|
||||||
public:
|
public:
|
||||||
MachineFunction *MF;
|
MachineFunction *MF;
|
||||||
|
const TargetInstrInfo *TII;
|
||||||
const MachineLoopInfo *MLI;
|
const MachineLoopInfo *MLI;
|
||||||
const MachineDominatorTree *MDT;
|
const MachineDominatorTree *MDT;
|
||||||
|
|
||||||
@ -91,22 +96,6 @@ void MachineSchedulerPass::getAnalysisUsage(AnalysisUsage &AU) const {
|
|||||||
MachineFunctionPass::getAnalysisUsage(AU);
|
MachineFunctionPass::getAnalysisUsage(AU);
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace {
|
|
||||||
/// Currently force DAG building but don't reschedule anything. This is a
|
|
||||||
/// temporarily useful framework that provides a place to hook in experimental
|
|
||||||
/// code that requires a dependence graph prior to register allocation.
|
|
||||||
class MachineScheduler : public ScheduleDAGInstrs {
|
|
||||||
public:
|
|
||||||
MachineScheduler(MachineSchedulerPass *P)
|
|
||||||
: ScheduleDAGInstrs(*P->MF, *P->MLI, *P->MDT)
|
|
||||||
{}
|
|
||||||
|
|
||||||
/// Schedule - This is called back from ScheduleDAGInstrs::Run() when it's
|
|
||||||
/// time to do some work.
|
|
||||||
virtual void Schedule();
|
|
||||||
};
|
|
||||||
} // namespace
|
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
/// MachineSchedRegistry provides a selection of available machine instruction
|
/// MachineSchedRegistry provides a selection of available machine instruction
|
||||||
/// schedulers.
|
/// schedulers.
|
||||||
@ -156,6 +145,25 @@ MachineSchedOpt("misched",
|
|||||||
cl::init(&createDefaultMachineSched), cl::Hidden,
|
cl::init(&createDefaultMachineSched), cl::Hidden,
|
||||||
cl::desc("Machine instruction scheduler to use"));
|
cl::desc("Machine instruction scheduler to use"));
|
||||||
|
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
// Machine Instruction Scheduling Implementation
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
/// MachineScheduler is an implementation of ScheduleDAGInstrs that schedules
|
||||||
|
/// machine instructions while updating LiveIntervals.
|
||||||
|
class MachineScheduler : public ScheduleDAGInstrs {
|
||||||
|
MachineSchedulerPass *Pass;
|
||||||
|
public:
|
||||||
|
MachineScheduler(MachineSchedulerPass *P):
|
||||||
|
ScheduleDAGInstrs(*P->MF, *P->MLI, *P->MDT), Pass(P) {}
|
||||||
|
|
||||||
|
/// Schedule - This is called back from ScheduleDAGInstrs::Run() when it's
|
||||||
|
/// time to do some work.
|
||||||
|
virtual void Schedule();
|
||||||
|
};
|
||||||
|
} // namespace
|
||||||
|
|
||||||
static ScheduleDAGInstrs *createDefaultMachineSched(MachineSchedulerPass *P) {
|
static ScheduleDAGInstrs *createDefaultMachineSched(MachineSchedulerPass *P) {
|
||||||
return new MachineScheduler(P);
|
return new MachineScheduler(P);
|
||||||
}
|
}
|
||||||
@ -178,6 +186,7 @@ bool MachineSchedulerPass::runOnMachineFunction(MachineFunction &mf) {
|
|||||||
MF = &mf;
|
MF = &mf;
|
||||||
MLI = &getAnalysis<MachineLoopInfo>();
|
MLI = &getAnalysis<MachineLoopInfo>();
|
||||||
MDT = &getAnalysis<MachineDominatorTree>();
|
MDT = &getAnalysis<MachineDominatorTree>();
|
||||||
|
TII = MF->getTarget().getInstrInfo();
|
||||||
|
|
||||||
// Select the scheduler, or set the default.
|
// Select the scheduler, or set the default.
|
||||||
MachineSchedRegistry::ScheduleDAGCtor Ctor =
|
MachineSchedRegistry::ScheduleDAGCtor Ctor =
|
||||||
@ -207,14 +216,18 @@ void MachineSchedulerPass::print(raw_ostream &O, const Module* m) const {
|
|||||||
// unimplemented
|
// unimplemented
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
// Machine Instruction Shuffler for Correctness Testing
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#ifndef NDEBUG
|
#ifndef NDEBUG
|
||||||
namespace {
|
namespace {
|
||||||
/// Reorder instructions as much as possible.
|
/// Reorder instructions as much as possible.
|
||||||
class InstructionShuffler : public ScheduleDAGInstrs {
|
class InstructionShuffler : public ScheduleDAGInstrs {
|
||||||
|
MachineSchedulerPass *Pass;
|
||||||
public:
|
public:
|
||||||
InstructionShuffler(MachineSchedulerPass *P)
|
InstructionShuffler(MachineSchedulerPass *P):
|
||||||
: ScheduleDAGInstrs(*P->MF, *P->MLI, *P->MDT)
|
ScheduleDAGInstrs(*P->MF, *P->MLI, *P->MDT), Pass(P) {}
|
||||||
{}
|
|
||||||
|
|
||||||
/// Schedule - This is called back from ScheduleDAGInstrs::Run() when it's
|
/// Schedule - This is called back from ScheduleDAGInstrs::Run() when it's
|
||||||
/// time to do some work.
|
/// time to do some work.
|
||||||
|
Loading…
Reference in New Issue
Block a user