diff options
author | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-03-24 03:44:55 +0000 |
---|---|---|
committer | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-03-24 03:44:55 +0000 |
commit | 802cec485f4d1a1b48df10a91b1f96945325c87e (patch) | |
tree | 782862340153a723e8851051703daaed50151b3a /lib/CodeGen/InstrSched/InstrScheduling.cpp | |
parent | cf8a98f2c20811c03b3cb7f0c6e00e141f9db24f (diff) |
Add option to disable scheduling.
Destroy live-variable information after scheduling so it is
recomputed before later phases (e.g., reg. allocation).
Use deterministic iterator to enumerate sched graphs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1972 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/InstrSched/InstrScheduling.cpp')
-rw-r--r-- | lib/CodeGen/InstrSched/InstrScheduling.cpp | 92 |
1 files changed, 53 insertions, 39 deletions
diff --git a/lib/CodeGen/InstrSched/InstrScheduling.cpp b/lib/CodeGen/InstrSched/InstrScheduling.cpp index dafa8353bb..31eca3903b 100644 --- a/lib/CodeGen/InstrSched/InstrScheduling.cpp +++ b/lib/CodeGen/InstrSched/InstrScheduling.cpp @@ -31,6 +31,7 @@ using std::vector; cl::Enum<enum SchedDebugLevel_t> SchedDebugLevel("dsched", cl::NoFlags, "enable instruction scheduling debugging information", clEnumValN(Sched_NoDebugInfo, "n", "disable debug output"), + clEnumValN(Sched_Disable, "off", "disable instruction scheduling"), clEnumValN(Sched_PrintMachineCode, "y", "print machine code after scheduling"), clEnumValN(Sched_PrintSchedTrace, "t", "print trace of scheduling actions"), clEnumValN(Sched_PrintSchedGraphs, "g", "print scheduling graphs"), 0); @@ -1491,58 +1492,71 @@ instrIsFeasible(const SchedulingManager& S, namespace { class InstructionSchedulingWithSSA : public MethodPass { - const TargetMachine &Target; + const TargetMachine ⌖ public: - inline InstructionSchedulingWithSSA(const TargetMachine &T) : Target(T) {} - + inline InstructionSchedulingWithSSA(const TargetMachine &T) : target(T) {} + // getAnalysisUsageInfo - We use LiveVarInfo... virtual void getAnalysisUsageInfo(Pass::AnalysisSet &Requires, Pass::AnalysisSet &Destroyed, Pass::AnalysisSet &Provided) { Requires.push_back(MethodLiveVarInfo::ID); + Destroyed.push_back(MethodLiveVarInfo::ID); } + + bool runOnMethod(Method *M); + }; +} // end anonymous namespace + - bool runOnMethod(Method *M) { - cerr << "Instr scheduling failed for method " << ((Value*)M)->getName() - << "\n\n"; - SchedGraphSet graphSet(M, Target); +bool +InstructionSchedulingWithSSA::runOnMethod(Method *M) +{ + if (SchedDebugLevel == Sched_Disable) + return false; - if (SchedDebugLevel >= Sched_PrintSchedGraphs) { - cerr << "\n*** SCHEDULING GRAPHS FOR INSTRUCTION SCHEDULING\n"; - graphSet.dump(); - } + SchedGraphSet graphSet(M, target); - for (SchedGraphSet::const_iterator GI=graphSet.begin(); - GI != graphSet.end(); ++GI) { - SchedGraph* graph = GI->second; - const vector<const BasicBlock*> &bbvec = graph->getBasicBlocks(); - assert(bbvec.size() == 1 && "Cannot schedule multiple basic blocks"); - const BasicBlock* bb = bbvec[0]; + if (SchedDebugLevel >= Sched_PrintSchedGraphs) + { + cerr << "\n*** SCHEDULING GRAPHS FOR INSTRUCTION SCHEDULING\n"; + graphSet.dump(); + } + + for (SchedGraphSet::const_iterator GI=graphSet.begin(), GE=graphSet.end(); + GI != GE; ++GI) + { + SchedGraph* graph = (*GI); + const vector<const BasicBlock*> &bbvec = graph->getBasicBlocks(); + assert(bbvec.size() == 1 && "Cannot schedule multiple basic blocks"); + const BasicBlock* bb = bbvec[0]; - if (SchedDebugLevel >= Sched_PrintSchedTrace) - cerr << "\n*** TRACE OF INSTRUCTION SCHEDULING OPERATIONS\n\n"; + if (SchedDebugLevel >= Sched_PrintSchedTrace) + cerr << "\n*** TRACE OF INSTRUCTION SCHEDULING OPERATIONS\n\n"; - // expensive! - SchedPriorities schedPrio(M, graph, getAnalysis<MethodLiveVarInfo>()); - SchedulingManager S(Target, graph, schedPrio); - - ChooseInstructionsForDelaySlots(S, bb, graph); // modifies graph - - ForwardListSchedule(S); // computes schedule in S - - RecordSchedule(GI->first, S); // records schedule in BB - } - - if (SchedDebugLevel >= Sched_PrintMachineCode) { - cerr << "\n*** Machine instructions after INSTRUCTION SCHEDULING\n"; - MachineCodeForMethod::get(M).dump(); - } + // expensive! + SchedPriorities schedPrio(M, graph,getAnalysis<MethodLiveVarInfo>()); + SchedulingManager S(target, graph, schedPrio); + + ChooseInstructionsForDelaySlots(S, bb, graph); // modifies graph + + ForwardListSchedule(S); // computes schedule in S + + RecordSchedule(bb, S); // records schedule in BB + } - return false; + if (SchedDebugLevel >= Sched_PrintMachineCode) + { + cerr << "\n*** Machine instructions after INSTRUCTION SCHEDULING\n"; + MachineCodeForMethod::get(M).dump(); } - }; -} // end anonymous namespace + + return false; +} + -MethodPass *createInstructionSchedulingWithSSAPass(const TargetMachine &T) { - return new InstructionSchedulingWithSSA(T); +MethodPass* +createInstructionSchedulingWithSSAPass(const TargetMachine &tgt) +{ + return new InstructionSchedulingWithSSA(tgt); } |