Searched defs:getLoopDepth (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/CodeGen/
H A DMachineLoopInfo.h97 /// getLoopDepth - Return the loop nesting level of the specified block...
99 inline unsigned getLoopDepth(const MachineBasicBlock *BB) const { function in class:llvm::MachineLoopInfo
100 return LI.getLoopDepth(BB);
/external/llvm/include/llvm/Analysis/
H A DLoopInfo.h87 /// getLoopDepth - Return the nesting level of this loop. An outer-most
90 unsigned getLoopDepth() const { function in class:llvm::LoopBase
513 OS.indent(Depth*2) << "Loop at depth " << getLoopDepth()
670 /// getLoopDepth - Return the loop nesting level of the specified block. A
673 unsigned getLoopDepth(const BlockT *BB) const { function in class:llvm::LoopInfoBase
675 return L ? L->getLoopDepth() : 0;
925 << I->second->getLoopDepth() << "\n";
966 /// getLoopDepth - Return the loop nesting level of the specified block. A
969 inline unsigned getLoopDepth(const BasicBlock *BB) const { function in class:llvm::LoopInfo
970 return LI.getLoopDepth(B
[all...]

Completed in 140 milliseconds