blob: cb2d624a9099adaaa09f6465d90f8ebe42a4c8e6 [file] [log] [blame]
Chris Lattner173234a2008-06-02 01:18:21 +00001//===- ValueTracking.cpp - Walk computations to compute properties --------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains routines that help analyze properties that chains of
11// computations have.
12//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/Analysis/ValueTracking.h"
16#include "llvm/Constants.h"
17#include "llvm/Instructions.h"
Evan Cheng0ff39b32008-06-30 07:31:25 +000018#include "llvm/GlobalVariable.h"
Chris Lattner173234a2008-06-02 01:18:21 +000019#include "llvm/IntrinsicInst.h"
Owen Anderson76f600b2009-07-06 22:37:39 +000020#include "llvm/LLVMContext.h"
Dan Gohmanca178902009-07-17 20:47:02 +000021#include "llvm/Operator.h"
Bill Wendling0582ae92009-03-13 04:39:26 +000022#include "llvm/Target/TargetData.h"
Chris Lattner173234a2008-06-02 01:18:21 +000023#include "llvm/Support/GetElementPtrTypeIterator.h"
24#include "llvm/Support/MathExtras.h"
Chris Lattner32a9e7a2008-06-04 04:46:14 +000025#include <cstring>
Chris Lattner173234a2008-06-02 01:18:21 +000026using namespace llvm;
27
Chris Lattner173234a2008-06-02 01:18:21 +000028/// ComputeMaskedBits - Determine which of the bits specified in Mask are
29/// known to be either zero or one and return them in the KnownZero/KnownOne
30/// bit sets. This code only analyzes bits in Mask, in order to short-circuit
31/// processing.
32/// NOTE: we cannot consider 'undef' to be "IsZero" here. The problem is that
33/// we cannot optimize based on the assumption that it is zero without changing
34/// it to be an explicit zero. If we don't change it to zero, other code could
35/// optimized based on the contradictory assumption that it is non-zero.
36/// Because instcombine aggressively folds operations with undef args anyway,
37/// this won't lose us code quality.
38void llvm::ComputeMaskedBits(Value *V, const APInt &Mask,
39 APInt &KnownZero, APInt &KnownOne,
Dan Gohman846a2f22009-08-27 17:51:25 +000040 const TargetData *TD, unsigned Depth) {
Dan Gohman9004c8a2009-05-21 02:28:33 +000041 const unsigned MaxDepth = 6;
Chris Lattner173234a2008-06-02 01:18:21 +000042 assert(V && "No Value?");
Dan Gohman9004c8a2009-05-21 02:28:33 +000043 assert(Depth <= MaxDepth && "Limit Search Depth");
Chris Lattner79abedb2009-01-20 18:22:57 +000044 unsigned BitWidth = Mask.getBitWidth();
Dan Gohman6de29f82009-06-15 22:12:54 +000045 assert((V->getType()->isIntOrIntVector() || isa<PointerType>(V->getType())) &&
Chris Lattner173234a2008-06-02 01:18:21 +000046 "Not integer or pointer type!");
Dan Gohman6de29f82009-06-15 22:12:54 +000047 assert((!TD ||
48 TD->getTypeSizeInBits(V->getType()->getScalarType()) == BitWidth) &&
49 (!V->getType()->isIntOrIntVector() ||
50 V->getType()->getScalarSizeInBits() == BitWidth) &&
Chris Lattner173234a2008-06-02 01:18:21 +000051 KnownZero.getBitWidth() == BitWidth &&
52 KnownOne.getBitWidth() == BitWidth &&
53 "V, Mask, KnownOne and KnownZero should have same BitWidth");
54
55 if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
56 // We know all of the bits for a constant!
57 KnownOne = CI->getValue() & Mask;
58 KnownZero = ~KnownOne & Mask;
59 return;
60 }
Dan Gohman6de29f82009-06-15 22:12:54 +000061 // Null and aggregate-zero are all-zeros.
62 if (isa<ConstantPointerNull>(V) ||
63 isa<ConstantAggregateZero>(V)) {
Chris Lattner173234a2008-06-02 01:18:21 +000064 KnownOne.clear();
65 KnownZero = Mask;
66 return;
67 }
Dan Gohman6de29f82009-06-15 22:12:54 +000068 // Handle a constant vector by taking the intersection of the known bits of
69 // each element.
70 if (ConstantVector *CV = dyn_cast<ConstantVector>(V)) {
71 KnownZero.set(); KnownOne.set();
72 for (unsigned i = 0, e = CV->getNumOperands(); i != e; ++i) {
73 APInt KnownZero2(BitWidth, 0), KnownOne2(BitWidth, 0);
74 ComputeMaskedBits(CV->getOperand(i), Mask, KnownZero2, KnownOne2,
75 TD, Depth);
76 KnownZero &= KnownZero2;
77 KnownOne &= KnownOne2;
78 }
79 return;
80 }
Chris Lattner173234a2008-06-02 01:18:21 +000081 // The address of an aligned GlobalValue has trailing zeros.
82 if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
83 unsigned Align = GV->getAlignment();
Dan Gohman00407252009-08-11 15:50:03 +000084 if (Align == 0 && TD && GV->getType()->getElementType()->isSized()) {
85 const Type *ObjectType = GV->getType()->getElementType();
86 // If the object is defined in the current Module, we'll be giving
87 // it the preferred alignment. Otherwise, we have to assume that it
88 // may only have the minimum ABI alignment.
89 if (!GV->isDeclaration() && !GV->mayBeOverridden())
90 Align = TD->getPrefTypeAlignment(ObjectType);
91 else
92 Align = TD->getABITypeAlignment(ObjectType);
93 }
Chris Lattner173234a2008-06-02 01:18:21 +000094 if (Align > 0)
95 KnownZero = Mask & APInt::getLowBitsSet(BitWidth,
96 CountTrailingZeros_32(Align));
97 else
98 KnownZero.clear();
99 KnownOne.clear();
100 return;
101 }
102
103 KnownZero.clear(); KnownOne.clear(); // Start out not knowing anything.
104
Dan Gohman9004c8a2009-05-21 02:28:33 +0000105 if (Depth == MaxDepth || Mask == 0)
Chris Lattner173234a2008-06-02 01:18:21 +0000106 return; // Limit search depth.
107
Dan Gohmanca178902009-07-17 20:47:02 +0000108 Operator *I = dyn_cast<Operator>(V);
Chris Lattner173234a2008-06-02 01:18:21 +0000109 if (!I) return;
110
111 APInt KnownZero2(KnownZero), KnownOne2(KnownOne);
Dan Gohmanca178902009-07-17 20:47:02 +0000112 switch (I->getOpcode()) {
Chris Lattner173234a2008-06-02 01:18:21 +0000113 default: break;
114 case Instruction::And: {
115 // If either the LHS or the RHS are Zero, the result is zero.
116 ComputeMaskedBits(I->getOperand(1), Mask, KnownZero, KnownOne, TD, Depth+1);
117 APInt Mask2(Mask & ~KnownZero);
118 ComputeMaskedBits(I->getOperand(0), Mask2, KnownZero2, KnownOne2, TD,
119 Depth+1);
120 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
121 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
122
123 // Output known-1 bits are only known if set in both the LHS & RHS.
124 KnownOne &= KnownOne2;
125 // Output known-0 are known to be clear if zero in either the LHS | RHS.
126 KnownZero |= KnownZero2;
127 return;
128 }
129 case Instruction::Or: {
130 ComputeMaskedBits(I->getOperand(1), Mask, KnownZero, KnownOne, TD, Depth+1);
131 APInt Mask2(Mask & ~KnownOne);
132 ComputeMaskedBits(I->getOperand(0), Mask2, KnownZero2, KnownOne2, TD,
133 Depth+1);
134 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
135 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
136
137 // Output known-0 bits are only known if clear in both the LHS & RHS.
138 KnownZero &= KnownZero2;
139 // Output known-1 are known to be set if set in either the LHS | RHS.
140 KnownOne |= KnownOne2;
141 return;
142 }
143 case Instruction::Xor: {
144 ComputeMaskedBits(I->getOperand(1), Mask, KnownZero, KnownOne, TD, Depth+1);
145 ComputeMaskedBits(I->getOperand(0), Mask, KnownZero2, KnownOne2, TD,
146 Depth+1);
147 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
148 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
149
150 // Output known-0 bits are known if clear or set in both the LHS & RHS.
151 APInt KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
152 // Output known-1 are known to be set if set in only one of the LHS, RHS.
153 KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
154 KnownZero = KnownZeroOut;
155 return;
156 }
157 case Instruction::Mul: {
158 APInt Mask2 = APInt::getAllOnesValue(BitWidth);
159 ComputeMaskedBits(I->getOperand(1), Mask2, KnownZero, KnownOne, TD,Depth+1);
160 ComputeMaskedBits(I->getOperand(0), Mask2, KnownZero2, KnownOne2, TD,
161 Depth+1);
162 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
163 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
164
165 // If low bits are zero in either operand, output low known-0 bits.
166 // Also compute a conserative estimate for high known-0 bits.
167 // More trickiness is possible, but this is sufficient for the
168 // interesting case of alignment computation.
169 KnownOne.clear();
170 unsigned TrailZ = KnownZero.countTrailingOnes() +
171 KnownZero2.countTrailingOnes();
172 unsigned LeadZ = std::max(KnownZero.countLeadingOnes() +
173 KnownZero2.countLeadingOnes(),
174 BitWidth) - BitWidth;
175
176 TrailZ = std::min(TrailZ, BitWidth);
177 LeadZ = std::min(LeadZ, BitWidth);
178 KnownZero = APInt::getLowBitsSet(BitWidth, TrailZ) |
179 APInt::getHighBitsSet(BitWidth, LeadZ);
180 KnownZero &= Mask;
181 return;
182 }
183 case Instruction::UDiv: {
184 // For the purposes of computing leading zeros we can conservatively
185 // treat a udiv as a logical right shift by the power of 2 known to
186 // be less than the denominator.
187 APInt AllOnes = APInt::getAllOnesValue(BitWidth);
188 ComputeMaskedBits(I->getOperand(0),
189 AllOnes, KnownZero2, KnownOne2, TD, Depth+1);
190 unsigned LeadZ = KnownZero2.countLeadingOnes();
191
192 KnownOne2.clear();
193 KnownZero2.clear();
194 ComputeMaskedBits(I->getOperand(1),
195 AllOnes, KnownZero2, KnownOne2, TD, Depth+1);
196 unsigned RHSUnknownLeadingOnes = KnownOne2.countLeadingZeros();
197 if (RHSUnknownLeadingOnes != BitWidth)
198 LeadZ = std::min(BitWidth,
199 LeadZ + BitWidth - RHSUnknownLeadingOnes - 1);
200
201 KnownZero = APInt::getHighBitsSet(BitWidth, LeadZ) & Mask;
202 return;
203 }
204 case Instruction::Select:
205 ComputeMaskedBits(I->getOperand(2), Mask, KnownZero, KnownOne, TD, Depth+1);
206 ComputeMaskedBits(I->getOperand(1), Mask, KnownZero2, KnownOne2, TD,
207 Depth+1);
208 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
209 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
210
211 // Only known if known in both the LHS and RHS.
212 KnownOne &= KnownOne2;
213 KnownZero &= KnownZero2;
214 return;
215 case Instruction::FPTrunc:
216 case Instruction::FPExt:
217 case Instruction::FPToUI:
218 case Instruction::FPToSI:
219 case Instruction::SIToFP:
220 case Instruction::UIToFP:
221 return; // Can't work with floating point.
222 case Instruction::PtrToInt:
223 case Instruction::IntToPtr:
224 // We can't handle these if we don't know the pointer size.
225 if (!TD) return;
226 // FALL THROUGH and handle them the same as zext/trunc.
227 case Instruction::ZExt:
228 case Instruction::Trunc: {
229 // Note that we handle pointer operands here because of inttoptr/ptrtoint
230 // which fall through here.
231 const Type *SrcTy = I->getOperand(0)->getType();
Chris Lattner79abedb2009-01-20 18:22:57 +0000232 unsigned SrcBitWidth = TD ?
Chris Lattner173234a2008-06-02 01:18:21 +0000233 TD->getTypeSizeInBits(SrcTy) :
Dan Gohman6de29f82009-06-15 22:12:54 +0000234 SrcTy->getScalarSizeInBits();
Chris Lattner173234a2008-06-02 01:18:21 +0000235 APInt MaskIn(Mask);
236 MaskIn.zextOrTrunc(SrcBitWidth);
237 KnownZero.zextOrTrunc(SrcBitWidth);
238 KnownOne.zextOrTrunc(SrcBitWidth);
239 ComputeMaskedBits(I->getOperand(0), MaskIn, KnownZero, KnownOne, TD,
240 Depth+1);
241 KnownZero.zextOrTrunc(BitWidth);
242 KnownOne.zextOrTrunc(BitWidth);
243 // Any top bits are known to be zero.
244 if (BitWidth > SrcBitWidth)
245 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - SrcBitWidth);
246 return;
247 }
248 case Instruction::BitCast: {
249 const Type *SrcTy = I->getOperand(0)->getType();
Chris Lattner0dabb0b2009-07-02 16:04:08 +0000250 if ((SrcTy->isInteger() || isa<PointerType>(SrcTy)) &&
251 // TODO: For now, not handling conversions like:
252 // (bitcast i64 %x to <2 x i32>)
253 !isa<VectorType>(I->getType())) {
Chris Lattner173234a2008-06-02 01:18:21 +0000254 ComputeMaskedBits(I->getOperand(0), Mask, KnownZero, KnownOne, TD,
255 Depth+1);
256 return;
257 }
258 break;
259 }
260 case Instruction::SExt: {
261 // Compute the bits in the result that are not present in the input.
262 const IntegerType *SrcTy = cast<IntegerType>(I->getOperand(0)->getType());
Chris Lattner79abedb2009-01-20 18:22:57 +0000263 unsigned SrcBitWidth = SrcTy->getBitWidth();
Chris Lattner173234a2008-06-02 01:18:21 +0000264
265 APInt MaskIn(Mask);
266 MaskIn.trunc(SrcBitWidth);
267 KnownZero.trunc(SrcBitWidth);
268 KnownOne.trunc(SrcBitWidth);
269 ComputeMaskedBits(I->getOperand(0), MaskIn, KnownZero, KnownOne, TD,
270 Depth+1);
271 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
272 KnownZero.zext(BitWidth);
273 KnownOne.zext(BitWidth);
274
275 // If the sign bit of the input is known set or clear, then we know the
276 // top bits of the result.
277 if (KnownZero[SrcBitWidth-1]) // Input sign bit known zero
278 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - SrcBitWidth);
279 else if (KnownOne[SrcBitWidth-1]) // Input sign bit known set
280 KnownOne |= APInt::getHighBitsSet(BitWidth, BitWidth - SrcBitWidth);
281 return;
282 }
283 case Instruction::Shl:
284 // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0
285 if (ConstantInt *SA = dyn_cast<ConstantInt>(I->getOperand(1))) {
286 uint64_t ShiftAmt = SA->getLimitedValue(BitWidth);
287 APInt Mask2(Mask.lshr(ShiftAmt));
288 ComputeMaskedBits(I->getOperand(0), Mask2, KnownZero, KnownOne, TD,
289 Depth+1);
290 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
291 KnownZero <<= ShiftAmt;
292 KnownOne <<= ShiftAmt;
293 KnownZero |= APInt::getLowBitsSet(BitWidth, ShiftAmt); // low bits known 0
294 return;
295 }
296 break;
297 case Instruction::LShr:
298 // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
299 if (ConstantInt *SA = dyn_cast<ConstantInt>(I->getOperand(1))) {
300 // Compute the new bits that are at the top now.
301 uint64_t ShiftAmt = SA->getLimitedValue(BitWidth);
302
303 // Unsigned shift right.
304 APInt Mask2(Mask.shl(ShiftAmt));
305 ComputeMaskedBits(I->getOperand(0), Mask2, KnownZero,KnownOne, TD,
306 Depth+1);
307 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
308 KnownZero = APIntOps::lshr(KnownZero, ShiftAmt);
309 KnownOne = APIntOps::lshr(KnownOne, ShiftAmt);
310 // high bits known zero.
311 KnownZero |= APInt::getHighBitsSet(BitWidth, ShiftAmt);
312 return;
313 }
314 break;
315 case Instruction::AShr:
316 // (ashr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0
317 if (ConstantInt *SA = dyn_cast<ConstantInt>(I->getOperand(1))) {
318 // Compute the new bits that are at the top now.
319 uint64_t ShiftAmt = SA->getLimitedValue(BitWidth);
320
321 // Signed shift right.
322 APInt Mask2(Mask.shl(ShiftAmt));
323 ComputeMaskedBits(I->getOperand(0), Mask2, KnownZero, KnownOne, TD,
324 Depth+1);
325 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
326 KnownZero = APIntOps::lshr(KnownZero, ShiftAmt);
327 KnownOne = APIntOps::lshr(KnownOne, ShiftAmt);
328
329 APInt HighBits(APInt::getHighBitsSet(BitWidth, ShiftAmt));
330 if (KnownZero[BitWidth-ShiftAmt-1]) // New bits are known zero.
331 KnownZero |= HighBits;
332 else if (KnownOne[BitWidth-ShiftAmt-1]) // New bits are known one.
333 KnownOne |= HighBits;
334 return;
335 }
336 break;
337 case Instruction::Sub: {
338 if (ConstantInt *CLHS = dyn_cast<ConstantInt>(I->getOperand(0))) {
339 // We know that the top bits of C-X are clear if X contains less bits
340 // than C (i.e. no wrap-around can happen). For example, 20-X is
341 // positive if we can prove that X is >= 0 and < 16.
342 if (!CLHS->getValue().isNegative()) {
343 unsigned NLZ = (CLHS->getValue()+1).countLeadingZeros();
344 // NLZ can't be BitWidth with no sign bit
345 APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
346 ComputeMaskedBits(I->getOperand(1), MaskV, KnownZero2, KnownOne2,
347 TD, Depth+1);
348
349 // If all of the MaskV bits are known to be zero, then we know the
350 // output top bits are zero, because we now know that the output is
351 // from [0-C].
352 if ((KnownZero2 & MaskV) == MaskV) {
353 unsigned NLZ2 = CLHS->getValue().countLeadingZeros();
354 // Top bits known zero.
355 KnownZero = APInt::getHighBitsSet(BitWidth, NLZ2) & Mask;
356 }
357 }
358 }
359 }
360 // fall through
361 case Instruction::Add: {
Dan Gohman39250432009-05-24 18:02:35 +0000362 // If one of the operands has trailing zeros, than the bits that the
363 // other operand has in those bit positions will be preserved in the
364 // result. For an add, this works with either operand. For a subtract,
365 // this only works if the known zeros are in the right operand.
366 APInt LHSKnownZero(BitWidth, 0), LHSKnownOne(BitWidth, 0);
367 APInt Mask2 = APInt::getLowBitsSet(BitWidth,
368 BitWidth - Mask.countLeadingZeros());
369 ComputeMaskedBits(I->getOperand(0), Mask2, LHSKnownZero, LHSKnownOne, TD,
Chris Lattner173234a2008-06-02 01:18:21 +0000370 Depth+1);
Dan Gohman39250432009-05-24 18:02:35 +0000371 assert((LHSKnownZero & LHSKnownOne) == 0 &&
372 "Bits known to be one AND zero?");
373 unsigned LHSKnownZeroOut = LHSKnownZero.countTrailingOnes();
Chris Lattner173234a2008-06-02 01:18:21 +0000374
375 ComputeMaskedBits(I->getOperand(1), Mask2, KnownZero2, KnownOne2, TD,
376 Depth+1);
377 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
Dan Gohman39250432009-05-24 18:02:35 +0000378 unsigned RHSKnownZeroOut = KnownZero2.countTrailingOnes();
Chris Lattner173234a2008-06-02 01:18:21 +0000379
Dan Gohman39250432009-05-24 18:02:35 +0000380 // Determine which operand has more trailing zeros, and use that
381 // many bits from the other operand.
382 if (LHSKnownZeroOut > RHSKnownZeroOut) {
Dan Gohmanca178902009-07-17 20:47:02 +0000383 if (I->getOpcode() == Instruction::Add) {
Dan Gohman39250432009-05-24 18:02:35 +0000384 APInt Mask = APInt::getLowBitsSet(BitWidth, LHSKnownZeroOut);
385 KnownZero |= KnownZero2 & Mask;
386 KnownOne |= KnownOne2 & Mask;
387 } else {
388 // If the known zeros are in the left operand for a subtract,
389 // fall back to the minimum known zeros in both operands.
390 KnownZero |= APInt::getLowBitsSet(BitWidth,
391 std::min(LHSKnownZeroOut,
392 RHSKnownZeroOut));
393 }
394 } else if (RHSKnownZeroOut >= LHSKnownZeroOut) {
395 APInt Mask = APInt::getLowBitsSet(BitWidth, RHSKnownZeroOut);
396 KnownZero |= LHSKnownZero & Mask;
397 KnownOne |= LHSKnownOne & Mask;
398 }
Chris Lattner173234a2008-06-02 01:18:21 +0000399 return;
400 }
401 case Instruction::SRem:
402 if (ConstantInt *Rem = dyn_cast<ConstantInt>(I->getOperand(1))) {
403 APInt RA = Rem->getValue();
404 if (RA.isPowerOf2() || (-RA).isPowerOf2()) {
405 APInt LowBits = RA.isStrictlyPositive() ? (RA - 1) : ~RA;
406 APInt Mask2 = LowBits | APInt::getSignBit(BitWidth);
407 ComputeMaskedBits(I->getOperand(0), Mask2, KnownZero2, KnownOne2, TD,
408 Depth+1);
409
Dan Gohmana60832b2008-08-13 23:12:35 +0000410 // If the sign bit of the first operand is zero, the sign bit of
411 // the result is zero. If the first operand has no one bits below
412 // the second operand's single 1 bit, its sign will be zero.
Chris Lattner173234a2008-06-02 01:18:21 +0000413 if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits))
414 KnownZero2 |= ~LowBits;
Chris Lattner173234a2008-06-02 01:18:21 +0000415
416 KnownZero |= KnownZero2 & Mask;
Chris Lattner173234a2008-06-02 01:18:21 +0000417
418 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
419 }
420 }
421 break;
422 case Instruction::URem: {
423 if (ConstantInt *Rem = dyn_cast<ConstantInt>(I->getOperand(1))) {
424 APInt RA = Rem->getValue();
425 if (RA.isPowerOf2()) {
426 APInt LowBits = (RA - 1);
427 APInt Mask2 = LowBits & Mask;
428 KnownZero |= ~LowBits & Mask;
429 ComputeMaskedBits(I->getOperand(0), Mask2, KnownZero, KnownOne, TD,
430 Depth+1);
431 assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
432 break;
433 }
434 }
435
436 // Since the result is less than or equal to either operand, any leading
437 // zero bits in either operand must also exist in the result.
438 APInt AllOnes = APInt::getAllOnesValue(BitWidth);
439 ComputeMaskedBits(I->getOperand(0), AllOnes, KnownZero, KnownOne,
440 TD, Depth+1);
441 ComputeMaskedBits(I->getOperand(1), AllOnes, KnownZero2, KnownOne2,
442 TD, Depth+1);
443
Chris Lattner79abedb2009-01-20 18:22:57 +0000444 unsigned Leaders = std::max(KnownZero.countLeadingOnes(),
Chris Lattner173234a2008-06-02 01:18:21 +0000445 KnownZero2.countLeadingOnes());
446 KnownOne.clear();
447 KnownZero = APInt::getHighBitsSet(BitWidth, Leaders) & Mask;
448 break;
449 }
450
451 case Instruction::Alloca:
452 case Instruction::Malloc: {
453 AllocationInst *AI = cast<AllocationInst>(V);
454 unsigned Align = AI->getAlignment();
455 if (Align == 0 && TD) {
456 if (isa<AllocaInst>(AI))
Chris Lattner0f2831c2009-01-08 19:28:38 +0000457 Align = TD->getABITypeAlignment(AI->getType()->getElementType());
Chris Lattner173234a2008-06-02 01:18:21 +0000458 else if (isa<MallocInst>(AI)) {
459 // Malloc returns maximally aligned memory.
460 Align = TD->getABITypeAlignment(AI->getType()->getElementType());
461 Align =
462 std::max(Align,
Owen Anderson1d0be152009-08-13 21:58:54 +0000463 (unsigned)TD->getABITypeAlignment(
464 Type::getDoubleTy(V->getContext())));
Chris Lattner173234a2008-06-02 01:18:21 +0000465 Align =
466 std::max(Align,
Owen Anderson1d0be152009-08-13 21:58:54 +0000467 (unsigned)TD->getABITypeAlignment(
468 Type::getInt64Ty(V->getContext())));
Chris Lattner173234a2008-06-02 01:18:21 +0000469 }
470 }
471
472 if (Align > 0)
473 KnownZero = Mask & APInt::getLowBitsSet(BitWidth,
474 CountTrailingZeros_32(Align));
475 break;
476 }
477 case Instruction::GetElementPtr: {
478 // Analyze all of the subscripts of this getelementptr instruction
479 // to determine if we can prove known low zero bits.
480 APInt LocalMask = APInt::getAllOnesValue(BitWidth);
481 APInt LocalKnownZero(BitWidth, 0), LocalKnownOne(BitWidth, 0);
482 ComputeMaskedBits(I->getOperand(0), LocalMask,
483 LocalKnownZero, LocalKnownOne, TD, Depth+1);
484 unsigned TrailZ = LocalKnownZero.countTrailingOnes();
485
486 gep_type_iterator GTI = gep_type_begin(I);
487 for (unsigned i = 1, e = I->getNumOperands(); i != e; ++i, ++GTI) {
488 Value *Index = I->getOperand(i);
489 if (const StructType *STy = dyn_cast<StructType>(*GTI)) {
490 // Handle struct member offset arithmetic.
491 if (!TD) return;
492 const StructLayout *SL = TD->getStructLayout(STy);
493 unsigned Idx = cast<ConstantInt>(Index)->getZExtValue();
494 uint64_t Offset = SL->getElementOffset(Idx);
495 TrailZ = std::min(TrailZ,
496 CountTrailingZeros_64(Offset));
497 } else {
498 // Handle array index arithmetic.
499 const Type *IndexedTy = GTI.getIndexedType();
500 if (!IndexedTy->isSized()) return;
Dan Gohman6de29f82009-06-15 22:12:54 +0000501 unsigned GEPOpiBits = Index->getType()->getScalarSizeInBits();
Duncan Sands777d2302009-05-09 07:06:46 +0000502 uint64_t TypeSize = TD ? TD->getTypeAllocSize(IndexedTy) : 1;
Chris Lattner173234a2008-06-02 01:18:21 +0000503 LocalMask = APInt::getAllOnesValue(GEPOpiBits);
504 LocalKnownZero = LocalKnownOne = APInt(GEPOpiBits, 0);
505 ComputeMaskedBits(Index, LocalMask,
506 LocalKnownZero, LocalKnownOne, TD, Depth+1);
507 TrailZ = std::min(TrailZ,
Chris Lattner79abedb2009-01-20 18:22:57 +0000508 unsigned(CountTrailingZeros_64(TypeSize) +
509 LocalKnownZero.countTrailingOnes()));
Chris Lattner173234a2008-06-02 01:18:21 +0000510 }
511 }
512
513 KnownZero = APInt::getLowBitsSet(BitWidth, TrailZ) & Mask;
514 break;
515 }
516 case Instruction::PHI: {
517 PHINode *P = cast<PHINode>(I);
518 // Handle the case of a simple two-predecessor recurrence PHI.
519 // There's a lot more that could theoretically be done here, but
520 // this is sufficient to catch some interesting cases.
521 if (P->getNumIncomingValues() == 2) {
522 for (unsigned i = 0; i != 2; ++i) {
523 Value *L = P->getIncomingValue(i);
524 Value *R = P->getIncomingValue(!i);
Dan Gohmanca178902009-07-17 20:47:02 +0000525 Operator *LU = dyn_cast<Operator>(L);
Chris Lattner173234a2008-06-02 01:18:21 +0000526 if (!LU)
527 continue;
Dan Gohmanca178902009-07-17 20:47:02 +0000528 unsigned Opcode = LU->getOpcode();
Chris Lattner173234a2008-06-02 01:18:21 +0000529 // Check for operations that have the property that if
530 // both their operands have low zero bits, the result
531 // will have low zero bits.
532 if (Opcode == Instruction::Add ||
533 Opcode == Instruction::Sub ||
534 Opcode == Instruction::And ||
535 Opcode == Instruction::Or ||
536 Opcode == Instruction::Mul) {
537 Value *LL = LU->getOperand(0);
538 Value *LR = LU->getOperand(1);
539 // Find a recurrence.
540 if (LL == I)
541 L = LR;
542 else if (LR == I)
543 L = LL;
544 else
545 break;
546 // Ok, we have a PHI of the form L op= R. Check for low
547 // zero bits.
548 APInt Mask2 = APInt::getAllOnesValue(BitWidth);
549 ComputeMaskedBits(R, Mask2, KnownZero2, KnownOne2, TD, Depth+1);
550 Mask2 = APInt::getLowBitsSet(BitWidth,
551 KnownZero2.countTrailingOnes());
David Greenec714f132008-10-27 23:24:03 +0000552
553 // We need to take the minimum number of known bits
554 APInt KnownZero3(KnownZero), KnownOne3(KnownOne);
555 ComputeMaskedBits(L, Mask2, KnownZero3, KnownOne3, TD, Depth+1);
556
Chris Lattner173234a2008-06-02 01:18:21 +0000557 KnownZero = Mask &
558 APInt::getLowBitsSet(BitWidth,
David Greenec714f132008-10-27 23:24:03 +0000559 std::min(KnownZero2.countTrailingOnes(),
560 KnownZero3.countTrailingOnes()));
Chris Lattner173234a2008-06-02 01:18:21 +0000561 break;
562 }
563 }
564 }
Dan Gohman9004c8a2009-05-21 02:28:33 +0000565
566 // Otherwise take the unions of the known bit sets of the operands,
567 // taking conservative care to avoid excessive recursion.
568 if (Depth < MaxDepth - 1 && !KnownZero && !KnownOne) {
569 KnownZero = APInt::getAllOnesValue(BitWidth);
570 KnownOne = APInt::getAllOnesValue(BitWidth);
571 for (unsigned i = 0, e = P->getNumIncomingValues(); i != e; ++i) {
572 // Skip direct self references.
573 if (P->getIncomingValue(i) == P) continue;
574
575 KnownZero2 = APInt(BitWidth, 0);
576 KnownOne2 = APInt(BitWidth, 0);
577 // Recurse, but cap the recursion to one level, because we don't
578 // want to waste time spinning around in loops.
579 ComputeMaskedBits(P->getIncomingValue(i), KnownZero | KnownOne,
580 KnownZero2, KnownOne2, TD, MaxDepth-1);
581 KnownZero &= KnownZero2;
582 KnownOne &= KnownOne2;
583 // If all bits have been ruled out, there's no need to check
584 // more operands.
585 if (!KnownZero && !KnownOne)
586 break;
587 }
588 }
Chris Lattner173234a2008-06-02 01:18:21 +0000589 break;
590 }
591 case Instruction::Call:
592 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
593 switch (II->getIntrinsicID()) {
594 default: break;
595 case Intrinsic::ctpop:
596 case Intrinsic::ctlz:
597 case Intrinsic::cttz: {
598 unsigned LowBits = Log2_32(BitWidth)+1;
599 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits);
600 break;
601 }
602 }
603 }
604 break;
605 }
606}
607
608/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
609/// this predicate to simplify operations downstream. Mask is known to be zero
610/// for bits that V cannot have.
611bool llvm::MaskedValueIsZero(Value *V, const APInt &Mask,
Dan Gohman846a2f22009-08-27 17:51:25 +0000612 const TargetData *TD, unsigned Depth) {
Chris Lattner173234a2008-06-02 01:18:21 +0000613 APInt KnownZero(Mask.getBitWidth(), 0), KnownOne(Mask.getBitWidth(), 0);
614 ComputeMaskedBits(V, Mask, KnownZero, KnownOne, TD, Depth);
615 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
616 return (KnownZero & Mask) == Mask;
617}
618
619
620
621/// ComputeNumSignBits - Return the number of times the sign bit of the
622/// register is replicated into the other bits. We know that at least 1 bit
623/// is always equal to the sign bit (itself), but other cases can give us
624/// information. For example, immediately after an "ashr X, 2", we know that
625/// the top 3 bits are all equal to each other, so we return 3.
626///
627/// 'Op' must have a scalar integer type.
628///
Dan Gohman846a2f22009-08-27 17:51:25 +0000629unsigned llvm::ComputeNumSignBits(Value *V, const TargetData *TD,
630 unsigned Depth) {
Dan Gohmanbd5ce522009-06-22 22:02:32 +0000631 assert((TD || V->getType()->isIntOrIntVector()) &&
632 "ComputeNumSignBits requires a TargetData object to operate "
633 "on non-integer values!");
Dan Gohman6de29f82009-06-15 22:12:54 +0000634 const Type *Ty = V->getType();
Dan Gohmanbd5ce522009-06-22 22:02:32 +0000635 unsigned TyBits = TD ? TD->getTypeSizeInBits(V->getType()->getScalarType()) :
636 Ty->getScalarSizeInBits();
Chris Lattner173234a2008-06-02 01:18:21 +0000637 unsigned Tmp, Tmp2;
638 unsigned FirstAnswer = 1;
639
Chris Lattnerd82e5112008-06-02 18:39:07 +0000640 // Note that ConstantInt is handled by the general ComputeMaskedBits case
641 // below.
642
Chris Lattner173234a2008-06-02 01:18:21 +0000643 if (Depth == 6)
644 return 1; // Limit search depth.
645
Dan Gohmanca178902009-07-17 20:47:02 +0000646 Operator *U = dyn_cast<Operator>(V);
647 switch (Operator::getOpcode(V)) {
Chris Lattner173234a2008-06-02 01:18:21 +0000648 default: break;
649 case Instruction::SExt:
650 Tmp = TyBits-cast<IntegerType>(U->getOperand(0)->getType())->getBitWidth();
651 return ComputeNumSignBits(U->getOperand(0), TD, Depth+1) + Tmp;
652
653 case Instruction::AShr:
654 Tmp = ComputeNumSignBits(U->getOperand(0), TD, Depth+1);
655 // ashr X, C -> adds C sign bits.
656 if (ConstantInt *C = dyn_cast<ConstantInt>(U->getOperand(1))) {
657 Tmp += C->getZExtValue();
658 if (Tmp > TyBits) Tmp = TyBits;
659 }
660 return Tmp;
661 case Instruction::Shl:
662 if (ConstantInt *C = dyn_cast<ConstantInt>(U->getOperand(1))) {
663 // shl destroys sign bits.
664 Tmp = ComputeNumSignBits(U->getOperand(0), TD, Depth+1);
665 if (C->getZExtValue() >= TyBits || // Bad shift.
666 C->getZExtValue() >= Tmp) break; // Shifted all sign bits out.
667 return Tmp - C->getZExtValue();
668 }
669 break;
670 case Instruction::And:
671 case Instruction::Or:
672 case Instruction::Xor: // NOT is handled here.
673 // Logical binary ops preserve the number of sign bits at the worst.
674 Tmp = ComputeNumSignBits(U->getOperand(0), TD, Depth+1);
675 if (Tmp != 1) {
676 Tmp2 = ComputeNumSignBits(U->getOperand(1), TD, Depth+1);
677 FirstAnswer = std::min(Tmp, Tmp2);
678 // We computed what we know about the sign bits as our first
679 // answer. Now proceed to the generic code that uses
680 // ComputeMaskedBits, and pick whichever answer is better.
681 }
682 break;
683
684 case Instruction::Select:
685 Tmp = ComputeNumSignBits(U->getOperand(1), TD, Depth+1);
686 if (Tmp == 1) return 1; // Early out.
687 Tmp2 = ComputeNumSignBits(U->getOperand(2), TD, Depth+1);
688 return std::min(Tmp, Tmp2);
689
690 case Instruction::Add:
691 // Add can have at most one carry bit. Thus we know that the output
692 // is, at worst, one more bit than the inputs.
693 Tmp = ComputeNumSignBits(U->getOperand(0), TD, Depth+1);
694 if (Tmp == 1) return 1; // Early out.
695
696 // Special case decrementing a value (ADD X, -1):
Dan Gohman0001e562009-02-24 02:00:40 +0000697 if (ConstantInt *CRHS = dyn_cast<ConstantInt>(U->getOperand(1)))
Chris Lattner173234a2008-06-02 01:18:21 +0000698 if (CRHS->isAllOnesValue()) {
699 APInt KnownZero(TyBits, 0), KnownOne(TyBits, 0);
700 APInt Mask = APInt::getAllOnesValue(TyBits);
701 ComputeMaskedBits(U->getOperand(0), Mask, KnownZero, KnownOne, TD,
702 Depth+1);
703
704 // If the input is known to be 0 or 1, the output is 0/-1, which is all
705 // sign bits set.
706 if ((KnownZero | APInt(TyBits, 1)) == Mask)
707 return TyBits;
708
709 // If we are subtracting one from a positive number, there is no carry
710 // out of the result.
711 if (KnownZero.isNegative())
712 return Tmp;
713 }
714
715 Tmp2 = ComputeNumSignBits(U->getOperand(1), TD, Depth+1);
716 if (Tmp2 == 1) return 1;
717 return std::min(Tmp, Tmp2)-1;
718 break;
719
720 case Instruction::Sub:
721 Tmp2 = ComputeNumSignBits(U->getOperand(1), TD, Depth+1);
722 if (Tmp2 == 1) return 1;
723
724 // Handle NEG.
725 if (ConstantInt *CLHS = dyn_cast<ConstantInt>(U->getOperand(0)))
726 if (CLHS->isNullValue()) {
727 APInt KnownZero(TyBits, 0), KnownOne(TyBits, 0);
728 APInt Mask = APInt::getAllOnesValue(TyBits);
729 ComputeMaskedBits(U->getOperand(1), Mask, KnownZero, KnownOne,
730 TD, Depth+1);
731 // If the input is known to be 0 or 1, the output is 0/-1, which is all
732 // sign bits set.
733 if ((KnownZero | APInt(TyBits, 1)) == Mask)
734 return TyBits;
735
736 // If the input is known to be positive (the sign bit is known clear),
737 // the output of the NEG has the same number of sign bits as the input.
738 if (KnownZero.isNegative())
739 return Tmp2;
740
741 // Otherwise, we treat this like a SUB.
742 }
743
744 // Sub can have at most one carry bit. Thus we know that the output
745 // is, at worst, one more bit than the inputs.
746 Tmp = ComputeNumSignBits(U->getOperand(0), TD, Depth+1);
747 if (Tmp == 1) return 1; // Early out.
748 return std::min(Tmp, Tmp2)-1;
749 break;
750 case Instruction::Trunc:
751 // FIXME: it's tricky to do anything useful for this, but it is an important
752 // case for targets like X86.
753 break;
754 }
755
756 // Finally, if we can prove that the top bits of the result are 0's or 1's,
757 // use this information.
758 APInt KnownZero(TyBits, 0), KnownOne(TyBits, 0);
759 APInt Mask = APInt::getAllOnesValue(TyBits);
760 ComputeMaskedBits(V, Mask, KnownZero, KnownOne, TD, Depth);
761
762 if (KnownZero.isNegative()) { // sign bit is 0
763 Mask = KnownZero;
764 } else if (KnownOne.isNegative()) { // sign bit is 1;
765 Mask = KnownOne;
766 } else {
767 // Nothing known.
768 return FirstAnswer;
769 }
770
771 // Okay, we know that the sign bit in Mask is set. Use CLZ to determine
772 // the number of identical bits in the top of the input value.
773 Mask = ~Mask;
774 Mask <<= Mask.getBitWidth()-TyBits;
775 // Return # leading zeros. We use 'min' here in case Val was zero before
776 // shifting. We don't want to return '64' as for an i32 "0".
777 return std::max(FirstAnswer, std::min(TyBits, Mask.countLeadingZeros()));
778}
Chris Lattner833f25d2008-06-02 01:29:46 +0000779
780/// CannotBeNegativeZero - Return true if we can prove that the specified FP
781/// value is never equal to -0.0.
782///
783/// NOTE: this function will need to be revisited when we support non-default
784/// rounding modes!
785///
786bool llvm::CannotBeNegativeZero(const Value *V, unsigned Depth) {
787 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(V))
788 return !CFP->getValueAPF().isNegZero();
789
790 if (Depth == 6)
791 return 1; // Limit search depth.
792
Dan Gohmanca178902009-07-17 20:47:02 +0000793 const Operator *I = dyn_cast<Operator>(V);
Chris Lattner833f25d2008-06-02 01:29:46 +0000794 if (I == 0) return false;
795
796 // (add x, 0.0) is guaranteed to return +0.0, not -0.0.
Dan Gohmanae3a0be2009-06-04 22:49:04 +0000797 if (I->getOpcode() == Instruction::FAdd &&
Chris Lattner833f25d2008-06-02 01:29:46 +0000798 isa<ConstantFP>(I->getOperand(1)) &&
799 cast<ConstantFP>(I->getOperand(1))->isNullValue())
800 return true;
801
802 // sitofp and uitofp turn into +0.0 for zero.
803 if (isa<SIToFPInst>(I) || isa<UIToFPInst>(I))
804 return true;
805
806 if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(I))
807 // sqrt(-0.0) = -0.0, no other negative results are possible.
808 if (II->getIntrinsicID() == Intrinsic::sqrt)
809 return CannotBeNegativeZero(II->getOperand(1), Depth+1);
810
811 if (const CallInst *CI = dyn_cast<CallInst>(I))
812 if (const Function *F = CI->getCalledFunction()) {
813 if (F->isDeclaration()) {
Daniel Dunbarf0443c12009-07-26 08:34:35 +0000814 // abs(x) != -0.0
815 if (F->getName() == "abs") return true;
816 // abs[lf](x) != -0.0
817 if (F->getName() == "absf") return true;
818 if (F->getName() == "absl") return true;
Chris Lattner833f25d2008-06-02 01:29:46 +0000819 }
820 }
821
822 return false;
823}
824
Matthijs Kooijmanb23d5ad2008-06-16 12:48:21 +0000825// This is the recursive version of BuildSubAggregate. It takes a few different
826// arguments. Idxs is the index within the nested struct From that we are
827// looking at now (which is of type IndexedType). IdxSkip is the number of
828// indices from Idxs that should be left out when inserting into the resulting
829// struct. To is the result struct built so far, new insertvalue instructions
830// build on that.
Dan Gohman7db949d2009-08-07 01:32:21 +0000831static Value *BuildSubAggregate(Value *From, Value* To, const Type *IndexedType,
832 SmallVector<unsigned, 10> &Idxs,
833 unsigned IdxSkip,
834 LLVMContext &Context,
835 Instruction *InsertBefore) {
Matthijs Kooijmanb23d5ad2008-06-16 12:48:21 +0000836 const llvm::StructType *STy = llvm::dyn_cast<llvm::StructType>(IndexedType);
837 if (STy) {
Matthijs Kooijman0a9aaf42008-06-16 14:13:46 +0000838 // Save the original To argument so we can modify it
839 Value *OrigTo = To;
Matthijs Kooijmanb23d5ad2008-06-16 12:48:21 +0000840 // General case, the type indexed by Idxs is a struct
841 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
842 // Process each struct element recursively
843 Idxs.push_back(i);
Matthijs Kooijman0a9aaf42008-06-16 14:13:46 +0000844 Value *PrevTo = To;
Matthijs Kooijman710eb232008-06-16 12:57:37 +0000845 To = BuildSubAggregate(From, To, STy->getElementType(i), Idxs, IdxSkip,
Owen Anderson76f600b2009-07-06 22:37:39 +0000846 Context, InsertBefore);
Matthijs Kooijmanb23d5ad2008-06-16 12:48:21 +0000847 Idxs.pop_back();
Matthijs Kooijman0a9aaf42008-06-16 14:13:46 +0000848 if (!To) {
849 // Couldn't find any inserted value for this index? Cleanup
850 while (PrevTo != OrigTo) {
851 InsertValueInst* Del = cast<InsertValueInst>(PrevTo);
852 PrevTo = Del->getAggregateOperand();
853 Del->eraseFromParent();
854 }
855 // Stop processing elements
856 break;
857 }
Matthijs Kooijmanb23d5ad2008-06-16 12:48:21 +0000858 }
Matthijs Kooijman0a9aaf42008-06-16 14:13:46 +0000859 // If we succesfully found a value for each of our subaggregates
860 if (To)
861 return To;
Matthijs Kooijmanb23d5ad2008-06-16 12:48:21 +0000862 }
Matthijs Kooijman0a9aaf42008-06-16 14:13:46 +0000863 // Base case, the type indexed by SourceIdxs is not a struct, or not all of
864 // the struct's elements had a value that was inserted directly. In the latter
865 // case, perhaps we can't determine each of the subelements individually, but
866 // we might be able to find the complete struct somewhere.
867
868 // Find the value that is at that particular spot
Owen Anderson76f600b2009-07-06 22:37:39 +0000869 Value *V = FindInsertedValue(From, Idxs.begin(), Idxs.end(), Context);
Matthijs Kooijman0a9aaf42008-06-16 14:13:46 +0000870
871 if (!V)
872 return NULL;
873
874 // Insert the value in the new (sub) aggregrate
875 return llvm::InsertValueInst::Create(To, V, Idxs.begin() + IdxSkip,
876 Idxs.end(), "tmp", InsertBefore);
Matthijs Kooijmanb23d5ad2008-06-16 12:48:21 +0000877}
878
879// This helper takes a nested struct and extracts a part of it (which is again a
880// struct) into a new value. For example, given the struct:
881// { a, { b, { c, d }, e } }
882// and the indices "1, 1" this returns
883// { c, d }.
884//
Matthijs Kooijman0a9aaf42008-06-16 14:13:46 +0000885// It does this by inserting an insertvalue for each element in the resulting
886// struct, as opposed to just inserting a single struct. This will only work if
887// each of the elements of the substruct are known (ie, inserted into From by an
888// insertvalue instruction somewhere).
Matthijs Kooijmanb23d5ad2008-06-16 12:48:21 +0000889//
Matthijs Kooijman0a9aaf42008-06-16 14:13:46 +0000890// All inserted insertvalue instructions are inserted before InsertBefore
Dan Gohman7db949d2009-08-07 01:32:21 +0000891static Value *BuildSubAggregate(Value *From, const unsigned *idx_begin,
892 const unsigned *idx_end, LLVMContext &Context,
893 Instruction *InsertBefore) {
Matthijs Kooijman97728912008-06-16 13:28:31 +0000894 assert(InsertBefore && "Must have someplace to insert!");
Matthijs Kooijman710eb232008-06-16 12:57:37 +0000895 const Type *IndexedType = ExtractValueInst::getIndexedType(From->getType(),
896 idx_begin,
897 idx_end);
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000898 Value *To = UndefValue::get(IndexedType);
Matthijs Kooijmanb23d5ad2008-06-16 12:48:21 +0000899 SmallVector<unsigned, 10> Idxs(idx_begin, idx_end);
900 unsigned IdxSkip = Idxs.size();
901
Owen Anderson76f600b2009-07-06 22:37:39 +0000902 return BuildSubAggregate(From, To, IndexedType, Idxs, IdxSkip,
903 Context, InsertBefore);
Matthijs Kooijmanb23d5ad2008-06-16 12:48:21 +0000904}
905
Matthijs Kooijman710eb232008-06-16 12:57:37 +0000906/// FindInsertedValue - Given an aggregrate and an sequence of indices, see if
907/// the scalar value indexed is already around as a register, for example if it
908/// were inserted directly into the aggregrate.
Matthijs Kooijman0a9aaf42008-06-16 14:13:46 +0000909///
910/// If InsertBefore is not null, this function will duplicate (modified)
911/// insertvalues when a part of a nested struct is extracted.
Matthijs Kooijmanb23d5ad2008-06-16 12:48:21 +0000912Value *llvm::FindInsertedValue(Value *V, const unsigned *idx_begin,
Owen Andersone922c022009-07-22 00:24:57 +0000913 const unsigned *idx_end, LLVMContext &Context,
Owen Anderson76f600b2009-07-06 22:37:39 +0000914 Instruction *InsertBefore) {
Matthijs Kooijmanb23d5ad2008-06-16 12:48:21 +0000915 // Nothing to index? Just return V then (this is useful at the end of our
916 // recursion)
917 if (idx_begin == idx_end)
918 return V;
919 // We have indices, so V should have an indexable type
920 assert((isa<StructType>(V->getType()) || isa<ArrayType>(V->getType()))
921 && "Not looking at a struct or array?");
922 assert(ExtractValueInst::getIndexedType(V->getType(), idx_begin, idx_end)
923 && "Invalid indices for type?");
924 const CompositeType *PTy = cast<CompositeType>(V->getType());
Owen Anderson76f600b2009-07-06 22:37:39 +0000925
Matthijs Kooijmanb23d5ad2008-06-16 12:48:21 +0000926 if (isa<UndefValue>(V))
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000927 return UndefValue::get(ExtractValueInst::getIndexedType(PTy,
Matthijs Kooijmanb23d5ad2008-06-16 12:48:21 +0000928 idx_begin,
929 idx_end));
930 else if (isa<ConstantAggregateZero>(V))
Owen Andersona7235ea2009-07-31 20:28:14 +0000931 return Constant::getNullValue(ExtractValueInst::getIndexedType(PTy,
Owen Anderson76f600b2009-07-06 22:37:39 +0000932 idx_begin,
933 idx_end));
Matthijs Kooijmanb23d5ad2008-06-16 12:48:21 +0000934 else if (Constant *C = dyn_cast<Constant>(V)) {
935 if (isa<ConstantArray>(C) || isa<ConstantStruct>(C))
936 // Recursively process this constant
Owen Anderson76f600b2009-07-06 22:37:39 +0000937 return FindInsertedValue(C->getOperand(*idx_begin), idx_begin + 1,
938 idx_end, Context, InsertBefore);
Matthijs Kooijmanb23d5ad2008-06-16 12:48:21 +0000939 } else if (InsertValueInst *I = dyn_cast<InsertValueInst>(V)) {
940 // Loop the indices for the insertvalue instruction in parallel with the
941 // requested indices
942 const unsigned *req_idx = idx_begin;
Matthijs Kooijman710eb232008-06-16 12:57:37 +0000943 for (const unsigned *i = I->idx_begin(), *e = I->idx_end();
944 i != e; ++i, ++req_idx) {
Duncan Sands9954c762008-06-19 08:47:31 +0000945 if (req_idx == idx_end) {
Matthijs Kooijman97728912008-06-16 13:28:31 +0000946 if (InsertBefore)
Matthijs Kooijman0a9aaf42008-06-16 14:13:46 +0000947 // The requested index identifies a part of a nested aggregate. Handle
948 // this specially. For example,
949 // %A = insertvalue { i32, {i32, i32 } } undef, i32 10, 1, 0
950 // %B = insertvalue { i32, {i32, i32 } } %A, i32 11, 1, 1
951 // %C = extractvalue {i32, { i32, i32 } } %B, 1
952 // This can be changed into
953 // %A = insertvalue {i32, i32 } undef, i32 10, 0
954 // %C = insertvalue {i32, i32 } %A, i32 11, 1
955 // which allows the unused 0,0 element from the nested struct to be
956 // removed.
Owen Anderson76f600b2009-07-06 22:37:39 +0000957 return BuildSubAggregate(V, idx_begin, req_idx,
958 Context, InsertBefore);
Matthijs Kooijman97728912008-06-16 13:28:31 +0000959 else
960 // We can't handle this without inserting insertvalues
961 return 0;
Duncan Sands9954c762008-06-19 08:47:31 +0000962 }
Matthijs Kooijmanb23d5ad2008-06-16 12:48:21 +0000963
964 // This insert value inserts something else than what we are looking for.
965 // See if the (aggregrate) value inserted into has the value we are
966 // looking for, then.
967 if (*req_idx != *i)
Matthijs Kooijman710eb232008-06-16 12:57:37 +0000968 return FindInsertedValue(I->getAggregateOperand(), idx_begin, idx_end,
Owen Anderson76f600b2009-07-06 22:37:39 +0000969 Context, InsertBefore);
Matthijs Kooijmanb23d5ad2008-06-16 12:48:21 +0000970 }
971 // If we end up here, the indices of the insertvalue match with those
972 // requested (though possibly only partially). Now we recursively look at
973 // the inserted value, passing any remaining indices.
Matthijs Kooijman710eb232008-06-16 12:57:37 +0000974 return FindInsertedValue(I->getInsertedValueOperand(), req_idx, idx_end,
Owen Anderson76f600b2009-07-06 22:37:39 +0000975 Context, InsertBefore);
Matthijs Kooijmanb23d5ad2008-06-16 12:48:21 +0000976 } else if (ExtractValueInst *I = dyn_cast<ExtractValueInst>(V)) {
977 // If we're extracting a value from an aggregrate that was extracted from
978 // something else, we can extract from that something else directly instead.
979 // However, we will need to chain I's indices with the requested indices.
980
981 // Calculate the number of indices required
982 unsigned size = I->getNumIndices() + (idx_end - idx_begin);
983 // Allocate some space to put the new indices in
Matthijs Kooijman3faf9df2008-06-17 08:24:37 +0000984 SmallVector<unsigned, 5> Idxs;
985 Idxs.reserve(size);
Matthijs Kooijmanb23d5ad2008-06-16 12:48:21 +0000986 // Add indices from the extract value instruction
Matthijs Kooijman710eb232008-06-16 12:57:37 +0000987 for (const unsigned *i = I->idx_begin(), *e = I->idx_end();
Matthijs Kooijman3faf9df2008-06-17 08:24:37 +0000988 i != e; ++i)
989 Idxs.push_back(*i);
Matthijs Kooijmanb23d5ad2008-06-16 12:48:21 +0000990
991 // Add requested indices
Matthijs Kooijman3faf9df2008-06-17 08:24:37 +0000992 for (const unsigned *i = idx_begin, *e = idx_end; i != e; ++i)
993 Idxs.push_back(*i);
Matthijs Kooijmanb23d5ad2008-06-16 12:48:21 +0000994
Matthijs Kooijman3faf9df2008-06-17 08:24:37 +0000995 assert(Idxs.size() == size
Matthijs Kooijman710eb232008-06-16 12:57:37 +0000996 && "Number of indices added not correct?");
Matthijs Kooijmanb23d5ad2008-06-16 12:48:21 +0000997
Matthijs Kooijman3faf9df2008-06-17 08:24:37 +0000998 return FindInsertedValue(I->getAggregateOperand(), Idxs.begin(), Idxs.end(),
Owen Anderson76f600b2009-07-06 22:37:39 +0000999 Context, InsertBefore);
Matthijs Kooijmanb23d5ad2008-06-16 12:48:21 +00001000 }
1001 // Otherwise, we don't know (such as, extracting from a function return value
1002 // or load instruction)
1003 return 0;
1004}
Evan Cheng0ff39b32008-06-30 07:31:25 +00001005
1006/// GetConstantStringInfo - This function computes the length of a
1007/// null-terminated C string pointed to by V. If successful, it returns true
1008/// and returns the string in Str. If unsuccessful, it returns false.
Bill Wendling0582ae92009-03-13 04:39:26 +00001009bool llvm::GetConstantStringInfo(Value *V, std::string &Str, uint64_t Offset,
1010 bool StopAtNul) {
1011 // If V is NULL then return false;
1012 if (V == NULL) return false;
Evan Cheng0ff39b32008-06-30 07:31:25 +00001013
1014 // Look through bitcast instructions.
1015 if (BitCastInst *BCI = dyn_cast<BitCastInst>(V))
Bill Wendling0582ae92009-03-13 04:39:26 +00001016 return GetConstantStringInfo(BCI->getOperand(0), Str, Offset, StopAtNul);
1017
Evan Cheng0ff39b32008-06-30 07:31:25 +00001018 // If the value is not a GEP instruction nor a constant expression with a
1019 // GEP instruction, then return false because ConstantArray can't occur
1020 // any other way
1021 User *GEP = 0;
1022 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(V)) {
1023 GEP = GEPI;
1024 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V)) {
1025 if (CE->getOpcode() == Instruction::BitCast)
Bill Wendling0582ae92009-03-13 04:39:26 +00001026 return GetConstantStringInfo(CE->getOperand(0), Str, Offset, StopAtNul);
1027 if (CE->getOpcode() != Instruction::GetElementPtr)
1028 return false;
Evan Cheng0ff39b32008-06-30 07:31:25 +00001029 GEP = CE;
1030 }
1031
1032 if (GEP) {
1033 // Make sure the GEP has exactly three arguments.
Bill Wendling0582ae92009-03-13 04:39:26 +00001034 if (GEP->getNumOperands() != 3)
1035 return false;
1036
Evan Cheng0ff39b32008-06-30 07:31:25 +00001037 // Make sure the index-ee is a pointer to array of i8.
1038 const PointerType *PT = cast<PointerType>(GEP->getOperand(0)->getType());
1039 const ArrayType *AT = dyn_cast<ArrayType>(PT->getElementType());
Owen Anderson1d0be152009-08-13 21:58:54 +00001040 if (AT == 0 || AT->getElementType() != Type::getInt8Ty(V->getContext()))
Bill Wendling0582ae92009-03-13 04:39:26 +00001041 return false;
Evan Cheng0ff39b32008-06-30 07:31:25 +00001042
1043 // Check to make sure that the first operand of the GEP is an integer and
1044 // has value 0 so that we are sure we're indexing into the initializer.
1045 ConstantInt *FirstIdx = dyn_cast<ConstantInt>(GEP->getOperand(1));
Bill Wendling0582ae92009-03-13 04:39:26 +00001046 if (FirstIdx == 0 || !FirstIdx->isZero())
1047 return false;
Evan Cheng0ff39b32008-06-30 07:31:25 +00001048
1049 // If the second index isn't a ConstantInt, then this is a variable index
1050 // into the array. If this occurs, we can't say anything meaningful about
1051 // the string.
1052 uint64_t StartIdx = 0;
Bill Wendling0582ae92009-03-13 04:39:26 +00001053 if (ConstantInt *CI = dyn_cast<ConstantInt>(GEP->getOperand(2)))
Evan Cheng0ff39b32008-06-30 07:31:25 +00001054 StartIdx = CI->getZExtValue();
Bill Wendling0582ae92009-03-13 04:39:26 +00001055 else
1056 return false;
1057 return GetConstantStringInfo(GEP->getOperand(0), Str, StartIdx+Offset,
Evan Cheng0ff39b32008-06-30 07:31:25 +00001058 StopAtNul);
1059 }
1060
1061 // The GEP instruction, constant or instruction, must reference a global
1062 // variable that is a constant and is initialized. The referenced constant
1063 // initializer is the array that we'll use for optimization.
1064 GlobalVariable* GV = dyn_cast<GlobalVariable>(V);
Dan Gohman82555732009-08-19 18:20:44 +00001065 if (!GV || !GV->isConstant() || !GV->hasDefinitiveInitializer())
Bill Wendling0582ae92009-03-13 04:39:26 +00001066 return false;
Evan Cheng0ff39b32008-06-30 07:31:25 +00001067 Constant *GlobalInit = GV->getInitializer();
1068
1069 // Handle the ConstantAggregateZero case
Bill Wendling0582ae92009-03-13 04:39:26 +00001070 if (isa<ConstantAggregateZero>(GlobalInit)) {
Evan Cheng0ff39b32008-06-30 07:31:25 +00001071 // This is a degenerate case. The initializer is constant zero so the
1072 // length of the string must be zero.
Bill Wendling0582ae92009-03-13 04:39:26 +00001073 Str.clear();
1074 return true;
1075 }
Evan Cheng0ff39b32008-06-30 07:31:25 +00001076
1077 // Must be a Constant Array
1078 ConstantArray *Array = dyn_cast<ConstantArray>(GlobalInit);
Owen Anderson1d0be152009-08-13 21:58:54 +00001079 if (Array == 0 ||
1080 Array->getType()->getElementType() != Type::getInt8Ty(V->getContext()))
Bill Wendling0582ae92009-03-13 04:39:26 +00001081 return false;
Evan Cheng0ff39b32008-06-30 07:31:25 +00001082
1083 // Get the number of elements in the array
1084 uint64_t NumElts = Array->getType()->getNumElements();
1085
Bill Wendling0582ae92009-03-13 04:39:26 +00001086 if (Offset > NumElts)
1087 return false;
Evan Cheng0ff39b32008-06-30 07:31:25 +00001088
1089 // Traverse the constant array from 'Offset' which is the place the GEP refers
1090 // to in the array.
Bill Wendling0582ae92009-03-13 04:39:26 +00001091 Str.reserve(NumElts-Offset);
Evan Cheng0ff39b32008-06-30 07:31:25 +00001092 for (unsigned i = Offset; i != NumElts; ++i) {
1093 Constant *Elt = Array->getOperand(i);
1094 ConstantInt *CI = dyn_cast<ConstantInt>(Elt);
Bill Wendling0582ae92009-03-13 04:39:26 +00001095 if (!CI) // This array isn't suitable, non-int initializer.
1096 return false;
Evan Cheng0ff39b32008-06-30 07:31:25 +00001097 if (StopAtNul && CI->isZero())
Bill Wendling0582ae92009-03-13 04:39:26 +00001098 return true; // we found end of string, success!
1099 Str += (char)CI->getZExtValue();
Evan Cheng0ff39b32008-06-30 07:31:25 +00001100 }
Bill Wendling0582ae92009-03-13 04:39:26 +00001101
Evan Cheng0ff39b32008-06-30 07:31:25 +00001102 // The array isn't null terminated, but maybe this is a memcpy, not a strcpy.
Bill Wendling0582ae92009-03-13 04:39:26 +00001103 return true;
Evan Cheng0ff39b32008-06-30 07:31:25 +00001104}