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

  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
ScalarEvolution.h 151 /// SCEVCouldNotCompute - An object of this class is returned by queries that
156 struct SCEVCouldNotCompute : public SCEV {
157 SCEVCouldNotCompute();
160 static inline bool classof(const SCEVCouldNotCompute *S) { return true; }
233 SCEVCouldNotCompute CouldNotCompute;
257 /// information, or whether it's all SCEVCouldNotCompute values.
259 return !isa<SCEVCouldNotCompute>(Exact) ||
260 !isa<SCEVCouldNotCompute>(Max);
297 /// count of the loop that is known, or a SCEVCouldNotCompute.
309 /// 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/include/llvm/Analysis/
ScalarEvolution.h 165 struct SCEVCouldNotCompute : public SCEV {
166 SCEVCouldNotCompute();
487 std::unique_ptr<SCEVCouldNotCompute> CouldNotCompute;
540 assert((isa<SCEVCouldNotCompute>(Exact) ||
541 !isa<SCEVCouldNotCompute>(Max)) &&
546 /// whether it's all SCEVCouldNotCompute values.
548 return !isa<SCEVCouldNotCompute>(Exact) ||
549 !isa<SCEVCouldNotCompute>(Max);
553 bool hasFullInfo() const { return !isa<SCEVCouldNotCompute>(Exact); }
703 /// loop that is known, or a SCEVCouldNotCompute. This expression is onl
    [all...]
ScalarEvolutionExpressions.h 337 /// instance of SCEVCouldNotCompute is returned.
465 return ((SC*)this)->visitCouldNotCompute((const SCEVCouldNotCompute*)S);
471 RetVal visitCouldNotCompute(const SCEVCouldNotCompute *S) {
472 llvm_unreachable("Invalid use of SCEVCouldNotCompute!");
525 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
612 const SCEV *visitCouldNotCompute(const SCEVCouldNotCompute *Expr) {
  /external/llvm/lib/Transforms/Scalar/
LoopDeletion.cpp 140 if (isa<SCEVCouldNotCompute>(S))
InductiveRangeCheckElimination.cpp 260 if (isa<SCEVCouldNotCompute>(S))
663 if (isa<SCEVCouldNotCompute>(LatchCount)) {
    [all...]
IndVarSimplify.cpp     [all...]
LoopIdiomRecognize.cpp 245 assert(!isa<SCEVCouldNotCompute>(BECount) &&
    [all...]
LoopStrengthReduce.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
LoopDeletion.cpp 168 if (isa<SCEVCouldNotCompute>(S))
IndVarSimplify.cpp     [all...]
LoopIdiomRecognize.cpp 186 if (isa<SCEVCouldNotCompute>(BECount)) return false;
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
LoopUnrollRuntime.cpp 456 if (isa<SCEVCouldNotCompute>(BECountSC) ||
465 if (isa<SCEVCouldNotCompute>(TripCountSC))
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 267 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
302 SCEVCouldNotCompute::SCEVCouldNotCompute() :
305 bool SCEVCouldNotCompute::classof(const SCEV *S) {
618 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
761 void visitCouldNotCompute(const SCEVCouldNotCompute *Numerator) {}
    [all...]
DependenceAnalysis.cpp 861 if (!isa<SCEVCouldNotCompute>(UB)) {
886 if (!isa<SCEVCouldNotCompute>(UB)) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ScalarEvolution.cpp 251 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
277 SCEVCouldNotCompute::SCEVCouldNotCompute() :
280 bool SCEVCouldNotCompute::classof(const SCEV *S) {
780 if (isa<SCEVCouldNotCompute>(Coeff))
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 510 if (isa<SCEVCouldNotCompute>(EC))

Completed in 315 milliseconds