Home
last modified time | relevance | path

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

/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/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() function
328 LinearExpression(const CastedValue &Val) : Val(Val), IsNSW(true) { in LinearExpression() argument
334 LinearExpression mul(const APInt &Other, bool MulIsNSW) const { in mul()