LLVM
8.0.1
|
This class contains all of the helper code which is used to perform the inlining operations that do not depend on the policy. More...
#include "llvm/Transforms/IPO/Inliner.h"
Public Member Functions | |
LegacyInlinerBase (char &ID) | |
LegacyInlinerBase (char &ID, bool InsertLifetime) | |
void | getAnalysisUsage (AnalysisUsage &Info) const override |
For this class, we declare that we require and preserve the call graph. More... | |
bool | doInitialization (CallGraph &CG) override |
doInitialization - This method is called before the SCC's of the program has been processed, allowing the pass to do initialization as necessary. More... | |
bool | runOnSCC (CallGraphSCC &SCC) override |
Main run interface method, this implements the interface required by the Pass class. More... | |
bool | doFinalization (CallGraph &CG) override |
Remove now-dead linkonce functions at the end of processing to avoid breaking the SCC traversal. More... | |
virtual InlineCost | getInlineCost (CallSite CS)=0 |
This method must be implemented by the subclass to determine the cost of inlining the specified call site. More... | |
bool | removeDeadFunctions (CallGraph &CG, bool AlwaysInlineOnly=false) |
Remove dead functions. More... | |
bool | inlineCalls (CallGraphSCC &SCC) |
This function performs the main work of the pass. More... | |
Public Member Functions inherited from llvm::CallGraphSCCPass | |
CallGraphSCCPass (char &pid) | |
Pass * | createPrinterPass (raw_ostream &OS, const std::string &Banner) const override |
createPrinterPass - Get a pass that prints the Module corresponding to a CallGraph. More... | |
void | assignPassManager (PMStack &PMS, PassManagerType PMT) override |
Assign pass manager to manager this pass. More... | |
PassManagerType | getPotentialPassManagerType () const override |
Return what kind of Pass Manager can manage this pass. More... | |
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 bool | doInitialization (Module &) |
doInitialization - Virtual method overridden by subclasses to do any necessary initialization before any pass is run. More... | |
virtual bool | doFinalization (Module &) |
doFinalization - Virtual method overriden by subclasses to do any necessary clean up after all passes have run. 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 | preparePassManager (PMStack &) |
Check if available pass managers are suitable for this pass or not. 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 PMDataManager * | getAsPMDataManager () |
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) |
Protected Attributes | |
AssumptionCacheTracker * | ACT |
ProfileSummaryInfo * | PSI |
ImportedFunctionsInliningStatistics | ImportedFunctionsStats |
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) |
Protected Member Functions inherited from llvm::CallGraphSCCPass | |
bool | skipSCC (CallGraphSCC &SCC) const |
Optional passes call this function to check whether the pass should be skipped. More... | |
This class contains all of the helper code which is used to perform the inlining operations that do not depend on the policy.
It contains the core bottom-up inlining infrastructure that specific inliner passes use.
|
explicit |
Definition at line 124 of file Inliner.cpp.
Definition at line 126 of file Inliner.cpp.
Remove now-dead linkonce functions at the end of processing to avoid breaking the SCC traversal.
Reimplemented from llvm::CallGraphSCCPass.
Definition at line 772 of file Inliner.cpp.
References llvm::ImportedFunctionsInliningStatistics::dump(), ImportedFunctionsStats, llvm::No, and removeDeadFunctions().
doInitialization - This method is called before the SCC's of the program has been processed, allowing the pass to do initialization as necessary.
Reimplemented from llvm::CallGraphSCCPass.
Definition at line 496 of file Inliner.cpp.
References llvm::CallGraph::getModule(), ImportedFunctionsStats, llvm::No, and llvm::ImportedFunctionsInliningStatistics::setModuleInfo().
|
overridevirtual |
For this class, we declare that we require and preserve the call graph.
If the derived class implements this method, it should always explicitly call the implementation here.
Reimplemented from llvm::CallGraphSCCPass.
Definition at line 132 of file Inliner.cpp.
References llvm::AnalysisUsage::addRequired(), llvm::getAAResultsAnalysisUsage(), and llvm::CallGraphSCCPass::getAnalysisUsage().
Referenced by llvm::createAMDGPUFunctionInliningPass(), and llvm::createFunctionInliningPass().
|
pure virtual |
This method must be implemented by the subclass to determine the cost of inlining the specified call site.
If the cost returned is greater than the current inline threshold, the call site is not inlined.
Referenced by inlineCalls(), and llvm::InlinerPass::run().
bool LegacyInlinerBase::inlineCalls | ( | CallGraphSCC & | SCC | ) |
This function performs the main work of the pass.
The default of Inlinter::runOnSCC() calls skipSCC() before calling this method, but derived classes which cannot be skipped can override that method and call this function unconditionally.
Definition at line 757 of file Inliner.cpp.
References ACT, F(), llvm::AssumptionCacheTracker::getAssumptionCache(), getInlineCost(), ImportedFunctionsStats, and inlineCallsImpl().
Referenced by runOnSCC().
Remove dead functions.
Remove dead functions that are not included in DNR (Do Not Remove) list.
This also includes a hack in the form of the 'AlwaysInlineOnly' flag which restricts it to deleting functions with an 'AlwaysInline' attribute. This is useful for the InlineAlways pass that only wants to deal with that subset of the functions.
Definition at line 780 of file Inliner.cpp.
References llvm::Attribute::AlwaysInline, llvm::array_pod_sort(), llvm::SmallVectorTemplateCommon< T >::begin(), llvm::SmallVectorBase::empty(), llvm::SmallVectorTemplateCommon< T >::end(), llvm::SmallVectorImpl< T >::erase(), F(), llvm::filterDeadComdatFunctions(), llvm::CallGraph::getExternalCallingNode(), llvm::CallGraphNode::getFunction(), llvm::GlobalObject::hasComdat(), llvm::Function::hasFnAttribute(), llvm::GlobalValue::hasLocalLinkage(), I, llvm::GlobalValue::isDeclaration(), llvm::Function::isDefTriviallyDead(), llvm::SmallVectorTemplateBase< T >::push_back(), llvm::CallGraphNode::removeAnyCallEdgeTo(), and llvm::Constant::removeDeadConstantUsers().
Referenced by doFinalization().
|
overridevirtual |
Main run interface method, this implements the interface required by the Pass class.
Implements llvm::CallGraphSCCPass.
Definition at line 502 of file Inliner.cpp.
References inlineCalls(), and llvm::CallGraphSCCPass::skipSCC().
Referenced by llvm::createAMDGPUFunctionInliningPass(), and llvm::createFunctionInliningPass().
|
protected |
Definition at line 76 of file Inliner.h.
Referenced by inlineCalls().
|
protected |
Definition at line 78 of file Inliner.h.
Referenced by doFinalization(), doInitialization(), inlineCalls(), llvm::InlinerPass::InlinerPass(), llvm::InlinerPass::run(), and llvm::InlinerPass::~InlinerPass().
|
protected |
Definition at line 77 of file Inliner.h.
Referenced by llvm::InlinerPass::run().