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

  /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();
241 SCEVCouldNotCompute CouldNotCompute;
268 /// information, or whether it's all SCEVCouldNotCompute values.
270 return !isa<SCEVCouldNotCompute>(Exact) ||
271 !isa<SCEVCouldNotCompute>(Max);
308 /// count of the loop that is known, or a SCEVCouldNotCompute.
320 /// computed information, or whether it's all SCEVCouldNotCompute
323 return ExitNotTaken.ExitingBlock || !isa<SCEVCouldNotCompute>(Max)
    [all...]
ScalarEvolutionExpressions.h 339 /// iteration count can't be computed, an instance of SCEVCouldNotCompute is
473 return ((SC*)this)->visitCouldNotCompute((const SCEVCouldNotCompute*)S);
479 RetVal visitCouldNotCompute(const SCEVCouldNotCompute *S) {
480 llvm_unreachable("Invalid use of SCEVCouldNotCompute!");
537 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
624 virtual const SCEV *visitCouldNotCompute(const SCEVCouldNotCompute *Expr) {
  /external/llvm/lib/Transforms/Utils/
LoopUnrollRuntime.cpp 249 if (isa<SCEVCouldNotCompute>(BECount) || !BECount->getType()->isIntegerTy())
255 if (isa<SCEVCouldNotCompute>(TripCountSC))
  /external/llvm/lib/Transforms/Scalar/
LoopDeletion.cpp 168 if (isa<SCEVCouldNotCompute>(S))
IndVarSimplify.cpp     [all...]
LoopIdiomRecognize.cpp 658 if (isa<SCEVCouldNotCompute>(BECount)) return false;
    [all...]
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 269 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
307 SCEVCouldNotCompute::SCEVCouldNotCompute() :
310 bool SCEVCouldNotCompute::classof(const SCEV *S) {
807 if (isa<SCEVCouldNotCompute>(Coeff))
    [all...]

Completed in 73 milliseconds