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

/external/llvm/include/llvm/CodeGen/
H A DMachineLoopInfo.h110 /// getLoopDepth - Return the loop nesting level of the specified block...
112 inline unsigned getLoopDepth(const MachineBasicBlock *BB) const { function in class:llvm::MachineLoopInfo
113 return LI.getLoopDepth(BB);
/external/llvm/include/llvm/Analysis/
H A DLoopInfo.h88 /// getLoopDepth - Return the nesting level of this loop. An outer-most
91 unsigned getLoopDepth() const { function in class:llvm::LoopBase
539 /// getLoopDepth - Return the loop nesting level of the specified block. A
542 unsigned getLoopDepth(const BlockT *BB) const { function in class:llvm::LoopInfoBase
544 return L ? L->getLoopDepth() : 0;
668 /// getLoopDepth - Return the loop nesting level of the specified block. A
671 inline unsigned getLoopDepth(const BasicBlock *BB) const { function in class:llvm::LoopInfo
672 return LI.getLoopDepth(BB);
/external/llvm/lib/Target/R600/
H A DR600ControlFlowFinalizer.cpp54 unsigned getLoopDepth();
65 unsigned CFStack::getLoopDepth() { function in class:__anon26114::CFStack
80 getLoopDepth() > 1)
H A DAMDILCFGStructurizer.cpp213 static unsigned getLoopDepth(MachineLoop *LoopRep);
376 unsigned AMDGPUCFGStructurizer::getLoopDepth(MachineLoop *LoopRep) { function in class:__anon26106::AMDGPUCFGStructurizer
377 return LoopRep ? LoopRep->getLoopDepth() : 0;
1476 << getLoopDepth(ContLoop)
1477 << " from loop-depth = " << getLoopDepth(ContingLoop) << "\n";);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDILCFGStructurizer.cpp389 unsigned getLoopDepth (LoopT *LoopRep);
1447 errs() << "Trying to break loop-depth = " << getLoopDepth(exitLoop)
1448 << " from loop-depth = " << getLoopDepth(exitingLoop) << "\n";
1479 << getLoopDepth(contLoop)
1480 << " from loop-depth = " << getLoopDepth(contingLoop) << "\n";
2549 unsigned CFGStructurizer<PassT>::getLoopDepth(LoopT *loopRep) { function in class:llvmCFGStruct::CFGStructurizer
2550 return loopRep ? loopRep->getLoopDepth() : 0;
2551 } //getLoopDepth
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDILCFGStructurizer.cpp389 unsigned getLoopDepth (LoopT *LoopRep);
1447 errs() << "Trying to break loop-depth = " << getLoopDepth(exitLoop)
1448 << " from loop-depth = " << getLoopDepth(exitingLoop) << "\n";
1479 << getLoopDepth(contLoop)
1480 << " from loop-depth = " << getLoopDepth(contingLoop) << "\n";
2549 unsigned CFGStructurizer<PassT>::getLoopDepth(LoopT *loopRep) { function in class:llvmCFGStruct::CFGStructurizer
2550 return loopRep ? loopRep->getLoopDepth() : 0;
2551 } //getLoopDepth

Completed in 1629 milliseconds