HomeSort by: relevance | last modified time | path
    Searched refs:NewBECount (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 1903 const SCEV *NewBECount = SE->getBackedgeTakenCount(L);
1905 SE->getTypeSizeInBits(NewBECount->getType()))
1906 NewBECount = SE->getTruncateOrNoop(NewBECount,
1910 NewBECount->getType());
1912 NewBECount) && "indvars must preserve SCEV");
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ScalarEvolution.cpp 12702 auto *NewBECount = SE2.getBackedgeTakenCount(L);
12705 NewBECount == SE2.getCouldNotCompute()) {
12714 if (containsUndefs(CurBECount) || containsUndefs(NewBECount)) {
12725 SE.getTypeSizeInBits(NewBECount->getType()))
12726 NewBECount = SE2.getZeroExtendExpr(NewBECount, CurBECount->getType());
12728 SE.getTypeSizeInBits(NewBECount->getType()))
12729 CurBECount = SE2.getZeroExtendExpr(CurBECount, NewBECount->getType());
12731 const SCEV *Delta = SE2.getMinusSCEV(CurBECount, NewBECount);
12737 dbgs() << "New: " << *NewBECount << "\n"
    [all...]

Completed in 53 milliseconds