Home
last modified time | relevance | path

Searched defs:LinearExpression (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp366 struct LinearExpression { struct
367 CastedValue Val;
368 APInt Scale;
369 APInt Offset;
372 bool IsNSW;
374 LinearExpression(const CastedValue &Val, const APInt &Scale, in LinearExpression() argument
378 LinearExpression(const CastedValue &Val) : Val(Val), IsNSW(true) { in LinearExpression() function
384 LinearExpression mul(const APInt &Other, bool MulIsNSW) const { in mul()