HomeSort by relevance Sort by last modified time
    Searched defs:SCEVCouldNotCompute (Results 1 - 2 of 2) 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();
165 static inline bool classof(const SCEVCouldNotCompute *S) { return true; }
242 SCEVCouldNotCompute CouldNotCompute;
269 /// information, or whether it's all SCEVCouldNotCompute values.
271 return !isa<SCEVCouldNotCompute>(Exact) ||
272 !isa<SCEVCouldNotCompute>(Max);
309 /// count of the loop that is known, or a SCEVCouldNotCompute.
321 /// computed information, or whether it's all SCEVCouldNotCompute
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 263 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
301 SCEVCouldNotCompute::SCEVCouldNotCompute() :
304 bool SCEVCouldNotCompute::classof(const SCEV *S) {
801 if (isa<SCEVCouldNotCompute>(Coeff))
    [all...]

Completed in 39 milliseconds