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 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...]
IndVarSimplify.cpp     [all...]
  /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/Analysis/
ScalarEvolution.cpp     [all...]

Completed in 655 milliseconds