blob: e8136ab77ff14f3c49e4ffae1e573b03297f8483 [file] [log] [blame]
Chris Lattner753a2b42010-01-05 07:32:13 +00001//===- InstCombineCalls.cpp -----------------------------------------------===//
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 implements the visitCall and visitInvoke functions.
11//
12//===----------------------------------------------------------------------===//
13
14#include "InstCombine.h"
Chris Lattner753a2b42010-01-05 07:32:13 +000015#include "llvm/Support/CallSite.h"
16#include "llvm/Target/TargetData.h"
17#include "llvm/Analysis/MemoryBuiltins.h"
Eric Christopher27ceaa12010-03-06 10:50:38 +000018#include "llvm/Transforms/Utils/BuildLibCalls.h"
Chris Lattner687140c2010-12-25 20:37:57 +000019#include "llvm/Transforms/Utils/Local.h"
Chris Lattner753a2b42010-01-05 07:32:13 +000020using namespace llvm;
21
22/// getPromotedType - Return the specified type promoted as it would be to pass
23/// though a va_arg area.
Chris Lattnerdb125cf2011-07-18 04:54:35 +000024static Type *getPromotedType(Type *Ty) {
25 if (IntegerType* ITy = dyn_cast<IntegerType>(Ty)) {
Chris Lattner753a2b42010-01-05 07:32:13 +000026 if (ITy->getBitWidth() < 32)
27 return Type::getInt32Ty(Ty->getContext());
28 }
29 return Ty;
30}
31
Chris Lattner753a2b42010-01-05 07:32:13 +000032
33Instruction *InstCombiner::SimplifyMemTransfer(MemIntrinsic *MI) {
Chris Lattner687140c2010-12-25 20:37:57 +000034 unsigned DstAlign = getKnownAlignment(MI->getArgOperand(0), TD);
35 unsigned SrcAlign = getKnownAlignment(MI->getArgOperand(1), TD);
Chris Lattner753a2b42010-01-05 07:32:13 +000036 unsigned MinAlign = std::min(DstAlign, SrcAlign);
37 unsigned CopyAlign = MI->getAlignment();
38
39 if (CopyAlign < MinAlign) {
Eric Christopher0c6a8f92010-02-03 00:21:58 +000040 MI->setAlignment(ConstantInt::get(MI->getAlignmentType(),
Chris Lattner753a2b42010-01-05 07:32:13 +000041 MinAlign, false));
42 return MI;
43 }
Eric Christopher0c6a8f92010-02-03 00:21:58 +000044
Chris Lattner753a2b42010-01-05 07:32:13 +000045 // If MemCpyInst length is 1/2/4/8 bytes then replace memcpy with
46 // load/store.
Gabor Greifbcda85c2010-06-24 13:54:33 +000047 ConstantInt *MemOpLength = dyn_cast<ConstantInt>(MI->getArgOperand(2));
Chris Lattner753a2b42010-01-05 07:32:13 +000048 if (MemOpLength == 0) return 0;
Eric Christopher0c6a8f92010-02-03 00:21:58 +000049
Chris Lattner753a2b42010-01-05 07:32:13 +000050 // Source and destination pointer types are always "i8*" for intrinsic. See
51 // if the size is something we can handle with a single primitive load/store.
52 // A single load+store correctly handles overlapping memory in the memmove
53 // case.
54 unsigned Size = MemOpLength->getZExtValue();
55 if (Size == 0) return MI; // Delete this mem transfer.
Eric Christopher0c6a8f92010-02-03 00:21:58 +000056
Chris Lattner753a2b42010-01-05 07:32:13 +000057 if (Size > 8 || (Size&(Size-1)))
58 return 0; // If not 1/2/4/8 bytes, exit.
Eric Christopher0c6a8f92010-02-03 00:21:58 +000059
Chris Lattner753a2b42010-01-05 07:32:13 +000060 // Use an integer load+store unless we can find something better.
Mon P Wang20adc9d2010-04-04 03:10:48 +000061 unsigned SrcAddrSp =
Gabor Greifbcda85c2010-06-24 13:54:33 +000062 cast<PointerType>(MI->getArgOperand(1)->getType())->getAddressSpace();
Gabor Greif4ec22582010-04-16 15:33:14 +000063 unsigned DstAddrSp =
Gabor Greifbcda85c2010-06-24 13:54:33 +000064 cast<PointerType>(MI->getArgOperand(0)->getType())->getAddressSpace();
Mon P Wang20adc9d2010-04-04 03:10:48 +000065
Chris Lattnerdb125cf2011-07-18 04:54:35 +000066 IntegerType* IntType = IntegerType::get(MI->getContext(), Size<<3);
Mon P Wang20adc9d2010-04-04 03:10:48 +000067 Type *NewSrcPtrTy = PointerType::get(IntType, SrcAddrSp);
68 Type *NewDstPtrTy = PointerType::get(IntType, DstAddrSp);
Eric Christopher0c6a8f92010-02-03 00:21:58 +000069
Chris Lattner753a2b42010-01-05 07:32:13 +000070 // Memcpy forces the use of i8* for the source and destination. That means
71 // that if you're using memcpy to move one double around, you'll get a cast
72 // from double* to i8*. We'd much rather use a double load+store rather than
73 // an i64 load+store, here because this improves the odds that the source or
74 // dest address will be promotable. See if we can find a better type than the
75 // integer datatype.
Gabor Greifcea7ac72010-06-24 12:58:35 +000076 Value *StrippedDest = MI->getArgOperand(0)->stripPointerCasts();
77 if (StrippedDest != MI->getArgOperand(0)) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000078 Type *SrcETy = cast<PointerType>(StrippedDest->getType())
Chris Lattner753a2b42010-01-05 07:32:13 +000079 ->getElementType();
80 if (TD && SrcETy->isSized() && TD->getTypeStoreSize(SrcETy) == Size) {
81 // The SrcETy might be something like {{{double}}} or [1 x double]. Rip
82 // down through these levels if so.
83 while (!SrcETy->isSingleValueType()) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000084 if (StructType *STy = dyn_cast<StructType>(SrcETy)) {
Chris Lattner753a2b42010-01-05 07:32:13 +000085 if (STy->getNumElements() == 1)
86 SrcETy = STy->getElementType(0);
87 else
88 break;
Chris Lattnerdb125cf2011-07-18 04:54:35 +000089 } else if (ArrayType *ATy = dyn_cast<ArrayType>(SrcETy)) {
Chris Lattner753a2b42010-01-05 07:32:13 +000090 if (ATy->getNumElements() == 1)
91 SrcETy = ATy->getElementType();
92 else
93 break;
94 } else
95 break;
96 }
Eric Christopher0c6a8f92010-02-03 00:21:58 +000097
Mon P Wang20adc9d2010-04-04 03:10:48 +000098 if (SrcETy->isSingleValueType()) {
99 NewSrcPtrTy = PointerType::get(SrcETy, SrcAddrSp);
100 NewDstPtrTy = PointerType::get(SrcETy, DstAddrSp);
101 }
Chris Lattner753a2b42010-01-05 07:32:13 +0000102 }
103 }
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000104
105
Chris Lattner753a2b42010-01-05 07:32:13 +0000106 // If the memcpy/memmove provides better alignment info than we can
107 // infer, use it.
108 SrcAlign = std::max(SrcAlign, CopyAlign);
109 DstAlign = std::max(DstAlign, CopyAlign);
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000110
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000111 Value *Src = Builder->CreateBitCast(MI->getArgOperand(1), NewSrcPtrTy);
112 Value *Dest = Builder->CreateBitCast(MI->getArgOperand(0), NewDstPtrTy);
Eli Friedman59f15912011-05-18 19:57:14 +0000113 LoadInst *L = Builder->CreateLoad(Src, MI->isVolatile());
114 L->setAlignment(SrcAlign);
115 StoreInst *S = Builder->CreateStore(L, Dest, MI->isVolatile());
116 S->setAlignment(DstAlign);
Chris Lattner753a2b42010-01-05 07:32:13 +0000117
118 // Set the size of the copy to 0, it will be deleted on the next iteration.
Gabor Greifa90c5c72010-06-28 16:50:57 +0000119 MI->setArgOperand(2, Constant::getNullValue(MemOpLength->getType()));
Chris Lattner753a2b42010-01-05 07:32:13 +0000120 return MI;
121}
122
123Instruction *InstCombiner::SimplifyMemSet(MemSetInst *MI) {
Chris Lattnerae47be12010-12-25 20:52:04 +0000124 unsigned Alignment = getKnownAlignment(MI->getDest(), TD);
Chris Lattner753a2b42010-01-05 07:32:13 +0000125 if (MI->getAlignment() < Alignment) {
126 MI->setAlignment(ConstantInt::get(MI->getAlignmentType(),
127 Alignment, false));
128 return MI;
129 }
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000130
Chris Lattner753a2b42010-01-05 07:32:13 +0000131 // Extract the length and alignment and fill if they are constant.
132 ConstantInt *LenC = dyn_cast<ConstantInt>(MI->getLength());
133 ConstantInt *FillC = dyn_cast<ConstantInt>(MI->getValue());
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000134 if (!LenC || !FillC || !FillC->getType()->isIntegerTy(8))
Chris Lattner753a2b42010-01-05 07:32:13 +0000135 return 0;
136 uint64_t Len = LenC->getZExtValue();
137 Alignment = MI->getAlignment();
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000138
Chris Lattner753a2b42010-01-05 07:32:13 +0000139 // If the length is zero, this is a no-op
140 if (Len == 0) return MI; // memset(d,c,0,a) -> noop
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000141
Chris Lattner753a2b42010-01-05 07:32:13 +0000142 // memset(s,c,n) -> store s, c (for n=1,2,4,8)
143 if (Len <= 8 && isPowerOf2_32((uint32_t)Len)) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000144 Type *ITy = IntegerType::get(MI->getContext(), Len*8); // n=1 -> i8.
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000145
Chris Lattner753a2b42010-01-05 07:32:13 +0000146 Value *Dest = MI->getDest();
Mon P Wang55fb9b02010-12-20 01:05:30 +0000147 unsigned DstAddrSp = cast<PointerType>(Dest->getType())->getAddressSpace();
148 Type *NewDstPtrTy = PointerType::get(ITy, DstAddrSp);
149 Dest = Builder->CreateBitCast(Dest, NewDstPtrTy);
Chris Lattner753a2b42010-01-05 07:32:13 +0000150
151 // Alignment 0 is identity for alignment 1 for memset, but not store.
152 if (Alignment == 0) Alignment = 1;
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000153
Chris Lattner753a2b42010-01-05 07:32:13 +0000154 // Extract the fill value and store.
155 uint64_t Fill = FillC->getZExtValue()*0x0101010101010101ULL;
Eli Friedman59f15912011-05-18 19:57:14 +0000156 StoreInst *S = Builder->CreateStore(ConstantInt::get(ITy, Fill), Dest,
157 MI->isVolatile());
158 S->setAlignment(Alignment);
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000159
Chris Lattner753a2b42010-01-05 07:32:13 +0000160 // Set the size of the copy to 0, it will be deleted on the next iteration.
161 MI->setLength(Constant::getNullValue(LenC->getType()));
162 return MI;
163 }
164
165 return 0;
166}
167
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000168/// visitCallInst - CallInst simplification. This mostly only handles folding
Chris Lattner753a2b42010-01-05 07:32:13 +0000169/// of intrinsic instructions. For normal calls, it allows visitCallSite to do
170/// the heavy lifting.
171///
172Instruction *InstCombiner::visitCallInst(CallInst &CI) {
173 if (isFreeCall(&CI))
174 return visitFree(CI);
Duncan Sands1d9b9732010-05-27 19:09:06 +0000175 if (isMalloc(&CI))
176 return visitMalloc(CI);
Chris Lattner753a2b42010-01-05 07:32:13 +0000177
178 // If the caller function is nounwind, mark the call as nounwind, even if the
179 // callee isn't.
180 if (CI.getParent()->getParent()->doesNotThrow() &&
181 !CI.doesNotThrow()) {
182 CI.setDoesNotThrow();
183 return &CI;
184 }
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000185
Chris Lattner753a2b42010-01-05 07:32:13 +0000186 IntrinsicInst *II = dyn_cast<IntrinsicInst>(&CI);
187 if (!II) return visitCallSite(&CI);
Gabor Greifcea7ac72010-06-24 12:58:35 +0000188
Chris Lattner753a2b42010-01-05 07:32:13 +0000189 // Intrinsics cannot occur in an invoke, so handle them here instead of in
190 // visitCallSite.
191 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(II)) {
192 bool Changed = false;
193
194 // memmove/cpy/set of zero bytes is a noop.
195 if (Constant *NumBytes = dyn_cast<Constant>(MI->getLength())) {
Chris Lattner6eff7512010-10-01 05:51:02 +0000196 if (NumBytes->isNullValue())
197 return EraseInstFromFunction(CI);
Chris Lattner753a2b42010-01-05 07:32:13 +0000198
199 if (ConstantInt *CI = dyn_cast<ConstantInt>(NumBytes))
200 if (CI->getZExtValue() == 1) {
201 // Replace the instruction with just byte operations. We would
202 // transform other cases to loads/stores, but we don't know if
203 // alignment is sufficient.
204 }
205 }
Chris Lattner6eff7512010-10-01 05:51:02 +0000206
207 // No other transformations apply to volatile transfers.
208 if (MI->isVolatile())
209 return 0;
Chris Lattner753a2b42010-01-05 07:32:13 +0000210
211 // If we have a memmove and the source operation is a constant global,
212 // then the source and dest pointers can't alias, so we can change this
213 // into a call to memcpy.
214 if (MemMoveInst *MMI = dyn_cast<MemMoveInst>(MI)) {
215 if (GlobalVariable *GVSrc = dyn_cast<GlobalVariable>(MMI->getSource()))
216 if (GVSrc->isConstant()) {
Eric Christopher551754c2010-04-16 23:37:20 +0000217 Module *M = CI.getParent()->getParent()->getParent();
Chris Lattner753a2b42010-01-05 07:32:13 +0000218 Intrinsic::ID MemCpyID = Intrinsic::memcpy;
Jay Foad5fdd6c82011-07-12 14:06:48 +0000219 Type *Tys[3] = { CI.getArgOperand(0)->getType(),
220 CI.getArgOperand(1)->getType(),
221 CI.getArgOperand(2)->getType() };
Benjamin Kramereb9a85f2011-07-14 17:45:39 +0000222 CI.setCalledFunction(Intrinsic::getDeclaration(M, MemCpyID, Tys));
Chris Lattner753a2b42010-01-05 07:32:13 +0000223 Changed = true;
224 }
225 }
226
227 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(MI)) {
228 // memmove(x,x,size) -> noop.
229 if (MTI->getSource() == MTI->getDest())
230 return EraseInstFromFunction(CI);
Eric Christopher551754c2010-04-16 23:37:20 +0000231 }
Chris Lattner753a2b42010-01-05 07:32:13 +0000232
Eric Christopher551754c2010-04-16 23:37:20 +0000233 // If we can determine a pointer alignment that is bigger than currently
234 // set, update the alignment.
235 if (isa<MemTransferInst>(MI)) {
236 if (Instruction *I = SimplifyMemTransfer(MI))
Chris Lattner753a2b42010-01-05 07:32:13 +0000237 return I;
238 } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(MI)) {
239 if (Instruction *I = SimplifyMemSet(MSI))
240 return I;
241 }
Gabor Greifc310fcc2010-06-24 13:42:49 +0000242
Chris Lattner753a2b42010-01-05 07:32:13 +0000243 if (Changed) return II;
244 }
Eric Christopher551754c2010-04-16 23:37:20 +0000245
Chris Lattner753a2b42010-01-05 07:32:13 +0000246 switch (II->getIntrinsicID()) {
247 default: break;
Eric Christopher415326b2010-02-09 21:24:27 +0000248 case Intrinsic::objectsize: {
Eric Christopher26d0e892010-02-11 01:48:54 +0000249 // We need target data for just about everything so depend on it.
Eric Christopher415326b2010-02-09 21:24:27 +0000250 if (!TD) break;
Eric Christopher26d0e892010-02-11 01:48:54 +0000251
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000252 Type *ReturnTy = CI.getType();
Benjamin Kramer783a5c22011-01-06 13:07:49 +0000253 uint64_t DontKnow = II->getArgOperand(1) == Builder->getTrue() ? 0 : -1ULL;
Evan Chenga8623262010-03-05 20:47:23 +0000254
Eric Christopher26d0e892010-02-11 01:48:54 +0000255 // Get to the real allocated thing and offset as fast as possible.
Gabor Greifcea7ac72010-06-24 12:58:35 +0000256 Value *Op1 = II->getArgOperand(0)->stripPointerCasts();
Benjamin Kramer783a5c22011-01-06 13:07:49 +0000257
258 uint64_t Offset = 0;
259 uint64_t Size = -1ULL;
260
261 // Try to look through constant GEPs.
262 if (GEPOperator *GEP = dyn_cast<GEPOperator>(Op1)) {
263 if (!GEP->hasAllConstantIndices()) break;
264
265 // Get the current byte offset into the thing. Use the original
266 // operand in case we're looking through a bitcast.
267 SmallVector<Value*, 8> Ops(GEP->idx_begin(), GEP->idx_end());
Jay Foad8fbbb392011-07-19 14:01:37 +0000268 Offset = TD->getIndexedOffset(GEP->getPointerOperandType(), Ops);
Benjamin Kramer783a5c22011-01-06 13:07:49 +0000269
270 Op1 = GEP->getPointerOperand()->stripPointerCasts();
271
272 // Make sure we're not a constant offset from an external
273 // global.
274 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Op1))
275 if (!GV->hasDefinitiveInitializer()) break;
276 }
277
Eric Christopher26d0e892010-02-11 01:48:54 +0000278 // If we've stripped down to a single global variable that we
279 // can know the size of then just return that.
Eric Christopher415326b2010-02-09 21:24:27 +0000280 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Op1)) {
281 if (GV->hasDefinitiveInitializer()) {
282 Constant *C = GV->getInitializer();
Benjamin Kramer783a5c22011-01-06 13:07:49 +0000283 Size = TD->getTypeAllocSize(C->getType());
Eric Christopher415326b2010-02-09 21:24:27 +0000284 } else {
Evan Chenga8623262010-03-05 20:47:23 +0000285 // Can't determine size of the GV.
Benjamin Kramer783a5c22011-01-06 13:07:49 +0000286 Constant *RetVal = ConstantInt::get(ReturnTy, DontKnow);
Eric Christopher415326b2010-02-09 21:24:27 +0000287 return ReplaceInstUsesWith(CI, RetVal);
288 }
Evan Chenga8623262010-03-05 20:47:23 +0000289 } else if (AllocaInst *AI = dyn_cast<AllocaInst>(Op1)) {
290 // Get alloca size.
291 if (AI->getAllocatedType()->isSized()) {
Benjamin Kramer783a5c22011-01-06 13:07:49 +0000292 Size = TD->getTypeAllocSize(AI->getAllocatedType());
Evan Chenga8623262010-03-05 20:47:23 +0000293 if (AI->isArrayAllocation()) {
294 const ConstantInt *C = dyn_cast<ConstantInt>(AI->getArraySize());
295 if (!C) break;
Benjamin Kramer783a5c22011-01-06 13:07:49 +0000296 Size *= C->getZExtValue();
Evan Chenga8623262010-03-05 20:47:23 +0000297 }
Evan Chenga8623262010-03-05 20:47:23 +0000298 }
Evan Cheng687fed32010-03-08 22:54:36 +0000299 } else if (CallInst *MI = extractMallocCall(Op1)) {
Benjamin Kramer240d42d2011-01-06 13:11:05 +0000300 // Get allocation size.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000301 Type* MallocType = getMallocAllocatedType(MI);
Benjamin Kramer783a5c22011-01-06 13:07:49 +0000302 if (MallocType && MallocType->isSized())
303 if (Value *NElems = getMallocArraySize(MI, TD, true))
Evan Cheng687fed32010-03-08 22:54:36 +0000304 if (ConstantInt *NElements = dyn_cast<ConstantInt>(NElems))
Benjamin Kramer783a5c22011-01-06 13:07:49 +0000305 Size = NElements->getZExtValue() * TD->getTypeAllocSize(MallocType);
306 }
Evan Chenga8623262010-03-05 20:47:23 +0000307
308 // Do not return "I don't know" here. Later optimization passes could
309 // make it possible to evaluate objectsize to a constant.
Benjamin Kramer783a5c22011-01-06 13:07:49 +0000310 if (Size == -1ULL)
311 break;
312
313 if (Size < Offset) {
314 // Out of bound reference? Negative index normalized to large
315 // index? Just return "I don't know".
316 return ReplaceInstUsesWith(CI, ConstantInt::get(ReturnTy, DontKnow));
317 }
318 return ReplaceInstUsesWith(CI, ConstantInt::get(ReturnTy, Size-Offset));
Eric Christopher415326b2010-02-09 21:24:27 +0000319 }
Chris Lattner753a2b42010-01-05 07:32:13 +0000320 case Intrinsic::bswap:
321 // bswap(bswap(x)) -> x
Gabor Greifcea7ac72010-06-24 12:58:35 +0000322 if (IntrinsicInst *Operand = dyn_cast<IntrinsicInst>(II->getArgOperand(0)))
Chris Lattner753a2b42010-01-05 07:32:13 +0000323 if (Operand->getIntrinsicID() == Intrinsic::bswap)
Gabor Greifcea7ac72010-06-24 12:58:35 +0000324 return ReplaceInstUsesWith(CI, Operand->getArgOperand(0));
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000325
Chris Lattner753a2b42010-01-05 07:32:13 +0000326 // bswap(trunc(bswap(x))) -> trunc(lshr(x, c))
Gabor Greifcea7ac72010-06-24 12:58:35 +0000327 if (TruncInst *TI = dyn_cast<TruncInst>(II->getArgOperand(0))) {
Chris Lattner753a2b42010-01-05 07:32:13 +0000328 if (IntrinsicInst *Operand = dyn_cast<IntrinsicInst>(TI->getOperand(0)))
329 if (Operand->getIntrinsicID() == Intrinsic::bswap) {
330 unsigned C = Operand->getType()->getPrimitiveSizeInBits() -
331 TI->getType()->getPrimitiveSizeInBits();
332 Value *CV = ConstantInt::get(Operand->getType(), C);
Gabor Greifcea7ac72010-06-24 12:58:35 +0000333 Value *V = Builder->CreateLShr(Operand->getArgOperand(0), CV);
Chris Lattner753a2b42010-01-05 07:32:13 +0000334 return new TruncInst(V, TI->getType());
335 }
336 }
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000337
Chris Lattner753a2b42010-01-05 07:32:13 +0000338 break;
339 case Intrinsic::powi:
Gabor Greifcea7ac72010-06-24 12:58:35 +0000340 if (ConstantInt *Power = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
Chris Lattner753a2b42010-01-05 07:32:13 +0000341 // powi(x, 0) -> 1.0
342 if (Power->isZero())
343 return ReplaceInstUsesWith(CI, ConstantFP::get(CI.getType(), 1.0));
344 // powi(x, 1) -> x
345 if (Power->isOne())
Gabor Greifcea7ac72010-06-24 12:58:35 +0000346 return ReplaceInstUsesWith(CI, II->getArgOperand(0));
Chris Lattner753a2b42010-01-05 07:32:13 +0000347 // powi(x, -1) -> 1/x
348 if (Power->isAllOnesValue())
349 return BinaryOperator::CreateFDiv(ConstantFP::get(CI.getType(), 1.0),
Gabor Greifcea7ac72010-06-24 12:58:35 +0000350 II->getArgOperand(0));
Chris Lattner753a2b42010-01-05 07:32:13 +0000351 }
352 break;
353 case Intrinsic::cttz: {
354 // If all bits below the first known one are known zero,
355 // this value is constant.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000356 IntegerType *IT = dyn_cast<IntegerType>(II->getArgOperand(0)->getType());
Owen Andersonf1ac4652011-07-01 21:52:38 +0000357 // FIXME: Try to simplify vectors of integers.
358 if (!IT) break;
Chris Lattner753a2b42010-01-05 07:32:13 +0000359 uint32_t BitWidth = IT->getBitWidth();
360 APInt KnownZero(BitWidth, 0);
361 APInt KnownOne(BitWidth, 0);
Gabor Greifcea7ac72010-06-24 12:58:35 +0000362 ComputeMaskedBits(II->getArgOperand(0), APInt::getAllOnesValue(BitWidth),
Chris Lattner753a2b42010-01-05 07:32:13 +0000363 KnownZero, KnownOne);
364 unsigned TrailingZeros = KnownOne.countTrailingZeros();
365 APInt Mask(APInt::getLowBitsSet(BitWidth, TrailingZeros));
366 if ((Mask & KnownZero) == Mask)
367 return ReplaceInstUsesWith(CI, ConstantInt::get(IT,
368 APInt(BitWidth, TrailingZeros)));
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000369
Chris Lattner753a2b42010-01-05 07:32:13 +0000370 }
371 break;
372 case Intrinsic::ctlz: {
373 // If all bits above the first known one are known zero,
374 // this value is constant.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000375 IntegerType *IT = dyn_cast<IntegerType>(II->getArgOperand(0)->getType());
Owen Andersonf1ac4652011-07-01 21:52:38 +0000376 // FIXME: Try to simplify vectors of integers.
377 if (!IT) break;
Chris Lattner753a2b42010-01-05 07:32:13 +0000378 uint32_t BitWidth = IT->getBitWidth();
379 APInt KnownZero(BitWidth, 0);
380 APInt KnownOne(BitWidth, 0);
Gabor Greifcea7ac72010-06-24 12:58:35 +0000381 ComputeMaskedBits(II->getArgOperand(0), APInt::getAllOnesValue(BitWidth),
Chris Lattner753a2b42010-01-05 07:32:13 +0000382 KnownZero, KnownOne);
383 unsigned LeadingZeros = KnownOne.countLeadingZeros();
384 APInt Mask(APInt::getHighBitsSet(BitWidth, LeadingZeros));
385 if ((Mask & KnownZero) == Mask)
386 return ReplaceInstUsesWith(CI, ConstantInt::get(IT,
387 APInt(BitWidth, LeadingZeros)));
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000388
Chris Lattner753a2b42010-01-05 07:32:13 +0000389 }
390 break;
391 case Intrinsic::uadd_with_overflow: {
Gabor Greifcea7ac72010-06-24 12:58:35 +0000392 Value *LHS = II->getArgOperand(0), *RHS = II->getArgOperand(1);
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000393 IntegerType *IT = cast<IntegerType>(II->getArgOperand(0)->getType());
Chris Lattner753a2b42010-01-05 07:32:13 +0000394 uint32_t BitWidth = IT->getBitWidth();
395 APInt Mask = APInt::getSignBit(BitWidth);
396 APInt LHSKnownZero(BitWidth, 0);
397 APInt LHSKnownOne(BitWidth, 0);
398 ComputeMaskedBits(LHS, Mask, LHSKnownZero, LHSKnownOne);
399 bool LHSKnownNegative = LHSKnownOne[BitWidth - 1];
400 bool LHSKnownPositive = LHSKnownZero[BitWidth - 1];
401
402 if (LHSKnownNegative || LHSKnownPositive) {
403 APInt RHSKnownZero(BitWidth, 0);
404 APInt RHSKnownOne(BitWidth, 0);
405 ComputeMaskedBits(RHS, Mask, RHSKnownZero, RHSKnownOne);
406 bool RHSKnownNegative = RHSKnownOne[BitWidth - 1];
407 bool RHSKnownPositive = RHSKnownZero[BitWidth - 1];
408 if (LHSKnownNegative && RHSKnownNegative) {
409 // The sign bit is set in both cases: this MUST overflow.
410 // Create a simple add instruction, and insert it into the struct.
Eli Friedman59f15912011-05-18 19:57:14 +0000411 Value *Add = Builder->CreateAdd(LHS, RHS);
412 Add->takeName(&CI);
Chris Lattner753a2b42010-01-05 07:32:13 +0000413 Constant *V[] = {
Eli Friedman59f15912011-05-18 19:57:14 +0000414 UndefValue::get(LHS->getType()),
415 ConstantInt::getTrue(II->getContext())
Chris Lattner753a2b42010-01-05 07:32:13 +0000416 };
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000417 StructType *ST = cast<StructType>(II->getType());
Chris Lattnerb065b062011-06-20 04:01:31 +0000418 Constant *Struct = ConstantStruct::get(ST, V);
Chris Lattner753a2b42010-01-05 07:32:13 +0000419 return InsertValueInst::Create(Struct, Add, 0);
420 }
Eli Friedman59f15912011-05-18 19:57:14 +0000421
Chris Lattner753a2b42010-01-05 07:32:13 +0000422 if (LHSKnownPositive && RHSKnownPositive) {
423 // The sign bit is clear in both cases: this CANNOT overflow.
424 // Create a simple add instruction, and insert it into the struct.
Eli Friedman59f15912011-05-18 19:57:14 +0000425 Value *Add = Builder->CreateNUWAdd(LHS, RHS);
426 Add->takeName(&CI);
Chris Lattner753a2b42010-01-05 07:32:13 +0000427 Constant *V[] = {
428 UndefValue::get(LHS->getType()),
429 ConstantInt::getFalse(II->getContext())
430 };
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000431 StructType *ST = cast<StructType>(II->getType());
Chris Lattnerb065b062011-06-20 04:01:31 +0000432 Constant *Struct = ConstantStruct::get(ST, V);
Chris Lattner753a2b42010-01-05 07:32:13 +0000433 return InsertValueInst::Create(Struct, Add, 0);
434 }
435 }
436 }
437 // FALL THROUGH uadd into sadd
438 case Intrinsic::sadd_with_overflow:
439 // Canonicalize constants into the RHS.
Gabor Greifa90c5c72010-06-28 16:50:57 +0000440 if (isa<Constant>(II->getArgOperand(0)) &&
441 !isa<Constant>(II->getArgOperand(1))) {
442 Value *LHS = II->getArgOperand(0);
443 II->setArgOperand(0, II->getArgOperand(1));
444 II->setArgOperand(1, LHS);
Chris Lattner753a2b42010-01-05 07:32:13 +0000445 return II;
446 }
447
448 // X + undef -> undef
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000449 if (isa<UndefValue>(II->getArgOperand(1)))
Chris Lattner753a2b42010-01-05 07:32:13 +0000450 return ReplaceInstUsesWith(CI, UndefValue::get(II->getType()));
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000451
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000452 if (ConstantInt *RHS = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
Chris Lattner753a2b42010-01-05 07:32:13 +0000453 // X + 0 -> {X, false}
454 if (RHS->isZero()) {
455 Constant *V[] = {
Eli Friedman4fffb342010-08-09 20:49:43 +0000456 UndefValue::get(II->getArgOperand(0)->getType()),
Chris Lattner753a2b42010-01-05 07:32:13 +0000457 ConstantInt::getFalse(II->getContext())
458 };
Chris Lattnerb065b062011-06-20 04:01:31 +0000459 Constant *Struct =
460 ConstantStruct::get(cast<StructType>(II->getType()), V);
Gabor Greifcea7ac72010-06-24 12:58:35 +0000461 return InsertValueInst::Create(Struct, II->getArgOperand(0), 0);
Chris Lattner753a2b42010-01-05 07:32:13 +0000462 }
463 }
464 break;
465 case Intrinsic::usub_with_overflow:
466 case Intrinsic::ssub_with_overflow:
467 // undef - X -> undef
468 // X - undef -> undef
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000469 if (isa<UndefValue>(II->getArgOperand(0)) ||
470 isa<UndefValue>(II->getArgOperand(1)))
Chris Lattner753a2b42010-01-05 07:32:13 +0000471 return ReplaceInstUsesWith(CI, UndefValue::get(II->getType()));
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000472
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000473 if (ConstantInt *RHS = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
Chris Lattner753a2b42010-01-05 07:32:13 +0000474 // X - 0 -> {X, false}
475 if (RHS->isZero()) {
476 Constant *V[] = {
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000477 UndefValue::get(II->getArgOperand(0)->getType()),
Chris Lattner753a2b42010-01-05 07:32:13 +0000478 ConstantInt::getFalse(II->getContext())
479 };
Chris Lattnerb065b062011-06-20 04:01:31 +0000480 Constant *Struct =
481 ConstantStruct::get(cast<StructType>(II->getType()), V);
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000482 return InsertValueInst::Create(Struct, II->getArgOperand(0), 0);
Chris Lattner753a2b42010-01-05 07:32:13 +0000483 }
484 }
485 break;
Benjamin Kramer6b96fe72011-03-10 18:40:14 +0000486 case Intrinsic::umul_with_overflow: {
487 Value *LHS = II->getArgOperand(0), *RHS = II->getArgOperand(1);
488 unsigned BitWidth = cast<IntegerType>(LHS->getType())->getBitWidth();
489 APInt Mask = APInt::getAllOnesValue(BitWidth);
490
491 APInt LHSKnownZero(BitWidth, 0);
492 APInt LHSKnownOne(BitWidth, 0);
493 ComputeMaskedBits(LHS, Mask, LHSKnownZero, LHSKnownOne);
494 APInt RHSKnownZero(BitWidth, 0);
495 APInt RHSKnownOne(BitWidth, 0);
496 ComputeMaskedBits(RHS, Mask, RHSKnownZero, RHSKnownOne);
497
Benjamin Kramerd655e6e2011-03-27 15:04:38 +0000498 // Get the largest possible values for each operand.
499 APInt LHSMax = ~LHSKnownZero;
500 APInt RHSMax = ~RHSKnownZero;
Benjamin Kramer6b96fe72011-03-10 18:40:14 +0000501
502 // If multiplying the maximum values does not overflow then we can turn
503 // this into a plain NUW mul.
Benjamin Kramerd655e6e2011-03-27 15:04:38 +0000504 bool Overflow;
505 LHSMax.umul_ov(RHSMax, Overflow);
506 if (!Overflow) {
Benjamin Kramer6b96fe72011-03-10 18:40:14 +0000507 Value *Mul = Builder->CreateNUWMul(LHS, RHS, "umul_with_overflow");
508 Constant *V[] = {
509 UndefValue::get(LHS->getType()),
510 Builder->getFalse()
511 };
Chris Lattnerb065b062011-06-20 04:01:31 +0000512 Constant *Struct = ConstantStruct::get(cast<StructType>(II->getType()),V);
Benjamin Kramer6b96fe72011-03-10 18:40:14 +0000513 return InsertValueInst::Create(Struct, Mul, 0);
514 }
515 } // FALL THROUGH
Chris Lattner753a2b42010-01-05 07:32:13 +0000516 case Intrinsic::smul_with_overflow:
517 // Canonicalize constants into the RHS.
Gabor Greifa90c5c72010-06-28 16:50:57 +0000518 if (isa<Constant>(II->getArgOperand(0)) &&
519 !isa<Constant>(II->getArgOperand(1))) {
520 Value *LHS = II->getArgOperand(0);
521 II->setArgOperand(0, II->getArgOperand(1));
522 II->setArgOperand(1, LHS);
Chris Lattner753a2b42010-01-05 07:32:13 +0000523 return II;
524 }
525
526 // X * undef -> undef
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000527 if (isa<UndefValue>(II->getArgOperand(1)))
Chris Lattner753a2b42010-01-05 07:32:13 +0000528 return ReplaceInstUsesWith(CI, UndefValue::get(II->getType()));
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000529
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000530 if (ConstantInt *RHSI = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
Chris Lattner753a2b42010-01-05 07:32:13 +0000531 // X*0 -> {0, false}
532 if (RHSI->isZero())
533 return ReplaceInstUsesWith(CI, Constant::getNullValue(II->getType()));
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000534
Chris Lattner753a2b42010-01-05 07:32:13 +0000535 // X * 1 -> {X, false}
536 if (RHSI->equalsInt(1)) {
537 Constant *V[] = {
Gabor Greifcea7ac72010-06-24 12:58:35 +0000538 UndefValue::get(II->getArgOperand(0)->getType()),
Chris Lattner753a2b42010-01-05 07:32:13 +0000539 ConstantInt::getFalse(II->getContext())
540 };
Chris Lattnerb065b062011-06-20 04:01:31 +0000541 Constant *Struct =
542 ConstantStruct::get(cast<StructType>(II->getType()), V);
Gabor Greifcea7ac72010-06-24 12:58:35 +0000543 return InsertValueInst::Create(Struct, II->getArgOperand(0), 0);
Chris Lattner753a2b42010-01-05 07:32:13 +0000544 }
545 }
546 break;
547 case Intrinsic::ppc_altivec_lvx:
548 case Intrinsic::ppc_altivec_lvxl:
Bill Wendlingf93f7b22011-04-13 00:36:11 +0000549 // Turn PPC lvx -> load if the pointer is known aligned.
Chris Lattner687140c2010-12-25 20:37:57 +0000550 if (getOrEnforceKnownAlignment(II->getArgOperand(0), 16, TD) >= 16) {
Gabor Greifcea7ac72010-06-24 12:58:35 +0000551 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(0),
Chris Lattner753a2b42010-01-05 07:32:13 +0000552 PointerType::getUnqual(II->getType()));
553 return new LoadInst(Ptr);
554 }
555 break;
556 case Intrinsic::ppc_altivec_stvx:
557 case Intrinsic::ppc_altivec_stvxl:
558 // Turn stvx -> store if the pointer is known aligned.
Chris Lattner687140c2010-12-25 20:37:57 +0000559 if (getOrEnforceKnownAlignment(II->getArgOperand(1), 16, TD) >= 16) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000560 Type *OpPtrTy =
Gabor Greif2f1ab742010-06-24 15:51:11 +0000561 PointerType::getUnqual(II->getArgOperand(0)->getType());
562 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(1), OpPtrTy);
563 return new StoreInst(II->getArgOperand(0), Ptr);
Chris Lattner753a2b42010-01-05 07:32:13 +0000564 }
565 break;
566 case Intrinsic::x86_sse_storeu_ps:
567 case Intrinsic::x86_sse2_storeu_pd:
568 case Intrinsic::x86_sse2_storeu_dq:
569 // Turn X86 storeu -> store if the pointer is known aligned.
Chris Lattner687140c2010-12-25 20:37:57 +0000570 if (getOrEnforceKnownAlignment(II->getArgOperand(0), 16, TD) >= 16) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000571 Type *OpPtrTy =
Gabor Greif2f1ab742010-06-24 15:51:11 +0000572 PointerType::getUnqual(II->getArgOperand(1)->getType());
573 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(0), OpPtrTy);
574 return new StoreInst(II->getArgOperand(1), Ptr);
Chris Lattner753a2b42010-01-05 07:32:13 +0000575 }
576 break;
Chandler Carruth9cc9f502011-01-10 07:19:37 +0000577
578 case Intrinsic::x86_sse_cvtss2si:
579 case Intrinsic::x86_sse_cvtss2si64:
580 case Intrinsic::x86_sse_cvttss2si:
581 case Intrinsic::x86_sse_cvttss2si64:
582 case Intrinsic::x86_sse2_cvtsd2si:
583 case Intrinsic::x86_sse2_cvtsd2si64:
584 case Intrinsic::x86_sse2_cvttsd2si:
585 case Intrinsic::x86_sse2_cvttsd2si64: {
586 // These intrinsics only demand the 0th element of their input vectors. If
Chris Lattner753a2b42010-01-05 07:32:13 +0000587 // we can simplify the input based on that, do so now.
588 unsigned VWidth =
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000589 cast<VectorType>(II->getArgOperand(0)->getType())->getNumElements();
Chris Lattner753a2b42010-01-05 07:32:13 +0000590 APInt DemandedElts(VWidth, 1);
591 APInt UndefElts(VWidth, 0);
Gabor Greifa3997812010-07-22 10:37:47 +0000592 if (Value *V = SimplifyDemandedVectorElts(II->getArgOperand(0),
593 DemandedElts, UndefElts)) {
Gabor Greifa90c5c72010-06-28 16:50:57 +0000594 II->setArgOperand(0, V);
Chris Lattner753a2b42010-01-05 07:32:13 +0000595 return II;
596 }
597 break;
598 }
Chandler Carruth9cc9f502011-01-10 07:19:37 +0000599
Stuart Hastingsca1ef482011-05-17 22:13:31 +0000600
601 case Intrinsic::x86_sse41_pmovsxbw:
602 case Intrinsic::x86_sse41_pmovsxwd:
603 case Intrinsic::x86_sse41_pmovsxdq:
604 case Intrinsic::x86_sse41_pmovzxbw:
605 case Intrinsic::x86_sse41_pmovzxwd:
606 case Intrinsic::x86_sse41_pmovzxdq: {
Evan Chengaaa7f492011-05-19 18:18:39 +0000607 // pmov{s|z}x ignores the upper half of their input vectors.
Stuart Hastingsca1ef482011-05-17 22:13:31 +0000608 unsigned VWidth =
609 cast<VectorType>(II->getArgOperand(0)->getType())->getNumElements();
610 unsigned LowHalfElts = VWidth / 2;
Stuart Hastingsd1166112011-05-18 15:54:26 +0000611 APInt InputDemandedElts(APInt::getBitsSet(VWidth, 0, LowHalfElts));
Stuart Hastingsca1ef482011-05-17 22:13:31 +0000612 APInt UndefElts(VWidth, 0);
613 if (Value *TmpV = SimplifyDemandedVectorElts(II->getArgOperand(0),
614 InputDemandedElts,
615 UndefElts)) {
616 II->setArgOperand(0, TmpV);
617 return II;
618 }
619 break;
620 }
621
Chris Lattner753a2b42010-01-05 07:32:13 +0000622 case Intrinsic::ppc_altivec_vperm:
623 // Turn vperm(V1,V2,mask) -> shuffle(V1,V2,mask) if mask is a constant.
Gabor Greifcea7ac72010-06-24 12:58:35 +0000624 if (ConstantVector *Mask = dyn_cast<ConstantVector>(II->getArgOperand(2))) {
Chris Lattner753a2b42010-01-05 07:32:13 +0000625 assert(Mask->getNumOperands() == 16 && "Bad type for intrinsic!");
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000626
Chris Lattner753a2b42010-01-05 07:32:13 +0000627 // Check that all of the elements are integer constants or undefs.
628 bool AllEltsOk = true;
629 for (unsigned i = 0; i != 16; ++i) {
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000630 if (!isa<ConstantInt>(Mask->getOperand(i)) &&
Chris Lattner753a2b42010-01-05 07:32:13 +0000631 !isa<UndefValue>(Mask->getOperand(i))) {
632 AllEltsOk = false;
633 break;
634 }
635 }
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000636
Chris Lattner753a2b42010-01-05 07:32:13 +0000637 if (AllEltsOk) {
638 // Cast the input vectors to byte vectors.
Gabor Greifa3997812010-07-22 10:37:47 +0000639 Value *Op0 = Builder->CreateBitCast(II->getArgOperand(0),
640 Mask->getType());
641 Value *Op1 = Builder->CreateBitCast(II->getArgOperand(1),
642 Mask->getType());
Chris Lattner753a2b42010-01-05 07:32:13 +0000643 Value *Result = UndefValue::get(Op0->getType());
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000644
Chris Lattner753a2b42010-01-05 07:32:13 +0000645 // Only extract each element once.
646 Value *ExtractedElts[32];
647 memset(ExtractedElts, 0, sizeof(ExtractedElts));
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000648
Chris Lattner753a2b42010-01-05 07:32:13 +0000649 for (unsigned i = 0; i != 16; ++i) {
650 if (isa<UndefValue>(Mask->getOperand(i)))
651 continue;
652 unsigned Idx=cast<ConstantInt>(Mask->getOperand(i))->getZExtValue();
653 Idx &= 31; // Match the hardware behavior.
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000654
Chris Lattner753a2b42010-01-05 07:32:13 +0000655 if (ExtractedElts[Idx] == 0) {
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000656 ExtractedElts[Idx] =
Benjamin Kramera9390a42011-09-27 20:39:19 +0000657 Builder->CreateExtractElement(Idx < 16 ? Op0 : Op1,
658 Builder->getInt32(Idx&15));
Chris Lattner753a2b42010-01-05 07:32:13 +0000659 }
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000660
Chris Lattner753a2b42010-01-05 07:32:13 +0000661 // Insert this value into the result vector.
662 Result = Builder->CreateInsertElement(Result, ExtractedElts[Idx],
Benjamin Kramera9390a42011-09-27 20:39:19 +0000663 Builder->getInt32(i));
Chris Lattner753a2b42010-01-05 07:32:13 +0000664 }
665 return CastInst::Create(Instruction::BitCast, Result, CI.getType());
666 }
667 }
668 break;
669
Bob Wilson364f17c2010-10-22 21:41:48 +0000670 case Intrinsic::arm_neon_vld1:
671 case Intrinsic::arm_neon_vld2:
672 case Intrinsic::arm_neon_vld3:
673 case Intrinsic::arm_neon_vld4:
674 case Intrinsic::arm_neon_vld2lane:
675 case Intrinsic::arm_neon_vld3lane:
676 case Intrinsic::arm_neon_vld4lane:
677 case Intrinsic::arm_neon_vst1:
678 case Intrinsic::arm_neon_vst2:
679 case Intrinsic::arm_neon_vst3:
680 case Intrinsic::arm_neon_vst4:
681 case Intrinsic::arm_neon_vst2lane:
682 case Intrinsic::arm_neon_vst3lane:
683 case Intrinsic::arm_neon_vst4lane: {
Chris Lattnerae47be12010-12-25 20:52:04 +0000684 unsigned MemAlign = getKnownAlignment(II->getArgOperand(0), TD);
Bob Wilson364f17c2010-10-22 21:41:48 +0000685 unsigned AlignArg = II->getNumArgOperands() - 1;
686 ConstantInt *IntrAlign = dyn_cast<ConstantInt>(II->getArgOperand(AlignArg));
687 if (IntrAlign && IntrAlign->getZExtValue() < MemAlign) {
688 II->setArgOperand(AlignArg,
689 ConstantInt::get(Type::getInt32Ty(II->getContext()),
690 MemAlign, false));
691 return II;
692 }
693 break;
694 }
695
Chris Lattner753a2b42010-01-05 07:32:13 +0000696 case Intrinsic::stackrestore: {
697 // If the save is right next to the restore, remove the restore. This can
698 // happen when variable allocas are DCE'd.
Gabor Greifcea7ac72010-06-24 12:58:35 +0000699 if (IntrinsicInst *SS = dyn_cast<IntrinsicInst>(II->getArgOperand(0))) {
Chris Lattner753a2b42010-01-05 07:32:13 +0000700 if (SS->getIntrinsicID() == Intrinsic::stacksave) {
701 BasicBlock::iterator BI = SS;
702 if (&*++BI == II)
703 return EraseInstFromFunction(CI);
704 }
705 }
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000706
Chris Lattner753a2b42010-01-05 07:32:13 +0000707 // Scan down this block to see if there is another stack restore in the
708 // same block without an intervening call/alloca.
709 BasicBlock::iterator BI = II;
710 TerminatorInst *TI = II->getParent()->getTerminator();
711 bool CannotRemove = false;
712 for (++BI; &*BI != TI; ++BI) {
713 if (isa<AllocaInst>(BI) || isMalloc(BI)) {
714 CannotRemove = true;
715 break;
716 }
717 if (CallInst *BCI = dyn_cast<CallInst>(BI)) {
718 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(BCI)) {
719 // If there is a stackrestore below this one, remove this one.
720 if (II->getIntrinsicID() == Intrinsic::stackrestore)
721 return EraseInstFromFunction(CI);
722 // Otherwise, ignore the intrinsic.
723 } else {
724 // If we found a non-intrinsic call, we can't remove the stack
725 // restore.
726 CannotRemove = true;
727 break;
728 }
729 }
730 }
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000731
Bill Wendlingdccc03b2011-07-31 06:30:59 +0000732 // If the stack restore is in a return, resume, or unwind block and if there
733 // are no allocas or calls between the restore and the return, nuke the
734 // restore.
735 if (!CannotRemove && (isa<ReturnInst>(TI) || isa<ResumeInst>(TI) ||
736 isa<UnwindInst>(TI)))
Chris Lattner753a2b42010-01-05 07:32:13 +0000737 return EraseInstFromFunction(CI);
738 break;
739 }
Chris Lattner753a2b42010-01-05 07:32:13 +0000740 }
741
742 return visitCallSite(II);
743}
744
745// InvokeInst simplification
746//
747Instruction *InstCombiner::visitInvokeInst(InvokeInst &II) {
748 return visitCallSite(&II);
749}
750
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000751/// isSafeToEliminateVarargsCast - If this cast does not affect the value
Chris Lattner753a2b42010-01-05 07:32:13 +0000752/// passed through the varargs area, we can eliminate the use of the cast.
753static bool isSafeToEliminateVarargsCast(const CallSite CS,
754 const CastInst * const CI,
755 const TargetData * const TD,
756 const int ix) {
757 if (!CI->isLosslessCast())
758 return false;
759
760 // The size of ByVal arguments is derived from the type, so we
761 // can't change to a type with a different size. If the size were
762 // passed explicitly we could avoid this check.
Nick Lewycky173862e2011-11-20 19:09:04 +0000763 if (!CS.isByValArgument(ix))
Chris Lattner753a2b42010-01-05 07:32:13 +0000764 return true;
765
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000766 Type* SrcTy =
Chris Lattner753a2b42010-01-05 07:32:13 +0000767 cast<PointerType>(CI->getOperand(0)->getType())->getElementType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000768 Type* DstTy = cast<PointerType>(CI->getType())->getElementType();
Chris Lattner753a2b42010-01-05 07:32:13 +0000769 if (!SrcTy->isSized() || !DstTy->isSized())
770 return false;
771 if (!TD || TD->getTypeAllocSize(SrcTy) != TD->getTypeAllocSize(DstTy))
772 return false;
773 return true;
774}
775
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000776namespace {
777class InstCombineFortifiedLibCalls : public SimplifyFortifiedLibCalls {
778 InstCombiner *IC;
779protected:
780 void replaceCall(Value *With) {
781 NewInstruction = IC->ReplaceInstUsesWith(*CI, With);
782 }
783 bool isFoldable(unsigned SizeCIOp, unsigned SizeArgOp, bool isString) const {
Benjamin Kramer8143a842011-01-06 14:22:52 +0000784 if (CI->getArgOperand(SizeCIOp) == CI->getArgOperand(SizeArgOp))
785 return true;
Gabor Greifa3997812010-07-22 10:37:47 +0000786 if (ConstantInt *SizeCI =
787 dyn_cast<ConstantInt>(CI->getArgOperand(SizeCIOp))) {
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000788 if (SizeCI->isAllOnesValue())
789 return true;
Eric Christopherb9b80c32011-03-15 00:25:41 +0000790 if (isString) {
791 uint64_t Len = GetStringLength(CI->getArgOperand(SizeArgOp));
792 // If the length is 0 we don't know how long it is and so we can't
793 // remove the check.
794 if (Len == 0) return false;
795 return SizeCI->getZExtValue() >= Len;
796 }
Gabor Greifa3997812010-07-22 10:37:47 +0000797 if (ConstantInt *Arg = dyn_cast<ConstantInt>(
798 CI->getArgOperand(SizeArgOp)))
Evan Cheng9d8f0022010-03-23 06:06:09 +0000799 return SizeCI->getZExtValue() >= Arg->getZExtValue();
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000800 }
801 return false;
802 }
803public:
804 InstCombineFortifiedLibCalls(InstCombiner *IC) : IC(IC), NewInstruction(0) { }
805 Instruction *NewInstruction;
806};
807} // end anonymous namespace
808
Eric Christopher27ceaa12010-03-06 10:50:38 +0000809// Try to fold some different type of calls here.
810// Currently we're only working with the checking functions, memcpy_chk,
811// mempcpy_chk, memmove_chk, memset_chk, strcpy_chk, stpcpy_chk, strncpy_chk,
812// strcat_chk and strncat_chk.
813Instruction *InstCombiner::tryOptimizeCall(CallInst *CI, const TargetData *TD) {
814 if (CI->getCalledFunction() == 0) return 0;
Eric Christopher27ceaa12010-03-06 10:50:38 +0000815
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000816 InstCombineFortifiedLibCalls Simplifier(this);
817 Simplifier.fold(CI, TD);
818 return Simplifier.NewInstruction;
Eric Christopher27ceaa12010-03-06 10:50:38 +0000819}
820
Duncan Sands4a544a72011-09-06 13:37:06 +0000821static IntrinsicInst *FindInitTrampolineFromAlloca(Value *TrampMem) {
822 // Strip off at most one level of pointer casts, looking for an alloca. This
823 // is good enough in practice and simpler than handling any number of casts.
824 Value *Underlying = TrampMem->stripPointerCasts();
825 if (Underlying != TrampMem &&
826 (!Underlying->hasOneUse() || *Underlying->use_begin() != TrampMem))
827 return 0;
828 if (!isa<AllocaInst>(Underlying))
829 return 0;
830
831 IntrinsicInst *InitTrampoline = 0;
832 for (Value::use_iterator I = TrampMem->use_begin(), E = TrampMem->use_end();
833 I != E; I++) {
834 IntrinsicInst *II = dyn_cast<IntrinsicInst>(*I);
835 if (!II)
836 return 0;
837 if (II->getIntrinsicID() == Intrinsic::init_trampoline) {
838 if (InitTrampoline)
839 // More than one init_trampoline writes to this value. Give up.
840 return 0;
841 InitTrampoline = II;
842 continue;
843 }
844 if (II->getIntrinsicID() == Intrinsic::adjust_trampoline)
845 // Allow any number of calls to adjust.trampoline.
846 continue;
847 return 0;
848 }
849
850 // No call to init.trampoline found.
851 if (!InitTrampoline)
852 return 0;
853
854 // Check that the alloca is being used in the expected way.
855 if (InitTrampoline->getOperand(0) != TrampMem)
856 return 0;
857
858 return InitTrampoline;
859}
860
861static IntrinsicInst *FindInitTrampolineFromBB(IntrinsicInst *AdjustTramp,
862 Value *TrampMem) {
863 // Visit all the previous instructions in the basic block, and try to find a
864 // init.trampoline which has a direct path to the adjust.trampoline.
865 for (BasicBlock::iterator I = AdjustTramp,
866 E = AdjustTramp->getParent()->begin(); I != E; ) {
867 Instruction *Inst = --I;
868 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I))
869 if (II->getIntrinsicID() == Intrinsic::init_trampoline &&
870 II->getOperand(0) == TrampMem)
871 return II;
872 if (Inst->mayWriteToMemory())
873 return 0;
874 }
875 return 0;
876}
877
878// Given a call to llvm.adjust.trampoline, find and return the corresponding
879// call to llvm.init.trampoline if the call to the trampoline can be optimized
880// to a direct call to a function. Otherwise return NULL.
881//
882static IntrinsicInst *FindInitTrampoline(Value *Callee) {
883 Callee = Callee->stripPointerCasts();
884 IntrinsicInst *AdjustTramp = dyn_cast<IntrinsicInst>(Callee);
885 if (!AdjustTramp ||
886 AdjustTramp->getIntrinsicID() != Intrinsic::adjust_trampoline)
887 return 0;
888
889 Value *TrampMem = AdjustTramp->getOperand(0);
890
891 if (IntrinsicInst *IT = FindInitTrampolineFromAlloca(TrampMem))
892 return IT;
893 if (IntrinsicInst *IT = FindInitTrampolineFromBB(AdjustTramp, TrampMem))
894 return IT;
895 return 0;
896}
897
Chris Lattner753a2b42010-01-05 07:32:13 +0000898// visitCallSite - Improvements for call and invoke instructions.
899//
900Instruction *InstCombiner::visitCallSite(CallSite CS) {
901 bool Changed = false;
902
Chris Lattnerab215bc2010-12-20 08:25:06 +0000903 // If the callee is a pointer to a function, attempt to move any casts to the
904 // arguments of the call/invoke.
Chris Lattner753a2b42010-01-05 07:32:13 +0000905 Value *Callee = CS.getCalledValue();
Chris Lattnerab215bc2010-12-20 08:25:06 +0000906 if (!isa<Function>(Callee) && transformConstExprCastCall(CS))
907 return 0;
Chris Lattner753a2b42010-01-05 07:32:13 +0000908
909 if (Function *CalleeF = dyn_cast<Function>(Callee))
Chris Lattnerd5695612010-02-01 18:11:34 +0000910 // If the call and callee calling conventions don't match, this call must
911 // be unreachable, as the call is undefined.
912 if (CalleeF->getCallingConv() != CS.getCallingConv() &&
913 // Only do this for calls to a function with a body. A prototype may
914 // not actually end up matching the implementation's calling conv for a
915 // variety of reasons (e.g. it may be written in assembly).
916 !CalleeF->isDeclaration()) {
Chris Lattner753a2b42010-01-05 07:32:13 +0000917 Instruction *OldCall = CS.getInstruction();
Chris Lattner753a2b42010-01-05 07:32:13 +0000918 new StoreInst(ConstantInt::getTrue(Callee->getContext()),
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000919 UndefValue::get(Type::getInt1PtrTy(Callee->getContext())),
Chris Lattner753a2b42010-01-05 07:32:13 +0000920 OldCall);
921 // If OldCall dues not return void then replaceAllUsesWith undef.
922 // This allows ValueHandlers and custom metadata to adjust itself.
923 if (!OldCall->getType()->isVoidTy())
Eli Friedman3e22cb92011-05-18 00:32:01 +0000924 ReplaceInstUsesWith(*OldCall, UndefValue::get(OldCall->getType()));
Chris Lattner830f3f22010-02-01 18:04:58 +0000925 if (isa<CallInst>(OldCall))
Chris Lattner753a2b42010-01-05 07:32:13 +0000926 return EraseInstFromFunction(*OldCall);
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000927
Chris Lattner830f3f22010-02-01 18:04:58 +0000928 // We cannot remove an invoke, because it would change the CFG, just
929 // change the callee to a null pointer.
Gabor Greif654c06f2010-03-20 21:00:25 +0000930 cast<InvokeInst>(OldCall)->setCalledFunction(
Chris Lattner830f3f22010-02-01 18:04:58 +0000931 Constant::getNullValue(CalleeF->getType()));
Chris Lattner753a2b42010-01-05 07:32:13 +0000932 return 0;
933 }
934
935 if (isa<ConstantPointerNull>(Callee) || isa<UndefValue>(Callee)) {
936 // This instruction is not reachable, just remove it. We insert a store to
937 // undef so that we know that this code is not reachable, despite the fact
938 // that we can't modify the CFG here.
939 new StoreInst(ConstantInt::getTrue(Callee->getContext()),
940 UndefValue::get(Type::getInt1PtrTy(Callee->getContext())),
941 CS.getInstruction());
942
Gabor Greifcea7ac72010-06-24 12:58:35 +0000943 // If CS does not return void then replaceAllUsesWith undef.
Chris Lattner753a2b42010-01-05 07:32:13 +0000944 // This allows ValueHandlers and custom metadata to adjust itself.
945 if (!CS.getInstruction()->getType()->isVoidTy())
Eli Friedman3e22cb92011-05-18 00:32:01 +0000946 ReplaceInstUsesWith(*CS.getInstruction(),
947 UndefValue::get(CS.getInstruction()->getType()));
Chris Lattner753a2b42010-01-05 07:32:13 +0000948
949 if (InvokeInst *II = dyn_cast<InvokeInst>(CS.getInstruction())) {
950 // Don't break the CFG, insert a dummy cond branch.
951 BranchInst::Create(II->getNormalDest(), II->getUnwindDest(),
952 ConstantInt::getTrue(Callee->getContext()), II);
953 }
954 return EraseInstFromFunction(*CS.getInstruction());
955 }
956
Duncan Sands4a544a72011-09-06 13:37:06 +0000957 if (IntrinsicInst *II = FindInitTrampoline(Callee))
958 return transformCallThroughTrampoline(CS, II);
Chris Lattner753a2b42010-01-05 07:32:13 +0000959
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000960 PointerType *PTy = cast<PointerType>(Callee->getType());
961 FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
Chris Lattner753a2b42010-01-05 07:32:13 +0000962 if (FTy->isVarArg()) {
Nick Lewycky173862e2011-11-20 19:09:04 +0000963 int ix = FTy->getNumParams() + (isa<InvokeInst>(Callee) ? 2 : 0);
Chris Lattner753a2b42010-01-05 07:32:13 +0000964 // See if we can optimize any arguments passed through the varargs area of
965 // the call.
966 for (CallSite::arg_iterator I = CS.arg_begin()+FTy->getNumParams(),
967 E = CS.arg_end(); I != E; ++I, ++ix) {
968 CastInst *CI = dyn_cast<CastInst>(*I);
969 if (CI && isSafeToEliminateVarargsCast(CS, CI, TD, ix)) {
970 *I = CI->getOperand(0);
971 Changed = true;
972 }
973 }
974 }
975
976 if (isa<InlineAsm>(Callee) && !CS.doesNotThrow()) {
977 // Inline asm calls cannot throw - mark them 'nounwind'.
978 CS.setDoesNotThrow();
979 Changed = true;
980 }
981
Eric Christopher27ceaa12010-03-06 10:50:38 +0000982 // Try to optimize the call if possible, we require TargetData for most of
983 // this. None of these calls are seen as possibly dead so go ahead and
984 // delete the instruction now.
985 if (CallInst *CI = dyn_cast<CallInst>(CS.getInstruction())) {
986 Instruction *I = tryOptimizeCall(CI, TD);
Eric Christopher7b323a32010-03-06 10:59:25 +0000987 // If we changed something return the result, etc. Otherwise let
988 // the fallthrough check.
989 if (I) return EraseInstFromFunction(*I);
Eric Christopher27ceaa12010-03-06 10:50:38 +0000990 }
991
Chris Lattner753a2b42010-01-05 07:32:13 +0000992 return Changed ? CS.getInstruction() : 0;
993}
994
995// transformConstExprCastCall - If the callee is a constexpr cast of a function,
996// attempt to move the cast to the arguments of the call/invoke.
997//
998bool InstCombiner::transformConstExprCastCall(CallSite CS) {
Chris Lattnerab215bc2010-12-20 08:25:06 +0000999 Function *Callee =
1000 dyn_cast<Function>(CS.getCalledValue()->stripPointerCasts());
1001 if (Callee == 0)
Chris Lattner753a2b42010-01-05 07:32:13 +00001002 return false;
Chris Lattner753a2b42010-01-05 07:32:13 +00001003 Instruction *Caller = CS.getInstruction();
1004 const AttrListPtr &CallerPAL = CS.getAttributes();
1005
1006 // Okay, this is a cast from a function to a different type. Unless doing so
1007 // would cause a type conversion of one of our arguments, change this call to
1008 // be a direct call with arguments casted to the appropriate types.
1009 //
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001010 FunctionType *FT = Callee->getFunctionType();
1011 Type *OldRetTy = Caller->getType();
1012 Type *NewRetTy = FT->getReturnType();
Chris Lattner753a2b42010-01-05 07:32:13 +00001013
Duncan Sands1df98592010-02-16 11:11:14 +00001014 if (NewRetTy->isStructTy())
Chris Lattner753a2b42010-01-05 07:32:13 +00001015 return false; // TODO: Handle multiple return values.
1016
1017 // Check to see if we are changing the return type...
1018 if (OldRetTy != NewRetTy) {
1019 if (Callee->isDeclaration() &&
1020 // Conversion is ok if changing from one pointer type to another or from
1021 // a pointer to an integer of the same size.
Duncan Sands1df98592010-02-16 11:11:14 +00001022 !((OldRetTy->isPointerTy() || !TD ||
Chris Lattner753a2b42010-01-05 07:32:13 +00001023 OldRetTy == TD->getIntPtrType(Caller->getContext())) &&
Duncan Sands1df98592010-02-16 11:11:14 +00001024 (NewRetTy->isPointerTy() || !TD ||
Chris Lattner753a2b42010-01-05 07:32:13 +00001025 NewRetTy == TD->getIntPtrType(Caller->getContext()))))
1026 return false; // Cannot transform this return value.
1027
1028 if (!Caller->use_empty() &&
1029 // void -> non-void is handled specially
1030 !NewRetTy->isVoidTy() && !CastInst::isCastable(NewRetTy, OldRetTy))
1031 return false; // Cannot transform this return value.
1032
1033 if (!CallerPAL.isEmpty() && !Caller->use_empty()) {
1034 Attributes RAttrs = CallerPAL.getRetAttributes();
1035 if (RAttrs & Attribute::typeIncompatible(NewRetTy))
1036 return false; // Attribute not compatible with transformed value.
1037 }
1038
1039 // If the callsite is an invoke instruction, and the return value is used by
1040 // a PHI node in a successor, we cannot change the return type of the call
1041 // because there is no place to put the cast instruction (without breaking
1042 // the critical edge). Bail out in this case.
1043 if (!Caller->use_empty())
1044 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller))
1045 for (Value::use_iterator UI = II->use_begin(), E = II->use_end();
1046 UI != E; ++UI)
1047 if (PHINode *PN = dyn_cast<PHINode>(*UI))
1048 if (PN->getParent() == II->getNormalDest() ||
1049 PN->getParent() == II->getUnwindDest())
1050 return false;
1051 }
1052
1053 unsigned NumActualArgs = unsigned(CS.arg_end()-CS.arg_begin());
1054 unsigned NumCommonArgs = std::min(FT->getNumParams(), NumActualArgs);
1055
1056 CallSite::arg_iterator AI = CS.arg_begin();
1057 for (unsigned i = 0, e = NumCommonArgs; i != e; ++i, ++AI) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001058 Type *ParamTy = FT->getParamType(i);
1059 Type *ActTy = (*AI)->getType();
Chris Lattner753a2b42010-01-05 07:32:13 +00001060
1061 if (!CastInst::isCastable(ActTy, ParamTy))
1062 return false; // Cannot transform this parameter value.
1063
Chris Lattner2b9375e2010-12-20 08:36:38 +00001064 unsigned Attrs = CallerPAL.getParamAttributes(i + 1);
1065 if (Attrs & Attribute::typeIncompatible(ParamTy))
Chris Lattner753a2b42010-01-05 07:32:13 +00001066 return false; // Attribute not compatible with transformed value.
Chris Lattner2b9375e2010-12-20 08:36:38 +00001067
1068 // If the parameter is passed as a byval argument, then we have to have a
1069 // sized type and the sized type has to have the same size as the old type.
1070 if (ParamTy != ActTy && (Attrs & Attribute::ByVal)) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001071 PointerType *ParamPTy = dyn_cast<PointerType>(ParamTy);
Chris Lattner2b9375e2010-12-20 08:36:38 +00001072 if (ParamPTy == 0 || !ParamPTy->getElementType()->isSized() || TD == 0)
1073 return false;
1074
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001075 Type *CurElTy = cast<PointerType>(ActTy)->getElementType();
Chris Lattner2b9375e2010-12-20 08:36:38 +00001076 if (TD->getTypeAllocSize(CurElTy) !=
1077 TD->getTypeAllocSize(ParamPTy->getElementType()))
1078 return false;
1079 }
Chris Lattner753a2b42010-01-05 07:32:13 +00001080
1081 // Converting from one pointer type to another or between a pointer and an
1082 // integer of the same size is safe even if we do not have a body.
1083 bool isConvertible = ActTy == ParamTy ||
Duncan Sands1df98592010-02-16 11:11:14 +00001084 (TD && ((ParamTy->isPointerTy() ||
Chris Lattner753a2b42010-01-05 07:32:13 +00001085 ParamTy == TD->getIntPtrType(Caller->getContext())) &&
Duncan Sands1df98592010-02-16 11:11:14 +00001086 (ActTy->isPointerTy() ||
Chris Lattner753a2b42010-01-05 07:32:13 +00001087 ActTy == TD->getIntPtrType(Caller->getContext()))));
1088 if (Callee->isDeclaration() && !isConvertible) return false;
1089 }
1090
Chris Lattner091b1e32011-02-24 05:10:56 +00001091 if (Callee->isDeclaration()) {
1092 // Do not delete arguments unless we have a function body.
1093 if (FT->getNumParams() < NumActualArgs && !FT->isVarArg())
1094 return false;
Chris Lattner753a2b42010-01-05 07:32:13 +00001095
Chris Lattner091b1e32011-02-24 05:10:56 +00001096 // If the callee is just a declaration, don't change the varargsness of the
1097 // call. We don't want to introduce a varargs call where one doesn't
1098 // already exist.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001099 PointerType *APTy = cast<PointerType>(CS.getCalledValue()->getType());
Chris Lattner091b1e32011-02-24 05:10:56 +00001100 if (FT->isVarArg()!=cast<FunctionType>(APTy->getElementType())->isVarArg())
1101 return false;
1102 }
1103
Chris Lattner753a2b42010-01-05 07:32:13 +00001104 if (FT->getNumParams() < NumActualArgs && FT->isVarArg() &&
1105 !CallerPAL.isEmpty())
1106 // In this case we have more arguments than the new function type, but we
1107 // won't be dropping them. Check that these extra arguments have attributes
1108 // that are compatible with being a vararg call argument.
1109 for (unsigned i = CallerPAL.getNumSlots(); i; --i) {
1110 if (CallerPAL.getSlot(i - 1).Index <= FT->getNumParams())
1111 break;
1112 Attributes PAttrs = CallerPAL.getSlot(i - 1).Attrs;
1113 if (PAttrs & Attribute::VarArgsIncompatible)
1114 return false;
1115 }
1116
Chris Lattner091b1e32011-02-24 05:10:56 +00001117
Chris Lattner753a2b42010-01-05 07:32:13 +00001118 // Okay, we decided that this is a safe thing to do: go ahead and start
Chris Lattner091b1e32011-02-24 05:10:56 +00001119 // inserting cast instructions as necessary.
Chris Lattner753a2b42010-01-05 07:32:13 +00001120 std::vector<Value*> Args;
1121 Args.reserve(NumActualArgs);
1122 SmallVector<AttributeWithIndex, 8> attrVec;
1123 attrVec.reserve(NumCommonArgs);
1124
1125 // Get any return attributes.
1126 Attributes RAttrs = CallerPAL.getRetAttributes();
1127
1128 // If the return value is not being used, the type may not be compatible
1129 // with the existing attributes. Wipe out any problematic attributes.
1130 RAttrs &= ~Attribute::typeIncompatible(NewRetTy);
1131
1132 // Add the new return attributes.
1133 if (RAttrs)
1134 attrVec.push_back(AttributeWithIndex::get(0, RAttrs));
1135
1136 AI = CS.arg_begin();
1137 for (unsigned i = 0; i != NumCommonArgs; ++i, ++AI) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001138 Type *ParamTy = FT->getParamType(i);
Chris Lattner753a2b42010-01-05 07:32:13 +00001139 if ((*AI)->getType() == ParamTy) {
1140 Args.push_back(*AI);
1141 } else {
1142 Instruction::CastOps opcode = CastInst::getCastOpcode(*AI,
1143 false, ParamTy, false);
Benjamin Kramera9390a42011-09-27 20:39:19 +00001144 Args.push_back(Builder->CreateCast(opcode, *AI, ParamTy));
Chris Lattner753a2b42010-01-05 07:32:13 +00001145 }
1146
1147 // Add any parameter attributes.
1148 if (Attributes PAttrs = CallerPAL.getParamAttributes(i + 1))
1149 attrVec.push_back(AttributeWithIndex::get(i + 1, PAttrs));
1150 }
1151
1152 // If the function takes more arguments than the call was taking, add them
1153 // now.
1154 for (unsigned i = NumCommonArgs; i != FT->getNumParams(); ++i)
1155 Args.push_back(Constant::getNullValue(FT->getParamType(i)));
1156
1157 // If we are removing arguments to the function, emit an obnoxious warning.
1158 if (FT->getNumParams() < NumActualArgs) {
1159 if (!FT->isVarArg()) {
1160 errs() << "WARNING: While resolving call to function '"
1161 << Callee->getName() << "' arguments were dropped!\n";
1162 } else {
1163 // Add all of the arguments in their promoted form to the arg list.
1164 for (unsigned i = FT->getNumParams(); i != NumActualArgs; ++i, ++AI) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001165 Type *PTy = getPromotedType((*AI)->getType());
Chris Lattner753a2b42010-01-05 07:32:13 +00001166 if (PTy != (*AI)->getType()) {
1167 // Must promote to pass through va_arg area!
1168 Instruction::CastOps opcode =
1169 CastInst::getCastOpcode(*AI, false, PTy, false);
Benjamin Kramera9390a42011-09-27 20:39:19 +00001170 Args.push_back(Builder->CreateCast(opcode, *AI, PTy));
Chris Lattner753a2b42010-01-05 07:32:13 +00001171 } else {
1172 Args.push_back(*AI);
1173 }
1174
1175 // Add any parameter attributes.
1176 if (Attributes PAttrs = CallerPAL.getParamAttributes(i + 1))
1177 attrVec.push_back(AttributeWithIndex::get(i + 1, PAttrs));
1178 }
1179 }
1180 }
1181
1182 if (Attributes FnAttrs = CallerPAL.getFnAttributes())
1183 attrVec.push_back(AttributeWithIndex::get(~0, FnAttrs));
1184
1185 if (NewRetTy->isVoidTy())
1186 Caller->setName(""); // Void type should not have a name.
1187
1188 const AttrListPtr &NewCallerPAL = AttrListPtr::get(attrVec.begin(),
1189 attrVec.end());
1190
1191 Instruction *NC;
1192 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
Eli Friedmanef819d02011-05-18 01:28:27 +00001193 NC = Builder->CreateInvoke(Callee, II->getNormalDest(),
Jay Foada3efbb12011-07-15 08:37:34 +00001194 II->getUnwindDest(), Args);
Eli Friedmanef819d02011-05-18 01:28:27 +00001195 NC->takeName(II);
Chris Lattner753a2b42010-01-05 07:32:13 +00001196 cast<InvokeInst>(NC)->setCallingConv(II->getCallingConv());
1197 cast<InvokeInst>(NC)->setAttributes(NewCallerPAL);
1198 } else {
Chris Lattner753a2b42010-01-05 07:32:13 +00001199 CallInst *CI = cast<CallInst>(Caller);
Jay Foada3efbb12011-07-15 08:37:34 +00001200 NC = Builder->CreateCall(Callee, Args);
Eli Friedmanef819d02011-05-18 01:28:27 +00001201 NC->takeName(CI);
Chris Lattner753a2b42010-01-05 07:32:13 +00001202 if (CI->isTailCall())
1203 cast<CallInst>(NC)->setTailCall();
1204 cast<CallInst>(NC)->setCallingConv(CI->getCallingConv());
1205 cast<CallInst>(NC)->setAttributes(NewCallerPAL);
1206 }
1207
1208 // Insert a cast of the return type as necessary.
1209 Value *NV = NC;
1210 if (OldRetTy != NV->getType() && !Caller->use_empty()) {
1211 if (!NV->getType()->isVoidTy()) {
Chris Lattnerab215bc2010-12-20 08:25:06 +00001212 Instruction::CastOps opcode =
1213 CastInst::getCastOpcode(NC, false, OldRetTy, false);
Benjamin Kramera9390a42011-09-27 20:39:19 +00001214 NV = NC = CastInst::Create(opcode, NC, OldRetTy);
Eli Friedmana311c342011-05-27 00:19:40 +00001215 NC->setDebugLoc(Caller->getDebugLoc());
Chris Lattner753a2b42010-01-05 07:32:13 +00001216
1217 // If this is an invoke instruction, we should insert it after the first
1218 // non-phi, instruction in the normal successor block.
1219 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
Bill Wendling89d44112011-08-25 01:08:34 +00001220 BasicBlock::iterator I = II->getNormalDest()->getFirstInsertionPt();
Chris Lattner753a2b42010-01-05 07:32:13 +00001221 InsertNewInstBefore(NC, *I);
1222 } else {
Chris Lattnerab215bc2010-12-20 08:25:06 +00001223 // Otherwise, it's a call, just insert cast right after the call.
Chris Lattner753a2b42010-01-05 07:32:13 +00001224 InsertNewInstBefore(NC, *Caller);
1225 }
1226 Worklist.AddUsersToWorkList(*Caller);
1227 } else {
1228 NV = UndefValue::get(Caller->getType());
1229 }
1230 }
1231
Chris Lattner753a2b42010-01-05 07:32:13 +00001232 if (!Caller->use_empty())
Eli Friedman3e22cb92011-05-18 00:32:01 +00001233 ReplaceInstUsesWith(*Caller, NV);
1234
Chris Lattner753a2b42010-01-05 07:32:13 +00001235 EraseInstFromFunction(*Caller);
1236 return true;
1237}
1238
Duncan Sands4a544a72011-09-06 13:37:06 +00001239// transformCallThroughTrampoline - Turn a call to a function created by
1240// init_trampoline / adjust_trampoline intrinsic pair into a direct call to the
1241// underlying function.
Chris Lattner753a2b42010-01-05 07:32:13 +00001242//
Duncan Sands4a544a72011-09-06 13:37:06 +00001243Instruction *
1244InstCombiner::transformCallThroughTrampoline(CallSite CS,
1245 IntrinsicInst *Tramp) {
Chris Lattner753a2b42010-01-05 07:32:13 +00001246 Value *Callee = CS.getCalledValue();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001247 PointerType *PTy = cast<PointerType>(Callee->getType());
1248 FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
Chris Lattner753a2b42010-01-05 07:32:13 +00001249 const AttrListPtr &Attrs = CS.getAttributes();
1250
1251 // If the call already has the 'nest' attribute somewhere then give up -
1252 // otherwise 'nest' would occur twice after splicing in the chain.
1253 if (Attrs.hasAttrSomewhere(Attribute::Nest))
1254 return 0;
1255
Duncan Sands4a544a72011-09-06 13:37:06 +00001256 assert(Tramp &&
1257 "transformCallThroughTrampoline called with incorrect CallSite.");
Chris Lattner753a2b42010-01-05 07:32:13 +00001258
Gabor Greifa3997812010-07-22 10:37:47 +00001259 Function *NestF =cast<Function>(Tramp->getArgOperand(1)->stripPointerCasts());
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001260 PointerType *NestFPTy = cast<PointerType>(NestF->getType());
1261 FunctionType *NestFTy = cast<FunctionType>(NestFPTy->getElementType());
Chris Lattner753a2b42010-01-05 07:32:13 +00001262
1263 const AttrListPtr &NestAttrs = NestF->getAttributes();
1264 if (!NestAttrs.isEmpty()) {
1265 unsigned NestIdx = 1;
Jay Foad5fdd6c82011-07-12 14:06:48 +00001266 Type *NestTy = 0;
Chris Lattner753a2b42010-01-05 07:32:13 +00001267 Attributes NestAttr = Attribute::None;
1268
1269 // Look for a parameter marked with the 'nest' attribute.
1270 for (FunctionType::param_iterator I = NestFTy->param_begin(),
1271 E = NestFTy->param_end(); I != E; ++NestIdx, ++I)
1272 if (NestAttrs.paramHasAttr(NestIdx, Attribute::Nest)) {
1273 // Record the parameter type and any other attributes.
1274 NestTy = *I;
1275 NestAttr = NestAttrs.getParamAttributes(NestIdx);
1276 break;
1277 }
1278
1279 if (NestTy) {
1280 Instruction *Caller = CS.getInstruction();
1281 std::vector<Value*> NewArgs;
1282 NewArgs.reserve(unsigned(CS.arg_end()-CS.arg_begin())+1);
1283
1284 SmallVector<AttributeWithIndex, 8> NewAttrs;
1285 NewAttrs.reserve(Attrs.getNumSlots() + 1);
1286
1287 // Insert the nest argument into the call argument list, which may
1288 // mean appending it. Likewise for attributes.
1289
1290 // Add any result attributes.
1291 if (Attributes Attr = Attrs.getRetAttributes())
1292 NewAttrs.push_back(AttributeWithIndex::get(0, Attr));
1293
1294 {
1295 unsigned Idx = 1;
1296 CallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end();
1297 do {
1298 if (Idx == NestIdx) {
1299 // Add the chain argument and attributes.
Gabor Greifcea7ac72010-06-24 12:58:35 +00001300 Value *NestVal = Tramp->getArgOperand(2);
Chris Lattner753a2b42010-01-05 07:32:13 +00001301 if (NestVal->getType() != NestTy)
Eli Friedmane6f364b2011-05-18 23:58:37 +00001302 NestVal = Builder->CreateBitCast(NestVal, NestTy, "nest");
Chris Lattner753a2b42010-01-05 07:32:13 +00001303 NewArgs.push_back(NestVal);
1304 NewAttrs.push_back(AttributeWithIndex::get(NestIdx, NestAttr));
1305 }
1306
1307 if (I == E)
1308 break;
1309
1310 // Add the original argument and attributes.
1311 NewArgs.push_back(*I);
1312 if (Attributes Attr = Attrs.getParamAttributes(Idx))
1313 NewAttrs.push_back
1314 (AttributeWithIndex::get(Idx + (Idx >= NestIdx), Attr));
1315
1316 ++Idx, ++I;
1317 } while (1);
1318 }
1319
1320 // Add any function attributes.
1321 if (Attributes Attr = Attrs.getFnAttributes())
1322 NewAttrs.push_back(AttributeWithIndex::get(~0, Attr));
1323
1324 // The trampoline may have been bitcast to a bogus type (FTy).
1325 // Handle this by synthesizing a new function type, equal to FTy
1326 // with the chain parameter inserted.
1327
Jay Foad5fdd6c82011-07-12 14:06:48 +00001328 std::vector<Type*> NewTypes;
Chris Lattner753a2b42010-01-05 07:32:13 +00001329 NewTypes.reserve(FTy->getNumParams()+1);
1330
1331 // Insert the chain's type into the list of parameter types, which may
1332 // mean appending it.
1333 {
1334 unsigned Idx = 1;
1335 FunctionType::param_iterator I = FTy->param_begin(),
1336 E = FTy->param_end();
1337
1338 do {
1339 if (Idx == NestIdx)
1340 // Add the chain's type.
1341 NewTypes.push_back(NestTy);
1342
1343 if (I == E)
1344 break;
1345
1346 // Add the original type.
1347 NewTypes.push_back(*I);
1348
1349 ++Idx, ++I;
1350 } while (1);
1351 }
1352
1353 // Replace the trampoline call with a direct call. Let the generic
1354 // code sort out any function type mismatches.
Eric Christopher0c6a8f92010-02-03 00:21:58 +00001355 FunctionType *NewFTy = FunctionType::get(FTy->getReturnType(), NewTypes,
Chris Lattner753a2b42010-01-05 07:32:13 +00001356 FTy->isVarArg());
1357 Constant *NewCallee =
1358 NestF->getType() == PointerType::getUnqual(NewFTy) ?
Eric Christopher0c6a8f92010-02-03 00:21:58 +00001359 NestF : ConstantExpr::getBitCast(NestF,
Chris Lattner753a2b42010-01-05 07:32:13 +00001360 PointerType::getUnqual(NewFTy));
1361 const AttrListPtr &NewPAL = AttrListPtr::get(NewAttrs.begin(),
1362 NewAttrs.end());
1363
1364 Instruction *NewCaller;
1365 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
1366 NewCaller = InvokeInst::Create(NewCallee,
1367 II->getNormalDest(), II->getUnwindDest(),
Jay Foada3efbb12011-07-15 08:37:34 +00001368 NewArgs);
Chris Lattner753a2b42010-01-05 07:32:13 +00001369 cast<InvokeInst>(NewCaller)->setCallingConv(II->getCallingConv());
1370 cast<InvokeInst>(NewCaller)->setAttributes(NewPAL);
1371 } else {
Jay Foada3efbb12011-07-15 08:37:34 +00001372 NewCaller = CallInst::Create(NewCallee, NewArgs);
Chris Lattner753a2b42010-01-05 07:32:13 +00001373 if (cast<CallInst>(Caller)->isTailCall())
1374 cast<CallInst>(NewCaller)->setTailCall();
1375 cast<CallInst>(NewCaller)->
1376 setCallingConv(cast<CallInst>(Caller)->getCallingConv());
1377 cast<CallInst>(NewCaller)->setAttributes(NewPAL);
1378 }
Eli Friedman59f15912011-05-18 19:57:14 +00001379
1380 return NewCaller;
Chris Lattner753a2b42010-01-05 07:32:13 +00001381 }
1382 }
1383
1384 // Replace the trampoline call with a direct call. Since there is no 'nest'
1385 // parameter, there is no need to adjust the argument list. Let the generic
1386 // code sort out any function type mismatches.
1387 Constant *NewCallee =
Eric Christopher0c6a8f92010-02-03 00:21:58 +00001388 NestF->getType() == PTy ? NestF :
Chris Lattner753a2b42010-01-05 07:32:13 +00001389 ConstantExpr::getBitCast(NestF, PTy);
1390 CS.setCalledFunction(NewCallee);
1391 return CS.getInstruction();
1392}
Eric Christopher0c6a8f92010-02-03 00:21:58 +00001393