Searched defs:LinearExpression (Results 1 – 1 of 1) sorted by relevance
335 struct LinearExpression { struct336 CastedValue Val;337 APInt Scale;338 APInt Offset;341 bool IsNSW;343 LinearExpression(const CastedValue &Val, const APInt &Scale, in LinearExpression() argument347 LinearExpression(const CastedValue &Val) : Val(Val), IsNSW(true) { in LinearExpression() argument353 LinearExpression mul(const APInt &Other, bool MulIsNSW) const { in mul()