Home
last modified time | relevance | path

Searched refs:PossibleSumOne (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DKnownBits.cpp30 APInt PossibleSumOne = LHS.One + RHS.One + CarryIn; in computeForAddSub() local
34 APInt CarryKnownOne = PossibleSumOne ^ LHS.One ^ RHS.One; in computeForAddSub()
42 assert((PossibleSumZero & Known) == (PossibleSumOne & Known) && in computeForAddSub()
48 KnownOut.One = std::move(PossibleSumOne) & Known; in computeForAddSub()
/external/llvm/lib/Analysis/
DValueTracking.cpp280 APInt PossibleSumOne = LHSKnownOne + KnownOne2 + CarryIn; in computeKnownBitsAddSub() local
284 APInt CarryKnownOne = PossibleSumOne ^ LHSKnownOne ^ KnownOne2; in computeKnownBitsAddSub()
292 assert((PossibleSumZero & Known) == (PossibleSumOne & Known) && in computeKnownBitsAddSub()
296 KnownZero = ~PossibleSumOne & Known; in computeKnownBitsAddSub()
297 KnownOne = PossibleSumOne & Known; in computeKnownBitsAddSub()