blob: 96bb02714a033f9d887a91e4bd5a2efa4dcb87fe [file] [log] [blame]
Dan Gohman83e3c4f2009-09-10 23:07:18 +00001//===-- ConstantFolding.cpp - Fold instructions into constants ------------===//
John Criswellbd9d3702005-10-27 16:00:10 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
John Criswellbd9d3702005-10-27 16:00:10 +00007//
8//===----------------------------------------------------------------------===//
9//
Dan Gohman83e3c4f2009-09-10 23:07:18 +000010// This file defines routines for folding instructions into constants.
11//
12// Also, to supplement the basic VMCore ConstantExpr simplifications,
13// this file defines some additional folding routines that can make use of
14// TargetData information. These functions cannot go in VMCore due to library
15// dependency issues.
John Criswellbd9d3702005-10-27 16:00:10 +000016//
17//===----------------------------------------------------------------------===//
18
19#include "llvm/Analysis/ConstantFolding.h"
20#include "llvm/Constants.h"
21#include "llvm/DerivedTypes.h"
Chris Lattner55207322007-01-30 23:45:45 +000022#include "llvm/Function.h"
Dan Gohman9a38e3e2009-05-07 19:46:24 +000023#include "llvm/GlobalVariable.h"
John Criswellbd9d3702005-10-27 16:00:10 +000024#include "llvm/Instructions.h"
25#include "llvm/Intrinsics.h"
Chris Lattner62d327e2009-10-22 06:38:35 +000026#include "llvm/Analysis/ValueTracking.h"
27#include "llvm/Target/TargetData.h"
Chris Lattner55207322007-01-30 23:45:45 +000028#include "llvm/ADT/SmallVector.h"
Chris Lattnerc5f6a1f2007-08-08 06:55:43 +000029#include "llvm/ADT/StringMap.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000030#include "llvm/Support/ErrorHandling.h"
John Criswellbd9d3702005-10-27 16:00:10 +000031#include "llvm/Support/GetElementPtrTypeIterator.h"
32#include "llvm/Support/MathExtras.h"
33#include <cerrno>
Jeff Cohen97af7512006-12-02 02:22:01 +000034#include <cmath>
John Criswellbd9d3702005-10-27 16:00:10 +000035using namespace llvm;
36
Chris Lattner03dd25c2007-01-31 00:51:48 +000037//===----------------------------------------------------------------------===//
38// Constant Folding internal helper functions
39//===----------------------------------------------------------------------===//
40
Chris Lattner6333c392009-10-25 06:08:26 +000041/// FoldBitCast - Constant fold bitcast, symbolically evaluating it with
42/// TargetData. This always returns a non-null constant, but it may be a
43/// ConstantExpr if unfoldable.
44static Constant *FoldBitCast(Constant *C, const Type *DestTy,
45 const TargetData &TD) {
Chris Lattner93798da2009-10-25 06:15:37 +000046
47 // This only handles casts to vectors currently.
48 const VectorType *DestVTy = dyn_cast<VectorType>(DestTy);
49 if (DestVTy == 0)
50 return ConstantExpr::getBitCast(C, DestTy);
51
52 // If this is a scalar -> vector cast, convert the input into a <1 x scalar>
53 // vector so the code below can handle it uniformly.
54 if (isa<ConstantFP>(C) || isa<ConstantInt>(C)) {
55 Constant *Ops = C; // don't take the address of C!
56 return FoldBitCast(ConstantVector::get(&Ops, 1), DestTy, TD);
57 }
58
Chris Lattner6333c392009-10-25 06:08:26 +000059 // If this is a bitcast from constant vector -> vector, fold it.
60 ConstantVector *CV = dyn_cast<ConstantVector>(C);
61 if (CV == 0)
62 return ConstantExpr::getBitCast(C, DestTy);
63
Chris Lattner6333c392009-10-25 06:08:26 +000064 // If the element types match, VMCore can fold it.
65 unsigned NumDstElt = DestVTy->getNumElements();
66 unsigned NumSrcElt = CV->getNumOperands();
67 if (NumDstElt == NumSrcElt)
68 return ConstantExpr::getBitCast(C, DestTy);
69
70 const Type *SrcEltTy = CV->getType()->getElementType();
71 const Type *DstEltTy = DestVTy->getElementType();
72
73 // Otherwise, we're changing the number of elements in a vector, which
74 // requires endianness information to do the right thing. For example,
75 // bitcast (<2 x i64> <i64 0, i64 1> to <4 x i32>)
76 // folds to (little endian):
77 // <4 x i32> <i32 0, i32 0, i32 1, i32 0>
78 // and to (big endian):
79 // <4 x i32> <i32 0, i32 0, i32 0, i32 1>
80
81 // First thing is first. We only want to think about integer here, so if
82 // we have something in FP form, recast it as integer.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000083 if (DstEltTy->isFloatingPointTy()) {
Chris Lattner6333c392009-10-25 06:08:26 +000084 // Fold to an vector of integers with same size as our FP type.
85 unsigned FPWidth = DstEltTy->getPrimitiveSizeInBits();
86 const Type *DestIVTy =
87 VectorType::get(IntegerType::get(C->getContext(), FPWidth), NumDstElt);
88 // Recursively handle this integer conversion, if possible.
89 C = FoldBitCast(C, DestIVTy, TD);
90 if (!C) return ConstantExpr::getBitCast(C, DestTy);
91
92 // Finally, VMCore can handle this now that #elts line up.
93 return ConstantExpr::getBitCast(C, DestTy);
94 }
95
96 // Okay, we know the destination is integer, if the input is FP, convert
97 // it to integer first.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000098 if (SrcEltTy->isFloatingPointTy()) {
Chris Lattner6333c392009-10-25 06:08:26 +000099 unsigned FPWidth = SrcEltTy->getPrimitiveSizeInBits();
100 const Type *SrcIVTy =
101 VectorType::get(IntegerType::get(C->getContext(), FPWidth), NumSrcElt);
102 // Ask VMCore to do the conversion now that #elts line up.
103 C = ConstantExpr::getBitCast(C, SrcIVTy);
104 CV = dyn_cast<ConstantVector>(C);
105 if (!CV) // If VMCore wasn't able to fold it, bail out.
106 return C;
107 }
108
109 // Now we know that the input and output vectors are both integer vectors
110 // of the same size, and that their #elements is not the same. Do the
111 // conversion here, which depends on whether the input or output has
112 // more elements.
113 bool isLittleEndian = TD.isLittleEndian();
114
115 SmallVector<Constant*, 32> Result;
116 if (NumDstElt < NumSrcElt) {
117 // Handle: bitcast (<4 x i32> <i32 0, i32 1, i32 2, i32 3> to <2 x i64>)
118 Constant *Zero = Constant::getNullValue(DstEltTy);
119 unsigned Ratio = NumSrcElt/NumDstElt;
120 unsigned SrcBitSize = SrcEltTy->getPrimitiveSizeInBits();
121 unsigned SrcElt = 0;
122 for (unsigned i = 0; i != NumDstElt; ++i) {
123 // Build each element of the result.
124 Constant *Elt = Zero;
125 unsigned ShiftAmt = isLittleEndian ? 0 : SrcBitSize*(Ratio-1);
126 for (unsigned j = 0; j != Ratio; ++j) {
127 Constant *Src = dyn_cast<ConstantInt>(CV->getOperand(SrcElt++));
128 if (!Src) // Reject constantexpr elements.
129 return ConstantExpr::getBitCast(C, DestTy);
130
131 // Zero extend the element to the right size.
132 Src = ConstantExpr::getZExt(Src, Elt->getType());
133
134 // Shift it to the right place, depending on endianness.
135 Src = ConstantExpr::getShl(Src,
136 ConstantInt::get(Src->getType(), ShiftAmt));
137 ShiftAmt += isLittleEndian ? SrcBitSize : -SrcBitSize;
138
139 // Mix it in.
140 Elt = ConstantExpr::getOr(Elt, Src);
141 }
142 Result.push_back(Elt);
143 }
144 } else {
145 // Handle: bitcast (<2 x i64> <i64 0, i64 1> to <4 x i32>)
146 unsigned Ratio = NumDstElt/NumSrcElt;
147 unsigned DstBitSize = DstEltTy->getPrimitiveSizeInBits();
148
149 // Loop over each source value, expanding into multiple results.
150 for (unsigned i = 0; i != NumSrcElt; ++i) {
151 Constant *Src = dyn_cast<ConstantInt>(CV->getOperand(i));
152 if (!Src) // Reject constantexpr elements.
153 return ConstantExpr::getBitCast(C, DestTy);
154
155 unsigned ShiftAmt = isLittleEndian ? 0 : DstBitSize*(Ratio-1);
156 for (unsigned j = 0; j != Ratio; ++j) {
157 // Shift the piece of the value into the right place, depending on
158 // endianness.
159 Constant *Elt = ConstantExpr::getLShr(Src,
160 ConstantInt::get(Src->getType(), ShiftAmt));
161 ShiftAmt += isLittleEndian ? DstBitSize : -DstBitSize;
162
163 // Truncate and remember this piece.
164 Result.push_back(ConstantExpr::getTrunc(Elt, DstEltTy));
165 }
166 }
167 }
168
169 return ConstantVector::get(Result.data(), Result.size());
170}
171
172
Chris Lattner03dd25c2007-01-31 00:51:48 +0000173/// IsConstantOffsetFromGlobal - If this constant is actually a constant offset
174/// from a global, return the global and the constant. Because of
175/// constantexprs, this function is recursive.
176static bool IsConstantOffsetFromGlobal(Constant *C, GlobalValue *&GV,
177 int64_t &Offset, const TargetData &TD) {
178 // Trivial case, constant is the global.
179 if ((GV = dyn_cast<GlobalValue>(C))) {
180 Offset = 0;
181 return true;
182 }
183
184 // Otherwise, if this isn't a constant expr, bail out.
185 ConstantExpr *CE = dyn_cast<ConstantExpr>(C);
186 if (!CE) return false;
187
188 // Look through ptr->int and ptr->ptr casts.
189 if (CE->getOpcode() == Instruction::PtrToInt ||
190 CE->getOpcode() == Instruction::BitCast)
191 return IsConstantOffsetFromGlobal(CE->getOperand(0), GV, Offset, TD);
192
193 // i32* getelementptr ([5 x i32]* @a, i32 0, i32 5)
194 if (CE->getOpcode() == Instruction::GetElementPtr) {
195 // Cannot compute this if the element type of the pointer is missing size
196 // info.
Chris Lattnerf286f6f2007-12-10 22:53:04 +0000197 if (!cast<PointerType>(CE->getOperand(0)->getType())
198 ->getElementType()->isSized())
Chris Lattner03dd25c2007-01-31 00:51:48 +0000199 return false;
200
201 // If the base isn't a global+constant, we aren't either.
202 if (!IsConstantOffsetFromGlobal(CE->getOperand(0), GV, Offset, TD))
203 return false;
204
205 // Otherwise, add any offset that our operands provide.
206 gep_type_iterator GTI = gep_type_begin(CE);
Gabor Greifde2d74b2008-05-22 06:43:33 +0000207 for (User::const_op_iterator i = CE->op_begin() + 1, e = CE->op_end();
Gabor Greif785c6af2008-05-22 19:24:54 +0000208 i != e; ++i, ++GTI) {
Gabor Greifde2d74b2008-05-22 06:43:33 +0000209 ConstantInt *CI = dyn_cast<ConstantInt>(*i);
Chris Lattner03dd25c2007-01-31 00:51:48 +0000210 if (!CI) return false; // Index isn't a simple constant?
211 if (CI->getZExtValue() == 0) continue; // Not adding anything.
212
213 if (const StructType *ST = dyn_cast<StructType>(*GTI)) {
214 // N = N + Offset
Chris Lattnerb1919e22007-02-10 19:55:17 +0000215 Offset += TD.getStructLayout(ST)->getElementOffset(CI->getZExtValue());
Chris Lattner03dd25c2007-01-31 00:51:48 +0000216 } else {
Jeff Cohenca5183d2007-03-05 00:00:42 +0000217 const SequentialType *SQT = cast<SequentialType>(*GTI);
Duncan Sands777d2302009-05-09 07:06:46 +0000218 Offset += TD.getTypeAllocSize(SQT->getElementType())*CI->getSExtValue();
Chris Lattner03dd25c2007-01-31 00:51:48 +0000219 }
220 }
221 return true;
222 }
223
224 return false;
225}
226
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000227/// ReadDataFromGlobal - Recursive helper to read bits out of global. C is the
228/// constant being copied out of. ByteOffset is an offset into C. CurPtr is the
229/// pointer to copy results into and BytesLeft is the number of bytes left in
230/// the CurPtr buffer. TD is the target data.
231static bool ReadDataFromGlobal(Constant *C, uint64_t ByteOffset,
232 unsigned char *CurPtr, unsigned BytesLeft,
233 const TargetData &TD) {
234 assert(ByteOffset <= TD.getTypeAllocSize(C->getType()) &&
235 "Out of range access");
236
Chris Lattnerc7b13822009-10-24 05:27:19 +0000237 // If this element is zero or undefined, we can just return since *CurPtr is
238 // zero initialized.
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000239 if (isa<ConstantAggregateZero>(C) || isa<UndefValue>(C))
240 return true;
241
242 if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) {
243 if (CI->getBitWidth() > 64 ||
244 (CI->getBitWidth() & 7) != 0)
245 return false;
246
247 uint64_t Val = CI->getZExtValue();
248 unsigned IntBytes = unsigned(CI->getBitWidth()/8);
249
250 for (unsigned i = 0; i != BytesLeft && ByteOffset != IntBytes; ++i) {
Chris Lattnerc7b13822009-10-24 05:27:19 +0000251 CurPtr[i] = (unsigned char)(Val >> (ByteOffset * 8));
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000252 ++ByteOffset;
253 }
254 return true;
255 }
256
257 if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
258 if (CFP->getType()->isDoubleTy()) {
Chris Lattner6333c392009-10-25 06:08:26 +0000259 C = FoldBitCast(C, Type::getInt64Ty(C->getContext()), TD);
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000260 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, TD);
261 }
262 if (CFP->getType()->isFloatTy()){
Chris Lattner6333c392009-10-25 06:08:26 +0000263 C = FoldBitCast(C, Type::getInt32Ty(C->getContext()), TD);
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000264 return ReadDataFromGlobal(C, ByteOffset, CurPtr, BytesLeft, TD);
265 }
Chris Lattnerc7b13822009-10-24 05:27:19 +0000266 return false;
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000267 }
268
269 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(C)) {
270 const StructLayout *SL = TD.getStructLayout(CS->getType());
271 unsigned Index = SL->getElementContainingOffset(ByteOffset);
272 uint64_t CurEltOffset = SL->getElementOffset(Index);
273 ByteOffset -= CurEltOffset;
274
275 while (1) {
276 // If the element access is to the element itself and not to tail padding,
277 // read the bytes from the element.
278 uint64_t EltSize = TD.getTypeAllocSize(CS->getOperand(Index)->getType());
279
280 if (ByteOffset < EltSize &&
281 !ReadDataFromGlobal(CS->getOperand(Index), ByteOffset, CurPtr,
282 BytesLeft, TD))
283 return false;
284
285 ++Index;
286
287 // Check to see if we read from the last struct element, if so we're done.
288 if (Index == CS->getType()->getNumElements())
289 return true;
290
291 // If we read all of the bytes we needed from this element we're done.
292 uint64_t NextEltOffset = SL->getElementOffset(Index);
293
294 if (BytesLeft <= NextEltOffset-CurEltOffset-ByteOffset)
295 return true;
296
297 // Move to the next element of the struct.
Chris Lattnerc5af6492009-10-24 05:22:15 +0000298 CurPtr += NextEltOffset-CurEltOffset-ByteOffset;
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000299 BytesLeft -= NextEltOffset-CurEltOffset-ByteOffset;
300 ByteOffset = 0;
301 CurEltOffset = NextEltOffset;
302 }
303 // not reached.
304 }
305
306 if (ConstantArray *CA = dyn_cast<ConstantArray>(C)) {
307 uint64_t EltSize = TD.getTypeAllocSize(CA->getType()->getElementType());
308 uint64_t Index = ByteOffset / EltSize;
309 uint64_t Offset = ByteOffset - Index * EltSize;
310 for (; Index != CA->getType()->getNumElements(); ++Index) {
311 if (!ReadDataFromGlobal(CA->getOperand(Index), Offset, CurPtr,
312 BytesLeft, TD))
313 return false;
314 if (EltSize >= BytesLeft)
315 return true;
316
317 Offset = 0;
318 BytesLeft -= EltSize;
319 CurPtr += EltSize;
320 }
321 return true;
322 }
323
324 if (ConstantVector *CV = dyn_cast<ConstantVector>(C)) {
325 uint64_t EltSize = TD.getTypeAllocSize(CV->getType()->getElementType());
326 uint64_t Index = ByteOffset / EltSize;
327 uint64_t Offset = ByteOffset - Index * EltSize;
328 for (; Index != CV->getType()->getNumElements(); ++Index) {
329 if (!ReadDataFromGlobal(CV->getOperand(Index), Offset, CurPtr,
330 BytesLeft, TD))
331 return false;
332 if (EltSize >= BytesLeft)
333 return true;
334
335 Offset = 0;
336 BytesLeft -= EltSize;
337 CurPtr += EltSize;
338 }
339 return true;
340 }
341
342 // Otherwise, unknown initializer type.
343 return false;
344}
345
346static Constant *FoldReinterpretLoadFromConstPtr(Constant *C,
347 const TargetData &TD) {
Chris Lattner17f0cd32009-10-23 06:57:37 +0000348 const Type *LoadTy = cast<PointerType>(C->getType())->getElementType();
349 const IntegerType *IntType = dyn_cast<IntegerType>(LoadTy);
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000350
351 // If this isn't an integer load we can't fold it directly.
352 if (!IntType) {
353 // If this is a float/double load, we can try folding it as an int32/64 load
Chris Lattner17f0cd32009-10-23 06:57:37 +0000354 // and then bitcast the result. This can be useful for union cases. Note
355 // that address spaces don't matter here since we're not going to result in
356 // an actual new load.
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000357 const Type *MapTy;
Chris Lattner17f0cd32009-10-23 06:57:37 +0000358 if (LoadTy->isFloatTy())
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000359 MapTy = Type::getInt32PtrTy(C->getContext());
Chris Lattner17f0cd32009-10-23 06:57:37 +0000360 else if (LoadTy->isDoubleTy())
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000361 MapTy = Type::getInt64PtrTy(C->getContext());
Duncan Sands1df98592010-02-16 11:11:14 +0000362 else if (LoadTy->isVectorTy()) {
Chris Lattner17f0cd32009-10-23 06:57:37 +0000363 MapTy = IntegerType::get(C->getContext(),
364 TD.getTypeAllocSizeInBits(LoadTy));
365 MapTy = PointerType::getUnqual(MapTy);
366 } else
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000367 return 0;
368
Chris Lattner6333c392009-10-25 06:08:26 +0000369 C = FoldBitCast(C, MapTy, TD);
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000370 if (Constant *Res = FoldReinterpretLoadFromConstPtr(C, TD))
Chris Lattner6333c392009-10-25 06:08:26 +0000371 return FoldBitCast(Res, LoadTy, TD);
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000372 return 0;
373 }
374
375 unsigned BytesLoaded = (IntType->getBitWidth() + 7) / 8;
Chris Lattner739208a2009-10-23 06:50:36 +0000376 if (BytesLoaded > 32 || BytesLoaded == 0) return 0;
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000377
378 GlobalValue *GVal;
379 int64_t Offset;
380 if (!IsConstantOffsetFromGlobal(C, GVal, Offset, TD))
381 return 0;
382
383 GlobalVariable *GV = dyn_cast<GlobalVariable>(GVal);
Chris Lattnerc7b13822009-10-24 05:27:19 +0000384 if (!GV || !GV->isConstant() || !GV->hasDefinitiveInitializer() ||
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000385 !GV->getInitializer()->getType()->isSized())
386 return 0;
387
388 // If we're loading off the beginning of the global, some bytes may be valid,
389 // but we don't try to handle this.
390 if (Offset < 0) return 0;
391
392 // If we're not accessing anything in this constant, the result is undefined.
393 if (uint64_t(Offset) >= TD.getTypeAllocSize(GV->getInitializer()->getType()))
394 return UndefValue::get(IntType);
395
Chris Lattner739208a2009-10-23 06:50:36 +0000396 unsigned char RawBytes[32] = {0};
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000397 if (!ReadDataFromGlobal(GV->getInitializer(), Offset, RawBytes,
398 BytesLoaded, TD))
399 return 0;
400
Chris Lattnerb31189f2010-01-08 19:02:23 +0000401 APInt ResultVal = APInt(IntType->getBitWidth(), RawBytes[BytesLoaded-1]);
402 for (unsigned i = 1; i != BytesLoaded; ++i) {
Chris Lattner739208a2009-10-23 06:50:36 +0000403 ResultVal <<= 8;
404 ResultVal |= APInt(IntType->getBitWidth(), RawBytes[BytesLoaded-1-i]);
405 }
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000406
Chris Lattner739208a2009-10-23 06:50:36 +0000407 return ConstantInt::get(IntType->getContext(), ResultVal);
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000408}
409
Chris Lattner878e4942009-10-22 06:25:11 +0000410/// ConstantFoldLoadFromConstPtr - Return the value that a load from C would
411/// produce if it is constant and determinable. If this is not determinable,
412/// return null.
413Constant *llvm::ConstantFoldLoadFromConstPtr(Constant *C,
414 const TargetData *TD) {
415 // First, try the easy cases:
416 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(C))
417 if (GV->isConstant() && GV->hasDefinitiveInitializer())
418 return GV->getInitializer();
419
Chris Lattnere00c43f2009-10-22 06:44:07 +0000420 // If the loaded value isn't a constant expr, we can't handle it.
421 ConstantExpr *CE = dyn_cast<ConstantExpr>(C);
422 if (!CE) return 0;
423
424 if (CE->getOpcode() == Instruction::GetElementPtr) {
425 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(CE->getOperand(0)))
426 if (GV->isConstant() && GV->hasDefinitiveInitializer())
427 if (Constant *V =
428 ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE))
429 return V;
430 }
431
432 // Instead of loading constant c string, use corresponding integer value
433 // directly if string length is small enough.
434 std::string Str;
Chris Lattner44a7a382009-12-04 06:29:29 +0000435 if (TD && GetConstantStringInfo(CE, Str) && !Str.empty()) {
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000436 unsigned StrLen = Str.length();
Chris Lattnere00c43f2009-10-22 06:44:07 +0000437 const Type *Ty = cast<PointerType>(CE->getType())->getElementType();
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000438 unsigned NumBits = Ty->getPrimitiveSizeInBits();
Chris Lattnere00c43f2009-10-22 06:44:07 +0000439 // Replace LI with immediate integer store.
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000440 if ((NumBits >> 3) == StrLen + 1) {
441 APInt StrVal(NumBits, 0);
442 APInt SingleChar(NumBits, 0);
Chris Lattnere00c43f2009-10-22 06:44:07 +0000443 if (TD->isLittleEndian()) {
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000444 for (signed i = StrLen-1; i >= 0; i--) {
Chris Lattnere00c43f2009-10-22 06:44:07 +0000445 SingleChar = (uint64_t) Str[i] & UCHAR_MAX;
Chris Lattner62d327e2009-10-22 06:38:35 +0000446 StrVal = (StrVal << 8) | SingleChar;
447 }
Chris Lattnere00c43f2009-10-22 06:44:07 +0000448 } else {
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000449 for (unsigned i = 0; i < StrLen; i++) {
Chris Lattnere00c43f2009-10-22 06:44:07 +0000450 SingleChar = (uint64_t) Str[i] & UCHAR_MAX;
451 StrVal = (StrVal << 8) | SingleChar;
452 }
453 // Append NULL at the end.
454 SingleChar = 0;
455 StrVal = (StrVal << 8) | SingleChar;
Chris Lattner62d327e2009-10-22 06:38:35 +0000456 }
Chris Lattnere00c43f2009-10-22 06:44:07 +0000457 return ConstantInt::get(CE->getContext(), StrVal);
Chris Lattner62d327e2009-10-22 06:38:35 +0000458 }
Chris Lattner878e4942009-10-22 06:25:11 +0000459 }
Chris Lattnere00c43f2009-10-22 06:44:07 +0000460
461 // If this load comes from anywhere in a constant global, and if the global
462 // is all undef or zero, we know what it loads.
463 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(CE->getUnderlyingObject())){
464 if (GV->isConstant() && GV->hasDefinitiveInitializer()) {
465 const Type *ResTy = cast<PointerType>(C->getType())->getElementType();
466 if (GV->getInitializer()->isNullValue())
467 return Constant::getNullValue(ResTy);
468 if (isa<UndefValue>(GV->getInitializer()))
469 return UndefValue::get(ResTy);
470 }
471 }
472
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000473 // Try hard to fold loads from bitcasted strange and non-type-safe things. We
474 // currently don't do any of this for big endian systems. It can be
475 // generalized in the future if someone is interested.
476 if (TD && TD->isLittleEndian())
477 return FoldReinterpretLoadFromConstPtr(CE, *TD);
Chris Lattner878e4942009-10-22 06:25:11 +0000478 return 0;
479}
480
481static Constant *ConstantFoldLoadInst(const LoadInst *LI, const TargetData *TD){
482 if (LI->isVolatile()) return 0;
483
484 if (Constant *C = dyn_cast<Constant>(LI->getOperand(0)))
485 return ConstantFoldLoadFromConstPtr(C, TD);
Chris Lattnerfe8c7c82009-10-23 06:23:49 +0000486
Chris Lattner878e4942009-10-22 06:25:11 +0000487 return 0;
488}
Chris Lattner03dd25c2007-01-31 00:51:48 +0000489
490/// SymbolicallyEvaluateBinop - One of Op0/Op1 is a constant expression.
Nick Lewycky67e35662008-12-15 01:35:36 +0000491/// Attempt to symbolically evaluate the result of a binary operator merging
Chris Lattner03dd25c2007-01-31 00:51:48 +0000492/// these together. If target data info is available, it is provided as TD,
493/// otherwise TD is null.
494static Constant *SymbolicallyEvaluateBinop(unsigned Opc, Constant *Op0,
Chris Lattner7b550cc2009-11-06 04:27:31 +0000495 Constant *Op1, const TargetData *TD){
Chris Lattner03dd25c2007-01-31 00:51:48 +0000496 // SROA
497
498 // Fold (and 0xffffffff00000000, (shl x, 32)) -> shl.
499 // Fold (lshr (or X, Y), 32) -> (lshr [X/Y], 32) if one doesn't contribute
500 // bits.
501
502
503 // If the constant expr is something like &A[123] - &A[4].f, fold this into a
504 // constant. This happens frequently when iterating over a global array.
505 if (Opc == Instruction::Sub && TD) {
506 GlobalValue *GV1, *GV2;
507 int64_t Offs1, Offs2;
508
509 if (IsConstantOffsetFromGlobal(Op0, GV1, Offs1, *TD))
510 if (IsConstantOffsetFromGlobal(Op1, GV2, Offs2, *TD) &&
511 GV1 == GV2) {
512 // (&GV+C1) - (&GV+C2) -> C1-C2, pointer arithmetic cannot overflow.
Owen Andersoneed707b2009-07-24 23:12:02 +0000513 return ConstantInt::get(Op0->getType(), Offs1-Offs2);
Chris Lattner03dd25c2007-01-31 00:51:48 +0000514 }
515 }
516
Chris Lattner03dd25c2007-01-31 00:51:48 +0000517 return 0;
518}
519
Dan Gohman4f8eea82010-02-01 18:27:38 +0000520/// CastGEPIndices - If array indices are not pointer-sized integers,
521/// explicitly cast them so that they aren't implicitly casted by the
522/// getelementptr.
523static Constant *CastGEPIndices(Constant *const *Ops, unsigned NumOps,
524 const Type *ResultTy,
525 const TargetData *TD) {
526 if (!TD) return 0;
527 const Type *IntPtrTy = TD->getIntPtrType(ResultTy->getContext());
528
529 bool Any = false;
530 SmallVector<Constant*, 32> NewIdxs;
531 for (unsigned i = 1; i != NumOps; ++i) {
532 if ((i == 1 ||
533 !isa<StructType>(GetElementPtrInst::getIndexedType(Ops[0]->getType(),
534 reinterpret_cast<Value *const *>(Ops+1),
535 i-1))) &&
536 Ops[i]->getType() != IntPtrTy) {
537 Any = true;
538 NewIdxs.push_back(ConstantExpr::getCast(CastInst::getCastOpcode(Ops[i],
539 true,
540 IntPtrTy,
541 true),
542 Ops[i], IntPtrTy));
543 } else
544 NewIdxs.push_back(Ops[i]);
545 }
546 if (!Any) return 0;
547
548 Constant *C =
549 ConstantExpr::getGetElementPtr(Ops[0], &NewIdxs[0], NewIdxs.size());
550 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C))
551 if (Constant *Folded = ConstantFoldConstantExpression(CE, TD))
552 C = Folded;
553 return C;
554}
555
Chris Lattner03dd25c2007-01-31 00:51:48 +0000556/// SymbolicallyEvaluateGEP - If we can symbolically evaluate the specified GEP
557/// constant expression, do so.
Chris Lattner7b550cc2009-11-06 04:27:31 +0000558static Constant *SymbolicallyEvaluateGEP(Constant *const *Ops, unsigned NumOps,
Chris Lattner03dd25c2007-01-31 00:51:48 +0000559 const Type *ResultTy,
560 const TargetData *TD) {
561 Constant *Ptr = Ops[0];
Chris Lattner268e7d72008-05-08 04:54:43 +0000562 if (!TD || !cast<PointerType>(Ptr->getType())->getElementType()->isSized())
Chris Lattner03dd25c2007-01-31 00:51:48 +0000563 return 0;
Dan Gohmancda97062009-08-21 16:52:54 +0000564
Chris Lattner7b550cc2009-11-06 04:27:31 +0000565 unsigned BitWidth =
566 TD->getTypeSizeInBits(TD->getIntPtrType(Ptr->getContext()));
Dan Gohmancda97062009-08-21 16:52:54 +0000567 APInt BasePtr(BitWidth, 0);
Dan Gohmande0e5872009-08-19 18:18:36 +0000568 bool BaseIsInt = true;
Chris Lattner268e7d72008-05-08 04:54:43 +0000569 if (!Ptr->isNullValue()) {
570 // If this is a inttoptr from a constant int, we can fold this as the base,
571 // otherwise we can't.
572 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr))
573 if (CE->getOpcode() == Instruction::IntToPtr)
Dan Gohman71780102009-08-21 18:27:26 +0000574 if (ConstantInt *Base = dyn_cast<ConstantInt>(CE->getOperand(0))) {
Dan Gohmancda97062009-08-21 16:52:54 +0000575 BasePtr = Base->getValue();
Dan Gohman71780102009-08-21 18:27:26 +0000576 BasePtr.zextOrTrunc(BitWidth);
577 }
Chris Lattner268e7d72008-05-08 04:54:43 +0000578
579 if (BasePtr == 0)
Dan Gohmande0e5872009-08-19 18:18:36 +0000580 BaseIsInt = false;
Chris Lattner03dd25c2007-01-31 00:51:48 +0000581 }
Chris Lattner268e7d72008-05-08 04:54:43 +0000582
583 // If this is a constant expr gep that is effectively computing an
584 // "offsetof", fold it into 'cast int Size to T*' instead of 'gep 0, 0, 12'
585 for (unsigned i = 1; i != NumOps; ++i)
586 if (!isa<ConstantInt>(Ops[i]))
Dan Gohmande0e5872009-08-19 18:18:36 +0000587 return 0;
Chris Lattner268e7d72008-05-08 04:54:43 +0000588
Dan Gohmancda97062009-08-21 16:52:54 +0000589 APInt Offset = APInt(BitWidth,
590 TD->getIndexedOffset(Ptr->getType(),
591 (Value**)Ops+1, NumOps-1));
Duncan Sands890edda2010-03-12 17:55:20 +0000592 Ptr = cast<Constant>(Ptr->stripPointerCasts());
Dan Gohman0891d752010-03-10 19:31:51 +0000593
594 // If this is a GEP of a GEP, fold it all into a single GEP.
595 while (GEPOperator *GEP = dyn_cast<GEPOperator>(Ptr)) {
596 SmallVector<Value *, 4> NestedOps(GEP->op_begin()+1, GEP->op_end());
Duncan Sands890edda2010-03-12 17:55:20 +0000597
598 // Do not try the incorporate the sub-GEP if some index is not a number.
599 bool AllConstantInt = true;
600 for (unsigned i = 0, e = NestedOps.size(); i != e; ++i)
601 if (!isa<ConstantInt>(NestedOps[i])) {
602 AllConstantInt = false;
603 break;
604 }
605 if (!AllConstantInt)
606 break;
607
Dan Gohman0891d752010-03-10 19:31:51 +0000608 Ptr = cast<Constant>(GEP->getOperand(0));
609 Offset += APInt(BitWidth,
610 TD->getIndexedOffset(Ptr->getType(),
611 (Value**)NestedOps.data(),
612 NestedOps.size()));
Duncan Sands890edda2010-03-12 17:55:20 +0000613 Ptr = cast<Constant>(Ptr->stripPointerCasts());
Dan Gohman0891d752010-03-10 19:31:51 +0000614 }
615
Dan Gohmande0e5872009-08-19 18:18:36 +0000616 // If the base value for this address is a literal integer value, fold the
617 // getelementptr to the resulting integer value casted to the pointer type.
618 if (BaseIsInt) {
Chris Lattner7b550cc2009-11-06 04:27:31 +0000619 Constant *C = ConstantInt::get(Ptr->getContext(), Offset+BasePtr);
Dan Gohmande0e5872009-08-19 18:18:36 +0000620 return ConstantExpr::getIntToPtr(C, ResultTy);
621 }
622
623 // Otherwise form a regular getelementptr. Recompute the indices so that
624 // we eliminate over-indexing of the notional static type array bounds.
625 // This makes it easy to determine if the getelementptr is "inbounds".
626 // Also, this helps GlobalOpt do SROA on GlobalVariables.
627 const Type *Ty = Ptr->getType();
628 SmallVector<Constant*, 32> NewIdxs;
Dan Gohman3d013342009-08-19 22:46:59 +0000629 do {
Dan Gohmande0e5872009-08-19 18:18:36 +0000630 if (const SequentialType *ATy = dyn_cast<SequentialType>(Ty)) {
Duncan Sands1df98592010-02-16 11:11:14 +0000631 if (ATy->isPointerTy()) {
Chris Lattnere568fa22009-12-03 01:05:45 +0000632 // The only pointer indexing we'll do is on the first index of the GEP.
633 if (!NewIdxs.empty())
634 break;
635
636 // Only handle pointers to sized types, not pointers to functions.
637 if (!ATy->getElementType()->isSized())
638 return 0;
639 }
640
Dan Gohmande0e5872009-08-19 18:18:36 +0000641 // Determine which element of the array the offset points into.
Dan Gohmancda97062009-08-21 16:52:54 +0000642 APInt ElemSize(BitWidth, TD->getTypeAllocSize(ATy->getElementType()));
Dan Gohmande0e5872009-08-19 18:18:36 +0000643 if (ElemSize == 0)
644 return 0;
Dan Gohmancda97062009-08-21 16:52:54 +0000645 APInt NewIdx = Offset.udiv(ElemSize);
Dan Gohmande0e5872009-08-19 18:18:36 +0000646 Offset -= NewIdx * ElemSize;
Chris Lattner7b550cc2009-11-06 04:27:31 +0000647 NewIdxs.push_back(ConstantInt::get(TD->getIntPtrType(Ty->getContext()),
648 NewIdx));
Dan Gohmande0e5872009-08-19 18:18:36 +0000649 Ty = ATy->getElementType();
650 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
Dan Gohmancda97062009-08-21 16:52:54 +0000651 // Determine which field of the struct the offset points into. The
652 // getZExtValue is at least as safe as the StructLayout API because we
653 // know the offset is within the struct at this point.
Dan Gohmande0e5872009-08-19 18:18:36 +0000654 const StructLayout &SL = *TD->getStructLayout(STy);
Dan Gohmancda97062009-08-21 16:52:54 +0000655 unsigned ElIdx = SL.getElementContainingOffset(Offset.getZExtValue());
Chris Lattner7b550cc2009-11-06 04:27:31 +0000656 NewIdxs.push_back(ConstantInt::get(Type::getInt32Ty(Ty->getContext()),
657 ElIdx));
Dan Gohmancda97062009-08-21 16:52:54 +0000658 Offset -= APInt(BitWidth, SL.getElementOffset(ElIdx));
Dan Gohmande0e5872009-08-19 18:18:36 +0000659 Ty = STy->getTypeAtIndex(ElIdx);
660 } else {
Dan Gohman3d013342009-08-19 22:46:59 +0000661 // We've reached some non-indexable type.
662 break;
Dan Gohmande0e5872009-08-19 18:18:36 +0000663 }
Dan Gohman3d013342009-08-19 22:46:59 +0000664 } while (Ty != cast<PointerType>(ResultTy)->getElementType());
665
666 // If we haven't used up the entire offset by descending the static
667 // type, then the offset is pointing into the middle of an indivisible
668 // member, so we can't simplify it.
669 if (Offset != 0)
670 return 0;
Dan Gohmande0e5872009-08-19 18:18:36 +0000671
Dan Gohman3bfbc452009-09-11 00:04:14 +0000672 // Create a GEP.
673 Constant *C =
Dan Gohman6e7ad952009-09-03 23:34:49 +0000674 ConstantExpr::getGetElementPtr(Ptr, &NewIdxs[0], NewIdxs.size());
675 assert(cast<PointerType>(C->getType())->getElementType() == Ty &&
676 "Computed GetElementPtr has unexpected type!");
Dan Gohmande0e5872009-08-19 18:18:36 +0000677
Dan Gohman3d013342009-08-19 22:46:59 +0000678 // If we ended up indexing a member with a type that doesn't match
Dan Gohman4c0d5d52009-08-20 16:42:55 +0000679 // the type of what the original indices indexed, add a cast.
Dan Gohman3d013342009-08-19 22:46:59 +0000680 if (Ty != cast<PointerType>(ResultTy)->getElementType())
Chris Lattner6333c392009-10-25 06:08:26 +0000681 C = FoldBitCast(C, ResultTy, *TD);
Dan Gohman3d013342009-08-19 22:46:59 +0000682
683 return C;
Chris Lattner03dd25c2007-01-31 00:51:48 +0000684}
685
Chris Lattner1afab9c2007-12-11 07:29:44 +0000686
Chris Lattner03dd25c2007-01-31 00:51:48 +0000687
688//===----------------------------------------------------------------------===//
689// Constant Folding public APIs
690//===----------------------------------------------------------------------===//
691
692
Chris Lattner55207322007-01-30 23:45:45 +0000693/// ConstantFoldInstruction - Attempt to constant fold the specified
694/// instruction. If successful, the constant result is returned, if not, null
695/// is returned. Note that this function can only fail when attempting to fold
696/// instructions like loads and stores, which have no constant expression form.
697///
Chris Lattner7b550cc2009-11-06 04:27:31 +0000698Constant *llvm::ConstantFoldInstruction(Instruction *I, const TargetData *TD) {
Chris Lattner55207322007-01-30 23:45:45 +0000699 if (PHINode *PN = dyn_cast<PHINode>(I)) {
700 if (PN->getNumIncomingValues() == 0)
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000701 return UndefValue::get(PN->getType());
John Criswellbd9d3702005-10-27 16:00:10 +0000702
Chris Lattner55207322007-01-30 23:45:45 +0000703 Constant *Result = dyn_cast<Constant>(PN->getIncomingValue(0));
704 if (Result == 0) return 0;
705
706 // Handle PHI nodes specially here...
707 for (unsigned i = 1, e = PN->getNumIncomingValues(); i != e; ++i)
708 if (PN->getIncomingValue(i) != Result && PN->getIncomingValue(i) != PN)
709 return 0; // Not all the same incoming constants...
710
711 // If we reach here, all incoming values are the same constant.
712 return Result;
713 }
714
715 // Scan the operand list, checking to see if they are all constants, if so,
716 // hand off to ConstantFoldInstOperands.
717 SmallVector<Constant*, 8> Ops;
Gabor Greifde2d74b2008-05-22 06:43:33 +0000718 for (User::op_iterator i = I->op_begin(), e = I->op_end(); i != e; ++i)
719 if (Constant *Op = dyn_cast<Constant>(*i))
Chris Lattner55207322007-01-30 23:45:45 +0000720 Ops.push_back(Op);
721 else
722 return 0; // All operands not constant!
723
Chris Lattnerf286f6f2007-12-10 22:53:04 +0000724 if (const CmpInst *CI = dyn_cast<CmpInst>(I))
Chris Lattner8f73dea2009-11-09 23:06:58 +0000725 return ConstantFoldCompareInstOperands(CI->getPredicate(), Ops[0], Ops[1],
726 TD);
Chris Lattner58665d42009-09-16 00:08:07 +0000727
Chris Lattner878e4942009-10-22 06:25:11 +0000728 if (const LoadInst *LI = dyn_cast<LoadInst>(I))
729 return ConstantFoldLoadInst(LI, TD);
730
Chris Lattner58665d42009-09-16 00:08:07 +0000731 return ConstantFoldInstOperands(I->getOpcode(), I->getType(),
Chris Lattner7b550cc2009-11-06 04:27:31 +0000732 Ops.data(), Ops.size(), TD);
Chris Lattner55207322007-01-30 23:45:45 +0000733}
734
Nick Lewycky3dfd7bf2008-05-25 20:56:15 +0000735/// ConstantFoldConstantExpression - Attempt to fold the constant expression
736/// using the specified TargetData. If successful, the constant result is
737/// result is returned, if not, null is returned.
Dan Gohmanbaf0c672010-02-08 22:00:06 +0000738Constant *llvm::ConstantFoldConstantExpression(const ConstantExpr *CE,
Nick Lewycky3dfd7bf2008-05-25 20:56:15 +0000739 const TargetData *TD) {
Nick Lewycky3dfd7bf2008-05-25 20:56:15 +0000740 SmallVector<Constant*, 8> Ops;
Dan Gohmanbaf0c672010-02-08 22:00:06 +0000741 for (User::const_op_iterator i = CE->op_begin(), e = CE->op_end(); i != e; ++i) {
Dan Gohman01b97dd2009-11-23 16:22:21 +0000742 Constant *NewC = cast<Constant>(*i);
743 // Recursively fold the ConstantExpr's operands.
744 if (ConstantExpr *NewCE = dyn_cast<ConstantExpr>(NewC))
745 NewC = ConstantFoldConstantExpression(NewCE, TD);
746 Ops.push_back(NewC);
747 }
Nick Lewycky3dfd7bf2008-05-25 20:56:15 +0000748
749 if (CE->isCompare())
Chris Lattner8f73dea2009-11-09 23:06:58 +0000750 return ConstantFoldCompareInstOperands(CE->getPredicate(), Ops[0], Ops[1],
751 TD);
Chris Lattner58665d42009-09-16 00:08:07 +0000752 return ConstantFoldInstOperands(CE->getOpcode(), CE->getType(),
Chris Lattner7b550cc2009-11-06 04:27:31 +0000753 Ops.data(), Ops.size(), TD);
Nick Lewycky3dfd7bf2008-05-25 20:56:15 +0000754}
755
Chris Lattner55207322007-01-30 23:45:45 +0000756/// ConstantFoldInstOperands - Attempt to constant fold an instruction with the
757/// specified opcode and operands. If successful, the constant result is
758/// returned, if not, null is returned. Note that this function can fail when
759/// attempting to fold instructions like loads and stores, which have no
760/// constant expression form.
761///
Dan Gohman01b97dd2009-11-23 16:22:21 +0000762/// TODO: This function neither utilizes nor preserves nsw/nuw/inbounds/etc
763/// information, due to only being passed an opcode and operands. Constant
764/// folding using this function strips this information.
765///
Chris Lattnerf286f6f2007-12-10 22:53:04 +0000766Constant *llvm::ConstantFoldInstOperands(unsigned Opcode, const Type *DestTy,
767 Constant* const* Ops, unsigned NumOps,
Chris Lattner55207322007-01-30 23:45:45 +0000768 const TargetData *TD) {
Chris Lattner03dd25c2007-01-31 00:51:48 +0000769 // Handle easy binops first.
Chris Lattnerf286f6f2007-12-10 22:53:04 +0000770 if (Instruction::isBinaryOp(Opcode)) {
Chris Lattner03dd25c2007-01-31 00:51:48 +0000771 if (isa<ConstantExpr>(Ops[0]) || isa<ConstantExpr>(Ops[1]))
Chris Lattner7b550cc2009-11-06 04:27:31 +0000772 if (Constant *C = SymbolicallyEvaluateBinop(Opcode, Ops[0], Ops[1], TD))
Chris Lattner03dd25c2007-01-31 00:51:48 +0000773 return C;
774
Owen Andersonbaf3c402009-07-29 18:55:55 +0000775 return ConstantExpr::get(Opcode, Ops[0], Ops[1]);
Chris Lattner03dd25c2007-01-31 00:51:48 +0000776 }
Chris Lattner55207322007-01-30 23:45:45 +0000777
Chris Lattnerf286f6f2007-12-10 22:53:04 +0000778 switch (Opcode) {
Chris Lattner55207322007-01-30 23:45:45 +0000779 default: return 0;
Chris Lattner79fa3cf2010-01-02 01:22:23 +0000780 case Instruction::ICmp:
781 case Instruction::FCmp: assert(0 && "Invalid for compares");
Chris Lattner55207322007-01-30 23:45:45 +0000782 case Instruction::Call:
783 if (Function *F = dyn_cast<Function>(Ops[0]))
784 if (canConstantFoldCallTo(F))
Chris Lattnerad58eb32007-01-31 18:04:55 +0000785 return ConstantFoldCall(F, Ops+1, NumOps-1);
Chris Lattner55207322007-01-30 23:45:45 +0000786 return 0;
Chris Lattner001f7532007-08-11 23:49:01 +0000787 case Instruction::PtrToInt:
788 // If the input is a inttoptr, eliminate the pair. This requires knowing
789 // the width of a pointer, so it can't be done in ConstantExpr::getCast.
790 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ops[0])) {
791 if (TD && CE->getOpcode() == Instruction::IntToPtr) {
792 Constant *Input = CE->getOperand(0);
Dan Gohman6de29f82009-06-15 22:12:54 +0000793 unsigned InWidth = Input->getType()->getScalarSizeInBits();
Nick Lewycky04aa2c32008-10-24 06:14:27 +0000794 if (TD->getPointerSizeInBits() < InWidth) {
795 Constant *Mask =
Chris Lattner7b550cc2009-11-06 04:27:31 +0000796 ConstantInt::get(CE->getContext(), APInt::getLowBitsSet(InWidth,
Nick Lewycky04aa2c32008-10-24 06:14:27 +0000797 TD->getPointerSizeInBits()));
Owen Andersonbaf3c402009-07-29 18:55:55 +0000798 Input = ConstantExpr::getAnd(Input, Mask);
Nick Lewycky04aa2c32008-10-24 06:14:27 +0000799 }
Chris Lattner001f7532007-08-11 23:49:01 +0000800 // Do a zext or trunc to get to the dest size.
Owen Andersonbaf3c402009-07-29 18:55:55 +0000801 return ConstantExpr::getIntegerCast(Input, DestTy, false);
Chris Lattner001f7532007-08-11 23:49:01 +0000802 }
803 }
Owen Andersonbaf3c402009-07-29 18:55:55 +0000804 return ConstantExpr::getCast(Opcode, Ops[0], DestTy);
Chris Lattner001f7532007-08-11 23:49:01 +0000805 case Instruction::IntToPtr:
Duncan Sands81b06be2008-08-13 20:20:35 +0000806 // If the input is a ptrtoint, turn the pair into a ptr to ptr bitcast if
807 // the int size is >= the ptr size. This requires knowing the width of a
808 // pointer, so it can't be done in ConstantExpr::getCast.
Dan Gohmanb80a2a62010-02-23 16:35:41 +0000809 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ops[0]))
Dan Gohman9a38e3e2009-05-07 19:46:24 +0000810 if (TD &&
Dan Gohmanb80a2a62010-02-23 16:35:41 +0000811 TD->getPointerSizeInBits() <= CE->getType()->getScalarSizeInBits() &&
812 CE->getOpcode() == Instruction::PtrToInt)
813 return FoldBitCast(CE->getOperand(0), DestTy, *TD);
814
Owen Andersonbaf3c402009-07-29 18:55:55 +0000815 return ConstantExpr::getCast(Opcode, Ops[0], DestTy);
Chris Lattner55207322007-01-30 23:45:45 +0000816 case Instruction::Trunc:
817 case Instruction::ZExt:
818 case Instruction::SExt:
819 case Instruction::FPTrunc:
820 case Instruction::FPExt:
821 case Instruction::UIToFP:
822 case Instruction::SIToFP:
823 case Instruction::FPToUI:
824 case Instruction::FPToSI:
Owen Andersonbaf3c402009-07-29 18:55:55 +0000825 return ConstantExpr::getCast(Opcode, Ops[0], DestTy);
Chris Lattner55207322007-01-30 23:45:45 +0000826 case Instruction::BitCast:
Chris Lattner1afab9c2007-12-11 07:29:44 +0000827 if (TD)
Chris Lattner6333c392009-10-25 06:08:26 +0000828 return FoldBitCast(Ops[0], DestTy, *TD);
Owen Andersonbaf3c402009-07-29 18:55:55 +0000829 return ConstantExpr::getBitCast(Ops[0], DestTy);
Chris Lattner55207322007-01-30 23:45:45 +0000830 case Instruction::Select:
Owen Andersonbaf3c402009-07-29 18:55:55 +0000831 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]);
Chris Lattner55207322007-01-30 23:45:45 +0000832 case Instruction::ExtractElement:
Owen Andersonbaf3c402009-07-29 18:55:55 +0000833 return ConstantExpr::getExtractElement(Ops[0], Ops[1]);
Chris Lattner55207322007-01-30 23:45:45 +0000834 case Instruction::InsertElement:
Owen Andersonbaf3c402009-07-29 18:55:55 +0000835 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]);
Chris Lattner55207322007-01-30 23:45:45 +0000836 case Instruction::ShuffleVector:
Owen Andersonbaf3c402009-07-29 18:55:55 +0000837 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2]);
Chris Lattner55207322007-01-30 23:45:45 +0000838 case Instruction::GetElementPtr:
Dan Gohman4f8eea82010-02-01 18:27:38 +0000839 if (Constant *C = CastGEPIndices(Ops, NumOps, DestTy, TD))
840 return C;
Chris Lattner7b550cc2009-11-06 04:27:31 +0000841 if (Constant *C = SymbolicallyEvaluateGEP(Ops, NumOps, DestTy, TD))
Chris Lattner03dd25c2007-01-31 00:51:48 +0000842 return C;
843
Owen Andersonbaf3c402009-07-29 18:55:55 +0000844 return ConstantExpr::getGetElementPtr(Ops[0], Ops+1, NumOps-1);
Chris Lattner55207322007-01-30 23:45:45 +0000845 }
846}
847
Chris Lattnerf286f6f2007-12-10 22:53:04 +0000848/// ConstantFoldCompareInstOperands - Attempt to constant fold a compare
849/// instruction (icmp/fcmp) with the specified operands. If it fails, it
850/// returns a constant expression of the specified operands.
851///
852Constant *llvm::ConstantFoldCompareInstOperands(unsigned Predicate,
Chris Lattner8f73dea2009-11-09 23:06:58 +0000853 Constant *Ops0, Constant *Ops1,
Chris Lattnerf286f6f2007-12-10 22:53:04 +0000854 const TargetData *TD) {
855 // fold: icmp (inttoptr x), null -> icmp x, 0
856 // fold: icmp (ptrtoint x), 0 -> icmp x, null
Nick Lewycky3dfd7bf2008-05-25 20:56:15 +0000857 // fold: icmp (inttoptr x), (inttoptr y) -> icmp trunc/zext x, trunc/zext y
Chris Lattnerf286f6f2007-12-10 22:53:04 +0000858 // fold: icmp (ptrtoint x), (ptrtoint y) -> icmp x, y
859 //
860 // ConstantExpr::getCompare cannot do this, because it doesn't have TD
861 // around to know if bit truncation is happening.
Chris Lattner8f73dea2009-11-09 23:06:58 +0000862 if (ConstantExpr *CE0 = dyn_cast<ConstantExpr>(Ops0)) {
863 if (TD && Ops1->isNullValue()) {
Chris Lattner7b550cc2009-11-06 04:27:31 +0000864 const Type *IntPtrTy = TD->getIntPtrType(CE0->getContext());
Chris Lattnerf286f6f2007-12-10 22:53:04 +0000865 if (CE0->getOpcode() == Instruction::IntToPtr) {
866 // Convert the integer value to the right size to ensure we get the
867 // proper extension or truncation.
Owen Andersonbaf3c402009-07-29 18:55:55 +0000868 Constant *C = ConstantExpr::getIntegerCast(CE0->getOperand(0),
Chris Lattnerf286f6f2007-12-10 22:53:04 +0000869 IntPtrTy, false);
Chris Lattner8f73dea2009-11-09 23:06:58 +0000870 Constant *Null = Constant::getNullValue(C->getType());
871 return ConstantFoldCompareInstOperands(Predicate, C, Null, TD);
Chris Lattnerf286f6f2007-12-10 22:53:04 +0000872 }
873
874 // Only do this transformation if the int is intptrty in size, otherwise
875 // there is a truncation or extension that we aren't modeling.
876 if (CE0->getOpcode() == Instruction::PtrToInt &&
877 CE0->getType() == IntPtrTy) {
878 Constant *C = CE0->getOperand(0);
Chris Lattner8f73dea2009-11-09 23:06:58 +0000879 Constant *Null = Constant::getNullValue(C->getType());
880 return ConstantFoldCompareInstOperands(Predicate, C, Null, TD);
Chris Lattnerf286f6f2007-12-10 22:53:04 +0000881 }
882 }
883
Chris Lattner8f73dea2009-11-09 23:06:58 +0000884 if (ConstantExpr *CE1 = dyn_cast<ConstantExpr>(Ops1)) {
Nick Lewycky3dfd7bf2008-05-25 20:56:15 +0000885 if (TD && CE0->getOpcode() == CE1->getOpcode()) {
Chris Lattner7b550cc2009-11-06 04:27:31 +0000886 const Type *IntPtrTy = TD->getIntPtrType(CE0->getContext());
Nick Lewycky3dfd7bf2008-05-25 20:56:15 +0000887
888 if (CE0->getOpcode() == Instruction::IntToPtr) {
889 // Convert the integer value to the right size to ensure we get the
890 // proper extension or truncation.
Owen Andersonbaf3c402009-07-29 18:55:55 +0000891 Constant *C0 = ConstantExpr::getIntegerCast(CE0->getOperand(0),
Nick Lewycky3dfd7bf2008-05-25 20:56:15 +0000892 IntPtrTy, false);
Owen Andersonbaf3c402009-07-29 18:55:55 +0000893 Constant *C1 = ConstantExpr::getIntegerCast(CE1->getOperand(0),
Nick Lewycky3dfd7bf2008-05-25 20:56:15 +0000894 IntPtrTy, false);
Chris Lattner8f73dea2009-11-09 23:06:58 +0000895 return ConstantFoldCompareInstOperands(Predicate, C0, C1, TD);
Nick Lewycky3dfd7bf2008-05-25 20:56:15 +0000896 }
897
898 // Only do this transformation if the int is intptrty in size, otherwise
899 // there is a truncation or extension that we aren't modeling.
900 if ((CE0->getOpcode() == Instruction::PtrToInt &&
901 CE0->getType() == IntPtrTy &&
Chris Lattner8f73dea2009-11-09 23:06:58 +0000902 CE0->getOperand(0)->getType() == CE1->getOperand(0)->getType()))
903 return ConstantFoldCompareInstOperands(Predicate, CE0->getOperand(0),
904 CE1->getOperand(0), TD);
Chris Lattnerf286f6f2007-12-10 22:53:04 +0000905 }
906 }
Chris Lattner79fa3cf2010-01-02 01:22:23 +0000907
908 // icmp eq (or x, y), 0 -> (icmp eq x, 0) & (icmp eq y, 0)
909 // icmp ne (or x, y), 0 -> (icmp ne x, 0) | (icmp ne y, 0)
910 if ((Predicate == ICmpInst::ICMP_EQ || Predicate == ICmpInst::ICMP_NE) &&
911 CE0->getOpcode() == Instruction::Or && Ops1->isNullValue()) {
912 Constant *LHS =
913 ConstantFoldCompareInstOperands(Predicate, CE0->getOperand(0), Ops1,TD);
914 Constant *RHS =
915 ConstantFoldCompareInstOperands(Predicate, CE0->getOperand(1), Ops1,TD);
916 unsigned OpC =
917 Predicate == ICmpInst::ICMP_EQ ? Instruction::And : Instruction::Or;
918 Constant *Ops[] = { LHS, RHS };
919 return ConstantFoldInstOperands(OpC, LHS->getType(), Ops, 2, TD);
920 }
Chris Lattnerf286f6f2007-12-10 22:53:04 +0000921 }
Chris Lattner8f73dea2009-11-09 23:06:58 +0000922
923 return ConstantExpr::getCompare(Predicate, Ops0, Ops1);
Chris Lattnerf286f6f2007-12-10 22:53:04 +0000924}
925
926
Chris Lattner55207322007-01-30 23:45:45 +0000927/// ConstantFoldLoadThroughGEPConstantExpr - Given a constant and a
928/// getelementptr constantexpr, return the constant value being addressed by the
929/// constant expression, or null if something is funny and we can't decide.
930Constant *llvm::ConstantFoldLoadThroughGEPConstantExpr(Constant *C,
Dan Gohmanc6f69e92009-10-05 16:36:26 +0000931 ConstantExpr *CE) {
Owen Andersona7235ea2009-07-31 20:28:14 +0000932 if (CE->getOperand(1) != Constant::getNullValue(CE->getOperand(1)->getType()))
Chris Lattner55207322007-01-30 23:45:45 +0000933 return 0; // Do not allow stepping over the value!
934
935 // Loop over all of the operands, tracking down which value we are
936 // addressing...
937 gep_type_iterator I = gep_type_begin(CE), E = gep_type_end(CE);
938 for (++I; I != E; ++I)
939 if (const StructType *STy = dyn_cast<StructType>(*I)) {
940 ConstantInt *CU = cast<ConstantInt>(I.getOperand());
941 assert(CU->getZExtValue() < STy->getNumElements() &&
942 "Struct index out of range!");
943 unsigned El = (unsigned)CU->getZExtValue();
944 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(C)) {
945 C = CS->getOperand(El);
946 } else if (isa<ConstantAggregateZero>(C)) {
Owen Andersona7235ea2009-07-31 20:28:14 +0000947 C = Constant::getNullValue(STy->getElementType(El));
Chris Lattner55207322007-01-30 23:45:45 +0000948 } else if (isa<UndefValue>(C)) {
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000949 C = UndefValue::get(STy->getElementType(El));
Chris Lattner55207322007-01-30 23:45:45 +0000950 } else {
951 return 0;
952 }
953 } else if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand())) {
954 if (const ArrayType *ATy = dyn_cast<ArrayType>(*I)) {
955 if (CI->getZExtValue() >= ATy->getNumElements())
956 return 0;
957 if (ConstantArray *CA = dyn_cast<ConstantArray>(C))
958 C = CA->getOperand(CI->getZExtValue());
959 else if (isa<ConstantAggregateZero>(C))
Owen Andersona7235ea2009-07-31 20:28:14 +0000960 C = Constant::getNullValue(ATy->getElementType());
Chris Lattner55207322007-01-30 23:45:45 +0000961 else if (isa<UndefValue>(C))
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000962 C = UndefValue::get(ATy->getElementType());
Chris Lattner55207322007-01-30 23:45:45 +0000963 else
964 return 0;
Chris Lattner62d327e2009-10-22 06:38:35 +0000965 } else if (const VectorType *VTy = dyn_cast<VectorType>(*I)) {
966 if (CI->getZExtValue() >= VTy->getNumElements())
Chris Lattner55207322007-01-30 23:45:45 +0000967 return 0;
Reid Spencer9d6565a2007-02-15 02:26:10 +0000968 if (ConstantVector *CP = dyn_cast<ConstantVector>(C))
Chris Lattner55207322007-01-30 23:45:45 +0000969 C = CP->getOperand(CI->getZExtValue());
970 else if (isa<ConstantAggregateZero>(C))
Chris Lattner62d327e2009-10-22 06:38:35 +0000971 C = Constant::getNullValue(VTy->getElementType());
Chris Lattner55207322007-01-30 23:45:45 +0000972 else if (isa<UndefValue>(C))
Chris Lattner62d327e2009-10-22 06:38:35 +0000973 C = UndefValue::get(VTy->getElementType());
Chris Lattner55207322007-01-30 23:45:45 +0000974 else
975 return 0;
976 } else {
977 return 0;
978 }
979 } else {
980 return 0;
981 }
982 return C;
983}
984
985
986//===----------------------------------------------------------------------===//
987// Constant Folding for Calls
988//
John Criswellbd9d3702005-10-27 16:00:10 +0000989
990/// canConstantFoldCallTo - Return true if its even possible to fold a call to
991/// the specified function.
992bool
Dan Gohmanfa9b80e2008-01-31 01:05:10 +0000993llvm::canConstantFoldCallTo(const Function *F) {
John Criswellbd9d3702005-10-27 16:00:10 +0000994 switch (F->getIntrinsicID()) {
Dale Johannesen9ab7fb32007-10-02 17:43:59 +0000995 case Intrinsic::sqrt:
996 case Intrinsic::powi:
Reid Spencere9391fd2007-04-01 07:35:23 +0000997 case Intrinsic::bswap:
998 case Intrinsic::ctpop:
999 case Intrinsic::ctlz:
1000 case Intrinsic::cttz:
Chris Lattnere65cd402009-10-05 05:26:04 +00001001 case Intrinsic::uadd_with_overflow:
1002 case Intrinsic::usub_with_overflow:
Evan Phoenix1614e502009-10-05 22:53:52 +00001003 case Intrinsic::sadd_with_overflow:
1004 case Intrinsic::ssub_with_overflow:
John Criswellbd9d3702005-10-27 16:00:10 +00001005 return true;
Chris Lattner68a06032009-10-05 05:00:35 +00001006 default:
1007 return false;
1008 case 0: break;
John Criswellbd9d3702005-10-27 16:00:10 +00001009 }
1010
Chris Lattner6f532a92009-04-03 00:02:39 +00001011 if (!F->hasName()) return false;
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001012 StringRef Name = F->getName();
Chris Lattnerc5f6a1f2007-08-08 06:55:43 +00001013
1014 // In these cases, the check of the length is required. We don't want to
1015 // return true for a name like "cos\0blah" which strcmp would return equal to
1016 // "cos", but has length 8.
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001017 switch (Name[0]) {
Chris Lattnerc5f6a1f2007-08-08 06:55:43 +00001018 default: return false;
1019 case 'a':
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001020 return Name == "acos" || Name == "asin" ||
1021 Name == "atan" || Name == "atan2";
Chris Lattnerc5f6a1f2007-08-08 06:55:43 +00001022 case 'c':
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001023 return Name == "cos" || Name == "ceil" || Name == "cosf" || Name == "cosh";
Chris Lattnerc5f6a1f2007-08-08 06:55:43 +00001024 case 'e':
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001025 return Name == "exp";
Chris Lattnerc5f6a1f2007-08-08 06:55:43 +00001026 case 'f':
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001027 return Name == "fabs" || Name == "fmod" || Name == "floor";
Chris Lattnerc5f6a1f2007-08-08 06:55:43 +00001028 case 'l':
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001029 return Name == "log" || Name == "log10";
Chris Lattnerc5f6a1f2007-08-08 06:55:43 +00001030 case 'p':
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001031 return Name == "pow";
Chris Lattnerc5f6a1f2007-08-08 06:55:43 +00001032 case 's':
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001033 return Name == "sin" || Name == "sinh" || Name == "sqrt" ||
1034 Name == "sinf" || Name == "sqrtf";
Chris Lattnerc5f6a1f2007-08-08 06:55:43 +00001035 case 't':
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001036 return Name == "tan" || Name == "tanh";
John Criswellbd9d3702005-10-27 16:00:10 +00001037 }
1038}
1039
Chris Lattner72d88ae2007-01-30 23:15:43 +00001040static Constant *ConstantFoldFP(double (*NativeFP)(double), double V,
Chris Lattner7b550cc2009-11-06 04:27:31 +00001041 const Type *Ty) {
John Criswellbd9d3702005-10-27 16:00:10 +00001042 errno = 0;
1043 V = NativeFP(V);
Chris Lattnerf19f58a2008-03-30 18:02:00 +00001044 if (errno != 0) {
1045 errno = 0;
1046 return 0;
Dale Johannesen43421b32007-09-06 18:13:44 +00001047 }
Chris Lattnerf19f58a2008-03-30 18:02:00 +00001048
Chris Lattnerd0806a12009-10-05 05:06:24 +00001049 if (Ty->isFloatTy())
Chris Lattner7b550cc2009-11-06 04:27:31 +00001050 return ConstantFP::get(Ty->getContext(), APFloat((float)V));
Chris Lattnerd0806a12009-10-05 05:06:24 +00001051 if (Ty->isDoubleTy())
Chris Lattner7b550cc2009-11-06 04:27:31 +00001052 return ConstantFP::get(Ty->getContext(), APFloat(V));
Torok Edwinc23197a2009-07-14 16:55:14 +00001053 llvm_unreachable("Can only constant fold float/double");
Gabor Greif33e456d2008-05-21 14:07:30 +00001054 return 0; // dummy return to suppress warning
John Criswellbd9d3702005-10-27 16:00:10 +00001055}
1056
Dan Gohman38415242007-07-16 15:26:22 +00001057static Constant *ConstantFoldBinaryFP(double (*NativeFP)(double, double),
Chris Lattner7b550cc2009-11-06 04:27:31 +00001058 double V, double W, const Type *Ty) {
Dan Gohman38415242007-07-16 15:26:22 +00001059 errno = 0;
1060 V = NativeFP(V, W);
Chris Lattnerf19f58a2008-03-30 18:02:00 +00001061 if (errno != 0) {
1062 errno = 0;
1063 return 0;
Dale Johannesen43421b32007-09-06 18:13:44 +00001064 }
Chris Lattnerf19f58a2008-03-30 18:02:00 +00001065
Chris Lattnerd0806a12009-10-05 05:06:24 +00001066 if (Ty->isFloatTy())
Chris Lattner7b550cc2009-11-06 04:27:31 +00001067 return ConstantFP::get(Ty->getContext(), APFloat((float)V));
Chris Lattnerd0806a12009-10-05 05:06:24 +00001068 if (Ty->isDoubleTy())
Chris Lattner7b550cc2009-11-06 04:27:31 +00001069 return ConstantFP::get(Ty->getContext(), APFloat(V));
Torok Edwinc23197a2009-07-14 16:55:14 +00001070 llvm_unreachable("Can only constant fold float/double");
Gabor Greif33e456d2008-05-21 14:07:30 +00001071 return 0; // dummy return to suppress warning
Dan Gohman38415242007-07-16 15:26:22 +00001072}
1073
John Criswellbd9d3702005-10-27 16:00:10 +00001074/// ConstantFoldCall - Attempt to constant fold a call to the specified function
1075/// with the specified arguments, returning null if unsuccessful.
1076Constant *
Chris Lattnerf286f6f2007-12-10 22:53:04 +00001077llvm::ConstantFoldCall(Function *F,
Chris Lattner68a06032009-10-05 05:00:35 +00001078 Constant *const *Operands, unsigned NumOperands) {
Chris Lattner6f532a92009-04-03 00:02:39 +00001079 if (!F->hasName()) return 0;
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001080 StringRef Name = F->getName();
Chris Lattnere65cd402009-10-05 05:26:04 +00001081
John Criswellbd9d3702005-10-27 16:00:10 +00001082 const Type *Ty = F->getReturnType();
Chris Lattner72d88ae2007-01-30 23:15:43 +00001083 if (NumOperands == 1) {
John Criswellbd9d3702005-10-27 16:00:10 +00001084 if (ConstantFP *Op = dyn_cast<ConstantFP>(Operands[0])) {
Chris Lattnerd0806a12009-10-05 05:06:24 +00001085 if (!Ty->isFloatTy() && !Ty->isDoubleTy())
Dale Johannesen43421b32007-09-06 18:13:44 +00001086 return 0;
1087 /// Currently APFloat versions of these functions do not exist, so we use
1088 /// the host native double versions. Float versions are not called
1089 /// directly but for all these it is true (float)(f((double)arg)) ==
1090 /// f(arg). Long double not supported yet.
Chris Lattnerd0806a12009-10-05 05:06:24 +00001091 double V = Ty->isFloatTy() ? (double)Op->getValueAPF().convertToFloat() :
Dale Johannesen43421b32007-09-06 18:13:44 +00001092 Op->getValueAPF().convertToDouble();
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001093 switch (Name[0]) {
Chris Lattnerc5f6a1f2007-08-08 06:55:43 +00001094 case 'a':
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001095 if (Name == "acos")
Chris Lattner7b550cc2009-11-06 04:27:31 +00001096 return ConstantFoldFP(acos, V, Ty);
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001097 else if (Name == "asin")
Chris Lattner7b550cc2009-11-06 04:27:31 +00001098 return ConstantFoldFP(asin, V, Ty);
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001099 else if (Name == "atan")
Chris Lattner7b550cc2009-11-06 04:27:31 +00001100 return ConstantFoldFP(atan, V, Ty);
Chris Lattnerc5f6a1f2007-08-08 06:55:43 +00001101 break;
1102 case 'c':
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001103 if (Name == "ceil")
Chris Lattner7b550cc2009-11-06 04:27:31 +00001104 return ConstantFoldFP(ceil, V, Ty);
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001105 else if (Name == "cos")
Chris Lattner7b550cc2009-11-06 04:27:31 +00001106 return ConstantFoldFP(cos, V, Ty);
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001107 else if (Name == "cosh")
Chris Lattner7b550cc2009-11-06 04:27:31 +00001108 return ConstantFoldFP(cosh, V, Ty);
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001109 else if (Name == "cosf")
Chris Lattner7b550cc2009-11-06 04:27:31 +00001110 return ConstantFoldFP(cos, V, Ty);
Chris Lattnerc5f6a1f2007-08-08 06:55:43 +00001111 break;
1112 case 'e':
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001113 if (Name == "exp")
Chris Lattner7b550cc2009-11-06 04:27:31 +00001114 return ConstantFoldFP(exp, V, Ty);
Chris Lattnerc5f6a1f2007-08-08 06:55:43 +00001115 break;
1116 case 'f':
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001117 if (Name == "fabs")
Chris Lattner7b550cc2009-11-06 04:27:31 +00001118 return ConstantFoldFP(fabs, V, Ty);
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001119 else if (Name == "floor")
Chris Lattner7b550cc2009-11-06 04:27:31 +00001120 return ConstantFoldFP(floor, V, Ty);
Chris Lattnerc5f6a1f2007-08-08 06:55:43 +00001121 break;
1122 case 'l':
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001123 if (Name == "log" && V > 0)
Chris Lattner7b550cc2009-11-06 04:27:31 +00001124 return ConstantFoldFP(log, V, Ty);
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001125 else if (Name == "log10" && V > 0)
Chris Lattner7b550cc2009-11-06 04:27:31 +00001126 return ConstantFoldFP(log10, V, Ty);
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001127 else if (Name == "llvm.sqrt.f32" ||
1128 Name == "llvm.sqrt.f64") {
Chris Lattnerc5f6a1f2007-08-08 06:55:43 +00001129 if (V >= -0.0)
Chris Lattner7b550cc2009-11-06 04:27:31 +00001130 return ConstantFoldFP(sqrt, V, Ty);
Chris Lattnerc5f6a1f2007-08-08 06:55:43 +00001131 else // Undefined
Owen Andersona7235ea2009-07-31 20:28:14 +00001132 return Constant::getNullValue(Ty);
Chris Lattnerc5f6a1f2007-08-08 06:55:43 +00001133 }
1134 break;
1135 case 's':
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001136 if (Name == "sin")
Chris Lattner7b550cc2009-11-06 04:27:31 +00001137 return ConstantFoldFP(sin, V, Ty);
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001138 else if (Name == "sinh")
Chris Lattner7b550cc2009-11-06 04:27:31 +00001139 return ConstantFoldFP(sinh, V, Ty);
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001140 else if (Name == "sqrt" && V >= 0)
Chris Lattner7b550cc2009-11-06 04:27:31 +00001141 return ConstantFoldFP(sqrt, V, Ty);
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001142 else if (Name == "sqrtf" && V >= 0)
Chris Lattner7b550cc2009-11-06 04:27:31 +00001143 return ConstantFoldFP(sqrt, V, Ty);
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001144 else if (Name == "sinf")
Chris Lattner7b550cc2009-11-06 04:27:31 +00001145 return ConstantFoldFP(sin, V, Ty);
Chris Lattnerc5f6a1f2007-08-08 06:55:43 +00001146 break;
1147 case 't':
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001148 if (Name == "tan")
Chris Lattner7b550cc2009-11-06 04:27:31 +00001149 return ConstantFoldFP(tan, V, Ty);
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001150 else if (Name == "tanh")
Chris Lattner7b550cc2009-11-06 04:27:31 +00001151 return ConstantFoldFP(tanh, V, Ty);
Chris Lattnerc5f6a1f2007-08-08 06:55:43 +00001152 break;
1153 default:
1154 break;
John Criswellbd9d3702005-10-27 16:00:10 +00001155 }
Chris Lattner68a06032009-10-05 05:00:35 +00001156 return 0;
1157 }
1158
1159
1160 if (ConstantInt *Op = dyn_cast<ConstantInt>(Operands[0])) {
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001161 if (Name.startswith("llvm.bswap"))
Chris Lattner7b550cc2009-11-06 04:27:31 +00001162 return ConstantInt::get(F->getContext(), Op->getValue().byteSwap());
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001163 else if (Name.startswith("llvm.ctpop"))
Owen Andersoneed707b2009-07-24 23:12:02 +00001164 return ConstantInt::get(Ty, Op->getValue().countPopulation());
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001165 else if (Name.startswith("llvm.cttz"))
Owen Andersoneed707b2009-07-24 23:12:02 +00001166 return ConstantInt::get(Ty, Op->getValue().countTrailingZeros());
Daniel Dunbarf0443c12009-07-26 08:34:35 +00001167 else if (Name.startswith("llvm.ctlz"))
Owen Andersoneed707b2009-07-24 23:12:02 +00001168 return ConstantInt::get(Ty, Op->getValue().countLeadingZeros());
Chris Lattner68a06032009-10-05 05:00:35 +00001169 return 0;
John Criswellbd9d3702005-10-27 16:00:10 +00001170 }
Chris Lattner68a06032009-10-05 05:00:35 +00001171
Dan Gohman9ee71232010-02-17 00:54:58 +00001172 if (isa<UndefValue>(Operands[0])) {
1173 if (Name.startswith("llvm.bswap"))
1174 return Operands[0];
1175 return 0;
1176 }
1177
Chris Lattner68a06032009-10-05 05:00:35 +00001178 return 0;
1179 }
1180
1181 if (NumOperands == 2) {
John Criswellbd9d3702005-10-27 16:00:10 +00001182 if (ConstantFP *Op1 = dyn_cast<ConstantFP>(Operands[0])) {
Chris Lattnerd0806a12009-10-05 05:06:24 +00001183 if (!Ty->isFloatTy() && !Ty->isDoubleTy())
Dale Johannesen9ab7fb32007-10-02 17:43:59 +00001184 return 0;
Chris Lattnerd0806a12009-10-05 05:06:24 +00001185 double Op1V = Ty->isFloatTy() ?
1186 (double)Op1->getValueAPF().convertToFloat() :
Dale Johannesen43421b32007-09-06 18:13:44 +00001187 Op1->getValueAPF().convertToDouble();
John Criswellbd9d3702005-10-27 16:00:10 +00001188 if (ConstantFP *Op2 = dyn_cast<ConstantFP>(Operands[1])) {
Chris Lattnerd0806a12009-10-05 05:06:24 +00001189 if (Op2->getType() != Op1->getType())
1190 return 0;
1191
1192 double Op2V = Ty->isFloatTy() ?
Dale Johannesen43421b32007-09-06 18:13:44 +00001193 (double)Op2->getValueAPF().convertToFloat():
1194 Op2->getValueAPF().convertToDouble();
John Criswellbd9d3702005-10-27 16:00:10 +00001195
Chris Lattner68a06032009-10-05 05:00:35 +00001196 if (Name == "pow")
Chris Lattner7b550cc2009-11-06 04:27:31 +00001197 return ConstantFoldBinaryFP(pow, Op1V, Op2V, Ty);
Chris Lattner68a06032009-10-05 05:00:35 +00001198 if (Name == "fmod")
Chris Lattner7b550cc2009-11-06 04:27:31 +00001199 return ConstantFoldBinaryFP(fmod, Op1V, Op2V, Ty);
Chris Lattner68a06032009-10-05 05:00:35 +00001200 if (Name == "atan2")
Chris Lattner7b550cc2009-11-06 04:27:31 +00001201 return ConstantFoldBinaryFP(atan2, Op1V, Op2V, Ty);
Chris Lattnerb5282dc2007-01-15 06:27:37 +00001202 } else if (ConstantInt *Op2C = dyn_cast<ConstantInt>(Operands[1])) {
Chris Lattner68a06032009-10-05 05:00:35 +00001203 if (Name == "llvm.powi.f32")
Chris Lattner7b550cc2009-11-06 04:27:31 +00001204 return ConstantFP::get(F->getContext(),
1205 APFloat((float)std::pow((float)Op1V,
Chris Lattner02a260a2008-04-20 00:41:09 +00001206 (int)Op2C->getZExtValue())));
Chris Lattner68a06032009-10-05 05:00:35 +00001207 if (Name == "llvm.powi.f64")
Chris Lattner7b550cc2009-11-06 04:27:31 +00001208 return ConstantFP::get(F->getContext(),
1209 APFloat((double)std::pow((double)Op1V,
1210 (int)Op2C->getZExtValue())));
John Criswellbd9d3702005-10-27 16:00:10 +00001211 }
Chris Lattner68a06032009-10-05 05:00:35 +00001212 return 0;
John Criswellbd9d3702005-10-27 16:00:10 +00001213 }
Chris Lattnere65cd402009-10-05 05:26:04 +00001214
1215
1216 if (ConstantInt *Op1 = dyn_cast<ConstantInt>(Operands[0])) {
1217 if (ConstantInt *Op2 = dyn_cast<ConstantInt>(Operands[1])) {
1218 switch (F->getIntrinsicID()) {
1219 default: break;
1220 case Intrinsic::uadd_with_overflow: {
1221 Constant *Res = ConstantExpr::getAdd(Op1, Op2); // result.
1222 Constant *Ops[] = {
1223 Res, ConstantExpr::getICmp(CmpInst::ICMP_ULT, Res, Op1) // overflow.
1224 };
1225 return ConstantStruct::get(F->getContext(), Ops, 2, false);
1226 }
1227 case Intrinsic::usub_with_overflow: {
1228 Constant *Res = ConstantExpr::getSub(Op1, Op2); // result.
1229 Constant *Ops[] = {
1230 Res, ConstantExpr::getICmp(CmpInst::ICMP_UGT, Res, Op1) // overflow.
1231 };
1232 return ConstantStruct::get(F->getContext(), Ops, 2, false);
1233 }
Evan Phoenix1614e502009-10-05 22:53:52 +00001234 case Intrinsic::sadd_with_overflow: {
1235 Constant *Res = ConstantExpr::getAdd(Op1, Op2); // result.
1236 Constant *Overflow = ConstantExpr::getSelect(
1237 ConstantExpr::getICmp(CmpInst::ICMP_SGT,
1238 ConstantInt::get(Op1->getType(), 0), Op1),
1239 ConstantExpr::getICmp(CmpInst::ICMP_SGT, Res, Op2),
1240 ConstantExpr::getICmp(CmpInst::ICMP_SLT, Res, Op2)); // overflow.
1241
1242 Constant *Ops[] = { Res, Overflow };
1243 return ConstantStruct::get(F->getContext(), Ops, 2, false);
1244 }
1245 case Intrinsic::ssub_with_overflow: {
1246 Constant *Res = ConstantExpr::getSub(Op1, Op2); // result.
1247 Constant *Overflow = ConstantExpr::getSelect(
1248 ConstantExpr::getICmp(CmpInst::ICMP_SGT,
1249 ConstantInt::get(Op2->getType(), 0), Op2),
1250 ConstantExpr::getICmp(CmpInst::ICMP_SLT, Res, Op1),
1251 ConstantExpr::getICmp(CmpInst::ICMP_SGT, Res, Op1)); // overflow.
1252
1253 Constant *Ops[] = { Res, Overflow };
1254 return ConstantStruct::get(F->getContext(), Ops, 2, false);
1255 }
Chris Lattnere65cd402009-10-05 05:26:04 +00001256 }
1257 }
1258
1259 return 0;
1260 }
1261 return 0;
John Criswellbd9d3702005-10-27 16:00:10 +00001262 }
1263 return 0;
1264}
1265