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::commonBits(L, R);
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   // No matter the shift amount, the trailing zeros will stay zero.
164   unsigned MinTrailingZeros = LHS.countMinTrailingZeros();
165 
166   // Minimum shift amount low bits are known zero.
167   if (RHS.getMinValue().ult(BitWidth)) {
168     MinTrailingZeros += RHS.getMinValue().getZExtValue();
169     MinTrailingZeros = std::min(MinTrailingZeros, BitWidth);
170   }
171 
172   Known.Zero.setLowBits(MinTrailingZeros);
173   return Known;
174 }
175 
176 KnownBits KnownBits::lshr(const KnownBits &LHS, const KnownBits &RHS) {
177   unsigned BitWidth = LHS.getBitWidth();
178   KnownBits Known(BitWidth);
179 
180   if (RHS.isConstant() && RHS.getConstant().ult(BitWidth)) {
181     unsigned Shift = RHS.getConstant().getZExtValue();
182     Known = LHS;
183     Known.Zero.lshrInPlace(Shift);
184     Known.One.lshrInPlace(Shift);
185     // High bits are known zero.
186     Known.Zero.setHighBits(Shift);
187     return Known;
188   }
189 
190   // No matter the shift amount, the leading zeros will stay zero.
191   unsigned MinLeadingZeros = LHS.countMinLeadingZeros();
192 
193   // Minimum shift amount high bits are known zero.
194   if (RHS.getMinValue().ult(BitWidth)) {
195     MinLeadingZeros += RHS.getMinValue().getZExtValue();
196     MinLeadingZeros = std::min(MinLeadingZeros, BitWidth);
197   }
198 
199   Known.Zero.setHighBits(MinLeadingZeros);
200   return Known;
201 }
202 
203 KnownBits KnownBits::ashr(const KnownBits &LHS, const KnownBits &RHS) {
204   unsigned BitWidth = LHS.getBitWidth();
205   KnownBits Known(BitWidth);
206 
207   if (RHS.isConstant() && RHS.getConstant().ult(BitWidth)) {
208     unsigned Shift = RHS.getConstant().getZExtValue();
209     Known = LHS;
210     Known.Zero.ashrInPlace(Shift);
211     Known.One.ashrInPlace(Shift);
212     return Known;
213   }
214 
215   // No matter the shift amount, the leading sign bits will stay.
216   unsigned MinLeadingZeros = LHS.countMinLeadingZeros();
217   unsigned MinLeadingOnes = LHS.countMinLeadingOnes();
218 
219   // Minimum shift amount high bits are known sign bits.
220   if (RHS.getMinValue().ult(BitWidth)) {
221     if (MinLeadingZeros) {
222       MinLeadingZeros += RHS.getMinValue().getZExtValue();
223       MinLeadingZeros = std::min(MinLeadingZeros, BitWidth);
224     }
225     if (MinLeadingOnes) {
226       MinLeadingOnes += RHS.getMinValue().getZExtValue();
227       MinLeadingOnes = std::min(MinLeadingOnes, BitWidth);
228     }
229   }
230 
231   Known.Zero.setHighBits(MinLeadingZeros);
232   Known.One.setHighBits(MinLeadingOnes);
233   return Known;
234 }
235 
236 KnownBits KnownBits::abs() const {
237   // If the source's MSB is zero then we know the rest of the bits already.
238   if (isNonNegative())
239     return *this;
240 
241   // Assume we know nothing.
242   KnownBits KnownAbs(getBitWidth());
243 
244   // We only know that the absolute values's MSB will be zero iff there is
245   // a set bit that isn't the sign bit (otherwise it could be INT_MIN).
246   APInt Val = One;
247   Val.clearSignBit();
248   if (!Val.isNullValue())
249     KnownAbs.Zero.setSignBit();
250 
251   return KnownAbs;
252 }
253 
254 KnownBits KnownBits::computeForMul(const KnownBits &LHS, const KnownBits &RHS) {
255   unsigned BitWidth = LHS.getBitWidth();
256 
257   assert(!LHS.hasConflict() && !RHS.hasConflict());
258   // Compute a conservative estimate for high known-0 bits.
259   unsigned LeadZ =
260       std::max(LHS.countMinLeadingZeros() + RHS.countMinLeadingZeros(),
261                BitWidth) -
262       BitWidth;
263   LeadZ = std::min(LeadZ, BitWidth);
264 
265   // The result of the bottom bits of an integer multiply can be
266   // inferred by looking at the bottom bits of both operands and
267   // multiplying them together.
268   // We can infer at least the minimum number of known trailing bits
269   // of both operands. Depending on number of trailing zeros, we can
270   // infer more bits, because (a*b) <=> ((a/m) * (b/n)) * (m*n) assuming
271   // a and b are divisible by m and n respectively.
272   // We then calculate how many of those bits are inferrable and set
273   // the output. For example, the i8 mul:
274   //  a = XXXX1100 (12)
275   //  b = XXXX1110 (14)
276   // We know the bottom 3 bits are zero since the first can be divided by
277   // 4 and the second by 2, thus having ((12/4) * (14/2)) * (2*4).
278   // Applying the multiplication to the trimmed arguments gets:
279   //    XX11 (3)
280   //    X111 (7)
281   // -------
282   //    XX11
283   //   XX11
284   //  XX11
285   // XX11
286   // -------
287   // XXXXX01
288   // Which allows us to infer the 2 LSBs. Since we're multiplying the result
289   // by 8, the bottom 3 bits will be 0, so we can infer a total of 5 bits.
290   // The proof for this can be described as:
291   // Pre: (C1 >= 0) && (C1 < (1 << C5)) && (C2 >= 0) && (C2 < (1 << C6)) &&
292   //      (C7 == (1 << (umin(countTrailingZeros(C1), C5) +
293   //                    umin(countTrailingZeros(C2), C6) +
294   //                    umin(C5 - umin(countTrailingZeros(C1), C5),
295   //                         C6 - umin(countTrailingZeros(C2), C6)))) - 1)
296   // %aa = shl i8 %a, C5
297   // %bb = shl i8 %b, C6
298   // %aaa = or i8 %aa, C1
299   // %bbb = or i8 %bb, C2
300   // %mul = mul i8 %aaa, %bbb
301   // %mask = and i8 %mul, C7
302   //   =>
303   // %mask = i8 ((C1*C2)&C7)
304   // Where C5, C6 describe the known bits of %a, %b
305   // C1, C2 describe the known bottom bits of %a, %b.
306   // C7 describes the mask of the known bits of the result.
307   const APInt &Bottom0 = LHS.One;
308   const APInt &Bottom1 = RHS.One;
309 
310   // How many times we'd be able to divide each argument by 2 (shr by 1).
311   // This gives us the number of trailing zeros on the multiplication result.
312   unsigned TrailBitsKnown0 = (LHS.Zero | LHS.One).countTrailingOnes();
313   unsigned TrailBitsKnown1 = (RHS.Zero | RHS.One).countTrailingOnes();
314   unsigned TrailZero0 = LHS.countMinTrailingZeros();
315   unsigned TrailZero1 = RHS.countMinTrailingZeros();
316   unsigned TrailZ = TrailZero0 + TrailZero1;
317 
318   // Figure out the fewest known-bits operand.
319   unsigned SmallestOperand =
320       std::min(TrailBitsKnown0 - TrailZero0, TrailBitsKnown1 - TrailZero1);
321   unsigned ResultBitsKnown = std::min(SmallestOperand + TrailZ, BitWidth);
322 
323   APInt BottomKnown =
324       Bottom0.getLoBits(TrailBitsKnown0) * Bottom1.getLoBits(TrailBitsKnown1);
325 
326   KnownBits Res(BitWidth);
327   Res.Zero.setHighBits(LeadZ);
328   Res.Zero |= (~BottomKnown).getLoBits(ResultBitsKnown);
329   Res.One = BottomKnown.getLoBits(ResultBitsKnown);
330   return Res;
331 }
332 
333 KnownBits KnownBits::udiv(const KnownBits &LHS, const KnownBits &RHS) {
334   unsigned BitWidth = LHS.getBitWidth();
335   assert(!LHS.hasConflict() && !RHS.hasConflict());
336   KnownBits Known(BitWidth);
337 
338   // For the purposes of computing leading zeros we can conservatively
339   // treat a udiv as a logical right shift by the power of 2 known to
340   // be less than the denominator.
341   unsigned LeadZ = LHS.countMinLeadingZeros();
342   unsigned RHSMaxLeadingZeros = RHS.countMaxLeadingZeros();
343 
344   if (RHSMaxLeadingZeros != BitWidth)
345     LeadZ = std::min(BitWidth, LeadZ + BitWidth - RHSMaxLeadingZeros - 1);
346 
347   Known.Zero.setHighBits(LeadZ);
348   return Known;
349 }
350 
351 KnownBits KnownBits::urem(const KnownBits &LHS, const KnownBits &RHS) {
352   unsigned BitWidth = LHS.getBitWidth();
353   assert(!LHS.hasConflict() && !RHS.hasConflict());
354   KnownBits Known(BitWidth);
355 
356   if (RHS.isConstant() && RHS.getConstant().isPowerOf2()) {
357     // The upper bits are all zero, the lower ones are unchanged.
358     APInt LowBits = RHS.getConstant() - 1;
359     Known.Zero = LHS.Zero | ~LowBits;
360     Known.One = LHS.One & LowBits;
361     return Known;
362   }
363 
364   // Since the result is less than or equal to either operand, any leading
365   // zero bits in either operand must also exist in the result.
366   uint32_t Leaders =
367       std::max(LHS.countMinLeadingZeros(), RHS.countMinLeadingZeros());
368   Known.Zero.setHighBits(Leaders);
369   return Known;
370 }
371 
372 KnownBits KnownBits::srem(const KnownBits &LHS, const KnownBits &RHS) {
373   unsigned BitWidth = LHS.getBitWidth();
374   assert(!LHS.hasConflict() && !RHS.hasConflict());
375   KnownBits Known(BitWidth);
376 
377   if (RHS.isConstant() && RHS.getConstant().isPowerOf2()) {
378     // The low bits of the first operand are unchanged by the srem.
379     APInt LowBits = RHS.getConstant() - 1;
380     Known.Zero = LHS.Zero & LowBits;
381     Known.One = LHS.One & LowBits;
382 
383     // If the first operand is non-negative or has all low bits zero, then
384     // the upper bits are all zero.
385     if (LHS.isNonNegative() || LowBits.isSubsetOf(LHS.Zero))
386       Known.Zero |= ~LowBits;
387 
388     // If the first operand is negative and not all low bits are zero, then
389     // the upper bits are all one.
390     if (LHS.isNegative() && LowBits.intersects(LHS.One))
391       Known.One |= ~LowBits;
392     return Known;
393   }
394 
395   // The sign bit is the LHS's sign bit, except when the result of the
396   // remainder is zero. If it's known zero, our sign bit is also zero.
397   if (LHS.isNonNegative())
398     Known.makeNonNegative();
399   return Known;
400 }
401 
402 KnownBits &KnownBits::operator&=(const KnownBits &RHS) {
403   // Result bit is 0 if either operand bit is 0.
404   Zero |= RHS.Zero;
405   // Result bit is 1 if both operand bits are 1.
406   One &= RHS.One;
407   return *this;
408 }
409 
410 KnownBits &KnownBits::operator|=(const KnownBits &RHS) {
411   // Result bit is 0 if both operand bits are 0.
412   Zero &= RHS.Zero;
413   // Result bit is 1 if either operand bit is 1.
414   One |= RHS.One;
415   return *this;
416 }
417 
418 KnownBits &KnownBits::operator^=(const KnownBits &RHS) {
419   // Result bit is 0 if both operand bits are 0 or both are 1.
420   APInt Z = (Zero & RHS.Zero) | (One & RHS.One);
421   // Result bit is 1 if one operand bit is 0 and the other is 1.
422   One = (Zero & RHS.One) | (One & RHS.Zero);
423   Zero = std::move(Z);
424   return *this;
425 }
426