1 //===-- KnownBits.cpp - Stores known zeros/ones ---------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file contains a class for representing known zeros and ones used by
10 // computeKnownBits.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "llvm/Support/KnownBits.h"
15 #include <cassert>
16 
17 using namespace llvm;
18 
19 static KnownBits computeForAddCarry(
20     const KnownBits &LHS, const KnownBits &RHS,
21     bool CarryZero, bool CarryOne) {
22   assert(!(CarryZero && CarryOne) &&
23          "Carry can't be zero and one at the same time");
24 
25   APInt PossibleSumZero = LHS.getMaxValue() + RHS.getMaxValue() + !CarryZero;
26   APInt PossibleSumOne = LHS.getMinValue() + RHS.getMinValue() + CarryOne;
27 
28   // Compute known bits of the carry.
29   APInt CarryKnownZero = ~(PossibleSumZero ^ LHS.Zero ^ RHS.Zero);
30   APInt CarryKnownOne = PossibleSumOne ^ LHS.One ^ RHS.One;
31 
32   // Compute set of known bits (where all three relevant bits are known).
33   APInt LHSKnownUnion = LHS.Zero | LHS.One;
34   APInt RHSKnownUnion = RHS.Zero | RHS.One;
35   APInt CarryKnownUnion = std::move(CarryKnownZero) | CarryKnownOne;
36   APInt Known = std::move(LHSKnownUnion) & RHSKnownUnion & CarryKnownUnion;
37 
38   assert((PossibleSumZero & Known) == (PossibleSumOne & Known) &&
39          "known bits of sum differ");
40 
41   // Compute known bits of the result.
42   KnownBits KnownOut;
43   KnownOut.Zero = ~std::move(PossibleSumZero) & Known;
44   KnownOut.One = std::move(PossibleSumOne) & Known;
45   return KnownOut;
46 }
47 
48 KnownBits KnownBits::computeForAddCarry(
49     const KnownBits &LHS, const KnownBits &RHS, const KnownBits &Carry) {
50   assert(Carry.getBitWidth() == 1 && "Carry must be 1-bit");
51   return ::computeForAddCarry(
52       LHS, RHS, Carry.Zero.getBoolValue(), Carry.One.getBoolValue());
53 }
54 
55 KnownBits KnownBits::computeForAddSub(bool Add, bool NSW,
56                                       const KnownBits &LHS, KnownBits RHS) {
57   KnownBits KnownOut;
58   if (Add) {
59     // Sum = LHS + RHS + 0
60     KnownOut = ::computeForAddCarry(
61         LHS, RHS, /*CarryZero*/true, /*CarryOne*/false);
62   } else {
63     // Sum = LHS + ~RHS + 1
64     std::swap(RHS.Zero, RHS.One);
65     KnownOut = ::computeForAddCarry(
66         LHS, RHS, /*CarryZero*/false, /*CarryOne*/true);
67   }
68 
69   // Are we still trying to solve for the sign bit?
70   if (!KnownOut.isNegative() && !KnownOut.isNonNegative()) {
71     if (NSW) {
72       // Adding two non-negative numbers, or subtracting a negative number from
73       // a non-negative one, can't wrap into negative.
74       if (LHS.isNonNegative() && RHS.isNonNegative())
75         KnownOut.makeNonNegative();
76       // Adding two negative numbers, or subtracting a non-negative number from
77       // a negative one, can't wrap into non-negative.
78       else if (LHS.isNegative() && RHS.isNegative())
79         KnownOut.makeNegative();
80     }
81   }
82 
83   return KnownOut;
84 }
85 
86 KnownBits KnownBits::makeGE(const APInt &Val) const {
87   // Count the number of leading bit positions where our underlying value is
88   // known to be less than or equal to Val.
89   unsigned N = (Zero | Val).countLeadingOnes();
90 
91   // For each of those bit positions, if Val has a 1 in that bit then our
92   // underlying value must also have a 1.
93   APInt MaskedVal(Val);
94   MaskedVal.clearLowBits(getBitWidth() - N);
95   return KnownBits(Zero, One | MaskedVal);
96 }
97 
98 KnownBits KnownBits::umax(const KnownBits &LHS, const KnownBits &RHS) {
99   // If we can prove that LHS >= RHS then use LHS as the result. Likewise for
100   // RHS. Ideally our caller would already have spotted these cases and
101   // optimized away the umax operation, but we handle them here for
102   // completeness.
103   if (LHS.getMinValue().uge(RHS.getMaxValue()))
104     return LHS;
105   if (RHS.getMinValue().uge(LHS.getMaxValue()))
106     return RHS;
107 
108   // If the result of the umax is LHS then it must be greater than or equal to
109   // the minimum possible value of RHS. Likewise for RHS. Any known bits that
110   // are common to these two values are also known in the result.
111   KnownBits L = LHS.makeGE(RHS.getMinValue());
112   KnownBits R = RHS.makeGE(LHS.getMinValue());
113   return KnownBits(L.Zero & R.Zero, L.One & R.One);
114 }
115 
116 KnownBits KnownBits::umin(const KnownBits &LHS, const KnownBits &RHS) {
117   // Flip the range of values: [0, 0xFFFFFFFF] <-> [0xFFFFFFFF, 0]
118   auto Flip = [](const KnownBits &Val) { return KnownBits(Val.One, Val.Zero); };
119   return Flip(umax(Flip(LHS), Flip(RHS)));
120 }
121 
122 KnownBits KnownBits::smax(const KnownBits &LHS, const KnownBits &RHS) {
123   // Flip the range of values: [-0x80000000, 0x7FFFFFFF] <-> [0, 0xFFFFFFFF]
124   auto Flip = [](const KnownBits &Val) {
125     unsigned SignBitPosition = Val.getBitWidth() - 1;
126     APInt Zero = Val.Zero;
127     APInt One = Val.One;
128     Zero.setBitVal(SignBitPosition, Val.One[SignBitPosition]);
129     One.setBitVal(SignBitPosition, Val.Zero[SignBitPosition]);
130     return KnownBits(Zero, One);
131   };
132   return Flip(umax(Flip(LHS), Flip(RHS)));
133 }
134 
135 KnownBits KnownBits::smin(const KnownBits &LHS, const KnownBits &RHS) {
136   // Flip the range of values: [-0x80000000, 0x7FFFFFFF] <-> [0xFFFFFFFF, 0]
137   auto Flip = [](const KnownBits &Val) {
138     unsigned SignBitPosition = Val.getBitWidth() - 1;
139     APInt Zero = Val.One;
140     APInt One = Val.Zero;
141     Zero.setBitVal(SignBitPosition, Val.Zero[SignBitPosition]);
142     One.setBitVal(SignBitPosition, Val.One[SignBitPosition]);
143     return KnownBits(Zero, One);
144   };
145   return Flip(umax(Flip(LHS), Flip(RHS)));
146 }
147 
148 KnownBits KnownBits::shl(const KnownBits &LHS, const KnownBits &RHS) {
149   unsigned BitWidth = LHS.getBitWidth();
150   KnownBits Known(BitWidth);
151 
152   // If the shift amount is a valid constant then transform LHS directly.
153   if (RHS.isConstant() && RHS.getConstant().ult(BitWidth)) {
154     unsigned Shift = RHS.getConstant().getZExtValue();
155     Known = LHS;
156     Known.Zero <<= Shift;
157     Known.One <<= Shift;
158     // Low bits are known zero.
159     Known.Zero.setLowBits(Shift);
160     return Known;
161   }
162 
163   // Minimum shift amount low bits are known zero.
164   if (RHS.getMinValue().ult(BitWidth))
165     Known.Zero.setLowBits(RHS.getMinValue().getZExtValue());
166 
167   // No matter the shift amount, the trailing zeros will stay zero.
168   Known.Zero.setLowBits(LHS.countMinTrailingZeros());
169   return Known;
170 }
171 
172 KnownBits KnownBits::lshr(const KnownBits &LHS, const KnownBits &RHS) {
173   unsigned BitWidth = LHS.getBitWidth();
174   KnownBits Known(BitWidth);
175 
176   if (RHS.isConstant() && RHS.getConstant().ult(BitWidth)) {
177     unsigned Shift = RHS.getConstant().getZExtValue();
178     Known = LHS;
179     Known.Zero.lshrInPlace(Shift);
180     Known.One.lshrInPlace(Shift);
181     // High bits are known zero.
182     Known.Zero.setHighBits(Shift);
183     return Known;
184   }
185 
186   // Minimum shift amount high bits are known zero.
187   if (RHS.getMinValue().ult(BitWidth))
188     Known.Zero.setHighBits(RHS.getMinValue().getZExtValue());
189 
190   // No matter the shift amount, the leading zeros will stay zero.
191   Known.Zero.setHighBits(LHS.countMinLeadingZeros());
192   return Known;
193 }
194 
195 KnownBits KnownBits::ashr(const KnownBits &LHS, const KnownBits &RHS) {
196   unsigned BitWidth = LHS.getBitWidth();
197   KnownBits Known(BitWidth);
198 
199   if (RHS.isConstant() && RHS.getConstant().ult(BitWidth)) {
200     unsigned Shift = RHS.getConstant().getZExtValue();
201     Known = LHS;
202     Known.Zero.ashrInPlace(Shift);
203     Known.One.ashrInPlace(Shift);
204     return Known;
205   }
206 
207   // TODO: Minimum shift amount high bits are known sign bits.
208   // TODO: No matter the shift amount, the leading sign bits will stay.
209   return Known;
210 }
211 
212 KnownBits KnownBits::abs() const {
213   // If the source's MSB is zero then we know the rest of the bits already.
214   if (isNonNegative())
215     return *this;
216 
217   // Assume we know nothing.
218   KnownBits KnownAbs(getBitWidth());
219 
220   // We only know that the absolute values's MSB will be zero iff there is
221   // a set bit that isn't the sign bit (otherwise it could be INT_MIN).
222   APInt Val = One;
223   Val.clearSignBit();
224   if (!Val.isNullValue())
225     KnownAbs.Zero.setSignBit();
226 
227   return KnownAbs;
228 }
229 
230 KnownBits KnownBits::computeForMul(const KnownBits &LHS, const KnownBits &RHS) {
231   unsigned BitWidth = LHS.getBitWidth();
232 
233   assert(!LHS.hasConflict() && !RHS.hasConflict());
234   // Compute a conservative estimate for high known-0 bits.
235   unsigned LeadZ =
236       std::max(LHS.countMinLeadingZeros() + RHS.countMinLeadingZeros(),
237                BitWidth) -
238       BitWidth;
239   LeadZ = std::min(LeadZ, BitWidth);
240 
241   // The result of the bottom bits of an integer multiply can be
242   // inferred by looking at the bottom bits of both operands and
243   // multiplying them together.
244   // We can infer at least the minimum number of known trailing bits
245   // of both operands. Depending on number of trailing zeros, we can
246   // infer more bits, because (a*b) <=> ((a/m) * (b/n)) * (m*n) assuming
247   // a and b are divisible by m and n respectively.
248   // We then calculate how many of those bits are inferrable and set
249   // the output. For example, the i8 mul:
250   //  a = XXXX1100 (12)
251   //  b = XXXX1110 (14)
252   // We know the bottom 3 bits are zero since the first can be divided by
253   // 4 and the second by 2, thus having ((12/4) * (14/2)) * (2*4).
254   // Applying the multiplication to the trimmed arguments gets:
255   //    XX11 (3)
256   //    X111 (7)
257   // -------
258   //    XX11
259   //   XX11
260   //  XX11
261   // XX11
262   // -------
263   // XXXXX01
264   // Which allows us to infer the 2 LSBs. Since we're multiplying the result
265   // by 8, the bottom 3 bits will be 0, so we can infer a total of 5 bits.
266   // The proof for this can be described as:
267   // Pre: (C1 >= 0) && (C1 < (1 << C5)) && (C2 >= 0) && (C2 < (1 << C6)) &&
268   //      (C7 == (1 << (umin(countTrailingZeros(C1), C5) +
269   //                    umin(countTrailingZeros(C2), C6) +
270   //                    umin(C5 - umin(countTrailingZeros(C1), C5),
271   //                         C6 - umin(countTrailingZeros(C2), C6)))) - 1)
272   // %aa = shl i8 %a, C5
273   // %bb = shl i8 %b, C6
274   // %aaa = or i8 %aa, C1
275   // %bbb = or i8 %bb, C2
276   // %mul = mul i8 %aaa, %bbb
277   // %mask = and i8 %mul, C7
278   //   =>
279   // %mask = i8 ((C1*C2)&C7)
280   // Where C5, C6 describe the known bits of %a, %b
281   // C1, C2 describe the known bottom bits of %a, %b.
282   // C7 describes the mask of the known bits of the result.
283   const APInt &Bottom0 = LHS.One;
284   const APInt &Bottom1 = RHS.One;
285 
286   // How many times we'd be able to divide each argument by 2 (shr by 1).
287   // This gives us the number of trailing zeros on the multiplication result.
288   unsigned TrailBitsKnown0 = (LHS.Zero | LHS.One).countTrailingOnes();
289   unsigned TrailBitsKnown1 = (RHS.Zero | RHS.One).countTrailingOnes();
290   unsigned TrailZero0 = LHS.countMinTrailingZeros();
291   unsigned TrailZero1 = RHS.countMinTrailingZeros();
292   unsigned TrailZ = TrailZero0 + TrailZero1;
293 
294   // Figure out the fewest known-bits operand.
295   unsigned SmallestOperand =
296       std::min(TrailBitsKnown0 - TrailZero0, TrailBitsKnown1 - TrailZero1);
297   unsigned ResultBitsKnown = std::min(SmallestOperand + TrailZ, BitWidth);
298 
299   APInt BottomKnown =
300       Bottom0.getLoBits(TrailBitsKnown0) * Bottom1.getLoBits(TrailBitsKnown1);
301 
302   KnownBits Res(BitWidth);
303   Res.Zero.setHighBits(LeadZ);
304   Res.Zero |= (~BottomKnown).getLoBits(ResultBitsKnown);
305   Res.One = BottomKnown.getLoBits(ResultBitsKnown);
306   return Res;
307 }
308 
309 KnownBits KnownBits::udiv(const KnownBits &LHS, const KnownBits &RHS) {
310   unsigned BitWidth = LHS.getBitWidth();
311   assert(!LHS.hasConflict() && !RHS.hasConflict());
312   KnownBits Known(BitWidth);
313 
314   // For the purposes of computing leading zeros we can conservatively
315   // treat a udiv as a logical right shift by the power of 2 known to
316   // be less than the denominator.
317   unsigned LeadZ = LHS.countMinLeadingZeros();
318   unsigned RHSMaxLeadingZeros = RHS.countMaxLeadingZeros();
319 
320   if (RHSMaxLeadingZeros != BitWidth)
321     LeadZ = std::min(BitWidth, LeadZ + BitWidth - RHSMaxLeadingZeros - 1);
322 
323   Known.Zero.setHighBits(LeadZ);
324   return Known;
325 }
326 
327 KnownBits KnownBits::urem(const KnownBits &LHS, const KnownBits &RHS) {
328   unsigned BitWidth = LHS.getBitWidth();
329   assert(!LHS.hasConflict() && !RHS.hasConflict());
330   KnownBits Known(BitWidth);
331 
332   if (RHS.isConstant() && RHS.getConstant().isPowerOf2()) {
333     // The upper bits are all zero, the lower ones are unchanged.
334     APInt LowBits = RHS.getConstant() - 1;
335     Known.Zero = LHS.Zero | ~LowBits;
336     Known.One = LHS.One & LowBits;
337     return Known;
338   }
339 
340   // Since the result is less than or equal to either operand, any leading
341   // zero bits in either operand must also exist in the result.
342   uint32_t Leaders =
343       std::max(LHS.countMinLeadingZeros(), RHS.countMinLeadingZeros());
344   Known.Zero.setHighBits(Leaders);
345   return Known;
346 }
347 
348 KnownBits KnownBits::srem(const KnownBits &LHS, const KnownBits &RHS) {
349   unsigned BitWidth = LHS.getBitWidth();
350   assert(!LHS.hasConflict() && !RHS.hasConflict());
351   KnownBits Known(BitWidth);
352 
353   if (RHS.isConstant() && RHS.getConstant().isPowerOf2()) {
354     // The low bits of the first operand are unchanged by the srem.
355     APInt LowBits = RHS.getConstant() - 1;
356     Known.Zero = LHS.Zero & LowBits;
357     Known.One = LHS.One & LowBits;
358 
359     // If the first operand is non-negative or has all low bits zero, then
360     // the upper bits are all zero.
361     if (LHS.isNonNegative() || LowBits.isSubsetOf(LHS.Zero))
362       Known.Zero |= ~LowBits;
363 
364     // If the first operand is negative and not all low bits are zero, then
365     // the upper bits are all one.
366     if (LHS.isNegative() && LowBits.intersects(LHS.One))
367       Known.One |= ~LowBits;
368     return Known;
369   }
370 
371   // The sign bit is the LHS's sign bit, except when the result of the
372   // remainder is zero. If it's known zero, our sign bit is also zero.
373   if (LHS.isNonNegative())
374     Known.makeNonNegative();
375   return Known;
376 }
377 
378 KnownBits &KnownBits::operator&=(const KnownBits &RHS) {
379   // Result bit is 0 if either operand bit is 0.
380   Zero |= RHS.Zero;
381   // Result bit is 1 if both operand bits are 1.
382   One &= RHS.One;
383   return *this;
384 }
385 
386 KnownBits &KnownBits::operator|=(const KnownBits &RHS) {
387   // Result bit is 0 if both operand bits are 0.
388   Zero &= RHS.Zero;
389   // Result bit is 1 if either operand bit is 1.
390   One |= RHS.One;
391   return *this;
392 }
393 
394 KnownBits &KnownBits::operator^=(const KnownBits &RHS) {
395   // Result bit is 0 if both operand bits are 0 or both are 1.
396   APInt Z = (Zero & RHS.Zero) | (One & RHS.One);
397   // Result bit is 1 if one operand bit is 0 and the other is 1.
398   One = (Zero & RHS.One) | (One & RHS.Zero);
399   Zero = std::move(Z);
400   return *this;
401 }
402