HomeSort by relevance Sort by last modified time
    Searched refs:SCEVCouldNotCompute (Results 1 - 9 of 9) 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();
242 SCEVCouldNotCompute CouldNotCompute;
280 /// information, or whether it's all SCEVCouldNotCompute values.
282 return !isa<SCEVCouldNotCompute>(Exact) ||
283 !isa<SCEVCouldNotCompute>(Max);
320 /// count of the loop that is known, or a SCEVCouldNotCompute.
332 /// computed information, or whether it's all SCEVCouldNotCompute
335 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 250 if (isa<SCEVCouldNotCompute>(BECount) || !BECount->getType()->isIntegerTy())
256 if (isa<SCEVCouldNotCompute>(TripCountSC))
  /external/llvm/lib/Transforms/Scalar/
LoopDeletion.cpp 174 if (isa<SCEVCouldNotCompute>(S))
IndVarSimplify.cpp     [all...]
LoopIdiomRecognize.cpp 654 if (isa<SCEVCouldNotCompute>(BECount)) return false;
    [all...]
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 443 if (isa<SCEVCouldNotCompute>(EC))
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 268 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
305 SCEVCouldNotCompute::SCEVCouldNotCompute() :
308 bool SCEVCouldNotCompute::classof(const SCEV *S) {
621 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
809 if (isa<SCEVCouldNotCompute>(Coeff))
    [all...]

Completed in 263 milliseconds