mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-04 09:11:43 +00:00
llc: Add a 'run-pass' option.
This commit adds a 'run-pass' option to llc, which instructs the compiler to run one specific code generation pass only. Llc already has the 'start-after' and the 'stop-after' options, and this new option complements the other two by making it easier to write tests that want to invoke a single pass only. Reviewers: Duncan P. N. Exon Smith Differential Revision: http://reviews.llvm.org/D10776 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@241476 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b560f9ca2f
commit
edfa571cbd
@ -206,6 +206,10 @@ cl::opt<std::string> StartAfter("start-after",
|
|||||||
cl::value_desc("pass-name"),
|
cl::value_desc("pass-name"),
|
||||||
cl::init(""));
|
cl::init(""));
|
||||||
|
|
||||||
|
cl::opt<std::string>
|
||||||
|
RunPass("run-pass", cl::desc("Run compiler only for one specific pass"),
|
||||||
|
cl::value_desc("pass-name"), cl::init(""));
|
||||||
|
|
||||||
cl::opt<bool> DataSections("data-sections",
|
cl::opt<bool> DataSections("data-sections",
|
||||||
cl::desc("Emit data into separate sections"),
|
cl::desc("Emit data into separate sections"),
|
||||||
cl::init(false));
|
cl::init(false));
|
||||||
|
@ -101,7 +101,7 @@ public:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
PassManagerBase *PM;
|
PassManagerBase *PM;
|
||||||
AnalysisID StartAfter;
|
AnalysisID StartBefore, StartAfter;
|
||||||
AnalysisID StopAfter;
|
AnalysisID StopAfter;
|
||||||
bool Started;
|
bool Started;
|
||||||
bool Stopped;
|
bool Stopped;
|
||||||
@ -142,16 +142,24 @@ public:
|
|||||||
|
|
||||||
CodeGenOpt::Level getOptLevel() const { return TM->getOptLevel(); }
|
CodeGenOpt::Level getOptLevel() const { return TM->getOptLevel(); }
|
||||||
|
|
||||||
/// setStartStopPasses - Set the StartAfter and StopAfter passes to allow
|
/// Set the StartAfter, StartBefore and StopAfter passes to allow running only
|
||||||
/// running only a portion of the normal code-gen pass sequence. If the
|
/// a portion of the normal code-gen pass sequence.
|
||||||
/// Start pass ID is zero, then compilation will begin at the normal point;
|
///
|
||||||
/// otherwise, clear the Started flag to indicate that passes should not be
|
/// If the StartAfter and StartBefore pass ID is zero, then compilation will
|
||||||
/// added until the starting pass is seen. If the Stop pass ID is zero,
|
/// begin at the normal point; otherwise, clear the Started flag to indicate
|
||||||
/// then compilation will continue to the end.
|
/// that passes should not be added until the starting pass is seen. If the
|
||||||
void setStartStopPasses(AnalysisID Start, AnalysisID Stop) {
|
/// Stop pass ID is zero, then compilation will continue to the end.
|
||||||
StartAfter = Start;
|
///
|
||||||
StopAfter = Stop;
|
/// This function expects that at least one of the StartAfter or the
|
||||||
Started = (StartAfter == nullptr);
|
/// StartBefore pass IDs is null.
|
||||||
|
void setStartStopPasses(AnalysisID StartBefore, AnalysisID StartAfter,
|
||||||
|
AnalysisID StopAfter) {
|
||||||
|
if (StartAfter)
|
||||||
|
assert(!StartBefore && "Start after and start before passes are given");
|
||||||
|
this->StartBefore = StartBefore;
|
||||||
|
this->StartAfter = StartAfter;
|
||||||
|
this->StopAfter = StopAfter;
|
||||||
|
Started = (StartAfter == nullptr) && (StartBefore == nullptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
void setDisableVerify(bool Disable) { setOpt(DisableVerify, Disable); }
|
void setDisableVerify(bool Disable) { setOpt(DisableVerify, Disable); }
|
||||||
|
@ -212,8 +212,8 @@ public:
|
|||||||
/// supported, or false on success.
|
/// supported, or false on success.
|
||||||
virtual bool addPassesToEmitFile(
|
virtual bool addPassesToEmitFile(
|
||||||
PassManagerBase &, raw_pwrite_stream &, CodeGenFileType,
|
PassManagerBase &, raw_pwrite_stream &, CodeGenFileType,
|
||||||
bool /*DisableVerify*/ = true, AnalysisID /*StartAfter*/ = nullptr,
|
bool /*DisableVerify*/ = true, AnalysisID /*StartBefore*/ = nullptr,
|
||||||
AnalysisID /*StopAfter*/ = nullptr,
|
AnalysisID /*StartAfter*/ = nullptr, AnalysisID /*StopAfter*/ = nullptr,
|
||||||
MachineFunctionInitializer * /*MFInitializer*/ = nullptr) {
|
MachineFunctionInitializer * /*MFInitializer*/ = nullptr) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -260,8 +260,8 @@ public:
|
|||||||
/// emitted. Typically this will involve several steps of code generation.
|
/// emitted. Typically this will involve several steps of code generation.
|
||||||
bool addPassesToEmitFile(
|
bool addPassesToEmitFile(
|
||||||
PassManagerBase &PM, raw_pwrite_stream &Out, CodeGenFileType FileType,
|
PassManagerBase &PM, raw_pwrite_stream &Out, CodeGenFileType FileType,
|
||||||
bool DisableVerify = true, AnalysisID StartAfter = nullptr,
|
bool DisableVerify = true, AnalysisID StartBefore = nullptr,
|
||||||
AnalysisID StopAfter = nullptr,
|
AnalysisID StartAfter = nullptr, AnalysisID StopAfter = nullptr,
|
||||||
MachineFunctionInitializer *MFInitializer = nullptr) override;
|
MachineFunctionInitializer *MFInitializer = nullptr) override;
|
||||||
|
|
||||||
/// Add passes to the specified pass manager to get machine code emitted with
|
/// Add passes to the specified pass manager to get machine code emitted with
|
||||||
|
@ -90,8 +90,8 @@ TargetIRAnalysis LLVMTargetMachine::getTargetIRAnalysis() {
|
|||||||
/// addPassesToX helper drives creation and initialization of TargetPassConfig.
|
/// addPassesToX helper drives creation and initialization of TargetPassConfig.
|
||||||
static MCContext *
|
static MCContext *
|
||||||
addPassesToGenerateCode(LLVMTargetMachine *TM, PassManagerBase &PM,
|
addPassesToGenerateCode(LLVMTargetMachine *TM, PassManagerBase &PM,
|
||||||
bool DisableVerify, AnalysisID StartAfter,
|
bool DisableVerify, AnalysisID StartBefore,
|
||||||
AnalysisID StopAfter,
|
AnalysisID StartAfter, AnalysisID StopAfter,
|
||||||
MachineFunctionInitializer *MFInitializer = nullptr) {
|
MachineFunctionInitializer *MFInitializer = nullptr) {
|
||||||
|
|
||||||
// Add internal analysis passes from the target machine.
|
// Add internal analysis passes from the target machine.
|
||||||
@ -100,7 +100,7 @@ addPassesToGenerateCode(LLVMTargetMachine *TM, PassManagerBase &PM,
|
|||||||
// Targets may override createPassConfig to provide a target-specific
|
// Targets may override createPassConfig to provide a target-specific
|
||||||
// subclass.
|
// subclass.
|
||||||
TargetPassConfig *PassConfig = TM->createPassConfig(PM);
|
TargetPassConfig *PassConfig = TM->createPassConfig(PM);
|
||||||
PassConfig->setStartStopPasses(StartAfter, StopAfter);
|
PassConfig->setStartStopPasses(StartBefore, StartAfter, StopAfter);
|
||||||
|
|
||||||
// Set PassConfig options provided by TargetMachine.
|
// Set PassConfig options provided by TargetMachine.
|
||||||
PassConfig->setDisableVerify(DisableVerify);
|
PassConfig->setDisableVerify(DisableVerify);
|
||||||
@ -143,11 +143,12 @@ addPassesToGenerateCode(LLVMTargetMachine *TM, PassManagerBase &PM,
|
|||||||
|
|
||||||
bool LLVMTargetMachine::addPassesToEmitFile(
|
bool LLVMTargetMachine::addPassesToEmitFile(
|
||||||
PassManagerBase &PM, raw_pwrite_stream &Out, CodeGenFileType FileType,
|
PassManagerBase &PM, raw_pwrite_stream &Out, CodeGenFileType FileType,
|
||||||
bool DisableVerify, AnalysisID StartAfter, AnalysisID StopAfter,
|
bool DisableVerify, AnalysisID StartBefore, AnalysisID StartAfter,
|
||||||
MachineFunctionInitializer *MFInitializer) {
|
AnalysisID StopAfter, MachineFunctionInitializer *MFInitializer) {
|
||||||
// Add common CodeGen passes.
|
// Add common CodeGen passes.
|
||||||
MCContext *Context = addPassesToGenerateCode(
|
MCContext *Context =
|
||||||
this, PM, DisableVerify, StartAfter, StopAfter, MFInitializer);
|
addPassesToGenerateCode(this, PM, DisableVerify, StartBefore, StartAfter,
|
||||||
|
StopAfter, MFInitializer);
|
||||||
if (!Context)
|
if (!Context)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
@ -231,7 +232,8 @@ bool LLVMTargetMachine::addPassesToEmitMC(PassManagerBase &PM, MCContext *&Ctx,
|
|||||||
raw_pwrite_stream &Out,
|
raw_pwrite_stream &Out,
|
||||||
bool DisableVerify) {
|
bool DisableVerify) {
|
||||||
// Add common CodeGen passes.
|
// Add common CodeGen passes.
|
||||||
Ctx = addPassesToGenerateCode(this, PM, DisableVerify, nullptr, nullptr);
|
Ctx = addPassesToGenerateCode(this, PM, DisableVerify, nullptr, nullptr,
|
||||||
|
nullptr);
|
||||||
if (!Ctx)
|
if (!Ctx)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
|
@ -214,10 +214,10 @@ TargetPassConfig::~TargetPassConfig() {
|
|||||||
// Out of line constructor provides default values for pass options and
|
// Out of line constructor provides default values for pass options and
|
||||||
// registers all common codegen passes.
|
// registers all common codegen passes.
|
||||||
TargetPassConfig::TargetPassConfig(TargetMachine *tm, PassManagerBase &pm)
|
TargetPassConfig::TargetPassConfig(TargetMachine *tm, PassManagerBase &pm)
|
||||||
: ImmutablePass(ID), PM(&pm), StartAfter(nullptr), StopAfter(nullptr),
|
: ImmutablePass(ID), PM(&pm), StartBefore(nullptr), StartAfter(nullptr),
|
||||||
Started(true), Stopped(false), AddingMachinePasses(false), TM(tm),
|
StopAfter(nullptr), Started(true), Stopped(false),
|
||||||
Impl(nullptr), Initialized(false), DisableVerify(false),
|
AddingMachinePasses(false), TM(tm), Impl(nullptr), Initialized(false),
|
||||||
EnableTailMerge(true), EnableShrinkWrap(false) {
|
DisableVerify(false), EnableTailMerge(true), EnableShrinkWrap(false) {
|
||||||
|
|
||||||
Impl = new PassConfigImpl();
|
Impl = new PassConfigImpl();
|
||||||
|
|
||||||
@ -288,6 +288,8 @@ void TargetPassConfig::addPass(Pass *P, bool verifyAfter, bool printAfter) {
|
|||||||
// and shouldn't reference it.
|
// and shouldn't reference it.
|
||||||
AnalysisID PassID = P->getPassID();
|
AnalysisID PassID = P->getPassID();
|
||||||
|
|
||||||
|
if (StartBefore == PassID)
|
||||||
|
Started = true;
|
||||||
if (Started && !Stopped) {
|
if (Started && !Stopped) {
|
||||||
std::string Banner;
|
std::string Banner;
|
||||||
// Construct banner message before PM->add() as that may delete the pass.
|
// Construct banner message before PM->add() as that may delete the pass.
|
||||||
|
@ -2148,8 +2148,8 @@ char CppWriter::ID = 0;
|
|||||||
|
|
||||||
bool CPPTargetMachine::addPassesToEmitFile(
|
bool CPPTargetMachine::addPassesToEmitFile(
|
||||||
PassManagerBase &PM, raw_pwrite_stream &o, CodeGenFileType FileType,
|
PassManagerBase &PM, raw_pwrite_stream &o, CodeGenFileType FileType,
|
||||||
bool DisableVerify, AnalysisID StartAfter, AnalysisID StopAfter,
|
bool DisableVerify, AnalysisID StartBefore, AnalysisID StartAfter,
|
||||||
MachineFunctionInitializer *MFInitializer) {
|
AnalysisID StopAfter, MachineFunctionInitializer *MFInitializer) {
|
||||||
if (FileType != TargetMachine::CGFT_AssemblyFile)
|
if (FileType != TargetMachine::CGFT_AssemblyFile)
|
||||||
return true;
|
return true;
|
||||||
auto FOut = llvm::make_unique<formatted_raw_ostream>(o);
|
auto FOut = llvm::make_unique<formatted_raw_ostream>(o);
|
||||||
|
@ -31,7 +31,8 @@ struct CPPTargetMachine : public TargetMachine {
|
|||||||
public:
|
public:
|
||||||
bool addPassesToEmitFile(PassManagerBase &PM, raw_pwrite_stream &Out,
|
bool addPassesToEmitFile(PassManagerBase &PM, raw_pwrite_stream &Out,
|
||||||
CodeGenFileType FileType, bool DisableVerify,
|
CodeGenFileType FileType, bool DisableVerify,
|
||||||
AnalysisID StartAfter, AnalysisID StopAfter,
|
AnalysisID StartBefore, AnalysisID StartAfter,
|
||||||
|
AnalysisID StopAfter,
|
||||||
MachineFunctionInitializer *MFInitializer) override;
|
MachineFunctionInitializer *MFInitializer) override;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
7
test/CodeGen/Generic/run-pass.ll
Normal file
7
test/CodeGen/Generic/run-pass.ll
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
; RUN: llc < %s -debug-pass=Structure -run-pass=gc-lowering -o /dev/null 2>&1 | FileCheck %s
|
||||||
|
|
||||||
|
; CHECK: -gc-lowering
|
||||||
|
; CHECK: FunctionPass Manager
|
||||||
|
; CHECK-NEXT: Lower Garbage Collection Instructions
|
||||||
|
; CHECK-NEXT: Machine Function Analysis
|
||||||
|
; CHECK-NEXT: MIR Printing Pass
|
@ -333,9 +333,23 @@ static int compileModule(char **argv, LLVMContext &Context) {
|
|||||||
OS = BOS.get();
|
OS = BOS.get();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
AnalysisID StartBeforeID = nullptr;
|
||||||
AnalysisID StartAfterID = nullptr;
|
AnalysisID StartAfterID = nullptr;
|
||||||
AnalysisID StopAfterID = nullptr;
|
AnalysisID StopAfterID = nullptr;
|
||||||
const PassRegistry *PR = PassRegistry::getPassRegistry();
|
const PassRegistry *PR = PassRegistry::getPassRegistry();
|
||||||
|
if (!RunPass.empty()) {
|
||||||
|
if (!StartAfter.empty() || !StopAfter.empty()) {
|
||||||
|
errs() << argv[0] << ": start-after and/or stop-after passes are "
|
||||||
|
"redundant when run-pass is specified.\n";
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
const PassInfo *PI = PR->getPassInfo(RunPass);
|
||||||
|
if (!PI) {
|
||||||
|
errs() << argv[0] << ": run-pass pass is not registered.\n";
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
StopAfterID = StartBeforeID = PI->getTypeInfo();
|
||||||
|
} else {
|
||||||
if (!StartAfter.empty()) {
|
if (!StartAfter.empty()) {
|
||||||
const PassInfo *PI = PR->getPassInfo(StartAfter);
|
const PassInfo *PI = PR->getPassInfo(StartAfter);
|
||||||
if (!PI) {
|
if (!PI) {
|
||||||
@ -352,10 +366,11 @@ static int compileModule(char **argv, LLVMContext &Context) {
|
|||||||
}
|
}
|
||||||
StopAfterID = PI->getTypeInfo();
|
StopAfterID = PI->getTypeInfo();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Ask the target to add backend passes as necessary.
|
// Ask the target to add backend passes as necessary.
|
||||||
if (Target->addPassesToEmitFile(PM, *OS, FileType, NoVerify, StartAfterID,
|
if (Target->addPassesToEmitFile(PM, *OS, FileType, NoVerify, StartBeforeID,
|
||||||
StopAfterID, MIR.get())) {
|
StartAfterID, StopAfterID, MIR.get())) {
|
||||||
errs() << argv[0] << ": target does not support generation of this"
|
errs() << argv[0] << ": target does not support generation of this"
|
||||||
<< " file type!\n";
|
<< " file type!\n";
|
||||||
return 1;
|
return 1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user