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

  /external/llvm/lib/Transforms/Utils/
LoopSimplify.cpp 293 BasicBlock *ExitingBlock = ExitingBlocks[i];
294 if (!ExitingBlock->getSinglePredecessor()) continue;
295 BranchInst *BI = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
298 if (!CI || CI->getParent() != ExitingBlock) continue;
303 for (BasicBlock::iterator I = ExitingBlock->begin(); &*I != BI; ) {
326 << ExitingBlock->getName() << "\n");
336 assert(pred_begin(ExitingBlock) == pred_end(ExitingBlock));
338 LI->removeBlock(ExitingBlock);
340 DomTreeNode *Node = DT->getNode(ExitingBlock);
    [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolution.h 267 AssertingVH<BasicBlock> ExitingBlock;
271 ExitNotTakenInfo() : ExitingBlock(0), ExactNotTaken(0) {}
312 return ExitNotTaken.ExitingBlock || !isa<SCEVCouldNotCompute>(Max);
325 const SCEV *getExact(BasicBlock *ExitingBlock, ScalarEvolution *SE) const;
433 ExitLimit ComputeExitLimit(const Loop *L, BasicBlock *ExitingBlock);
736 // which this loop is guaranteed not to exit via ExitingBlock. Otherwise
738 const SCEV *getExitCount(Loop *L, BasicBlock *ExitingBlock);
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]

Completed in 265 milliseconds