Searched defs:LinearExpression (Results 1 – 1 of 1) sorted by relevance
316 struct LinearExpression { struct317 CastedValue Val;318 APInt Scale;319 APInt Offset;322 bool IsNSW;324 LinearExpression(const CastedValue &Val, const APInt &Scale, in LinearExpression() function328 LinearExpression(const CastedValue &Val) : Val(Val), IsNSW(true) { in LinearExpression() argument334 LinearExpression mul(const APInt &Other, bool MulIsNSW) const { in mul()