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 290 AssertingVH<BasicBlock> ExitingBlock;
294 ExitNotTakenInfo() : ExitingBlock(nullptr), ExactNotTaken(nullptr) {}
335 return ExitNotTaken.ExitingBlock || !isa<SCEVCouldNotCompute>(Max);
348 const SCEV *getExact(BasicBlock *ExitingBlock, ScalarEvolution *SE) const;
452 ExitLimit ComputeExitLimit(const Loop *L, BasicBlock *ExitingBlock);
755 /// ExitingBlock. More precisely, it is the number of times that control ma
    [all...]
  /external/llvm/lib/Transforms/Utils/
LoopSimplify.cpp 640 BasicBlock *ExitingBlock = ExitingBlocks[i];
641 if (!ExitingBlock->getSinglePredecessor()) continue;
642 BranchInst *BI = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
645 if (!CI || CI->getParent() != ExitingBlock) continue;
651 for (BasicBlock::iterator I = ExitingBlock->begin(); &*I != BI; ) {
682 << ExitingBlock->getName() << "\n");
691 assert(pred_begin(ExitingBlock) == pred_end(ExitingBlock));
693 LI->removeBlock(ExitingBlock);
695 DomTreeNode *Node = DT->getNode(ExitingBlock);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]

Completed in 81 milliseconds