HomeSort by relevance Sort by last modified time
    Searched refs:getLoopDepth (Results 1 - 21 of 21) sorted by null

  /external/llvm/include/llvm/CodeGen/
MachineLoopInfo.h 105 /// getLoopDepth - Return the loop nesting level of the specified block...
107 inline unsigned getLoopDepth(const MachineBasicBlock *BB) const {
108 return LI.getLoopDepth(BB);
  /external/llvm/lib/CodeGen/
ShrinkWrap.cpp 352 if (MLI->getLoopDepth(Save) > MLI->getLoopDepth(Restore)) {
378 if (IPdom && MLI->getLoopDepth(IPdom) < MLI->getLoopDepth(Restore))
MachineSink.cpp 512 if (LI->getLoopDepth(MBB) > LI->getLoopDepth(SuccToSinkTo))
576 : LI->getLoopDepth(L) < LI->getLoopDepth(R);
InlineSpiller.cpp 439 SpillDepth = Loops.getLoopDepth(SV.SpillMBB);
456 if ((Loops.getLoopDepth(DepSV.SpillMBB) > SpillDepth) &&
    [all...]
MachineBlockPlacement.cpp 751 SuccLoopDepth = ExitLoop->getLoopDepth();
    [all...]
SplitKit.cpp 698 unsigned Depth = Loop->getLoopDepth();
    [all...]
RegisterCoalescer.cpp     [all...]
  /external/llvm/include/llvm/Analysis/
LoopInfo.h 91 /// getLoopDepth - Return the nesting level of this loop. An outer-most
94 unsigned getLoopDepth() const {
566 /// getLoopDepth - Return the loop nesting level of the specified block. A
569 unsigned getLoopDepth(const BlockT *BB) const {
571 return L ? L->getLoopDepth() : 0;
LoopInfoImpl.h 320 OS.indent(Depth*2) << "Loop at depth " << getLoopDepth()
515 << I->second->getLoopDepth() << "\n";
  /external/llvm/lib/Target/AMDGPU/
R600ControlFlowFinalizer.cpp 54 unsigned getLoopDepth();
65 unsigned CFStack::getLoopDepth() {
80 getLoopDepth() > 1)
AMDILCFGStructurizer.cpp 216 static unsigned getLoopDepth(MachineLoop *LoopRep);
379 unsigned AMDGPUCFGStructurizer::getLoopDepth(MachineLoop *LoopRep) {
380 return LoopRep ? LoopRep->getLoopDepth() : 0;
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
StructurizeCFG.cpp 312 unsigned LoopDepth = LI->getLoopDepth(BB);
499 (*OI)->getEntry()->getName() << " Loop Depth: " << LI->getLoopDepth((*OI)->getEntry()) << "\n");
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 377 InnermostPredLoop->getLoopDepth() < PredLoop->getLoopDepth()))
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILCFGStructurizer.cpp 389 unsigned getLoopDepth (LoopT *LoopRep);
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64TargetTransformInfo.cpp 488 if (L->getLoopDepth() > 1)
  /external/llvm/lib/Target/Hexagon/
HexagonMachineScheduler.cpp 148 << " at loop depth " << MLI->getLoopDepth(BB)
  /external/llvm/lib/Analysis/
DependenceAnalysis.cpp 716 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();
    [all...]
ScalarEvolution.cpp 516 unsigned LDepth = LI->getLoopDepth(LParent),
517 RDepth = LI->getLoopDepth(RParent);
551 unsigned LDepth = LLoop->getLoopDepth(),
552 RDepth = RLoop->getLoopDepth();
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]

Completed in 343 milliseconds