Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DKnownBits.cpp44 KnownBits KnownOut; in computeForAddCarry() local
45 KnownOut.Zero = ~std::move(PossibleSumZero) & Known; in computeForAddCarry()
46 KnownOut.One = std::move(PossibleSumOne) & Known; in computeForAddCarry()
47 return KnownOut; in computeForAddCarry()
59 KnownBits KnownOut; in computeForAddSub() local
62 KnownOut = ::computeForAddCarry( in computeForAddSub()
67 KnownOut = ::computeForAddCarry( in computeForAddSub()
72 if (!KnownOut.isNegative() && !KnownOut.isNonNegative()) { in computeForAddSub()
77 KnownOut.makeNonNegative(); in computeForAddSub()
81 KnownOut.makeNegative(); in computeForAddSub()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DValueTracking.cpp401 KnownBits &KnownOut, KnownBits &Known2, in computeKnownBitsAddSub() argument
403 computeKnownBits(Op1, DemandedElts, KnownOut, Depth + 1, Q); in computeKnownBitsAddSub()
407 if (KnownOut.isUnknown() && !NSW) in computeKnownBitsAddSub()
411 KnownOut = KnownBits::computeForAddSub(Add, NSW, Known2, KnownOut); in computeKnownBitsAddSub()