HomeSort by relevance Sort by last modified time
    Searched defs:SubLoop (Results 1 - 2 of 2) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
LoopUnrollAndJam.cpp 52 static bool partitionOuterLoopBlocks(Loop *L, Loop *SubLoop,
57 BasicBlock *SubLoopLatch = SubLoop->getLoopLatch();
58 SubLoopBlocks.insert(SubLoop->block_begin(), SubLoop->block_end());
61 if (!SubLoop->contains(BB)) {
69 // Check that all blocks in ForeBlocks together dominate the subloop
71 BasicBlock *SubLoopPreHeader = SubLoop->getLoopPreheader();
88 // Aft blocks that need to be moved before the subloop. It is used in two
145 SubLoop(i, j)
153 SubLoop(i, j
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
LoopInfo.h 373 /// removeChildLoop - This removes the specified child from being a subloop of
471 // Each block in each subloop should be contained within this loop.
475 "Loop does not contain all the blocks of a subloop!");
482 "Loop is not a subloop of its parent!");
732 "Loops already embedded into a subloop!");
738 assert(New->getParentLoop() == 0 && "Loop already in subloop!");
757 static bool isNotAlreadyContainedIn(const LoopT *SubLoop,
759 if (SubLoop == 0) return true;
760 if (SubLoop == ParentLoop) return false;
761 return isNotAlreadyContainedIn(SubLoop->getParentLoop(), ParentLoop)
    [all...]

Completed in 89 milliseconds