LLVM
8.0.1
|
#include "llvm/CodeGen/MachineLoopInfo.h"
Public Types | |
using | iterator = LoopInfoBase< MachineBasicBlock, MachineLoop >::iterator |
The iterator interface to the top-level loops in the current function. More... | |
Public Member Functions | |
MachineLoopInfo () | |
MachineLoopInfo (const MachineLoopInfo &)=delete | |
MachineLoopInfo & | operator= (const MachineLoopInfo &)=delete |
LoopInfoBase< MachineBasicBlock, MachineLoop > & | getBase () |
MachineBasicBlock * | findLoopPreheader (MachineLoop *L, bool SpeculativePreheader=false) const |
Find the block that either is the loop preheader, or could speculatively be used as the preheader. More... | |
iterator | begin () const |
iterator | end () const |
bool | empty () const |
MachineLoop * | getLoopFor (const MachineBasicBlock *BB) const |
Return the innermost loop that BB lives in. More... | |
const MachineLoop * | operator[] (const MachineBasicBlock *BB) const |
Same as getLoopFor. More... | |
unsigned | getLoopDepth (const MachineBasicBlock *BB) const |
Return the loop nesting level of the specified block. More... | |
bool | isLoopHeader (const MachineBasicBlock *BB) const |
True if the block is a loop header node. More... | |
bool | runOnMachineFunction (MachineFunction &F) override |
Calculate the natural loop information. More... | |
void | releaseMemory () override |
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... | |
void | getAnalysisUsage (AnalysisUsage &AU) const override |
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this. More... | |
MachineLoop * | removeLoop (iterator I) |
This removes the specified top-level loop from this loop info object. More... | |
void | changeLoopFor (MachineBasicBlock *BB, MachineLoop *L) |
Change the top-level loop that contains BB to the specified loop. More... | |
void | changeTopLevelLoop (MachineLoop *OldLoop, MachineLoop *NewLoop) |
Replace the specified loop in the top-level loops list with the indicated loop. More... | |
void | addTopLevelLoop (MachineLoop *New) |
This adds the specified loop to the collection of top-level loops. More... | |
void | removeBlock (MachineBasicBlock *BB) |
This method completely removes BB from all data structures, including all of the Loop objects it is nested in and our mapping from MachineBasicBlocks to loops. More... | |
Public Member Functions inherited from llvm::MachineFunctionPass | |
bool | doInitialization (Module &) override |
doInitialization - Virtual method overridden by subclasses to do any necessary initialization before any pass is run. More... | |
Public Member Functions inherited from llvm::FunctionPass | |
FunctionPass (char &pid) | |
Pass * | createPrinterPass (raw_ostream &OS, const std::string &Banner) const override |
createPrinterPass - Get a function printer pass. More... | |
void | assignPassManager (PMStack &PMS, PassManagerType T) override |
Find appropriate Function Pass Manager or Call Graph Pass Manager in the PM Stack and add self into that manager. 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 | 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 * | 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) |
Static Public Attributes | |
static char | ID = 0 |
Friends | |
class | LoopBase< MachineBasicBlock, MachineLoop > |
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::MachineFunctionPass | |
MachineFunctionPass (char &ID) | |
virtual MachineFunctionProperties | getRequiredProperties () const |
virtual MachineFunctionProperties | getSetProperties () const |
virtual MachineFunctionProperties | getClearedProperties () const |
Protected Member Functions inherited from llvm::FunctionPass | |
bool | skipFunction (const Function &F) const |
Optional passes call this function to check whether the pass should be skipped. More... | |
Definition at line 84 of file MachineLoopInfo.h.
The iterator interface to the top-level loops in the current function.
Definition at line 109 of file MachineLoopInfo.h.
|
inline |
Definition at line 92 of file MachineLoopInfo.h.
References llvm::PassRegistry::getPassRegistry(), and llvm::initializeMachineLoopInfoPass().
|
delete |
|
inline |
This adds the specified loop to the collection of top-level loops.
Definition at line 160 of file MachineLoopInfo.h.
References llvm::LoopInfoBase< BlockT, LoopT >::addTopLevelLoop().
|
inline |
Definition at line 110 of file MachineLoopInfo.h.
References llvm::LoopInfoBase< BlockT, LoopT >::begin().
Referenced by LoopIsOuterMostWithPredecessor().
|
inline |
Change the top-level loop that contains BB to the specified loop.
This should be used by transformations that restructure the loop hierarchy tree.
Definition at line 149 of file MachineLoopInfo.h.
References llvm::LoopInfoBase< BlockT, LoopT >::changeLoopFor().
|
inline |
Replace the specified loop in the top-level loops list with the indicated loop.
Definition at line 155 of file MachineLoopInfo.h.
References llvm::LoopInfoBase< BlockT, LoopT >::changeTopLevelLoop().
|
inline |
Definition at line 112 of file MachineLoopInfo.h.
References llvm::LoopInfoBase< BlockT, LoopT >::empty().
|
inline |
Definition at line 111 of file MachineLoopInfo.h.
References llvm::LoopInfoBase< BlockT, LoopT >::end().
Referenced by LoopIsOuterMostWithPredecessor().
MachineBasicBlock * MachineLoopInfo::findLoopPreheader | ( | MachineLoop * | L, |
bool | SpeculativePreheader = false |
||
) | const |
Find the block that either is the loop preheader, or could speculatively be used as the preheader.
This is e.g. useful to place loop setup code. Code that cannot be speculated should not be placed here. SpeculativePreheader is controlling whether it also tries to find the speculative preheader if the regular preheader is not present.
Definition at line 108 of file MachineLoopInfo.cpp.
References llvm::LoopBase< BlockT, LoopT >::getHeader(), getLoopFor(), llvm::LoopBase< BlockT, LoopT >::getLoopLatch(), llvm::LoopBase< BlockT, LoopT >::getLoopPreheader(), llvm::MachineBasicBlock::hasAddressTaken(), P, llvm::MachineBasicBlock::pred_size(), llvm::MachineBasicBlock::predecessors(), and llvm::MachineBasicBlock::successors().
Referenced by llvm::createHexagonHardwareLoops(), and isImmValidForOpcode().
|
overridevirtual |
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
For MachineFunctionPasses, calling AU.preservesCFG() indicates that the pass does not modify the MachineBasicBlock CFG.
Reimplemented from llvm::MachineFunctionPass.
Definition at line 45 of file MachineLoopInfo.cpp.
References llvm::AnalysisUsage::addRequired(), llvm::MachineFunctionPass::getAnalysisUsage(), and llvm::AnalysisUsage::setPreservesAll().
|
inline |
Definition at line 98 of file MachineLoopInfo.h.
Referenced by ComputeCommonTailLength(), and isImmValidForOpcode().
|
inline |
Return the loop nesting level of the specified block.
Definition at line 126 of file MachineLoopInfo.h.
References llvm::LoopInfoBase< BlockT, LoopT >::getLoopDepth().
Referenced by isTerminalReg().
|
inline |
Return the innermost loop that BB lives in.
If a basic block is in no loop (for example the entry node), null is returned.
Definition at line 116 of file MachineLoopInfo.h.
References llvm::LoopInfoBase< BlockT, LoopT >::getLoopFor().
Referenced by allPhiOperandsUndefined(), ComputeCommonTailLength(), emitBasicBlockLoopComments(), llvm::SystemZPostRASchedStrategy::enterMBB(), findLoopPreheader(), getLayoutSuccessorProbThreshold(), llvm::MachineTraceMetrics::Ensemble::getLoopFor(), InstructionStoresToFI(), isIntersect(), mergeOperations(), SortBlocks(), and VisitGlobalVariableForEmission().
|
inline |
True if the block is a loop header node.
Definition at line 131 of file MachineLoopInfo.h.
References F(), and llvm::LoopInfoBase< BlockT, LoopT >::isLoopHeader().
Referenced by performSink(), and VisitGlobalVariableForEmission().
|
delete |
|
inline |
Same as getLoopFor.
Definition at line 121 of file MachineLoopInfo.h.
References llvm::LoopInfoBase< BlockT, LoopT >::getLoopFor().
|
inlineoverridevirtual |
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.
The default behavior of passes is to hold onto memory for the entire duration of their lifetime (which is the entire compile time). For pipelined passes, this is not a big deal because that memory gets recycled every time the pass is invoked on another program unit. For IP passes, it is more important to free memory when it is unused.
Optionally implement this function to release pass memory when it is no longer used.
Reimplemented from llvm::Pass.
Definition at line 138 of file MachineLoopInfo.h.
References llvm::LoopInfoBase< BlockT, LoopT >::releaseMemory().
|
inline |
This method completely removes BB from all data structures, including all of the Loop objects it is nested in and our mapping from MachineBasicBlocks to loops.
Definition at line 167 of file MachineLoopInfo.h.
References llvm::LoopInfoBase< BlockT, LoopT >::removeBlock().
Referenced by llvm::BranchFolder::BranchFolder(), and getLayoutSuccessorProbThreshold().
|
inline |
This removes the specified top-level loop from this loop info object.
The loop is not deleted, as it will presumably be inserted into another loop.
Definition at line 144 of file MachineLoopInfo.h.
References llvm::LoopInfoBase< BlockT, LoopT >::removeLoop().
|
overridevirtual |
Calculate the natural loop information.
Implements llvm::MachineFunctionPass.
Definition at line 39 of file MachineLoopInfo.cpp.
|
friend |
Definition at line 85 of file MachineLoopInfo.h.
|
static |
Definition at line 90 of file MachineLoopInfo.h.