Searched defs:LinearExpression (Results 1 – 1 of 1) sorted by relevance
319 struct LinearExpression { struct320 CastedValue Val;321 APInt Scale;322 APInt Offset;325 bool IsNSW;327 LinearExpression(const CastedValue &Val, const APInt &Scale, in LinearExpression() function331 LinearExpression(const CastedValue &Val) : Val(Val), IsNSW(true) { in LinearExpression() function337 LinearExpression mul(const APInt &Other, bool MulIsNSW) const { in mul()