LLVM
8.0.1
|
FunctionPassManagerImpl manages FPPassManagers. More...
Public Member Functions | |
FunctionPassManagerImpl () | |
void | add (Pass *P) |
Add a pass to the queue of passes to run. More... | |
Pass * | createPrinterPass (raw_ostream &O, const std::string &Banner) const override |
createPrinterPass - Get a function printer pass. More... | |
void | releaseMemoryOnTheFly () |
bool | run (Function &F) |
run - Execute all of the passes scheduled for execution. More... | |
bool | doInitialization (Module &M) override |
doInitialization - Run all of the initializers for the function passes. More... | |
bool | doFinalization (Module &M) override |
doFinalization - Run all of the finalizers for the function passes. More... | |
PMDataManager * | getAsPMDataManager () override |
Pass * | getAsPass () override |
PassManagerType | getTopLevelPassManagerType () override |
void | getAnalysisUsage (AnalysisUsage &Info) const override |
Pass Manager itself does not invalidate any analysis info. More... | |
FPPassManager * | getContainedManager (unsigned N) |
Public Member Functions inherited from llvm::Pass | |
Pass (PassKind K, char &pid) | |
Pass (const Pass &)=delete | |
Pass & | operator= (const Pass &)=delete |
virtual | ~Pass () |
PassKind | getPassKind () const |
virtual StringRef | getPassName () const |
getPassName - Return a nice clean name for a pass. More... | |
AnalysisID | getPassID () const |
getPassID - Return the PassID number that corresponds to this pass. More... | |
virtual void | print (raw_ostream &OS, const Module *M) const |
print - Print out the internal state of the pass. More... | |
void | dump () const |
virtual void | assignPassManager (PMStack &, PassManagerType) |
Each pass is responsible for assigning a pass manager to itself. More... | |
virtual void | preparePassManager (PMStack &) |
Check if available pass managers are suitable for this pass or not. More... | |
virtual PassManagerType | getPotentialPassManagerType () const |
Return what kind of Pass Manager can manage this pass. More... | |
void | setResolver (AnalysisResolver *AR) |
AnalysisResolver * | getResolver () const |
virtual void | releaseMemory () |
releaseMemory() - This member can be implemented by a pass if it wants to be able to release its memory when it is no longer needed. More... | |
virtual void * | getAdjustedAnalysisPointer (AnalysisID ID) |
getAdjustedAnalysisPointer - This method is used when a pass implements an analysis interface through multiple inheritance. More... | |
virtual ImmutablePass * | getAsImmutablePass () |
virtual void | verifyAnalysis () const |
verifyAnalysis() - This member can be implemented by a analysis pass to check state of analysis information. More... | |
virtual void | dumpPassStructure (unsigned Offset=0) |
template<typename AnalysisType > | |
AnalysisType * | getAnalysisIfAvailable () const |
getAnalysisIfAvailable<AnalysisType>() - Subclasses use this function to get analysis information that might be around, for example to update it. More... | |
bool | mustPreserveAnalysisID (char &AID) const |
mustPreserveAnalysisID - This method serves the same function as getAnalysisIfAvailable, but works if you just have an AnalysisID. More... | |
template<typename AnalysisType > | |
AnalysisType & | getAnalysis () const |
getAnalysis<AnalysisType>() - This function is used by subclasses to get to the analysis information that they claim to use by overriding the getAnalysisUsage function. More... | |
template<typename AnalysisType > | |
AnalysisType & | getAnalysis (Function &F) |
getAnalysis<AnalysisType>() - This function is used by subclasses to get to the analysis information that they claim to use by overriding the getAnalysisUsage function. More... | |
template<typename AnalysisType > | |
AnalysisType & | getAnalysisID (AnalysisID PI) const |
template<typename AnalysisType > | |
AnalysisType & | getAnalysisID (AnalysisID PI, Function &F) |
Public Member Functions inherited from llvm::PMDataManager | |
PMDataManager () | |
virtual | ~PMDataManager () |
void | recordAvailableAnalysis (Pass *P) |
Augment AvailableAnalysis by adding analysis made available by pass P. More... | |
void | verifyPreservedAnalysis (Pass *P) |
verifyPreservedAnalysis – Verify analysis presreved by pass P. More... | |
void | removeNotPreservedAnalysis (Pass *P) |
Remove Analysis that is not preserved by the pass. More... | |
void | removeDeadPasses (Pass *P, StringRef Msg, enum PassDebuggingString) |
Remove dead passes used by P. More... | |
void | freePass (Pass *P, StringRef Msg, enum PassDebuggingString) |
Remove P. More... | |
void | add (Pass *P, bool ProcessAnalysis=true) |
Add pass P into the PassVector. More... | |
virtual void | addLowerLevelRequiredPass (Pass *P, Pass *RequiredPass) |
Add RequiredPass into list of lower level passes required by pass P. More... | |
virtual Pass * | getOnTheFlyPass (Pass *P, AnalysisID PI, Function &F) |
void | initializeAnalysisInfo () |
Initialize available analysis information. More... | |
bool | preserveHigherLevelAnalysis (Pass *P) |
void | collectRequiredAndUsedAnalyses (SmallVectorImpl< Pass *> &UsedPasses, SmallVectorImpl< AnalysisID > &ReqPassNotAvailable, Pass *P) |
Populate UsedPasses with analysis pass that are used or required by pass P and are available. More... | |
void | initializeAnalysisImpl (Pass *P) |
All Required analyses should be available to the pass as it runs! Here we fill in the AnalysisImpls member of the pass so that it can successfully use the getAnalysis() method to retrieve the implementations it needs. More... | |
Pass * | findAnalysisPass (AnalysisID AID, bool Direction) |
Find the pass that implements Analysis AID. More... | |
PMTopLevelManager * | getTopLevelManager () |
void | setTopLevelManager (PMTopLevelManager *T) |
unsigned | getDepth () const |
void | setDepth (unsigned newDepth) |
void | dumpLastUses (Pass *P, unsigned Offset) const |
void | dumpPassArguments () const |
void | dumpPassInfo (Pass *P, enum PassDebuggingString S1, enum PassDebuggingString S2, StringRef Msg) |
void | dumpRequiredSet (const Pass *P) const |
void | dumpPreservedSet (const Pass *P) const |
void | dumpUsedSet (const Pass *P) const |
unsigned | getNumContainedPasses () const |
virtual PassManagerType | getPassManagerType () const |
DenseMap< AnalysisID, Pass * > * | getAvailableAnalysis () |
void | populateInheritedAnalysis (PMStack &PMS) |
unsigned | initSizeRemarkInfo (Module &M, StringMap< std::pair< unsigned, unsigned >> &FunctionToInstrCount) |
Set the initial size of the module if the user has specified that they want remarks for size. More... | |
void | emitInstrCountChangedRemark (Pass *P, Module &M, int64_t Delta, unsigned CountBefore, StringMap< std::pair< unsigned, unsigned >> &FunctionToInstrCount, Function *F=nullptr) |
Emit a remark signifying that the number of IR instructions in the module changed. More... | |
Public Member Functions inherited from llvm::PMTopLevelManager | |
void | schedulePass (Pass *P) |
Schedule pass P for execution. More... | |
void | setLastUser (ArrayRef< Pass *> AnalysisPasses, Pass *P) |
Set pass P as the last user of the given analysis passes. More... | |
void | collectLastUses (SmallVectorImpl< Pass *> &LastUses, Pass *P) |
Collect passes whose last user is P. More... | |
Pass * | findAnalysisPass (AnalysisID AID) |
Find the pass that implements Analysis AID. More... | |
const PassInfo * | findAnalysisPassInfo (AnalysisID AID) const |
Retrieve the PassInfo for an analysis. More... | |
AnalysisUsage * | findAnalysisUsage (Pass *P) |
Find analysis usage information for the pass P. More... | |
virtual | ~PMTopLevelManager () |
Destructor. More... | |
void | addImmutablePass (ImmutablePass *P) |
Add immutable pass and initialize it. More... | |
SmallVectorImpl< ImmutablePass * > & | getImmutablePasses () |
void | addPassManager (PMDataManager *Manager) |
void | addIndirectPassManager (PMDataManager *Manager) |
void | dumpPasses () const |
void | dumpArguments () const |
Static Public Attributes | |
static char | ID = 0 |
Additional Inherited Members | |
Static Public Member Functions inherited from llvm::Pass | |
static const PassInfo * | lookupPassInfo (const void *TI) |
static const PassInfo * | lookupPassInfo (StringRef Arg) |
static Pass * | createPass (AnalysisID ID) |
Public Attributes inherited from llvm::PMTopLevelManager | |
PMStack | activeStack |
Protected Member Functions inherited from llvm::PMDataManager | |
bool | isPassDebuggingExecutionsOrMore () const |
isPassDebuggingExecutionsOrMore - Return true if -debug-pass=Executions or higher is specified. More... | |
Protected Member Functions inherited from llvm::PMTopLevelManager | |
PMTopLevelManager (PMDataManager *PMDM) | |
Initialize top level manager. Create first pass manager. More... | |
unsigned | getNumContainedManagers () const |
void | initializeAllAnalysisInfo () |
Protected Attributes inherited from llvm::PMDataManager | |
PMTopLevelManager * | TPM |
SmallVector< Pass *, 16 > | PassVector |
DenseMap< AnalysisID, Pass * > * | InheritedAnalysis [PMT_Last] |
Protected Attributes inherited from llvm::PMTopLevelManager | |
SmallVector< PMDataManager *, 8 > | PassManagers |
Collection of pass managers. More... | |
FunctionPassManagerImpl manages FPPassManagers.
Definition at line 381 of file LegacyPassManager.cpp.
|
inlineexplicit |
Definition at line 389 of file LegacyPassManager.cpp.
|
inline |
Add a pass to the queue of passes to run.
This passes ownership of the Pass to the PassManager. When the PassManager is destroyed, the pass will be destroyed as well, so there is no need to delete the pass. This may even destroy the pass right away if it is found to be redundant. This implies that all passes MUST be allocated with 'new'.
Definition at line 394 of file LegacyPassManager.cpp.
Referenced by llvm::legacy::FunctionPassManager::add(), and llvm::FPPassManager::doFinalization().
|
inlineoverridevirtual |
createPrinterPass - Get a function printer pass.
Implements llvm::Pass.
Definition at line 399 of file LegacyPassManager.cpp.
References llvm::createPrintFunctionPass(), and F().
doFinalization - Run all of the finalizers for the function passes.
Reimplemented from llvm::Pass.
Definition at line 1544 of file LegacyPassManager.cpp.
Referenced by llvm::legacy::FunctionPassManager::doFinalization(), and llvm::FPPassManager::doFinalization().
doInitialization - Run all of the initializers for the function passes.
Reimplemented from llvm::Pass.
Definition at line 1529 of file LegacyPassManager.cpp.
Referenced by llvm::FPPassManager::doFinalization(), and llvm::legacy::FunctionPassManager::doInitialization().
|
inlineoverridevirtual |
Pass Manager itself does not invalidate any analysis info.
Reimplemented from llvm::Pass.
Definition at line 428 of file LegacyPassManager.cpp.
References llvm::AnalysisUsage::setPreservesAll().
|
inlineoverridevirtual |
Implements llvm::PMDataManager.
Definition at line 422 of file LegacyPassManager.cpp.
|
inlineoverridevirtual |
Implements llvm::PMTopLevelManager.
Definition at line 421 of file LegacyPassManager.cpp.
|
inline |
Definition at line 432 of file LegacyPassManager.cpp.
References assert(), llvm::createPrintModulePass(), llvm::dbgs(), llvm::Pass::doFinalization(), llvm::Pass::doInitialization(), llvm::Pass::dumpPassStructure(), llvm::MapVector< KeyT, ValueT, MapType, VectorType >::end(), F(), I, ID, llvm::raw_ostream::indent(), Info, N, llvm::RISCVFenceField::O, P, Pass, llvm::PMT_ModulePassManager, llvm::PT_PassManager, and llvm::AnalysisUsage::setPreservesAll().
|
inlineoverridevirtual |
Implements llvm::PMTopLevelManager.
Definition at line 423 of file LegacyPassManager.cpp.
References llvm::PMT_FunctionPassManager.
void FunctionPassManagerImpl::releaseMemoryOnTheFly | ( | ) |
Definition at line 1566 of file LegacyPassManager.cpp.
References llvm::FPPassManager::getContainedPass(), llvm::PMDataManager::getNumContainedPasses(), and llvm::Pass::releaseMemory().
Referenced by llvm::FPPassManager::doFinalization().
run - Execute all of the passes scheduled for execution.
Keep track of whether any of the passes modifies the module, and if so, return true.
Definition at line 1580 of file LegacyPassManager.cpp.
References llvm::Function::getContext(), llvm::FPPassManager::ID, and llvm::LLVMContext::yield().
Referenced by llvm::FPPassManager::doFinalization(), and llvm::legacy::FunctionPassManager::run().
|
static |
Definition at line 388 of file LegacyPassManager.cpp.
Referenced by getContainedManager().