HomeSort by: relevance | last modified time | path
    Searched defs:SCEVCouldNotCompute (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ScalarEvolution.cpp 402 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
437 SCEVCouldNotCompute::SCEVCouldNotCompute() :
440 bool SCEVCouldNotCompute::classof(const SCEV *S) {
833 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
1034 if (isa<SCEVCouldNotCompute>(Coeff))
1170 if (isa<SCEVCouldNotCompute>(IntOp))
1406 !isa<SCEVCouldNotCompute>(BECount) && SE->isKnownPositive(BECount))
1634 // Check whether the backedge-taken count is SCEVCouldNotCompute.
1643 if (!isa<SCEVCouldNotCompute>(MaxBECount))
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
ScalarEvolution.h 191 struct SCEVCouldNotCompute : public SCEV {
192 SCEVCouldNotCompute();
761 /// would be taken; if not exactly computable, return SCEVCouldNotCompute.
770 /// otherwise return a SCEVCouldNotCompute object. The backedge-taken count is
791 /// SCEVCouldNotCompute object.
799 /// SCEVCouldNotCompute object.
1234 std::unique_ptr<SCEVCouldNotCompute> CouldNotCompute;
1323 /// one from a SCEVCouldNotCompute. No other types of SCEVs are allowed
1337 /// whether it's all SCEVCouldNotCompute values.
1339 return !isa<SCEVCouldNotCompute>(ExactNotTaken) |
    [all...]

Completed in 37 milliseconds