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

  /external/llvm/include/llvm/Analysis/
ScalarEvolution.h 278 AssertingVH<BasicBlock> ExitingBlock;
282 ExitNotTakenInfo() : ExitingBlock(0), ExactNotTaken(0) {}
323 return ExitNotTaken.ExitingBlock || !isa<SCEVCouldNotCompute>(Max);
336 const SCEV *getExact(BasicBlock *ExitingBlock, ScalarEvolution *SE) const;
448 ExitLimit ComputeExitLimit(const Loop *L, BasicBlock *ExitingBlock);
747 /// ExitingBlock. More precisely, it is the number of times that control may
748 /// reach ExitingBlock before taking the branch. For loops with multiple
751 unsigned getSmallConstantTripCount(Loop *L, BasicBlock *ExitingBlock);
    [all...]
  /external/llvm/lib/Transforms/Utils/
LoopSimplify.cpp 302 BasicBlock *ExitingBlock = ExitingBlocks[i];
303 if (!ExitingBlock->getSinglePredecessor()) continue;
304 BranchInst *BI = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
307 if (!CI || CI->getParent() != ExitingBlock) continue;
312 for (BasicBlock::iterator I = ExitingBlock->begin(); &*I != BI; ) {
335 << ExitingBlock->getName() << "\n");
345 assert(pred_begin(ExitingBlock) == pred_end(ExitingBlock));
347 LI->removeBlock(ExitingBlock);
349 DomTreeNode *Node = DT->getNode(ExitingBlock);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]

Completed in 42 milliseconds