reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/polly/lib/Support/SCEVValidator.cpp
   48     Type = Source.Type;
   48     Type = Source.Type;
   63   SCEVType::TYPE getType() { return Type; }
   66   bool isConstant() { return Type == SCEVType::INT || Type == SCEVType::PARAM; }
   66   bool isConstant() { return Type == SCEVType::INT || Type == SCEVType::PARAM; }
   69   bool isValid() { return Type != SCEVType::INVALID; }
   72   bool isIV() { return Type == SCEVType::IV; }
   75   bool isINT() { return Type == SCEVType::INT; }
   78   bool isPARAM() { return Type == SCEVType::PARAM; }
   93     Type = std::max(Type, ToMerge.Type);
   93     Type = std::max(Type, ToMerge.Type);
   93     Type = std::max(Type, ToMerge.Type);
   98     switch (Type) {