blob: 455cd0a69d5bcf6a8c93ad24a945ce8cd015d497 [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"
15#include "llvm/IntrinsicInst.h"
16#include "llvm/Support/CallSite.h"
17#include "llvm/Target/TargetData.h"
18#include "llvm/Analysis/MemoryBuiltins.h"
Eric Christopher27ceaa12010-03-06 10:50:38 +000019#include "llvm/Transforms/Utils/BuildLibCalls.h"
Chris Lattner687140c2010-12-25 20:37:57 +000020#include "llvm/Transforms/Utils/Local.h"
Chris Lattner753a2b42010-01-05 07:32:13 +000021using namespace llvm;
22
23/// getPromotedType - Return the specified type promoted as it would be to pass
24/// though a va_arg area.
25static const Type *getPromotedType(const Type *Ty) {
26 if (const IntegerType* ITy = dyn_cast<IntegerType>(Ty)) {
27 if (ITy->getBitWidth() < 32)
28 return Type::getInt32Ty(Ty->getContext());
29 }
30 return Ty;
31}
32
Chris Lattner753a2b42010-01-05 07:32:13 +000033
34Instruction *InstCombiner::SimplifyMemTransfer(MemIntrinsic *MI) {
Chris Lattner687140c2010-12-25 20:37:57 +000035 unsigned DstAlign = getKnownAlignment(MI->getArgOperand(0), TD);
36 unsigned SrcAlign = getKnownAlignment(MI->getArgOperand(1), TD);
Chris Lattner753a2b42010-01-05 07:32:13 +000037 unsigned MinAlign = std::min(DstAlign, SrcAlign);
38 unsigned CopyAlign = MI->getAlignment();
39
40 if (CopyAlign < MinAlign) {
Eric Christopher0c6a8f92010-02-03 00:21:58 +000041 MI->setAlignment(ConstantInt::get(MI->getAlignmentType(),
Chris Lattner753a2b42010-01-05 07:32:13 +000042 MinAlign, false));
43 return MI;
44 }
Eric Christopher0c6a8f92010-02-03 00:21:58 +000045
Chris Lattner753a2b42010-01-05 07:32:13 +000046 // If MemCpyInst length is 1/2/4/8 bytes then replace memcpy with
47 // load/store.
Gabor Greifbcda85c2010-06-24 13:54:33 +000048 ConstantInt *MemOpLength = dyn_cast<ConstantInt>(MI->getArgOperand(2));
Chris Lattner753a2b42010-01-05 07:32:13 +000049 if (MemOpLength == 0) return 0;
Eric Christopher0c6a8f92010-02-03 00:21:58 +000050
Chris Lattner753a2b42010-01-05 07:32:13 +000051 // Source and destination pointer types are always "i8*" for intrinsic. See
52 // if the size is something we can handle with a single primitive load/store.
53 // A single load+store correctly handles overlapping memory in the memmove
54 // case.
55 unsigned Size = MemOpLength->getZExtValue();
56 if (Size == 0) return MI; // Delete this mem transfer.
Eric Christopher0c6a8f92010-02-03 00:21:58 +000057
Chris Lattner753a2b42010-01-05 07:32:13 +000058 if (Size > 8 || (Size&(Size-1)))
59 return 0; // If not 1/2/4/8 bytes, exit.
Eric Christopher0c6a8f92010-02-03 00:21:58 +000060
Chris Lattner753a2b42010-01-05 07:32:13 +000061 // Use an integer load+store unless we can find something better.
Mon P Wang20adc9d2010-04-04 03:10:48 +000062 unsigned SrcAddrSp =
Gabor Greifbcda85c2010-06-24 13:54:33 +000063 cast<PointerType>(MI->getArgOperand(1)->getType())->getAddressSpace();
Gabor Greif4ec22582010-04-16 15:33:14 +000064 unsigned DstAddrSp =
Gabor Greifbcda85c2010-06-24 13:54:33 +000065 cast<PointerType>(MI->getArgOperand(0)->getType())->getAddressSpace();
Mon P Wang20adc9d2010-04-04 03:10:48 +000066
67 const IntegerType* IntType = IntegerType::get(MI->getContext(), Size<<3);
68 Type *NewSrcPtrTy = PointerType::get(IntType, SrcAddrSp);
69 Type *NewDstPtrTy = PointerType::get(IntType, DstAddrSp);
Eric Christopher0c6a8f92010-02-03 00:21:58 +000070
Chris Lattner753a2b42010-01-05 07:32:13 +000071 // Memcpy forces the use of i8* for the source and destination. That means
72 // that if you're using memcpy to move one double around, you'll get a cast
73 // from double* to i8*. We'd much rather use a double load+store rather than
74 // an i64 load+store, here because this improves the odds that the source or
75 // dest address will be promotable. See if we can find a better type than the
76 // integer datatype.
Gabor Greifcea7ac72010-06-24 12:58:35 +000077 Value *StrippedDest = MI->getArgOperand(0)->stripPointerCasts();
78 if (StrippedDest != MI->getArgOperand(0)) {
Chris Lattner753a2b42010-01-05 07:32:13 +000079 const Type *SrcETy = cast<PointerType>(StrippedDest->getType())
80 ->getElementType();
81 if (TD && SrcETy->isSized() && TD->getTypeStoreSize(SrcETy) == Size) {
82 // The SrcETy might be something like {{{double}}} or [1 x double]. Rip
83 // down through these levels if so.
84 while (!SrcETy->isSingleValueType()) {
85 if (const StructType *STy = dyn_cast<StructType>(SrcETy)) {
86 if (STy->getNumElements() == 1)
87 SrcETy = STy->getElementType(0);
88 else
89 break;
90 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(SrcETy)) {
91 if (ATy->getNumElements() == 1)
92 SrcETy = ATy->getElementType();
93 else
94 break;
95 } else
96 break;
97 }
Eric Christopher0c6a8f92010-02-03 00:21:58 +000098
Mon P Wang20adc9d2010-04-04 03:10:48 +000099 if (SrcETy->isSingleValueType()) {
100 NewSrcPtrTy = PointerType::get(SrcETy, SrcAddrSp);
101 NewDstPtrTy = PointerType::get(SrcETy, DstAddrSp);
102 }
Chris Lattner753a2b42010-01-05 07:32:13 +0000103 }
104 }
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000105
106
Chris Lattner753a2b42010-01-05 07:32:13 +0000107 // If the memcpy/memmove provides better alignment info than we can
108 // infer, use it.
109 SrcAlign = std::max(SrcAlign, CopyAlign);
110 DstAlign = std::max(DstAlign, CopyAlign);
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000111
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000112 Value *Src = Builder->CreateBitCast(MI->getArgOperand(1), NewSrcPtrTy);
113 Value *Dest = Builder->CreateBitCast(MI->getArgOperand(0), NewDstPtrTy);
Eli Friedman59f15912011-05-18 19:57:14 +0000114 LoadInst *L = Builder->CreateLoad(Src, MI->isVolatile());
115 L->setAlignment(SrcAlign);
116 StoreInst *S = Builder->CreateStore(L, Dest, MI->isVolatile());
117 S->setAlignment(DstAlign);
Chris Lattner753a2b42010-01-05 07:32:13 +0000118
119 // Set the size of the copy to 0, it will be deleted on the next iteration.
Gabor Greifa90c5c72010-06-28 16:50:57 +0000120 MI->setArgOperand(2, Constant::getNullValue(MemOpLength->getType()));
Chris Lattner753a2b42010-01-05 07:32:13 +0000121 return MI;
122}
123
124Instruction *InstCombiner::SimplifyMemSet(MemSetInst *MI) {
Chris Lattnerae47be12010-12-25 20:52:04 +0000125 unsigned Alignment = getKnownAlignment(MI->getDest(), TD);
Chris Lattner753a2b42010-01-05 07:32:13 +0000126 if (MI->getAlignment() < Alignment) {
127 MI->setAlignment(ConstantInt::get(MI->getAlignmentType(),
128 Alignment, false));
129 return MI;
130 }
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000131
Chris Lattner753a2b42010-01-05 07:32:13 +0000132 // Extract the length and alignment and fill if they are constant.
133 ConstantInt *LenC = dyn_cast<ConstantInt>(MI->getLength());
134 ConstantInt *FillC = dyn_cast<ConstantInt>(MI->getValue());
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000135 if (!LenC || !FillC || !FillC->getType()->isIntegerTy(8))
Chris Lattner753a2b42010-01-05 07:32:13 +0000136 return 0;
137 uint64_t Len = LenC->getZExtValue();
138 Alignment = MI->getAlignment();
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000139
Chris Lattner753a2b42010-01-05 07:32:13 +0000140 // If the length is zero, this is a no-op
141 if (Len == 0) return MI; // memset(d,c,0,a) -> noop
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000142
Chris Lattner753a2b42010-01-05 07:32:13 +0000143 // memset(s,c,n) -> store s, c (for n=1,2,4,8)
144 if (Len <= 8 && isPowerOf2_32((uint32_t)Len)) {
145 const Type *ITy = IntegerType::get(MI->getContext(), Len*8); // n=1 -> i8.
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000146
Chris Lattner753a2b42010-01-05 07:32:13 +0000147 Value *Dest = MI->getDest();
Mon P Wang55fb9b02010-12-20 01:05:30 +0000148 unsigned DstAddrSp = cast<PointerType>(Dest->getType())->getAddressSpace();
149 Type *NewDstPtrTy = PointerType::get(ITy, DstAddrSp);
150 Dest = Builder->CreateBitCast(Dest, NewDstPtrTy);
Chris Lattner753a2b42010-01-05 07:32:13 +0000151
152 // Alignment 0 is identity for alignment 1 for memset, but not store.
153 if (Alignment == 0) Alignment = 1;
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000154
Chris Lattner753a2b42010-01-05 07:32:13 +0000155 // Extract the fill value and store.
156 uint64_t Fill = FillC->getZExtValue()*0x0101010101010101ULL;
Eli Friedman59f15912011-05-18 19:57:14 +0000157 StoreInst *S = Builder->CreateStore(ConstantInt::get(ITy, Fill), Dest,
158 MI->isVolatile());
159 S->setAlignment(Alignment);
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000160
Chris Lattner753a2b42010-01-05 07:32:13 +0000161 // Set the size of the copy to 0, it will be deleted on the next iteration.
162 MI->setLength(Constant::getNullValue(LenC->getType()));
163 return MI;
164 }
165
166 return 0;
167}
168
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000169/// visitCallInst - CallInst simplification. This mostly only handles folding
Chris Lattner753a2b42010-01-05 07:32:13 +0000170/// of intrinsic instructions. For normal calls, it allows visitCallSite to do
171/// the heavy lifting.
172///
173Instruction *InstCombiner::visitCallInst(CallInst &CI) {
174 if (isFreeCall(&CI))
175 return visitFree(CI);
Duncan Sands1d9b9732010-05-27 19:09:06 +0000176 if (isMalloc(&CI))
177 return visitMalloc(CI);
Chris Lattner753a2b42010-01-05 07:32:13 +0000178
179 // If the caller function is nounwind, mark the call as nounwind, even if the
180 // callee isn't.
181 if (CI.getParent()->getParent()->doesNotThrow() &&
182 !CI.doesNotThrow()) {
183 CI.setDoesNotThrow();
184 return &CI;
185 }
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000186
Chris Lattner753a2b42010-01-05 07:32:13 +0000187 IntrinsicInst *II = dyn_cast<IntrinsicInst>(&CI);
188 if (!II) return visitCallSite(&CI);
Gabor Greifcea7ac72010-06-24 12:58:35 +0000189
Chris Lattner753a2b42010-01-05 07:32:13 +0000190 // Intrinsics cannot occur in an invoke, so handle them here instead of in
191 // visitCallSite.
192 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(II)) {
193 bool Changed = false;
194
195 // memmove/cpy/set of zero bytes is a noop.
196 if (Constant *NumBytes = dyn_cast<Constant>(MI->getLength())) {
Chris Lattner6eff7512010-10-01 05:51:02 +0000197 if (NumBytes->isNullValue())
198 return EraseInstFromFunction(CI);
Chris Lattner753a2b42010-01-05 07:32:13 +0000199
200 if (ConstantInt *CI = dyn_cast<ConstantInt>(NumBytes))
201 if (CI->getZExtValue() == 1) {
202 // Replace the instruction with just byte operations. We would
203 // transform other cases to loads/stores, but we don't know if
204 // alignment is sufficient.
205 }
206 }
Chris Lattner6eff7512010-10-01 05:51:02 +0000207
208 // No other transformations apply to volatile transfers.
209 if (MI->isVolatile())
210 return 0;
Chris Lattner753a2b42010-01-05 07:32:13 +0000211
212 // If we have a memmove and the source operation is a constant global,
213 // then the source and dest pointers can't alias, so we can change this
214 // into a call to memcpy.
215 if (MemMoveInst *MMI = dyn_cast<MemMoveInst>(MI)) {
216 if (GlobalVariable *GVSrc = dyn_cast<GlobalVariable>(MMI->getSource()))
217 if (GVSrc->isConstant()) {
Eric Christopher551754c2010-04-16 23:37:20 +0000218 Module *M = CI.getParent()->getParent()->getParent();
Chris Lattner753a2b42010-01-05 07:32:13 +0000219 Intrinsic::ID MemCpyID = Intrinsic::memcpy;
Gabor Greifc310fcc2010-06-24 13:42:49 +0000220 const Type *Tys[3] = { CI.getArgOperand(0)->getType(),
221 CI.getArgOperand(1)->getType(),
222 CI.getArgOperand(2)->getType() };
223 CI.setCalledFunction(Intrinsic::getDeclaration(M, MemCpyID, Tys, 3));
Chris Lattner753a2b42010-01-05 07:32:13 +0000224 Changed = true;
225 }
226 }
227
228 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(MI)) {
229 // memmove(x,x,size) -> noop.
230 if (MTI->getSource() == MTI->getDest())
231 return EraseInstFromFunction(CI);
Eric Christopher551754c2010-04-16 23:37:20 +0000232 }
Chris Lattner753a2b42010-01-05 07:32:13 +0000233
Eric Christopher551754c2010-04-16 23:37:20 +0000234 // If we can determine a pointer alignment that is bigger than currently
235 // set, update the alignment.
236 if (isa<MemTransferInst>(MI)) {
237 if (Instruction *I = SimplifyMemTransfer(MI))
Chris Lattner753a2b42010-01-05 07:32:13 +0000238 return I;
239 } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(MI)) {
240 if (Instruction *I = SimplifyMemSet(MSI))
241 return I;
242 }
Gabor Greifc310fcc2010-06-24 13:42:49 +0000243
Chris Lattner753a2b42010-01-05 07:32:13 +0000244 if (Changed) return II;
245 }
Eric Christopher551754c2010-04-16 23:37:20 +0000246
Chris Lattner753a2b42010-01-05 07:32:13 +0000247 switch (II->getIntrinsicID()) {
248 default: break;
Eric Christopher415326b2010-02-09 21:24:27 +0000249 case Intrinsic::objectsize: {
Eric Christopher26d0e892010-02-11 01:48:54 +0000250 // We need target data for just about everything so depend on it.
Eric Christopher415326b2010-02-09 21:24:27 +0000251 if (!TD) break;
Eric Christopher26d0e892010-02-11 01:48:54 +0000252
Evan Chenga8623262010-03-05 20:47:23 +0000253 const Type *ReturnTy = CI.getType();
Benjamin Kramer783a5c22011-01-06 13:07:49 +0000254 uint64_t DontKnow = II->getArgOperand(1) == Builder->getTrue() ? 0 : -1ULL;
Evan Chenga8623262010-03-05 20:47:23 +0000255
Eric Christopher26d0e892010-02-11 01:48:54 +0000256 // Get to the real allocated thing and offset as fast as possible.
Gabor Greifcea7ac72010-06-24 12:58:35 +0000257 Value *Op1 = II->getArgOperand(0)->stripPointerCasts();
Benjamin Kramer783a5c22011-01-06 13:07:49 +0000258
259 uint64_t Offset = 0;
260 uint64_t Size = -1ULL;
261
262 // Try to look through constant GEPs.
263 if (GEPOperator *GEP = dyn_cast<GEPOperator>(Op1)) {
264 if (!GEP->hasAllConstantIndices()) break;
265
266 // Get the current byte offset into the thing. Use the original
267 // operand in case we're looking through a bitcast.
268 SmallVector<Value*, 8> Ops(GEP->idx_begin(), GEP->idx_end());
269 Offset = TD->getIndexedOffset(GEP->getPointerOperandType(),
270 Ops.data(), Ops.size());
271
272 Op1 = GEP->getPointerOperand()->stripPointerCasts();
273
274 // Make sure we're not a constant offset from an external
275 // global.
276 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Op1))
277 if (!GV->hasDefinitiveInitializer()) break;
278 }
279
Eric Christopher26d0e892010-02-11 01:48:54 +0000280 // If we've stripped down to a single global variable that we
281 // can know the size of then just return that.
Eric Christopher415326b2010-02-09 21:24:27 +0000282 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Op1)) {
283 if (GV->hasDefinitiveInitializer()) {
284 Constant *C = GV->getInitializer();
Benjamin Kramer783a5c22011-01-06 13:07:49 +0000285 Size = TD->getTypeAllocSize(C->getType());
Eric Christopher415326b2010-02-09 21:24:27 +0000286 } else {
Evan Chenga8623262010-03-05 20:47:23 +0000287 // Can't determine size of the GV.
Benjamin Kramer783a5c22011-01-06 13:07:49 +0000288 Constant *RetVal = ConstantInt::get(ReturnTy, DontKnow);
Eric Christopher415326b2010-02-09 21:24:27 +0000289 return ReplaceInstUsesWith(CI, RetVal);
290 }
Evan Chenga8623262010-03-05 20:47:23 +0000291 } else if (AllocaInst *AI = dyn_cast<AllocaInst>(Op1)) {
292 // Get alloca size.
293 if (AI->getAllocatedType()->isSized()) {
Benjamin Kramer783a5c22011-01-06 13:07:49 +0000294 Size = TD->getTypeAllocSize(AI->getAllocatedType());
Evan Chenga8623262010-03-05 20:47:23 +0000295 if (AI->isArrayAllocation()) {
296 const ConstantInt *C = dyn_cast<ConstantInt>(AI->getArraySize());
297 if (!C) break;
Benjamin Kramer783a5c22011-01-06 13:07:49 +0000298 Size *= C->getZExtValue();
Evan Chenga8623262010-03-05 20:47:23 +0000299 }
Evan Chenga8623262010-03-05 20:47:23 +0000300 }
Evan Cheng687fed32010-03-08 22:54:36 +0000301 } else if (CallInst *MI = extractMallocCall(Op1)) {
Benjamin Kramer240d42d2011-01-06 13:11:05 +0000302 // Get allocation size.
Benjamin Kramer783a5c22011-01-06 13:07:49 +0000303 const Type* MallocType = getMallocAllocatedType(MI);
304 if (MallocType && MallocType->isSized())
305 if (Value *NElems = getMallocArraySize(MI, TD, true))
Evan Cheng687fed32010-03-08 22:54:36 +0000306 if (ConstantInt *NElements = dyn_cast<ConstantInt>(NElems))
Benjamin Kramer783a5c22011-01-06 13:07:49 +0000307 Size = NElements->getZExtValue() * TD->getTypeAllocSize(MallocType);
308 }
Evan Chenga8623262010-03-05 20:47:23 +0000309
310 // Do not return "I don't know" here. Later optimization passes could
311 // make it possible to evaluate objectsize to a constant.
Benjamin Kramer783a5c22011-01-06 13:07:49 +0000312 if (Size == -1ULL)
313 break;
314
315 if (Size < Offset) {
316 // Out of bound reference? Negative index normalized to large
317 // index? Just return "I don't know".
318 return ReplaceInstUsesWith(CI, ConstantInt::get(ReturnTy, DontKnow));
319 }
320 return ReplaceInstUsesWith(CI, ConstantInt::get(ReturnTy, Size-Offset));
Eric Christopher415326b2010-02-09 21:24:27 +0000321 }
Chris Lattner753a2b42010-01-05 07:32:13 +0000322 case Intrinsic::bswap:
323 // bswap(bswap(x)) -> x
Gabor Greifcea7ac72010-06-24 12:58:35 +0000324 if (IntrinsicInst *Operand = dyn_cast<IntrinsicInst>(II->getArgOperand(0)))
Chris Lattner753a2b42010-01-05 07:32:13 +0000325 if (Operand->getIntrinsicID() == Intrinsic::bswap)
Gabor Greifcea7ac72010-06-24 12:58:35 +0000326 return ReplaceInstUsesWith(CI, Operand->getArgOperand(0));
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000327
Chris Lattner753a2b42010-01-05 07:32:13 +0000328 // bswap(trunc(bswap(x))) -> trunc(lshr(x, c))
Gabor Greifcea7ac72010-06-24 12:58:35 +0000329 if (TruncInst *TI = dyn_cast<TruncInst>(II->getArgOperand(0))) {
Chris Lattner753a2b42010-01-05 07:32:13 +0000330 if (IntrinsicInst *Operand = dyn_cast<IntrinsicInst>(TI->getOperand(0)))
331 if (Operand->getIntrinsicID() == Intrinsic::bswap) {
332 unsigned C = Operand->getType()->getPrimitiveSizeInBits() -
333 TI->getType()->getPrimitiveSizeInBits();
334 Value *CV = ConstantInt::get(Operand->getType(), C);
Gabor Greifcea7ac72010-06-24 12:58:35 +0000335 Value *V = Builder->CreateLShr(Operand->getArgOperand(0), CV);
Chris Lattner753a2b42010-01-05 07:32:13 +0000336 return new TruncInst(V, TI->getType());
337 }
338 }
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000339
Chris Lattner753a2b42010-01-05 07:32:13 +0000340 break;
341 case Intrinsic::powi:
Gabor Greifcea7ac72010-06-24 12:58:35 +0000342 if (ConstantInt *Power = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
Chris Lattner753a2b42010-01-05 07:32:13 +0000343 // powi(x, 0) -> 1.0
344 if (Power->isZero())
345 return ReplaceInstUsesWith(CI, ConstantFP::get(CI.getType(), 1.0));
346 // powi(x, 1) -> x
347 if (Power->isOne())
Gabor Greifcea7ac72010-06-24 12:58:35 +0000348 return ReplaceInstUsesWith(CI, II->getArgOperand(0));
Chris Lattner753a2b42010-01-05 07:32:13 +0000349 // powi(x, -1) -> 1/x
350 if (Power->isAllOnesValue())
351 return BinaryOperator::CreateFDiv(ConstantFP::get(CI.getType(), 1.0),
Gabor Greifcea7ac72010-06-24 12:58:35 +0000352 II->getArgOperand(0));
Chris Lattner753a2b42010-01-05 07:32:13 +0000353 }
354 break;
355 case Intrinsic::cttz: {
356 // If all bits below the first known one are known zero,
357 // this value is constant.
Gabor Greifcea7ac72010-06-24 12:58:35 +0000358 const IntegerType *IT = cast<IntegerType>(II->getArgOperand(0)->getType());
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.
Gabor Greifcea7ac72010-06-24 12:58:35 +0000375 const IntegerType *IT = cast<IntegerType>(II->getArgOperand(0)->getType());
Chris Lattner753a2b42010-01-05 07:32:13 +0000376 uint32_t BitWidth = IT->getBitWidth();
377 APInt KnownZero(BitWidth, 0);
378 APInt KnownOne(BitWidth, 0);
Gabor Greifcea7ac72010-06-24 12:58:35 +0000379 ComputeMaskedBits(II->getArgOperand(0), APInt::getAllOnesValue(BitWidth),
Chris Lattner753a2b42010-01-05 07:32:13 +0000380 KnownZero, KnownOne);
381 unsigned LeadingZeros = KnownOne.countLeadingZeros();
382 APInt Mask(APInt::getHighBitsSet(BitWidth, LeadingZeros));
383 if ((Mask & KnownZero) == Mask)
384 return ReplaceInstUsesWith(CI, ConstantInt::get(IT,
385 APInt(BitWidth, LeadingZeros)));
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000386
Chris Lattner753a2b42010-01-05 07:32:13 +0000387 }
388 break;
389 case Intrinsic::uadd_with_overflow: {
Gabor Greifcea7ac72010-06-24 12:58:35 +0000390 Value *LHS = II->getArgOperand(0), *RHS = II->getArgOperand(1);
391 const IntegerType *IT = cast<IntegerType>(II->getArgOperand(0)->getType());
Chris Lattner753a2b42010-01-05 07:32:13 +0000392 uint32_t BitWidth = IT->getBitWidth();
393 APInt Mask = APInt::getSignBit(BitWidth);
394 APInt LHSKnownZero(BitWidth, 0);
395 APInt LHSKnownOne(BitWidth, 0);
396 ComputeMaskedBits(LHS, Mask, LHSKnownZero, LHSKnownOne);
397 bool LHSKnownNegative = LHSKnownOne[BitWidth - 1];
398 bool LHSKnownPositive = LHSKnownZero[BitWidth - 1];
399
400 if (LHSKnownNegative || LHSKnownPositive) {
401 APInt RHSKnownZero(BitWidth, 0);
402 APInt RHSKnownOne(BitWidth, 0);
403 ComputeMaskedBits(RHS, Mask, RHSKnownZero, RHSKnownOne);
404 bool RHSKnownNegative = RHSKnownOne[BitWidth - 1];
405 bool RHSKnownPositive = RHSKnownZero[BitWidth - 1];
406 if (LHSKnownNegative && RHSKnownNegative) {
407 // The sign bit is set in both cases: this MUST overflow.
408 // Create a simple add instruction, and insert it into the struct.
Eli Friedman59f15912011-05-18 19:57:14 +0000409 Value *Add = Builder->CreateAdd(LHS, RHS);
410 Add->takeName(&CI);
Chris Lattner753a2b42010-01-05 07:32:13 +0000411 Constant *V[] = {
Eli Friedman59f15912011-05-18 19:57:14 +0000412 UndefValue::get(LHS->getType()),
413 ConstantInt::getTrue(II->getContext())
Chris Lattner753a2b42010-01-05 07:32:13 +0000414 };
Chris Lattnerb065b062011-06-20 04:01:31 +0000415 const StructType *ST = cast<StructType>(II->getType());
416 Constant *Struct = ConstantStruct::get(ST, V);
Chris Lattner753a2b42010-01-05 07:32:13 +0000417 return InsertValueInst::Create(Struct, Add, 0);
418 }
Eli Friedman59f15912011-05-18 19:57:14 +0000419
Chris Lattner753a2b42010-01-05 07:32:13 +0000420 if (LHSKnownPositive && RHSKnownPositive) {
421 // The sign bit is clear in both cases: this CANNOT overflow.
422 // Create a simple add instruction, and insert it into the struct.
Eli Friedman59f15912011-05-18 19:57:14 +0000423 Value *Add = Builder->CreateNUWAdd(LHS, RHS);
424 Add->takeName(&CI);
Chris Lattner753a2b42010-01-05 07:32:13 +0000425 Constant *V[] = {
426 UndefValue::get(LHS->getType()),
427 ConstantInt::getFalse(II->getContext())
428 };
Chris Lattnerb065b062011-06-20 04:01:31 +0000429 const StructType *ST = cast<StructType>(II->getType());
430 Constant *Struct = ConstantStruct::get(ST, V);
Chris Lattner753a2b42010-01-05 07:32:13 +0000431 return InsertValueInst::Create(Struct, Add, 0);
432 }
433 }
434 }
435 // FALL THROUGH uadd into sadd
436 case Intrinsic::sadd_with_overflow:
437 // Canonicalize constants into the RHS.
Gabor Greifa90c5c72010-06-28 16:50:57 +0000438 if (isa<Constant>(II->getArgOperand(0)) &&
439 !isa<Constant>(II->getArgOperand(1))) {
440 Value *LHS = II->getArgOperand(0);
441 II->setArgOperand(0, II->getArgOperand(1));
442 II->setArgOperand(1, LHS);
Chris Lattner753a2b42010-01-05 07:32:13 +0000443 return II;
444 }
445
446 // X + undef -> undef
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000447 if (isa<UndefValue>(II->getArgOperand(1)))
Chris Lattner753a2b42010-01-05 07:32:13 +0000448 return ReplaceInstUsesWith(CI, UndefValue::get(II->getType()));
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000449
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000450 if (ConstantInt *RHS = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
Chris Lattner753a2b42010-01-05 07:32:13 +0000451 // X + 0 -> {X, false}
452 if (RHS->isZero()) {
453 Constant *V[] = {
Eli Friedman4fffb342010-08-09 20:49:43 +0000454 UndefValue::get(II->getArgOperand(0)->getType()),
Chris Lattner753a2b42010-01-05 07:32:13 +0000455 ConstantInt::getFalse(II->getContext())
456 };
Chris Lattnerb065b062011-06-20 04:01:31 +0000457 Constant *Struct =
458 ConstantStruct::get(cast<StructType>(II->getType()), V);
Gabor Greifcea7ac72010-06-24 12:58:35 +0000459 return InsertValueInst::Create(Struct, II->getArgOperand(0), 0);
Chris Lattner753a2b42010-01-05 07:32:13 +0000460 }
461 }
462 break;
463 case Intrinsic::usub_with_overflow:
464 case Intrinsic::ssub_with_overflow:
465 // undef - X -> undef
466 // X - undef -> undef
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000467 if (isa<UndefValue>(II->getArgOperand(0)) ||
468 isa<UndefValue>(II->getArgOperand(1)))
Chris Lattner753a2b42010-01-05 07:32:13 +0000469 return ReplaceInstUsesWith(CI, UndefValue::get(II->getType()));
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000470
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000471 if (ConstantInt *RHS = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
Chris Lattner753a2b42010-01-05 07:32:13 +0000472 // X - 0 -> {X, false}
473 if (RHS->isZero()) {
474 Constant *V[] = {
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000475 UndefValue::get(II->getArgOperand(0)->getType()),
Chris Lattner753a2b42010-01-05 07:32:13 +0000476 ConstantInt::getFalse(II->getContext())
477 };
Chris Lattnerb065b062011-06-20 04:01:31 +0000478 Constant *Struct =
479 ConstantStruct::get(cast<StructType>(II->getType()), V);
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000480 return InsertValueInst::Create(Struct, II->getArgOperand(0), 0);
Chris Lattner753a2b42010-01-05 07:32:13 +0000481 }
482 }
483 break;
Benjamin Kramer6b96fe72011-03-10 18:40:14 +0000484 case Intrinsic::umul_with_overflow: {
485 Value *LHS = II->getArgOperand(0), *RHS = II->getArgOperand(1);
486 unsigned BitWidth = cast<IntegerType>(LHS->getType())->getBitWidth();
487 APInt Mask = APInt::getAllOnesValue(BitWidth);
488
489 APInt LHSKnownZero(BitWidth, 0);
490 APInt LHSKnownOne(BitWidth, 0);
491 ComputeMaskedBits(LHS, Mask, LHSKnownZero, LHSKnownOne);
492 APInt RHSKnownZero(BitWidth, 0);
493 APInt RHSKnownOne(BitWidth, 0);
494 ComputeMaskedBits(RHS, Mask, RHSKnownZero, RHSKnownOne);
495
Benjamin Kramerd655e6e2011-03-27 15:04:38 +0000496 // Get the largest possible values for each operand.
497 APInt LHSMax = ~LHSKnownZero;
498 APInt RHSMax = ~RHSKnownZero;
Benjamin Kramer6b96fe72011-03-10 18:40:14 +0000499
500 // If multiplying the maximum values does not overflow then we can turn
501 // this into a plain NUW mul.
Benjamin Kramerd655e6e2011-03-27 15:04:38 +0000502 bool Overflow;
503 LHSMax.umul_ov(RHSMax, Overflow);
504 if (!Overflow) {
Benjamin Kramer6b96fe72011-03-10 18:40:14 +0000505 Value *Mul = Builder->CreateNUWMul(LHS, RHS, "umul_with_overflow");
506 Constant *V[] = {
507 UndefValue::get(LHS->getType()),
508 Builder->getFalse()
509 };
Chris Lattnerb065b062011-06-20 04:01:31 +0000510 Constant *Struct = ConstantStruct::get(cast<StructType>(II->getType()),V);
Benjamin Kramer6b96fe72011-03-10 18:40:14 +0000511 return InsertValueInst::Create(Struct, Mul, 0);
512 }
513 } // FALL THROUGH
Chris Lattner753a2b42010-01-05 07:32:13 +0000514 case Intrinsic::smul_with_overflow:
515 // Canonicalize constants into the RHS.
Gabor Greifa90c5c72010-06-28 16:50:57 +0000516 if (isa<Constant>(II->getArgOperand(0)) &&
517 !isa<Constant>(II->getArgOperand(1))) {
518 Value *LHS = II->getArgOperand(0);
519 II->setArgOperand(0, II->getArgOperand(1));
520 II->setArgOperand(1, LHS);
Chris Lattner753a2b42010-01-05 07:32:13 +0000521 return II;
522 }
523
524 // X * undef -> undef
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000525 if (isa<UndefValue>(II->getArgOperand(1)))
Chris Lattner753a2b42010-01-05 07:32:13 +0000526 return ReplaceInstUsesWith(CI, UndefValue::get(II->getType()));
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000527
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000528 if (ConstantInt *RHSI = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
Chris Lattner753a2b42010-01-05 07:32:13 +0000529 // X*0 -> {0, false}
530 if (RHSI->isZero())
531 return ReplaceInstUsesWith(CI, Constant::getNullValue(II->getType()));
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000532
Chris Lattner753a2b42010-01-05 07:32:13 +0000533 // X * 1 -> {X, false}
534 if (RHSI->equalsInt(1)) {
535 Constant *V[] = {
Gabor Greifcea7ac72010-06-24 12:58:35 +0000536 UndefValue::get(II->getArgOperand(0)->getType()),
Chris Lattner753a2b42010-01-05 07:32:13 +0000537 ConstantInt::getFalse(II->getContext())
538 };
Chris Lattnerb065b062011-06-20 04:01:31 +0000539 Constant *Struct =
540 ConstantStruct::get(cast<StructType>(II->getType()), V);
Gabor Greifcea7ac72010-06-24 12:58:35 +0000541 return InsertValueInst::Create(Struct, II->getArgOperand(0), 0);
Chris Lattner753a2b42010-01-05 07:32:13 +0000542 }
543 }
544 break;
545 case Intrinsic::ppc_altivec_lvx:
546 case Intrinsic::ppc_altivec_lvxl:
Bill Wendlingf93f7b22011-04-13 00:36:11 +0000547 // Turn PPC lvx -> load if the pointer is known aligned.
Chris Lattner687140c2010-12-25 20:37:57 +0000548 if (getOrEnforceKnownAlignment(II->getArgOperand(0), 16, TD) >= 16) {
Gabor Greifcea7ac72010-06-24 12:58:35 +0000549 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(0),
Chris Lattner753a2b42010-01-05 07:32:13 +0000550 PointerType::getUnqual(II->getType()));
551 return new LoadInst(Ptr);
552 }
553 break;
554 case Intrinsic::ppc_altivec_stvx:
555 case Intrinsic::ppc_altivec_stvxl:
556 // Turn stvx -> store if the pointer is known aligned.
Chris Lattner687140c2010-12-25 20:37:57 +0000557 if (getOrEnforceKnownAlignment(II->getArgOperand(1), 16, TD) >= 16) {
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000558 const Type *OpPtrTy =
Gabor Greif2f1ab742010-06-24 15:51:11 +0000559 PointerType::getUnqual(II->getArgOperand(0)->getType());
560 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(1), OpPtrTy);
561 return new StoreInst(II->getArgOperand(0), Ptr);
Chris Lattner753a2b42010-01-05 07:32:13 +0000562 }
563 break;
564 case Intrinsic::x86_sse_storeu_ps:
565 case Intrinsic::x86_sse2_storeu_pd:
566 case Intrinsic::x86_sse2_storeu_dq:
567 // Turn X86 storeu -> store if the pointer is known aligned.
Chris Lattner687140c2010-12-25 20:37:57 +0000568 if (getOrEnforceKnownAlignment(II->getArgOperand(0), 16, TD) >= 16) {
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000569 const Type *OpPtrTy =
Gabor Greif2f1ab742010-06-24 15:51:11 +0000570 PointerType::getUnqual(II->getArgOperand(1)->getType());
571 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(0), OpPtrTy);
572 return new StoreInst(II->getArgOperand(1), Ptr);
Chris Lattner753a2b42010-01-05 07:32:13 +0000573 }
574 break;
Chandler Carruth9cc9f502011-01-10 07:19:37 +0000575
576 case Intrinsic::x86_sse_cvtss2si:
577 case Intrinsic::x86_sse_cvtss2si64:
578 case Intrinsic::x86_sse_cvttss2si:
579 case Intrinsic::x86_sse_cvttss2si64:
580 case Intrinsic::x86_sse2_cvtsd2si:
581 case Intrinsic::x86_sse2_cvtsd2si64:
582 case Intrinsic::x86_sse2_cvttsd2si:
583 case Intrinsic::x86_sse2_cvttsd2si64: {
584 // These intrinsics only demand the 0th element of their input vectors. If
Chris Lattner753a2b42010-01-05 07:32:13 +0000585 // we can simplify the input based on that, do so now.
586 unsigned VWidth =
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000587 cast<VectorType>(II->getArgOperand(0)->getType())->getNumElements();
Chris Lattner753a2b42010-01-05 07:32:13 +0000588 APInt DemandedElts(VWidth, 1);
589 APInt UndefElts(VWidth, 0);
Gabor Greifa3997812010-07-22 10:37:47 +0000590 if (Value *V = SimplifyDemandedVectorElts(II->getArgOperand(0),
591 DemandedElts, UndefElts)) {
Gabor Greifa90c5c72010-06-28 16:50:57 +0000592 II->setArgOperand(0, V);
Chris Lattner753a2b42010-01-05 07:32:13 +0000593 return II;
594 }
595 break;
596 }
Chandler Carruth9cc9f502011-01-10 07:19:37 +0000597
Stuart Hastingsca1ef482011-05-17 22:13:31 +0000598
599 case Intrinsic::x86_sse41_pmovsxbw:
600 case Intrinsic::x86_sse41_pmovsxwd:
601 case Intrinsic::x86_sse41_pmovsxdq:
602 case Intrinsic::x86_sse41_pmovzxbw:
603 case Intrinsic::x86_sse41_pmovzxwd:
604 case Intrinsic::x86_sse41_pmovzxdq: {
Evan Chengaaa7f492011-05-19 18:18:39 +0000605 // pmov{s|z}x ignores the upper half of their input vectors.
Stuart Hastingsca1ef482011-05-17 22:13:31 +0000606 unsigned VWidth =
607 cast<VectorType>(II->getArgOperand(0)->getType())->getNumElements();
608 unsigned LowHalfElts = VWidth / 2;
Stuart Hastingsd1166112011-05-18 15:54:26 +0000609 APInt InputDemandedElts(APInt::getBitsSet(VWidth, 0, LowHalfElts));
Stuart Hastingsca1ef482011-05-17 22:13:31 +0000610 APInt UndefElts(VWidth, 0);
611 if (Value *TmpV = SimplifyDemandedVectorElts(II->getArgOperand(0),
612 InputDemandedElts,
613 UndefElts)) {
614 II->setArgOperand(0, TmpV);
615 return II;
616 }
617 break;
618 }
619
Chris Lattner753a2b42010-01-05 07:32:13 +0000620 case Intrinsic::ppc_altivec_vperm:
621 // Turn vperm(V1,V2,mask) -> shuffle(V1,V2,mask) if mask is a constant.
Gabor Greifcea7ac72010-06-24 12:58:35 +0000622 if (ConstantVector *Mask = dyn_cast<ConstantVector>(II->getArgOperand(2))) {
Chris Lattner753a2b42010-01-05 07:32:13 +0000623 assert(Mask->getNumOperands() == 16 && "Bad type for intrinsic!");
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000624
Chris Lattner753a2b42010-01-05 07:32:13 +0000625 // Check that all of the elements are integer constants or undefs.
626 bool AllEltsOk = true;
627 for (unsigned i = 0; i != 16; ++i) {
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000628 if (!isa<ConstantInt>(Mask->getOperand(i)) &&
Chris Lattner753a2b42010-01-05 07:32:13 +0000629 !isa<UndefValue>(Mask->getOperand(i))) {
630 AllEltsOk = false;
631 break;
632 }
633 }
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000634
Chris Lattner753a2b42010-01-05 07:32:13 +0000635 if (AllEltsOk) {
636 // Cast the input vectors to byte vectors.
Gabor Greifa3997812010-07-22 10:37:47 +0000637 Value *Op0 = Builder->CreateBitCast(II->getArgOperand(0),
638 Mask->getType());
639 Value *Op1 = Builder->CreateBitCast(II->getArgOperand(1),
640 Mask->getType());
Chris Lattner753a2b42010-01-05 07:32:13 +0000641 Value *Result = UndefValue::get(Op0->getType());
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000642
Chris Lattner753a2b42010-01-05 07:32:13 +0000643 // Only extract each element once.
644 Value *ExtractedElts[32];
645 memset(ExtractedElts, 0, sizeof(ExtractedElts));
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000646
Chris Lattner753a2b42010-01-05 07:32:13 +0000647 for (unsigned i = 0; i != 16; ++i) {
648 if (isa<UndefValue>(Mask->getOperand(i)))
649 continue;
650 unsigned Idx=cast<ConstantInt>(Mask->getOperand(i))->getZExtValue();
651 Idx &= 31; // Match the hardware behavior.
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000652
Chris Lattner753a2b42010-01-05 07:32:13 +0000653 if (ExtractedElts[Idx] == 0) {
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000654 ExtractedElts[Idx] =
655 Builder->CreateExtractElement(Idx < 16 ? Op0 : Op1,
Chris Lattner753a2b42010-01-05 07:32:13 +0000656 ConstantInt::get(Type::getInt32Ty(II->getContext()),
657 Idx&15, false), "tmp");
658 }
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000659
Chris Lattner753a2b42010-01-05 07:32:13 +0000660 // Insert this value into the result vector.
661 Result = Builder->CreateInsertElement(Result, ExtractedElts[Idx],
662 ConstantInt::get(Type::getInt32Ty(II->getContext()),
663 i, false), "tmp");
664 }
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
Chris Lattner753a2b42010-01-05 07:32:13 +0000732 // If the stack restore is in a return/unwind block and if there are no
733 // allocas or calls between the restore and the return, nuke the restore.
734 if (!CannotRemove && (isa<ReturnInst>(TI) || isa<UnwindInst>(TI)))
735 return EraseInstFromFunction(CI);
736 break;
737 }
Chris Lattner753a2b42010-01-05 07:32:13 +0000738 }
739
740 return visitCallSite(II);
741}
742
743// InvokeInst simplification
744//
745Instruction *InstCombiner::visitInvokeInst(InvokeInst &II) {
746 return visitCallSite(&II);
747}
748
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000749/// isSafeToEliminateVarargsCast - If this cast does not affect the value
Chris Lattner753a2b42010-01-05 07:32:13 +0000750/// passed through the varargs area, we can eliminate the use of the cast.
751static bool isSafeToEliminateVarargsCast(const CallSite CS,
752 const CastInst * const CI,
753 const TargetData * const TD,
754 const int ix) {
755 if (!CI->isLosslessCast())
756 return false;
757
758 // The size of ByVal arguments is derived from the type, so we
759 // can't change to a type with a different size. If the size were
760 // passed explicitly we could avoid this check.
761 if (!CS.paramHasAttr(ix, Attribute::ByVal))
762 return true;
763
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000764 const Type* SrcTy =
Chris Lattner753a2b42010-01-05 07:32:13 +0000765 cast<PointerType>(CI->getOperand(0)->getType())->getElementType();
766 const Type* DstTy = cast<PointerType>(CI->getType())->getElementType();
767 if (!SrcTy->isSized() || !DstTy->isSized())
768 return false;
769 if (!TD || TD->getTypeAllocSize(SrcTy) != TD->getTypeAllocSize(DstTy))
770 return false;
771 return true;
772}
773
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000774namespace {
775class InstCombineFortifiedLibCalls : public SimplifyFortifiedLibCalls {
776 InstCombiner *IC;
777protected:
778 void replaceCall(Value *With) {
779 NewInstruction = IC->ReplaceInstUsesWith(*CI, With);
780 }
781 bool isFoldable(unsigned SizeCIOp, unsigned SizeArgOp, bool isString) const {
Benjamin Kramer8143a842011-01-06 14:22:52 +0000782 if (CI->getArgOperand(SizeCIOp) == CI->getArgOperand(SizeArgOp))
783 return true;
Gabor Greifa3997812010-07-22 10:37:47 +0000784 if (ConstantInt *SizeCI =
785 dyn_cast<ConstantInt>(CI->getArgOperand(SizeCIOp))) {
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000786 if (SizeCI->isAllOnesValue())
787 return true;
Eric Christopherb9b80c32011-03-15 00:25:41 +0000788 if (isString) {
789 uint64_t Len = GetStringLength(CI->getArgOperand(SizeArgOp));
790 // If the length is 0 we don't know how long it is and so we can't
791 // remove the check.
792 if (Len == 0) return false;
793 return SizeCI->getZExtValue() >= Len;
794 }
Gabor Greifa3997812010-07-22 10:37:47 +0000795 if (ConstantInt *Arg = dyn_cast<ConstantInt>(
796 CI->getArgOperand(SizeArgOp)))
Evan Cheng9d8f0022010-03-23 06:06:09 +0000797 return SizeCI->getZExtValue() >= Arg->getZExtValue();
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000798 }
799 return false;
800 }
801public:
802 InstCombineFortifiedLibCalls(InstCombiner *IC) : IC(IC), NewInstruction(0) { }
803 Instruction *NewInstruction;
804};
805} // end anonymous namespace
806
Eric Christopher27ceaa12010-03-06 10:50:38 +0000807// Try to fold some different type of calls here.
808// Currently we're only working with the checking functions, memcpy_chk,
809// mempcpy_chk, memmove_chk, memset_chk, strcpy_chk, stpcpy_chk, strncpy_chk,
810// strcat_chk and strncat_chk.
811Instruction *InstCombiner::tryOptimizeCall(CallInst *CI, const TargetData *TD) {
812 if (CI->getCalledFunction() == 0) return 0;
Eric Christopher27ceaa12010-03-06 10:50:38 +0000813
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000814 InstCombineFortifiedLibCalls Simplifier(this);
815 Simplifier.fold(CI, TD);
816 return Simplifier.NewInstruction;
Eric Christopher27ceaa12010-03-06 10:50:38 +0000817}
818
Chris Lattner753a2b42010-01-05 07:32:13 +0000819// visitCallSite - Improvements for call and invoke instructions.
820//
821Instruction *InstCombiner::visitCallSite(CallSite CS) {
822 bool Changed = false;
823
Chris Lattnerab215bc2010-12-20 08:25:06 +0000824 // If the callee is a pointer to a function, attempt to move any casts to the
825 // arguments of the call/invoke.
Chris Lattner753a2b42010-01-05 07:32:13 +0000826 Value *Callee = CS.getCalledValue();
Chris Lattnerab215bc2010-12-20 08:25:06 +0000827 if (!isa<Function>(Callee) && transformConstExprCastCall(CS))
828 return 0;
Chris Lattner753a2b42010-01-05 07:32:13 +0000829
830 if (Function *CalleeF = dyn_cast<Function>(Callee))
Chris Lattnerd5695612010-02-01 18:11:34 +0000831 // If the call and callee calling conventions don't match, this call must
832 // be unreachable, as the call is undefined.
833 if (CalleeF->getCallingConv() != CS.getCallingConv() &&
834 // Only do this for calls to a function with a body. A prototype may
835 // not actually end up matching the implementation's calling conv for a
836 // variety of reasons (e.g. it may be written in assembly).
837 !CalleeF->isDeclaration()) {
Chris Lattner753a2b42010-01-05 07:32:13 +0000838 Instruction *OldCall = CS.getInstruction();
Chris Lattner753a2b42010-01-05 07:32:13 +0000839 new StoreInst(ConstantInt::getTrue(Callee->getContext()),
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000840 UndefValue::get(Type::getInt1PtrTy(Callee->getContext())),
Chris Lattner753a2b42010-01-05 07:32:13 +0000841 OldCall);
842 // If OldCall dues not return void then replaceAllUsesWith undef.
843 // This allows ValueHandlers and custom metadata to adjust itself.
844 if (!OldCall->getType()->isVoidTy())
Eli Friedman3e22cb92011-05-18 00:32:01 +0000845 ReplaceInstUsesWith(*OldCall, UndefValue::get(OldCall->getType()));
Chris Lattner830f3f22010-02-01 18:04:58 +0000846 if (isa<CallInst>(OldCall))
Chris Lattner753a2b42010-01-05 07:32:13 +0000847 return EraseInstFromFunction(*OldCall);
Eric Christopher0c6a8f92010-02-03 00:21:58 +0000848
Chris Lattner830f3f22010-02-01 18:04:58 +0000849 // We cannot remove an invoke, because it would change the CFG, just
850 // change the callee to a null pointer.
Gabor Greif654c06f2010-03-20 21:00:25 +0000851 cast<InvokeInst>(OldCall)->setCalledFunction(
Chris Lattner830f3f22010-02-01 18:04:58 +0000852 Constant::getNullValue(CalleeF->getType()));
Chris Lattner753a2b42010-01-05 07:32:13 +0000853 return 0;
854 }
855
856 if (isa<ConstantPointerNull>(Callee) || isa<UndefValue>(Callee)) {
857 // This instruction is not reachable, just remove it. We insert a store to
858 // undef so that we know that this code is not reachable, despite the fact
859 // that we can't modify the CFG here.
860 new StoreInst(ConstantInt::getTrue(Callee->getContext()),
861 UndefValue::get(Type::getInt1PtrTy(Callee->getContext())),
862 CS.getInstruction());
863
Gabor Greifcea7ac72010-06-24 12:58:35 +0000864 // If CS does not return void then replaceAllUsesWith undef.
Chris Lattner753a2b42010-01-05 07:32:13 +0000865 // This allows ValueHandlers and custom metadata to adjust itself.
866 if (!CS.getInstruction()->getType()->isVoidTy())
Eli Friedman3e22cb92011-05-18 00:32:01 +0000867 ReplaceInstUsesWith(*CS.getInstruction(),
868 UndefValue::get(CS.getInstruction()->getType()));
Chris Lattner753a2b42010-01-05 07:32:13 +0000869
870 if (InvokeInst *II = dyn_cast<InvokeInst>(CS.getInstruction())) {
871 // Don't break the CFG, insert a dummy cond branch.
872 BranchInst::Create(II->getNormalDest(), II->getUnwindDest(),
873 ConstantInt::getTrue(Callee->getContext()), II);
874 }
875 return EraseInstFromFunction(*CS.getInstruction());
876 }
877
878 if (BitCastInst *BC = dyn_cast<BitCastInst>(Callee))
879 if (IntrinsicInst *In = dyn_cast<IntrinsicInst>(BC->getOperand(0)))
880 if (In->getIntrinsicID() == Intrinsic::init_trampoline)
881 return transformCallThroughTrampoline(CS);
882
883 const PointerType *PTy = cast<PointerType>(Callee->getType());
884 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
885 if (FTy->isVarArg()) {
886 int ix = FTy->getNumParams() + (isa<InvokeInst>(Callee) ? 3 : 1);
887 // See if we can optimize any arguments passed through the varargs area of
888 // the call.
889 for (CallSite::arg_iterator I = CS.arg_begin()+FTy->getNumParams(),
890 E = CS.arg_end(); I != E; ++I, ++ix) {
891 CastInst *CI = dyn_cast<CastInst>(*I);
892 if (CI && isSafeToEliminateVarargsCast(CS, CI, TD, ix)) {
893 *I = CI->getOperand(0);
894 Changed = true;
895 }
896 }
897 }
898
899 if (isa<InlineAsm>(Callee) && !CS.doesNotThrow()) {
900 // Inline asm calls cannot throw - mark them 'nounwind'.
901 CS.setDoesNotThrow();
902 Changed = true;
903 }
904
Eric Christopher27ceaa12010-03-06 10:50:38 +0000905 // Try to optimize the call if possible, we require TargetData for most of
906 // this. None of these calls are seen as possibly dead so go ahead and
907 // delete the instruction now.
908 if (CallInst *CI = dyn_cast<CallInst>(CS.getInstruction())) {
909 Instruction *I = tryOptimizeCall(CI, TD);
Eric Christopher7b323a32010-03-06 10:59:25 +0000910 // If we changed something return the result, etc. Otherwise let
911 // the fallthrough check.
912 if (I) return EraseInstFromFunction(*I);
Eric Christopher27ceaa12010-03-06 10:50:38 +0000913 }
914
Chris Lattner753a2b42010-01-05 07:32:13 +0000915 return Changed ? CS.getInstruction() : 0;
916}
917
918// transformConstExprCastCall - If the callee is a constexpr cast of a function,
919// attempt to move the cast to the arguments of the call/invoke.
920//
921bool InstCombiner::transformConstExprCastCall(CallSite CS) {
Chris Lattnerab215bc2010-12-20 08:25:06 +0000922 Function *Callee =
923 dyn_cast<Function>(CS.getCalledValue()->stripPointerCasts());
924 if (Callee == 0)
Chris Lattner753a2b42010-01-05 07:32:13 +0000925 return false;
Chris Lattner753a2b42010-01-05 07:32:13 +0000926 Instruction *Caller = CS.getInstruction();
927 const AttrListPtr &CallerPAL = CS.getAttributes();
928
929 // Okay, this is a cast from a function to a different type. Unless doing so
930 // would cause a type conversion of one of our arguments, change this call to
931 // be a direct call with arguments casted to the appropriate types.
932 //
933 const FunctionType *FT = Callee->getFunctionType();
934 const Type *OldRetTy = Caller->getType();
935 const Type *NewRetTy = FT->getReturnType();
936
Duncan Sands1df98592010-02-16 11:11:14 +0000937 if (NewRetTy->isStructTy())
Chris Lattner753a2b42010-01-05 07:32:13 +0000938 return false; // TODO: Handle multiple return values.
939
940 // Check to see if we are changing the return type...
941 if (OldRetTy != NewRetTy) {
942 if (Callee->isDeclaration() &&
943 // Conversion is ok if changing from one pointer type to another or from
944 // a pointer to an integer of the same size.
Duncan Sands1df98592010-02-16 11:11:14 +0000945 !((OldRetTy->isPointerTy() || !TD ||
Chris Lattner753a2b42010-01-05 07:32:13 +0000946 OldRetTy == TD->getIntPtrType(Caller->getContext())) &&
Duncan Sands1df98592010-02-16 11:11:14 +0000947 (NewRetTy->isPointerTy() || !TD ||
Chris Lattner753a2b42010-01-05 07:32:13 +0000948 NewRetTy == TD->getIntPtrType(Caller->getContext()))))
949 return false; // Cannot transform this return value.
950
951 if (!Caller->use_empty() &&
952 // void -> non-void is handled specially
953 !NewRetTy->isVoidTy() && !CastInst::isCastable(NewRetTy, OldRetTy))
954 return false; // Cannot transform this return value.
955
956 if (!CallerPAL.isEmpty() && !Caller->use_empty()) {
957 Attributes RAttrs = CallerPAL.getRetAttributes();
958 if (RAttrs & Attribute::typeIncompatible(NewRetTy))
959 return false; // Attribute not compatible with transformed value.
960 }
961
962 // If the callsite is an invoke instruction, and the return value is used by
963 // a PHI node in a successor, we cannot change the return type of the call
964 // because there is no place to put the cast instruction (without breaking
965 // the critical edge). Bail out in this case.
966 if (!Caller->use_empty())
967 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller))
968 for (Value::use_iterator UI = II->use_begin(), E = II->use_end();
969 UI != E; ++UI)
970 if (PHINode *PN = dyn_cast<PHINode>(*UI))
971 if (PN->getParent() == II->getNormalDest() ||
972 PN->getParent() == II->getUnwindDest())
973 return false;
974 }
975
976 unsigned NumActualArgs = unsigned(CS.arg_end()-CS.arg_begin());
977 unsigned NumCommonArgs = std::min(FT->getNumParams(), NumActualArgs);
978
979 CallSite::arg_iterator AI = CS.arg_begin();
980 for (unsigned i = 0, e = NumCommonArgs; i != e; ++i, ++AI) {
981 const Type *ParamTy = FT->getParamType(i);
982 const Type *ActTy = (*AI)->getType();
983
984 if (!CastInst::isCastable(ActTy, ParamTy))
985 return false; // Cannot transform this parameter value.
986
Chris Lattner2b9375e2010-12-20 08:36:38 +0000987 unsigned Attrs = CallerPAL.getParamAttributes(i + 1);
988 if (Attrs & Attribute::typeIncompatible(ParamTy))
Chris Lattner753a2b42010-01-05 07:32:13 +0000989 return false; // Attribute not compatible with transformed value.
Chris Lattner2b9375e2010-12-20 08:36:38 +0000990
991 // If the parameter is passed as a byval argument, then we have to have a
992 // sized type and the sized type has to have the same size as the old type.
993 if (ParamTy != ActTy && (Attrs & Attribute::ByVal)) {
994 const PointerType *ParamPTy = dyn_cast<PointerType>(ParamTy);
995 if (ParamPTy == 0 || !ParamPTy->getElementType()->isSized() || TD == 0)
996 return false;
997
998 const Type *CurElTy = cast<PointerType>(ActTy)->getElementType();
999 if (TD->getTypeAllocSize(CurElTy) !=
1000 TD->getTypeAllocSize(ParamPTy->getElementType()))
1001 return false;
1002 }
Chris Lattner753a2b42010-01-05 07:32:13 +00001003
1004 // Converting from one pointer type to another or between a pointer and an
1005 // integer of the same size is safe even if we do not have a body.
1006 bool isConvertible = ActTy == ParamTy ||
Duncan Sands1df98592010-02-16 11:11:14 +00001007 (TD && ((ParamTy->isPointerTy() ||
Chris Lattner753a2b42010-01-05 07:32:13 +00001008 ParamTy == TD->getIntPtrType(Caller->getContext())) &&
Duncan Sands1df98592010-02-16 11:11:14 +00001009 (ActTy->isPointerTy() ||
Chris Lattner753a2b42010-01-05 07:32:13 +00001010 ActTy == TD->getIntPtrType(Caller->getContext()))));
1011 if (Callee->isDeclaration() && !isConvertible) return false;
1012 }
1013
Chris Lattner091b1e32011-02-24 05:10:56 +00001014 if (Callee->isDeclaration()) {
1015 // Do not delete arguments unless we have a function body.
1016 if (FT->getNumParams() < NumActualArgs && !FT->isVarArg())
1017 return false;
Chris Lattner753a2b42010-01-05 07:32:13 +00001018
Chris Lattner091b1e32011-02-24 05:10:56 +00001019 // If the callee is just a declaration, don't change the varargsness of the
1020 // call. We don't want to introduce a varargs call where one doesn't
1021 // already exist.
1022 const PointerType *APTy = cast<PointerType>(CS.getCalledValue()->getType());
1023 if (FT->isVarArg()!=cast<FunctionType>(APTy->getElementType())->isVarArg())
1024 return false;
1025 }
1026
Chris Lattner753a2b42010-01-05 07:32:13 +00001027 if (FT->getNumParams() < NumActualArgs && FT->isVarArg() &&
1028 !CallerPAL.isEmpty())
1029 // In this case we have more arguments than the new function type, but we
1030 // won't be dropping them. Check that these extra arguments have attributes
1031 // that are compatible with being a vararg call argument.
1032 for (unsigned i = CallerPAL.getNumSlots(); i; --i) {
1033 if (CallerPAL.getSlot(i - 1).Index <= FT->getNumParams())
1034 break;
1035 Attributes PAttrs = CallerPAL.getSlot(i - 1).Attrs;
1036 if (PAttrs & Attribute::VarArgsIncompatible)
1037 return false;
1038 }
1039
Chris Lattner091b1e32011-02-24 05:10:56 +00001040
Chris Lattner753a2b42010-01-05 07:32:13 +00001041 // Okay, we decided that this is a safe thing to do: go ahead and start
Chris Lattner091b1e32011-02-24 05:10:56 +00001042 // inserting cast instructions as necessary.
Chris Lattner753a2b42010-01-05 07:32:13 +00001043 std::vector<Value*> Args;
1044 Args.reserve(NumActualArgs);
1045 SmallVector<AttributeWithIndex, 8> attrVec;
1046 attrVec.reserve(NumCommonArgs);
1047
1048 // Get any return attributes.
1049 Attributes RAttrs = CallerPAL.getRetAttributes();
1050
1051 // If the return value is not being used, the type may not be compatible
1052 // with the existing attributes. Wipe out any problematic attributes.
1053 RAttrs &= ~Attribute::typeIncompatible(NewRetTy);
1054
1055 // Add the new return attributes.
1056 if (RAttrs)
1057 attrVec.push_back(AttributeWithIndex::get(0, RAttrs));
1058
1059 AI = CS.arg_begin();
1060 for (unsigned i = 0; i != NumCommonArgs; ++i, ++AI) {
1061 const Type *ParamTy = FT->getParamType(i);
1062 if ((*AI)->getType() == ParamTy) {
1063 Args.push_back(*AI);
1064 } else {
1065 Instruction::CastOps opcode = CastInst::getCastOpcode(*AI,
1066 false, ParamTy, false);
1067 Args.push_back(Builder->CreateCast(opcode, *AI, ParamTy, "tmp"));
1068 }
1069
1070 // Add any parameter attributes.
1071 if (Attributes PAttrs = CallerPAL.getParamAttributes(i + 1))
1072 attrVec.push_back(AttributeWithIndex::get(i + 1, PAttrs));
1073 }
1074
1075 // If the function takes more arguments than the call was taking, add them
1076 // now.
1077 for (unsigned i = NumCommonArgs; i != FT->getNumParams(); ++i)
1078 Args.push_back(Constant::getNullValue(FT->getParamType(i)));
1079
1080 // If we are removing arguments to the function, emit an obnoxious warning.
1081 if (FT->getNumParams() < NumActualArgs) {
1082 if (!FT->isVarArg()) {
1083 errs() << "WARNING: While resolving call to function '"
1084 << Callee->getName() << "' arguments were dropped!\n";
1085 } else {
1086 // Add all of the arguments in their promoted form to the arg list.
1087 for (unsigned i = FT->getNumParams(); i != NumActualArgs; ++i, ++AI) {
1088 const Type *PTy = getPromotedType((*AI)->getType());
1089 if (PTy != (*AI)->getType()) {
1090 // Must promote to pass through va_arg area!
1091 Instruction::CastOps opcode =
1092 CastInst::getCastOpcode(*AI, false, PTy, false);
1093 Args.push_back(Builder->CreateCast(opcode, *AI, PTy, "tmp"));
1094 } else {
1095 Args.push_back(*AI);
1096 }
1097
1098 // Add any parameter attributes.
1099 if (Attributes PAttrs = CallerPAL.getParamAttributes(i + 1))
1100 attrVec.push_back(AttributeWithIndex::get(i + 1, PAttrs));
1101 }
1102 }
1103 }
1104
1105 if (Attributes FnAttrs = CallerPAL.getFnAttributes())
1106 attrVec.push_back(AttributeWithIndex::get(~0, FnAttrs));
1107
1108 if (NewRetTy->isVoidTy())
1109 Caller->setName(""); // Void type should not have a name.
1110
1111 const AttrListPtr &NewCallerPAL = AttrListPtr::get(attrVec.begin(),
1112 attrVec.end());
1113
1114 Instruction *NC;
1115 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
Eli Friedmanef819d02011-05-18 01:28:27 +00001116 NC = Builder->CreateInvoke(Callee, II->getNormalDest(),
1117 II->getUnwindDest(), Args.begin(), Args.end());
1118 NC->takeName(II);
Chris Lattner753a2b42010-01-05 07:32:13 +00001119 cast<InvokeInst>(NC)->setCallingConv(II->getCallingConv());
1120 cast<InvokeInst>(NC)->setAttributes(NewCallerPAL);
1121 } else {
Chris Lattner753a2b42010-01-05 07:32:13 +00001122 CallInst *CI = cast<CallInst>(Caller);
Eli Friedmanef819d02011-05-18 01:28:27 +00001123 NC = Builder->CreateCall(Callee, Args.begin(), Args.end());
1124 NC->takeName(CI);
Chris Lattner753a2b42010-01-05 07:32:13 +00001125 if (CI->isTailCall())
1126 cast<CallInst>(NC)->setTailCall();
1127 cast<CallInst>(NC)->setCallingConv(CI->getCallingConv());
1128 cast<CallInst>(NC)->setAttributes(NewCallerPAL);
1129 }
1130
1131 // Insert a cast of the return type as necessary.
1132 Value *NV = NC;
1133 if (OldRetTy != NV->getType() && !Caller->use_empty()) {
1134 if (!NV->getType()->isVoidTy()) {
Chris Lattnerab215bc2010-12-20 08:25:06 +00001135 Instruction::CastOps opcode =
1136 CastInst::getCastOpcode(NC, false, OldRetTy, false);
Chris Lattner753a2b42010-01-05 07:32:13 +00001137 NV = NC = CastInst::Create(opcode, NC, OldRetTy, "tmp");
Eli Friedmana311c342011-05-27 00:19:40 +00001138 NC->setDebugLoc(Caller->getDebugLoc());
Chris Lattner753a2b42010-01-05 07:32:13 +00001139
1140 // If this is an invoke instruction, we should insert it after the first
1141 // non-phi, instruction in the normal successor block.
1142 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
1143 BasicBlock::iterator I = II->getNormalDest()->getFirstNonPHI();
1144 InsertNewInstBefore(NC, *I);
1145 } else {
Chris Lattnerab215bc2010-12-20 08:25:06 +00001146 // Otherwise, it's a call, just insert cast right after the call.
Chris Lattner753a2b42010-01-05 07:32:13 +00001147 InsertNewInstBefore(NC, *Caller);
1148 }
1149 Worklist.AddUsersToWorkList(*Caller);
1150 } else {
1151 NV = UndefValue::get(Caller->getType());
1152 }
1153 }
1154
Chris Lattner753a2b42010-01-05 07:32:13 +00001155 if (!Caller->use_empty())
Eli Friedman3e22cb92011-05-18 00:32:01 +00001156 ReplaceInstUsesWith(*Caller, NV);
1157
Chris Lattner753a2b42010-01-05 07:32:13 +00001158 EraseInstFromFunction(*Caller);
1159 return true;
1160}
1161
1162// transformCallThroughTrampoline - Turn a call to a function created by the
1163// init_trampoline intrinsic into a direct call to the underlying function.
1164//
1165Instruction *InstCombiner::transformCallThroughTrampoline(CallSite CS) {
1166 Value *Callee = CS.getCalledValue();
1167 const PointerType *PTy = cast<PointerType>(Callee->getType());
1168 const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1169 const AttrListPtr &Attrs = CS.getAttributes();
1170
1171 // If the call already has the 'nest' attribute somewhere then give up -
1172 // otherwise 'nest' would occur twice after splicing in the chain.
1173 if (Attrs.hasAttrSomewhere(Attribute::Nest))
1174 return 0;
1175
1176 IntrinsicInst *Tramp =
1177 cast<IntrinsicInst>(cast<BitCastInst>(Callee)->getOperand(0));
1178
Gabor Greifa3997812010-07-22 10:37:47 +00001179 Function *NestF =cast<Function>(Tramp->getArgOperand(1)->stripPointerCasts());
Chris Lattner753a2b42010-01-05 07:32:13 +00001180 const PointerType *NestFPTy = cast<PointerType>(NestF->getType());
1181 const FunctionType *NestFTy = cast<FunctionType>(NestFPTy->getElementType());
1182
1183 const AttrListPtr &NestAttrs = NestF->getAttributes();
1184 if (!NestAttrs.isEmpty()) {
1185 unsigned NestIdx = 1;
1186 const Type *NestTy = 0;
1187 Attributes NestAttr = Attribute::None;
1188
1189 // Look for a parameter marked with the 'nest' attribute.
1190 for (FunctionType::param_iterator I = NestFTy->param_begin(),
1191 E = NestFTy->param_end(); I != E; ++NestIdx, ++I)
1192 if (NestAttrs.paramHasAttr(NestIdx, Attribute::Nest)) {
1193 // Record the parameter type and any other attributes.
1194 NestTy = *I;
1195 NestAttr = NestAttrs.getParamAttributes(NestIdx);
1196 break;
1197 }
1198
1199 if (NestTy) {
1200 Instruction *Caller = CS.getInstruction();
1201 std::vector<Value*> NewArgs;
1202 NewArgs.reserve(unsigned(CS.arg_end()-CS.arg_begin())+1);
1203
1204 SmallVector<AttributeWithIndex, 8> NewAttrs;
1205 NewAttrs.reserve(Attrs.getNumSlots() + 1);
1206
1207 // Insert the nest argument into the call argument list, which may
1208 // mean appending it. Likewise for attributes.
1209
1210 // Add any result attributes.
1211 if (Attributes Attr = Attrs.getRetAttributes())
1212 NewAttrs.push_back(AttributeWithIndex::get(0, Attr));
1213
1214 {
1215 unsigned Idx = 1;
1216 CallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end();
1217 do {
1218 if (Idx == NestIdx) {
1219 // Add the chain argument and attributes.
Gabor Greifcea7ac72010-06-24 12:58:35 +00001220 Value *NestVal = Tramp->getArgOperand(2);
Chris Lattner753a2b42010-01-05 07:32:13 +00001221 if (NestVal->getType() != NestTy)
Eli Friedmane6f364b2011-05-18 23:58:37 +00001222 NestVal = Builder->CreateBitCast(NestVal, NestTy, "nest");
Chris Lattner753a2b42010-01-05 07:32:13 +00001223 NewArgs.push_back(NestVal);
1224 NewAttrs.push_back(AttributeWithIndex::get(NestIdx, NestAttr));
1225 }
1226
1227 if (I == E)
1228 break;
1229
1230 // Add the original argument and attributes.
1231 NewArgs.push_back(*I);
1232 if (Attributes Attr = Attrs.getParamAttributes(Idx))
1233 NewAttrs.push_back
1234 (AttributeWithIndex::get(Idx + (Idx >= NestIdx), Attr));
1235
1236 ++Idx, ++I;
1237 } while (1);
1238 }
1239
1240 // Add any function attributes.
1241 if (Attributes Attr = Attrs.getFnAttributes())
1242 NewAttrs.push_back(AttributeWithIndex::get(~0, Attr));
1243
1244 // The trampoline may have been bitcast to a bogus type (FTy).
1245 // Handle this by synthesizing a new function type, equal to FTy
1246 // with the chain parameter inserted.
1247
1248 std::vector<const Type*> NewTypes;
1249 NewTypes.reserve(FTy->getNumParams()+1);
1250
1251 // Insert the chain's type into the list of parameter types, which may
1252 // mean appending it.
1253 {
1254 unsigned Idx = 1;
1255 FunctionType::param_iterator I = FTy->param_begin(),
1256 E = FTy->param_end();
1257
1258 do {
1259 if (Idx == NestIdx)
1260 // Add the chain's type.
1261 NewTypes.push_back(NestTy);
1262
1263 if (I == E)
1264 break;
1265
1266 // Add the original type.
1267 NewTypes.push_back(*I);
1268
1269 ++Idx, ++I;
1270 } while (1);
1271 }
1272
1273 // Replace the trampoline call with a direct call. Let the generic
1274 // code sort out any function type mismatches.
Eric Christopher0c6a8f92010-02-03 00:21:58 +00001275 FunctionType *NewFTy = FunctionType::get(FTy->getReturnType(), NewTypes,
Chris Lattner753a2b42010-01-05 07:32:13 +00001276 FTy->isVarArg());
1277 Constant *NewCallee =
1278 NestF->getType() == PointerType::getUnqual(NewFTy) ?
Eric Christopher0c6a8f92010-02-03 00:21:58 +00001279 NestF : ConstantExpr::getBitCast(NestF,
Chris Lattner753a2b42010-01-05 07:32:13 +00001280 PointerType::getUnqual(NewFTy));
1281 const AttrListPtr &NewPAL = AttrListPtr::get(NewAttrs.begin(),
1282 NewAttrs.end());
1283
1284 Instruction *NewCaller;
1285 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
1286 NewCaller = InvokeInst::Create(NewCallee,
1287 II->getNormalDest(), II->getUnwindDest(),
Eli Friedman59f15912011-05-18 19:57:14 +00001288 NewArgs.begin(), NewArgs.end());
Chris Lattner753a2b42010-01-05 07:32:13 +00001289 cast<InvokeInst>(NewCaller)->setCallingConv(II->getCallingConv());
1290 cast<InvokeInst>(NewCaller)->setAttributes(NewPAL);
1291 } else {
Eli Friedman59f15912011-05-18 19:57:14 +00001292 NewCaller = CallInst::Create(NewCallee, NewArgs.begin(), NewArgs.end());
Chris Lattner753a2b42010-01-05 07:32:13 +00001293 if (cast<CallInst>(Caller)->isTailCall())
1294 cast<CallInst>(NewCaller)->setTailCall();
1295 cast<CallInst>(NewCaller)->
1296 setCallingConv(cast<CallInst>(Caller)->getCallingConv());
1297 cast<CallInst>(NewCaller)->setAttributes(NewPAL);
1298 }
Eli Friedman59f15912011-05-18 19:57:14 +00001299
1300 return NewCaller;
Chris Lattner753a2b42010-01-05 07:32:13 +00001301 }
1302 }
1303
1304 // Replace the trampoline call with a direct call. Since there is no 'nest'
1305 // parameter, there is no need to adjust the argument list. Let the generic
1306 // code sort out any function type mismatches.
1307 Constant *NewCallee =
Eric Christopher0c6a8f92010-02-03 00:21:58 +00001308 NestF->getType() == PTy ? NestF :
Chris Lattner753a2b42010-01-05 07:32:13 +00001309 ConstantExpr::getBitCast(NestF, PTy);
1310 CS.setCalledFunction(NewCallee);
1311 return CS.getInstruction();
1312}
Eric Christopher0c6a8f92010-02-03 00:21:58 +00001313