Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp335 struct LinearExpression { struct
336 CastedValue Val;
337 APInt Scale;
338 APInt Offset;
341 bool IsNSW;
343 LinearExpression(const CastedValue &Val, const APInt &Scale, in LinearExpression() argument
347 LinearExpression(const CastedValue &Val) : Val(Val), IsNSW(true) { in LinearExpression() argument
353 LinearExpression mul(const APInt &Other, bool MulIsNSW) const { in mul()