Searched refs:getLoopDepth (Results 1 - 21 of 21) sorted by relevance

/external/llvm/include/llvm/CodeGen/
H A DMachineLoopInfo.h105 /// getLoopDepth - Return the loop nesting level of the specified block...
107 inline unsigned getLoopDepth(const MachineBasicBlock *BB) const { function in class:llvm::MachineLoopInfo
108 return LI.getLoopDepth(BB);
/external/llvm/lib/CodeGen/
H A DShrinkWrap.cpp352 if (MLI->getLoopDepth(Save) > MLI->getLoopDepth(Restore)) {
378 if (IPdom && MLI->getLoopDepth(IPdom) < MLI->getLoopDepth(Restore))
H A DMachineSink.cpp512 if (LI->getLoopDepth(MBB) > LI->getLoopDepth(SuccToSinkTo))
576 : LI->getLoopDepth(L) < LI->getLoopDepth(R);
H A DInlineSpiller.cpp439 SpillDepth = Loops.getLoopDepth(SV.SpillMBB);
456 if ((Loops.getLoopDepth(DepSV.SpillMBB) > SpillDepth) &&
H A DMachineBlockPlacement.cpp751 SuccLoopDepth = ExitLoop->getLoopDepth();
H A DSplitKit.cpp698 unsigned Depth = Loop->getLoopDepth();
H A DRegisterCoalescer.cpp2879 MBBs.push_back(MBBPriorityInfo(MBB, Loops->getLoopDepth(MBB),
/external/llvm/include/llvm/Analysis/
H A DLoopInfo.h91 /// getLoopDepth - Return the nesting level of this loop. An outer-most
94 unsigned getLoopDepth() const { function in class:llvm::LoopBase
566 /// getLoopDepth - Return the loop nesting level of the specified block. A
569 unsigned getLoopDepth(const BlockT *BB) const { function in class:llvm::LoopInfoBase
571 return L ? L->getLoopDepth() : 0;
H A DLoopInfoImpl.h320 OS.indent(Depth*2) << "Loop at depth " << getLoopDepth()
515 << I->second->getLoopDepth() << "\n";
/external/llvm/lib/Target/AMDGPU/
H A DR600ControlFlowFinalizer.cpp54 unsigned getLoopDepth();
65 unsigned CFStack::getLoopDepth() { function in class:__anon12058::CFStack
80 getLoopDepth() > 1)
H A DAMDILCFGStructurizer.cpp216 static unsigned getLoopDepth(MachineLoop *LoopRep);
379 unsigned AMDGPUCFGStructurizer::getLoopDepth(MachineLoop *LoopRep) { function in class:__anon12049::AMDGPUCFGStructurizer
380 return LoopRep ? LoopRep->getLoopDepth() : 0;
1477 << getLoopDepth(ContLoop)
1478 << " from loop-depth = " << getLoopDepth(ContingLoop) << "\n";);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp2351 OS.indent(Loop->getLoopDepth()*2)
2354 << " Depth=" << Loop->getLoopDepth() << '\n';
2364 OS.indent(CL->getLoopDepth()*2)
2366 << CL->getHeader()->getNumber() << " Depth " << CL->getLoopDepth()
2389 " Depth="+Twine(Loop->getLoopDepth()));
2400 OS.indent(Loop->getLoopDepth()*2-2);
2405 OS << "Loop Header: Depth=" + Twine(Loop->getLoopDepth()) << '\n';
/external/llvm/lib/Transforms/Scalar/
H A DStructurizeCFG.cpp312 unsigned LoopDepth = LI->getLoopDepth(BB);
499 (*OI)->getEntry()->getName() << " Loop Depth: " << LI->getLoopDepth((*OI)->getEntry()) << "\n");
H A DLoopStrengthReduce.cpp4336 unsigned IPLoopDepth = IPLoop ? IPLoop->getLoopDepth() : 0;
4347 unsigned IDomDepth = IDomLoop ? IDomLoop->getLoopDepth() : 0;
/external/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp377 InnermostPredLoop->getLoopDepth() < PredLoop->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
/external/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.cpp488 if (L->getLoopDepth() > 1)
/external/llvm/lib/Target/Hexagon/
H A DHexagonMachineScheduler.cpp148 << " at loop depth " << MLI->getLoopDepth(BB)
/external/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp716 unsigned SrcLevel = LI->getLoopDepth(SrcBlock);
717 unsigned DstLevel = LI->getLoopDepth(DstBlock);
743 return SrcLoop->getLoopDepth();
750 unsigned D = DstLoop->getLoopDepth();
775 unsigned Level = LoopNest->getLoopDepth();
H A DScalarEvolution.cpp516 unsigned LDepth = LI->getLoopDepth(LParent),
517 RDepth = LI->getLoopDepth(RParent);
551 unsigned LDepth = LLoop->getLoopDepth(),
552 RDepth = RLoop->getLoopDepth();
2874 ? (L->getLoopDepth() < NestedLoop->getLoopDepth())
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp5035 TheLoop->getLoopDepth() > 1) {

Completed in 493 milliseconds