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

  /external/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp 147 bool runOnLoopBlock(BasicBlock *BB, const SCEV *BECount,
150 bool processLoopStore(StoreInst *SI, const SCEV *BECount);
151 bool processLoopMemSet(MemSetInst *MSI, const SCEV *BECount);
157 const SCEV *BECount);
161 const SCEV *BECount);
657 const SCEV *BECount = SE->getBackedgeTakenCount(CurLoop);
658 if (isa<SCEVCouldNotCompute>(BECount)) return false;
662 if (const SCEVConstant *BECst = dyn_cast<SCEVConstant>(BECount))
694 MadeChange |= runOnLoopBlock(*BI, BECount, ExitBlocks);
729 bool LoopIdiomRecognize::runOnLoopBlock(BasicBlock *BB, const SCEV *BECount,
    [all...]
IndVarSimplify.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
LoopUnrollRuntime.cpp 248 const SCEV *BECount = SE->getBackedgeTakenCount(L);
249 if (isa<SCEVCouldNotCompute>(BECount) || !BECount->getType()->isIntegerTy())
254 SE->getAddExpr(BECount, SE->getConstant(BECount->getType(), 1));
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp     [all...]

Completed in 175 milliseconds