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

  /external/llvm/lib/Transforms/Utils/
LoopUnrollRuntime.cpp 249 const SCEV *BECount = SE->getBackedgeTakenCount(L);
250 if (isa<SCEVCouldNotCompute>(BECount) || !BECount->getType()->isIntegerTy())
255 SE->getAddExpr(BECount, SE->getConstant(BECount->getType(), 1));
  /external/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp 146 bool runOnLoopBlock(BasicBlock *BB, const SCEV *BECount,
149 bool processLoopStore(StoreInst *SI, const SCEV *BECount);
150 bool processLoopMemSet(MemSetInst *MSI, const SCEV *BECount);
156 const SCEV *BECount);
160 const SCEV *BECount);
653 const SCEV *BECount = SE->getBackedgeTakenCount(CurLoop);
654 if (isa<SCEVCouldNotCompute>(BECount)) return false;
658 if (const SCEVConstant *BECst = dyn_cast<SCEVConstant>(BECount))
690 MadeChange |= runOnLoopBlock(*BI, BECount, ExitBlocks);
728 bool LoopIdiomRecognize::runOnLoopBlock(BasicBlock *BB, const SCEV *BECount,
    [all...]

Completed in 59 milliseconds