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

  /external/llvm/include/llvm/Analysis/
ScalarEvolution.h 160 /// SCEVCouldNotCompute - An object of this class is returned by queries that
165 struct SCEVCouldNotCompute : public SCEV {
166 SCEVCouldNotCompute();
245 SCEVCouldNotCompute CouldNotCompute;
276 /// information, or whether it's all SCEVCouldNotCompute values.
278 return !isa<SCEVCouldNotCompute>(Exact) ||
279 !isa<SCEVCouldNotCompute>(Max);
316 /// count of the loop that is known, or a SCEVCouldNotCompute.
328 /// computed information, or whether it's all SCEVCouldNotCompute
331 return ExitNotTaken.ExitingBlock || !isa<SCEVCouldNotCompute>(Max)
    [all...]
ScalarEvolutionExpressions.h 344 /// iteration count can't be computed, an instance of SCEVCouldNotCompute is
555 return ((SC*)this)->visitCouldNotCompute((const SCEVCouldNotCompute*)S);
561 RetVal visitCouldNotCompute(const SCEVCouldNotCompute *S) {
562 llvm_unreachable("Invalid use of SCEVCouldNotCompute!");
619 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
721 const SCEV *visitCouldNotCompute(const SCEVCouldNotCompute *Expr) {
817 const SCEV *visitCouldNotCompute(const SCEVCouldNotCompute *Expr) {
  /external/llvm/lib/Transforms/Utils/
LoopUnrollRuntime.cpp 304 if (isa<SCEVCouldNotCompute>(BECountSC) ||
313 if (isa<SCEVCouldNotCompute>(TripCountSC))
  /external/llvm/lib/Transforms/Scalar/
LoopDeletion.cpp 174 if (isa<SCEVCouldNotCompute>(S))
InductiveRangeCheckElimination.cpp 265 if (isa<SCEVCouldNotCompute>(S))
356 if (isa<SCEVCouldNotCompute>(Index))
373 if (isa<SCEVCouldNotCompute>(Index))
685 if (isa<SCEVCouldNotCompute>(LatchCount)) {
    [all...]
IndVarSimplify.cpp     [all...]
LoopIdiomRecognize.cpp 614 if (isa<SCEVCouldNotCompute>(BECount)) return false;
    [all...]
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 272 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
309 SCEVCouldNotCompute::SCEVCouldNotCompute() :
312 bool SCEVCouldNotCompute::classof(const SCEV *S) {
625 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
763 void visitCouldNotCompute(const SCEVCouldNotCompute *Numerator) {}
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 462 if (isa<SCEVCouldNotCompute>(EC))

Completed in 833 milliseconds