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;
249 /// the loop if it is known, or a SCEVCouldNotCompute otherwise.
253 /// count of the loop that is known, or a SCEVCouldNotCompute.
263 /// computed information, or whether it's all SCEVCouldNotCompute
266 return !isa<SCEVCouldNotCompute>(Exact) ||
267 !isa<SCEVCouldNotCompute>(Max)
    [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 35 milliseconds