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 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...]
  /external/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...]

Completed in 37 milliseconds