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();
242 SCEVCouldNotCompute CouldNotCompute;
280 /// information, or whether it's all SCEVCouldNotCompute values.
282 return !isa<SCEVCouldNotCompute>(Exact) ||
283 !isa<SCEVCouldNotCompute>(Max);
320 /// count of the loop that is known, or a SCEVCouldNotCompute.
332 /// computed information, or whether it's all SCEVCouldNotCompute
335 return ExitNotTaken.ExitingBlock || !isa<SCEVCouldNotCompute>(Max)
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 268 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
305 SCEVCouldNotCompute::SCEVCouldNotCompute() :
308 bool SCEVCouldNotCompute::classof(const SCEV *S) {
621 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
809 if (isa<SCEVCouldNotCompute>(Coeff))
    [all...]

Completed in 409 milliseconds