|
LLVM
3.7.0
|
PassRegistry - This class manages the registration and intitialization of the pass subsystem as application startup, and assists the PassManager in resolving pass dependencies. More...
#include <PassRegistry.h>
Public Member Functions | |
| PassRegistry () | |
| ~PassRegistry () | |
| const PassInfo * | getPassInfo (const void *TI) const |
| getPassInfo - Look up a pass' corresponding PassInfo, indexed by the pass' type identifier (&MyPass::ID). More... | |
| const PassInfo * | getPassInfo (StringRef Arg) const |
| getPassInfo - Look up a pass' corresponding PassInfo, indexed by the pass' argument string. More... | |
| void | registerPass (const PassInfo &PI, bool ShouldFree=false) |
| registerPass - Register a pass (by means of its PassInfo) with the registry. More... | |
| void | registerAnalysisGroup (const void *InterfaceID, const void *PassID, PassInfo &Registeree, bool isDefault, bool ShouldFree=false) |
| registerAnalysisGroup - Register an analysis group (or a pass implementing More... | |
| void | enumerateWith (PassRegistrationListener *L) |
| enumerateWith - Enumerate the registered passes, calling the provided PassRegistrationListener's passEnumerate() callback on each of them. More... | |
| void | addRegistrationListener (PassRegistrationListener *L) |
| addRegistrationListener - Register the given PassRegistrationListener to receive passRegistered() callbacks whenever a new pass is registered. More... | |
| void | removeRegistrationListener (PassRegistrationListener *L) |
| removeRegistrationListener - Unregister a PassRegistrationListener so that it no longer receives passRegistered() callbacks. More... | |
Static Public Member Functions | |
| static PassRegistry * | getPassRegistry () |
| getPassRegistry - Access the global registry object, which is automatically initialized at application launch and destroyed by llvm_shutdown. More... | |
PassRegistry - This class manages the registration and intitialization of the pass subsystem as application startup, and assists the PassManager in resolving pass dependencies.
NOTE: PassRegistry is NOT thread-safe. If you want to use LLVM on multiple threads simultaneously, you will need to use a separate PassRegistry on each thread.
Definition at line 41 of file PassRegistry.h.
|
inline |
Definition at line 55 of file PassRegistry.h.
| PassRegistry::~PassRegistry | ( | ) |
Definition at line 39 of file PassRegistry.cpp.
| void PassRegistry::addRegistrationListener | ( | PassRegistrationListener * | L | ) |
addRegistrationListener - Register the given PassRegistrationListener to receive passRegistered() callbacks whenever a new pass is registered.
Definition at line 120 of file PassRegistry.cpp.
Referenced by llvm::PassNameParser::PassNameParser().
| void PassRegistry::enumerateWith | ( | PassRegistrationListener * | L | ) |
enumerateWith - Enumerate the registered passes, calling the provided PassRegistrationListener's passEnumerate() callback on each of them.
Definition at line 73 of file PassRegistry.cpp.
References llvm::PassRegistrationListener::passEnumerate().
Referenced by llvm::PassRegistrationListener::enumeratePasses().
getPassInfo - Look up a pass' corresponding PassInfo, indexed by the pass' type identifier (&MyPass::ID).
Definition at line 41 of file PassRegistry.cpp.
References llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::end(), llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::find(), and I.
Referenced by llvm::TargetPassConfig::addMachinePasses(), llvm::Pass::createPass(), llvm::PMTopLevelManager::findAnalysisPassInfo(), llvm::Pass::getPassName(), llvm::Pass::lookupPassInfo(), and registerAnalysisGroup().
getPassInfo - Look up a pass' corresponding PassInfo, indexed by the pass' argument string.
Definition at line 47 of file PassRegistry.cpp.
References llvm::StringMap< ValueTy, AllocatorTy >::end(), llvm::StringMap< ValueTy, AllocatorTy >::find(), I, and llvm::StringMapEntry< ValueTy >::second.
|
static |
getPassRegistry - Access the global registry object, which is automatically initialized at application launch and destroyed by llvm_shutdown.
Definition at line 31 of file PassRegistry.cpp.
References PassRegistryObj.
Referenced by llvm::TargetPassConfig::addMachinePasses(), llvm::AssumptionCacheTracker::AssumptionCacheTracker(), llvm::BlockFrequencyInfo::BlockFrequencyInfo(), llvm::BranchProbabilityInfo::BranchProbabilityInfo(), llvm::CallGraphWrapperPass::CallGraphWrapperPass(), llvm::Pass::createPass(), llvm::DependenceAnalysis::DependenceAnalysis(), llvm::DominanceFrontier::DominanceFrontier(), llvm::DominatorTreeWrapperPass::DominatorTreeWrapperPass(), llvm::PassRegistrationListener::enumeratePasses(), llvm::PMTopLevelManager::findAnalysisPassInfo(), llvm::GCModuleInfo::GCModuleInfo(), llvm::Pass::getPassName(), INITIALIZE_PASS(), llvm::IntervalPartition::IntervalPartition(), llvm::IVUsers::IVUsers(), llvm::LazyValueInfo::LazyValueInfo(), llvm::LibCallAliasAnalysis::LibCallAliasAnalysis(), llvm::LiveDebugVariables::LiveDebugVariables(), llvm::LiveIntervals::LiveIntervals(), llvm::LiveStacks::LiveStacks(), llvm::LiveVariables::LiveVariables(), LLVMGetGlobalPassRegistry(), LLVMInitializeNVPTXTarget(), llvm::Pass::lookupPassInfo(), llvm::LoopAccessAnalysis::LoopAccessAnalysis(), llvm::LoopInfoWrapperPass::LoopInfoWrapperPass(), llvm::MachineBlockFrequencyInfo::MachineBlockFrequencyInfo(), llvm::MachineBranchProbabilityInfo::MachineBranchProbabilityInfo(), llvm::MachineDominanceFrontier::MachineDominanceFrontier(), llvm::MachineDominatorTree::MachineDominatorTree(), llvm::MachineFunctionAnalysis::MachineFunctionAnalysis(), llvm::MachineLoopInfo::MachineLoopInfo(), llvm::MachineModuleInfo::MachineModuleInfo(), llvm::MachineRegionInfoPass::MachineRegionInfoPass(), llvm::MemoryDependenceAnalysis::MemoryDependenceAnalysis(), llvm::objcarc::ObjCARCAliasAnalysis::ObjCARCAliasAnalysis(), llvm::PassNameParser::PassNameParser(), llvm::PostDominatorTree::PostDominatorTree(), llvm::RegionInfoPass::RegionInfoPass(), llvm::RegisterAGBase::RegisterAGBase(), llvm::RegisterPass< passName >::RegisterPass(), llvm::ScalarEvolution::ScalarEvolution(), llvm::SelectionDAGISel::SelectionDAGISel(), llvm::SlotIndexes::SlotIndexes(), llvm::StackProtector::StackProtector(), llvm::TargetLibraryInfoWrapperPass::TargetLibraryInfoWrapperPass(), llvm::TargetPassConfig::TargetPassConfig(), llvm::TargetTransformInfoWrapperPass::TargetTransformInfoWrapperPass(), and llvm::UnifyFunctionExitNodes::UnifyFunctionExitNodes().
| void PassRegistry::registerAnalysisGroup | ( | const void * | InterfaceID, |
| const void * | PassID, | ||
| PassInfo & | Registeree, | ||
| bool | isDefault, | ||
| bool | ShouldFree = false |
||
| ) |
registerAnalysisGroup - Register an analysis group (or a pass implementing
Analysis Group Mechanisms.
Definition at line 80 of file PassRegistry.cpp.
References llvm::PassInfo::addInterfaceImplemented(), llvm::PassInfo::getNormalCtor(), getPassInfo(), llvm::PassInfo::getTargetMachineCtor(), llvm::PassInfo::isAnalysisGroup(), registerPass(), llvm::PassInfo::setNormalCtor(), and llvm::PassInfo::setTargetMachineCtor().
Referenced by llvm::RegisterAGBase::RegisterAGBase().
registerPass - Register a pass (by means of its PassInfo) with the registry.
Required in order to use the pass with a PassManager.
Definition at line 57 of file PassRegistry.cpp.
References llvm::PassInfo::getPassArgument(), llvm::PassInfo::getTypeInfo(), and llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::insert().
Referenced by initializePassOnce(), registerAnalysisGroup(), and llvm::RegisterPass< passName >::RegisterPass().
| void PassRegistry::removeRegistrationListener | ( | PassRegistrationListener * | L | ) |
removeRegistrationListener - Unregister a PassRegistrationListener so that it no longer receives passRegistered() callbacks.
Definition at line 125 of file PassRegistry.cpp.
References I.
1.8.6