Searched defs:LinearExpression (Results 1 – 1 of 1) sorted by relevance
366 struct LinearExpression { struct367 CastedValue Val;368 APInt Scale;369 APInt Offset;372 bool IsNSW;374 LinearExpression(const CastedValue &Val, const APInt &Scale, in LinearExpression() argument378 LinearExpression(const CastedValue &Val) : Val(Val), IsNSW(true) { in LinearExpression() function384 LinearExpression mul(const APInt &Other, bool MulIsNSW) const { in mul()