Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp316 struct LinearExpression { struct
317 CastedValue Val;
318 APInt Scale;
319 APInt Offset;
322 bool IsNSW;
324 LinearExpression(const CastedValue &Val, const APInt &Scale, in LinearExpression() argument
328 LinearExpression(const CastedValue &Val) : Val(Val), IsNSW(true) { in LinearExpression() argument
334 LinearExpression mul(const APInt &Other, bool MulIsNSW) const { in mul()