HomeSort by relevance Sort by last modified time
    Searched full:scevcouldnotcompute (Results 1 - 9 of 9) sorted by null

  /external/llvm/test/Analysis/ScalarEvolution/
2011-03-09-ExactNoMaxBECount.ll 2 ; PR9424: Attempt to use a SCEVCouldNotCompute object!
  /external/llvm/include/llvm/Analysis/
ScalarEvolution.h 156 /// SCEVCouldNotCompute - An object of this class is returned by queries that
161 struct SCEVCouldNotCompute : public SCEV {
162 SCEVCouldNotCompute();
165 static inline bool classof(const SCEVCouldNotCompute *S) { return true; }
242 SCEVCouldNotCompute CouldNotCompute;
266 /// information, or whether it's all SCEVCouldNotCompute values.
268 return !isa<SCEVCouldNotCompute>(Exact) ||
269 !isa<SCEVCouldNotCompute>(Max);
306 /// count of the loop that is known, or a SCEVCouldNotCompute.
318 /// computed information, or whether it's all SCEVCouldNotCompute
    [all...]
ScalarEvolutionExpressions.h 348 /// iteration count can't be computed, an instance of SCEVCouldNotCompute is
486 return ((SC*)this)->visitCouldNotCompute((const SCEVCouldNotCompute*)S);
492 RetVal visitCouldNotCompute(const SCEVCouldNotCompute *S) {
493 llvm_unreachable("Invalid use of SCEVCouldNotCompute!");
  /external/llvm/lib/Transforms/Utils/
LoopUnrollRuntime.cpp 247 if (isa<SCEVCouldNotCompute>(BECount) || !BECount->getType()->isIntegerTy())
253 if (isa<SCEVCouldNotCompute>(TripCountSC))
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 261 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
299 SCEVCouldNotCompute::SCEVCouldNotCompute() :
302 bool SCEVCouldNotCompute::classof(const SCEV *S) {
799 if (isa<SCEVCouldNotCompute>(Coeff))
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopDeletion.cpp 168 if (isa<SCEVCouldNotCompute>(S))
LoopIdiomRecognize.cpp 186 if (isa<SCEVCouldNotCompute>(BECount)) return false;
IndVarSimplify.cpp     [all...]
LoopStrengthReduce.cpp     [all...]

Completed in 251 milliseconds