LLVM 17.0.0git
|
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. | |
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. | |
bool | runOnSCC (CallGraphSCC &SCC) override |
Main run interface method, this implements the interface required by the Pass class. | |
bool | doFinalization (CallGraph &CG) override |
Remove now-dead linkonce functions at the end of processing to avoid breaking the SCC traversal. | |
virtual InlineCost | getInlineCost (CallBase &CB)=0 |
This method must be implemented by the subclass to determine the cost of inlining the specified call site. | |
bool | removeDeadFunctions (CallGraph &CG, bool AlwaysInlineOnly=false) |
Remove dead functions. | |
bool | inlineCalls (CallGraphSCC &SCC) |
This function performs the main work of the pass. | |
![]() | |
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. | |
virtual bool | doInitialization (CallGraph &CG) |
doInitialization - This method is called before the SCC's of the program has been processed, allowing the pass to do initialization as necessary. | |
virtual bool | runOnSCC (CallGraphSCC &SCC)=0 |
runOnSCC - This method should be implemented by the subclass to perform whatever action is necessary for the specified SCC. | |
virtual bool | doFinalization (CallGraph &CG) |
doFinalization - This method is called after the SCC's of the program has been processed, allowing the pass to do final cleanup as necessary. | |
void | assignPassManager (PMStack &PMS, PassManagerType PMT) override |
Assign pass manager to manager this pass. | |
PassManagerType | getPotentialPassManagerType () const override |
Return what kind of Pass Manager can manage this pass. | |
void | getAnalysisUsage (AnalysisUsage &Info) const override |
getAnalysisUsage - For this class, we declare that we require and preserve the call graph. | |
![]() | |
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. | |
AnalysisID | getPassID () const |
getPassID - Return the PassID number that corresponds to this pass. | |
virtual bool | doInitialization (Module &) |
doInitialization - Virtual method overridden by subclasses to do any necessary initialization before any pass is run. | |
virtual bool | doFinalization (Module &) |
doFinalization - Virtual method overriden by subclasses to do any necessary clean up after all passes have run. | |
virtual void | print (raw_ostream &OS, const Module *M) const |
print - Print out the internal state of the pass. | |
void | dump () const |
virtual Pass * | createPrinterPass (raw_ostream &OS, const std::string &Banner) const =0 |
createPrinterPass - Get a Pass appropriate to print the IR this pass operates on (Module, Function or MachineFunction). | |
virtual void | assignPassManager (PMStack &, PassManagerType) |
Each pass is responsible for assigning a pass manager to itself. | |
virtual void | preparePassManager (PMStack &) |
Check if available pass managers are suitable for this pass or not. | |
virtual PassManagerType | getPotentialPassManagerType () const |
Return what kind of Pass Manager can manage this pass. | |
void | setResolver (AnalysisResolver *AR) |
AnalysisResolver * | getResolver () const |
virtual void | getAnalysisUsage (AnalysisUsage &) const |
getAnalysisUsage - This function should be overriden by passes that need analysis information to do their job. | |
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. | |
virtual void * | getAdjustedAnalysisPointer (AnalysisID ID) |
getAdjustedAnalysisPointer - This method is used when a pass implements an analysis interface through multiple inheritance. | |
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. | |
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. | |
bool | mustPreserveAnalysisID (char &AID) const |
mustPreserveAnalysisID - This method serves the same function as getAnalysisIfAvailable, but works if you just have an AnalysisID. | |
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. | |
template<typename AnalysisType > | |
AnalysisType & | getAnalysis (Function &F, bool *Changed=nullptr) |
getAnalysis<AnalysisType>() - This function is used by subclasses to get to the analysis information that they claim to use by overriding the getAnalysisUsage function. | |
template<typename AnalysisType > | |
AnalysisType & | getAnalysisID (AnalysisID PI) const |
template<typename AnalysisType > | |
AnalysisType & | getAnalysisID (AnalysisID PI, Function &F, bool *Changed=nullptr) |
Protected Attributes | |
AssumptionCacheTracker * | ACT |
ProfileSummaryInfo * | PSI |
std::function< const TargetLibraryInfo &(Function &)> | GetTLI |
ImportedFunctionsInliningStatistics | ImportedFunctionsStats |
Additional Inherited Members | |
![]() | |
static const PassInfo * | lookupPassInfo (const void *TI) |
static const PassInfo * | lookupPassInfo (StringRef Arg) |
static Pass * | createPass (AnalysisID ID) |
![]() | |
bool | skipSCC (CallGraphSCC &SCC) const |
Optional passes call this function to check whether the pass should be skipped. | |
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 154 of file Inliner.cpp.
Definition at line 156 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 486 of file Inliner.cpp.
References llvm::ImportedFunctionsInliningStatistics::dump(), ImportedFunctionsStats, llvm::InlinerFunctionImportStats, llvm::No, removeDeadFunctions(), and llvm::Verbose.
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 219 of file Inliner.cpp.
References llvm::CallGraph::getModule(), ImportedFunctionsStats, llvm::InlinerFunctionImportStats, 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 162 of file Inliner.cpp.
References llvm::AnalysisUsage::addRequired(), llvm::getAAResultsAnalysisUsage(), and llvm::CallGraphSCCPass::getAnalysisUsage().
|
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().
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 468 of file Inliner.cpp.
References ACT, F, llvm::AssumptionCacheTracker::getAssumptionCache(), getInlineCost(), GetTLI, ImportedFunctionsStats, inlineCallsImpl(), and PSI.
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 494 of file Inliner.cpp.
References llvm::array_pod_sort(), llvm::SmallVectorTemplateCommon< T, typename >::begin(), llvm::SmallVectorBase< Size_T >::empty(), llvm::SmallVectorTemplateCommon< T, typename >::end(), llvm::SmallVectorImpl< T >::erase(), F, llvm::filterDeadComdatFunctions(), llvm::CallGraph::getExternalCallingNode(), llvm::CallGraphNode::getFunction(), I, llvm::SmallVectorTemplateBase< T, bool >::push_back(), llvm::CallGraphNode::removeAnyCallEdgeTo(), and llvm::CallGraph::removeFunctionFromModule().
Referenced by doFinalization().
|
overridevirtual |
Main run interface method, this implements the interface required by the Pass class.
Implements llvm::CallGraphSCCPass.
Definition at line 225 of file Inliner.cpp.
References inlineCalls(), and llvm::CallGraphSCCPass::skipSCC().
|
protected |
Definition at line 76 of file Inliner.h.
Referenced by inlineCalls().
|
protected |
Definition at line 78 of file Inliner.h.
Referenced by inlineCalls().
|
protected |
Definition at line 79 of file Inliner.h.
Referenced by doFinalization(), doInitialization(), and inlineCalls().
|
protected |
Definition at line 77 of file Inliner.h.
Referenced by inlineCalls().