blob: d34fab103fa3ce699a939df6b088ff60fc81482c [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) {
Jim Grosbach00e403a2012-02-03 00:07:04 +000040 MI->setAlignment(ConstantInt::get(MI->getAlignmentType(),
Chris Lattner753a2b42010-01-05 07:32:13 +000041 MinAlign, false));
42 return MI;
43 }
Jim Grosbach00e403a2012-02-03 00:07:04 +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;
Jim Grosbach00e403a2012-02-03 00:07:04 +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.
Jim Grosbach00e403a2012-02-03 00:07:04 +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.
Jim Grosbach00e403a2012-02-03 00:07:04 +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);
Jim Grosbach00e403a2012-02-03 00:07:04 +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 }
Jim Grosbach00e403a2012-02-03 00:07:04 +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 }
Jim Grosbach00e403a2012-02-03 00:07:04 +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);
Jim Grosbach00e403a2012-02-03 00:07:04 +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 }
Jim Grosbach00e403a2012-02-03 00:07:04 +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();
Jim Grosbach00e403a2012-02-03 00:07:04 +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
Jim Grosbach00e403a2012-02-03 00:07:04 +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.
Jim Grosbach00e403a2012-02-03 00:07:04 +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;
Jim Grosbach00e403a2012-02-03 00:07:04 +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);
Jim Grosbach00e403a2012-02-03 00:07:04 +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
Jim Grosbach00e403a2012-02-03 00:07:04 +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);
175
176 // If the caller function is nounwind, mark the call as nounwind, even if the
177 // callee isn't.
178 if (CI.getParent()->getParent()->doesNotThrow() &&
179 !CI.doesNotThrow()) {
180 CI.setDoesNotThrow();
181 return &CI;
182 }
Jim Grosbach00e403a2012-02-03 00:07:04 +0000183
Chris Lattner753a2b42010-01-05 07:32:13 +0000184 IntrinsicInst *II = dyn_cast<IntrinsicInst>(&CI);
185 if (!II) return visitCallSite(&CI);
Gabor Greifcea7ac72010-06-24 12:58:35 +0000186
Chris Lattner753a2b42010-01-05 07:32:13 +0000187 // Intrinsics cannot occur in an invoke, so handle them here instead of in
188 // visitCallSite.
189 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(II)) {
190 bool Changed = false;
191
192 // memmove/cpy/set of zero bytes is a noop.
193 if (Constant *NumBytes = dyn_cast<Constant>(MI->getLength())) {
Chris Lattner6eff7512010-10-01 05:51:02 +0000194 if (NumBytes->isNullValue())
195 return EraseInstFromFunction(CI);
Chris Lattner753a2b42010-01-05 07:32:13 +0000196
197 if (ConstantInt *CI = dyn_cast<ConstantInt>(NumBytes))
198 if (CI->getZExtValue() == 1) {
199 // Replace the instruction with just byte operations. We would
200 // transform other cases to loads/stores, but we don't know if
201 // alignment is sufficient.
202 }
203 }
Jim Grosbach00e403a2012-02-03 00:07:04 +0000204
Chris Lattner6eff7512010-10-01 05:51:02 +0000205 // No other transformations apply to volatile transfers.
206 if (MI->isVolatile())
207 return 0;
Chris Lattner753a2b42010-01-05 07:32:13 +0000208
209 // If we have a memmove and the source operation is a constant global,
210 // then the source and dest pointers can't alias, so we can change this
211 // into a call to memcpy.
212 if (MemMoveInst *MMI = dyn_cast<MemMoveInst>(MI)) {
213 if (GlobalVariable *GVSrc = dyn_cast<GlobalVariable>(MMI->getSource()))
214 if (GVSrc->isConstant()) {
Eric Christopher551754c2010-04-16 23:37:20 +0000215 Module *M = CI.getParent()->getParent()->getParent();
Chris Lattner753a2b42010-01-05 07:32:13 +0000216 Intrinsic::ID MemCpyID = Intrinsic::memcpy;
Jay Foad5fdd6c82011-07-12 14:06:48 +0000217 Type *Tys[3] = { CI.getArgOperand(0)->getType(),
218 CI.getArgOperand(1)->getType(),
219 CI.getArgOperand(2)->getType() };
Benjamin Kramereb9a85f2011-07-14 17:45:39 +0000220 CI.setCalledFunction(Intrinsic::getDeclaration(M, MemCpyID, Tys));
Chris Lattner753a2b42010-01-05 07:32:13 +0000221 Changed = true;
222 }
223 }
224
225 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(MI)) {
226 // memmove(x,x,size) -> noop.
227 if (MTI->getSource() == MTI->getDest())
228 return EraseInstFromFunction(CI);
Eric Christopher551754c2010-04-16 23:37:20 +0000229 }
Chris Lattner753a2b42010-01-05 07:32:13 +0000230
Eric Christopher551754c2010-04-16 23:37:20 +0000231 // If we can determine a pointer alignment that is bigger than currently
232 // set, update the alignment.
233 if (isa<MemTransferInst>(MI)) {
234 if (Instruction *I = SimplifyMemTransfer(MI))
Chris Lattner753a2b42010-01-05 07:32:13 +0000235 return I;
236 } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(MI)) {
237 if (Instruction *I = SimplifyMemSet(MSI))
238 return I;
239 }
Gabor Greifc310fcc2010-06-24 13:42:49 +0000240
Chris Lattner753a2b42010-01-05 07:32:13 +0000241 if (Changed) return II;
242 }
Jim Grosbach00e403a2012-02-03 00:07:04 +0000243
Chris Lattner753a2b42010-01-05 07:32:13 +0000244 switch (II->getIntrinsicID()) {
245 default: break;
Eric Christopher415326b2010-02-09 21:24:27 +0000246 case Intrinsic::objectsize: {
Nuno Lopes9e72a792012-06-21 15:45:28 +0000247 uint64_t Size;
248 if (getObjectSize(II->getArgOperand(0), Size, TD))
249 return ReplaceInstUsesWith(CI, ConstantInt::get(CI.getType(), Size));
250 return 0;
Eric Christopher415326b2010-02-09 21:24:27 +0000251 }
Chris Lattner753a2b42010-01-05 07:32:13 +0000252 case Intrinsic::bswap:
253 // bswap(bswap(x)) -> x
Gabor Greifcea7ac72010-06-24 12:58:35 +0000254 if (IntrinsicInst *Operand = dyn_cast<IntrinsicInst>(II->getArgOperand(0)))
Chris Lattner753a2b42010-01-05 07:32:13 +0000255 if (Operand->getIntrinsicID() == Intrinsic::bswap)
Gabor Greifcea7ac72010-06-24 12:58:35 +0000256 return ReplaceInstUsesWith(CI, Operand->getArgOperand(0));
Jim Grosbach00e403a2012-02-03 00:07:04 +0000257
Chris Lattner753a2b42010-01-05 07:32:13 +0000258 // bswap(trunc(bswap(x))) -> trunc(lshr(x, c))
Gabor Greifcea7ac72010-06-24 12:58:35 +0000259 if (TruncInst *TI = dyn_cast<TruncInst>(II->getArgOperand(0))) {
Chris Lattner753a2b42010-01-05 07:32:13 +0000260 if (IntrinsicInst *Operand = dyn_cast<IntrinsicInst>(TI->getOperand(0)))
261 if (Operand->getIntrinsicID() == Intrinsic::bswap) {
262 unsigned C = Operand->getType()->getPrimitiveSizeInBits() -
263 TI->getType()->getPrimitiveSizeInBits();
264 Value *CV = ConstantInt::get(Operand->getType(), C);
Gabor Greifcea7ac72010-06-24 12:58:35 +0000265 Value *V = Builder->CreateLShr(Operand->getArgOperand(0), CV);
Chris Lattner753a2b42010-01-05 07:32:13 +0000266 return new TruncInst(V, TI->getType());
267 }
268 }
Jim Grosbach00e403a2012-02-03 00:07:04 +0000269
Chris Lattner753a2b42010-01-05 07:32:13 +0000270 break;
271 case Intrinsic::powi:
Gabor Greifcea7ac72010-06-24 12:58:35 +0000272 if (ConstantInt *Power = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
Chris Lattner753a2b42010-01-05 07:32:13 +0000273 // powi(x, 0) -> 1.0
274 if (Power->isZero())
275 return ReplaceInstUsesWith(CI, ConstantFP::get(CI.getType(), 1.0));
276 // powi(x, 1) -> x
277 if (Power->isOne())
Gabor Greifcea7ac72010-06-24 12:58:35 +0000278 return ReplaceInstUsesWith(CI, II->getArgOperand(0));
Chris Lattner753a2b42010-01-05 07:32:13 +0000279 // powi(x, -1) -> 1/x
280 if (Power->isAllOnesValue())
281 return BinaryOperator::CreateFDiv(ConstantFP::get(CI.getType(), 1.0),
Gabor Greifcea7ac72010-06-24 12:58:35 +0000282 II->getArgOperand(0));
Chris Lattner753a2b42010-01-05 07:32:13 +0000283 }
284 break;
285 case Intrinsic::cttz: {
286 // If all bits below the first known one are known zero,
287 // this value is constant.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000288 IntegerType *IT = dyn_cast<IntegerType>(II->getArgOperand(0)->getType());
Owen Andersonf1ac4652011-07-01 21:52:38 +0000289 // FIXME: Try to simplify vectors of integers.
290 if (!IT) break;
Chris Lattner753a2b42010-01-05 07:32:13 +0000291 uint32_t BitWidth = IT->getBitWidth();
292 APInt KnownZero(BitWidth, 0);
293 APInt KnownOne(BitWidth, 0);
Rafael Espindola26c8dcc2012-04-04 12:51:34 +0000294 ComputeMaskedBits(II->getArgOperand(0), KnownZero, KnownOne);
Chris Lattner753a2b42010-01-05 07:32:13 +0000295 unsigned TrailingZeros = KnownOne.countTrailingZeros();
296 APInt Mask(APInt::getLowBitsSet(BitWidth, TrailingZeros));
297 if ((Mask & KnownZero) == Mask)
298 return ReplaceInstUsesWith(CI, ConstantInt::get(IT,
299 APInt(BitWidth, TrailingZeros)));
Jim Grosbach00e403a2012-02-03 00:07:04 +0000300
Chris Lattner753a2b42010-01-05 07:32:13 +0000301 }
302 break;
303 case Intrinsic::ctlz: {
304 // If all bits above the first known one are known zero,
305 // this value is constant.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000306 IntegerType *IT = dyn_cast<IntegerType>(II->getArgOperand(0)->getType());
Owen Andersonf1ac4652011-07-01 21:52:38 +0000307 // FIXME: Try to simplify vectors of integers.
308 if (!IT) break;
Chris Lattner753a2b42010-01-05 07:32:13 +0000309 uint32_t BitWidth = IT->getBitWidth();
310 APInt KnownZero(BitWidth, 0);
311 APInt KnownOne(BitWidth, 0);
Rafael Espindola26c8dcc2012-04-04 12:51:34 +0000312 ComputeMaskedBits(II->getArgOperand(0), KnownZero, KnownOne);
Chris Lattner753a2b42010-01-05 07:32:13 +0000313 unsigned LeadingZeros = KnownOne.countLeadingZeros();
314 APInt Mask(APInt::getHighBitsSet(BitWidth, LeadingZeros));
315 if ((Mask & KnownZero) == Mask)
316 return ReplaceInstUsesWith(CI, ConstantInt::get(IT,
317 APInt(BitWidth, LeadingZeros)));
Jim Grosbach00e403a2012-02-03 00:07:04 +0000318
Chris Lattner753a2b42010-01-05 07:32:13 +0000319 }
320 break;
321 case Intrinsic::uadd_with_overflow: {
Gabor Greifcea7ac72010-06-24 12:58:35 +0000322 Value *LHS = II->getArgOperand(0), *RHS = II->getArgOperand(1);
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000323 IntegerType *IT = cast<IntegerType>(II->getArgOperand(0)->getType());
Chris Lattner753a2b42010-01-05 07:32:13 +0000324 uint32_t BitWidth = IT->getBitWidth();
Chris Lattner753a2b42010-01-05 07:32:13 +0000325 APInt LHSKnownZero(BitWidth, 0);
326 APInt LHSKnownOne(BitWidth, 0);
Rafael Espindola26c8dcc2012-04-04 12:51:34 +0000327 ComputeMaskedBits(LHS, LHSKnownZero, LHSKnownOne);
Chris Lattner753a2b42010-01-05 07:32:13 +0000328 bool LHSKnownNegative = LHSKnownOne[BitWidth - 1];
329 bool LHSKnownPositive = LHSKnownZero[BitWidth - 1];
330
331 if (LHSKnownNegative || LHSKnownPositive) {
332 APInt RHSKnownZero(BitWidth, 0);
333 APInt RHSKnownOne(BitWidth, 0);
Rafael Espindola26c8dcc2012-04-04 12:51:34 +0000334 ComputeMaskedBits(RHS, RHSKnownZero, RHSKnownOne);
Chris Lattner753a2b42010-01-05 07:32:13 +0000335 bool RHSKnownNegative = RHSKnownOne[BitWidth - 1];
336 bool RHSKnownPositive = RHSKnownZero[BitWidth - 1];
337 if (LHSKnownNegative && RHSKnownNegative) {
338 // The sign bit is set in both cases: this MUST overflow.
339 // Create a simple add instruction, and insert it into the struct.
Eli Friedman59f15912011-05-18 19:57:14 +0000340 Value *Add = Builder->CreateAdd(LHS, RHS);
341 Add->takeName(&CI);
Chris Lattner753a2b42010-01-05 07:32:13 +0000342 Constant *V[] = {
Eli Friedman59f15912011-05-18 19:57:14 +0000343 UndefValue::get(LHS->getType()),
344 ConstantInt::getTrue(II->getContext())
Chris Lattner753a2b42010-01-05 07:32:13 +0000345 };
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000346 StructType *ST = cast<StructType>(II->getType());
Chris Lattnerb065b062011-06-20 04:01:31 +0000347 Constant *Struct = ConstantStruct::get(ST, V);
Chris Lattner753a2b42010-01-05 07:32:13 +0000348 return InsertValueInst::Create(Struct, Add, 0);
349 }
Eli Friedman59f15912011-05-18 19:57:14 +0000350
Chris Lattner753a2b42010-01-05 07:32:13 +0000351 if (LHSKnownPositive && RHSKnownPositive) {
352 // The sign bit is clear in both cases: this CANNOT overflow.
353 // Create a simple add instruction, and insert it into the struct.
Eli Friedman59f15912011-05-18 19:57:14 +0000354 Value *Add = Builder->CreateNUWAdd(LHS, RHS);
355 Add->takeName(&CI);
Chris Lattner753a2b42010-01-05 07:32:13 +0000356 Constant *V[] = {
357 UndefValue::get(LHS->getType()),
358 ConstantInt::getFalse(II->getContext())
359 };
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000360 StructType *ST = cast<StructType>(II->getType());
Chris Lattnerb065b062011-06-20 04:01:31 +0000361 Constant *Struct = ConstantStruct::get(ST, V);
Chris Lattner753a2b42010-01-05 07:32:13 +0000362 return InsertValueInst::Create(Struct, Add, 0);
363 }
364 }
365 }
366 // FALL THROUGH uadd into sadd
367 case Intrinsic::sadd_with_overflow:
368 // Canonicalize constants into the RHS.
Gabor Greifa90c5c72010-06-28 16:50:57 +0000369 if (isa<Constant>(II->getArgOperand(0)) &&
370 !isa<Constant>(II->getArgOperand(1))) {
371 Value *LHS = II->getArgOperand(0);
372 II->setArgOperand(0, II->getArgOperand(1));
373 II->setArgOperand(1, LHS);
Chris Lattner753a2b42010-01-05 07:32:13 +0000374 return II;
375 }
376
377 // X + undef -> undef
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000378 if (isa<UndefValue>(II->getArgOperand(1)))
Chris Lattner753a2b42010-01-05 07:32:13 +0000379 return ReplaceInstUsesWith(CI, UndefValue::get(II->getType()));
Jim Grosbach00e403a2012-02-03 00:07:04 +0000380
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000381 if (ConstantInt *RHS = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
Chris Lattner753a2b42010-01-05 07:32:13 +0000382 // X + 0 -> {X, false}
383 if (RHS->isZero()) {
384 Constant *V[] = {
Eli Friedman4fffb342010-08-09 20:49:43 +0000385 UndefValue::get(II->getArgOperand(0)->getType()),
Chris Lattner753a2b42010-01-05 07:32:13 +0000386 ConstantInt::getFalse(II->getContext())
387 };
Chris Lattnerb065b062011-06-20 04:01:31 +0000388 Constant *Struct =
389 ConstantStruct::get(cast<StructType>(II->getType()), V);
Gabor Greifcea7ac72010-06-24 12:58:35 +0000390 return InsertValueInst::Create(Struct, II->getArgOperand(0), 0);
Chris Lattner753a2b42010-01-05 07:32:13 +0000391 }
392 }
393 break;
394 case Intrinsic::usub_with_overflow:
395 case Intrinsic::ssub_with_overflow:
396 // undef - X -> undef
397 // X - undef -> undef
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000398 if (isa<UndefValue>(II->getArgOperand(0)) ||
399 isa<UndefValue>(II->getArgOperand(1)))
Chris Lattner753a2b42010-01-05 07:32:13 +0000400 return ReplaceInstUsesWith(CI, UndefValue::get(II->getType()));
Jim Grosbach00e403a2012-02-03 00:07:04 +0000401
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000402 if (ConstantInt *RHS = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
Chris Lattner753a2b42010-01-05 07:32:13 +0000403 // X - 0 -> {X, false}
404 if (RHS->isZero()) {
405 Constant *V[] = {
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000406 UndefValue::get(II->getArgOperand(0)->getType()),
Chris Lattner753a2b42010-01-05 07:32:13 +0000407 ConstantInt::getFalse(II->getContext())
408 };
Jim Grosbach00e403a2012-02-03 00:07:04 +0000409 Constant *Struct =
Chris Lattnerb065b062011-06-20 04:01:31 +0000410 ConstantStruct::get(cast<StructType>(II->getType()), V);
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000411 return InsertValueInst::Create(Struct, II->getArgOperand(0), 0);
Chris Lattner753a2b42010-01-05 07:32:13 +0000412 }
413 }
414 break;
Benjamin Kramer6b96fe72011-03-10 18:40:14 +0000415 case Intrinsic::umul_with_overflow: {
416 Value *LHS = II->getArgOperand(0), *RHS = II->getArgOperand(1);
417 unsigned BitWidth = cast<IntegerType>(LHS->getType())->getBitWidth();
Benjamin Kramer6b96fe72011-03-10 18:40:14 +0000418
419 APInt LHSKnownZero(BitWidth, 0);
420 APInt LHSKnownOne(BitWidth, 0);
Rafael Espindola26c8dcc2012-04-04 12:51:34 +0000421 ComputeMaskedBits(LHS, LHSKnownZero, LHSKnownOne);
Benjamin Kramer6b96fe72011-03-10 18:40:14 +0000422 APInt RHSKnownZero(BitWidth, 0);
423 APInt RHSKnownOne(BitWidth, 0);
Rafael Espindola26c8dcc2012-04-04 12:51:34 +0000424 ComputeMaskedBits(RHS, RHSKnownZero, RHSKnownOne);
Benjamin Kramer6b96fe72011-03-10 18:40:14 +0000425
Benjamin Kramerd655e6e2011-03-27 15:04:38 +0000426 // Get the largest possible values for each operand.
427 APInt LHSMax = ~LHSKnownZero;
428 APInt RHSMax = ~RHSKnownZero;
Benjamin Kramer6b96fe72011-03-10 18:40:14 +0000429
430 // If multiplying the maximum values does not overflow then we can turn
431 // this into a plain NUW mul.
Benjamin Kramerd655e6e2011-03-27 15:04:38 +0000432 bool Overflow;
433 LHSMax.umul_ov(RHSMax, Overflow);
434 if (!Overflow) {
Benjamin Kramer6b96fe72011-03-10 18:40:14 +0000435 Value *Mul = Builder->CreateNUWMul(LHS, RHS, "umul_with_overflow");
436 Constant *V[] = {
437 UndefValue::get(LHS->getType()),
438 Builder->getFalse()
439 };
Chris Lattnerb065b062011-06-20 04:01:31 +0000440 Constant *Struct = ConstantStruct::get(cast<StructType>(II->getType()),V);
Benjamin Kramer6b96fe72011-03-10 18:40:14 +0000441 return InsertValueInst::Create(Struct, Mul, 0);
442 }
443 } // FALL THROUGH
Chris Lattner753a2b42010-01-05 07:32:13 +0000444 case Intrinsic::smul_with_overflow:
445 // Canonicalize constants into the RHS.
Gabor Greifa90c5c72010-06-28 16:50:57 +0000446 if (isa<Constant>(II->getArgOperand(0)) &&
447 !isa<Constant>(II->getArgOperand(1))) {
448 Value *LHS = II->getArgOperand(0);
449 II->setArgOperand(0, II->getArgOperand(1));
450 II->setArgOperand(1, LHS);
Chris Lattner753a2b42010-01-05 07:32:13 +0000451 return II;
452 }
453
454 // X * undef -> undef
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000455 if (isa<UndefValue>(II->getArgOperand(1)))
Chris Lattner753a2b42010-01-05 07:32:13 +0000456 return ReplaceInstUsesWith(CI, UndefValue::get(II->getType()));
Jim Grosbach00e403a2012-02-03 00:07:04 +0000457
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000458 if (ConstantInt *RHSI = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
Chris Lattner753a2b42010-01-05 07:32:13 +0000459 // X*0 -> {0, false}
460 if (RHSI->isZero())
461 return ReplaceInstUsesWith(CI, Constant::getNullValue(II->getType()));
Jim Grosbach00e403a2012-02-03 00:07:04 +0000462
Chris Lattner753a2b42010-01-05 07:32:13 +0000463 // X * 1 -> {X, false}
464 if (RHSI->equalsInt(1)) {
465 Constant *V[] = {
Gabor Greifcea7ac72010-06-24 12:58:35 +0000466 UndefValue::get(II->getArgOperand(0)->getType()),
Chris Lattner753a2b42010-01-05 07:32:13 +0000467 ConstantInt::getFalse(II->getContext())
468 };
Jim Grosbach00e403a2012-02-03 00:07:04 +0000469 Constant *Struct =
Chris Lattnerb065b062011-06-20 04:01:31 +0000470 ConstantStruct::get(cast<StructType>(II->getType()), V);
Gabor Greifcea7ac72010-06-24 12:58:35 +0000471 return InsertValueInst::Create(Struct, II->getArgOperand(0), 0);
Chris Lattner753a2b42010-01-05 07:32:13 +0000472 }
473 }
474 break;
475 case Intrinsic::ppc_altivec_lvx:
476 case Intrinsic::ppc_altivec_lvxl:
Bill Wendlingf93f7b22011-04-13 00:36:11 +0000477 // Turn PPC lvx -> load if the pointer is known aligned.
Chris Lattner687140c2010-12-25 20:37:57 +0000478 if (getOrEnforceKnownAlignment(II->getArgOperand(0), 16, TD) >= 16) {
Gabor Greifcea7ac72010-06-24 12:58:35 +0000479 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(0),
Chris Lattner753a2b42010-01-05 07:32:13 +0000480 PointerType::getUnqual(II->getType()));
481 return new LoadInst(Ptr);
482 }
483 break;
484 case Intrinsic::ppc_altivec_stvx:
485 case Intrinsic::ppc_altivec_stvxl:
486 // Turn stvx -> store if the pointer is known aligned.
Chris Lattner687140c2010-12-25 20:37:57 +0000487 if (getOrEnforceKnownAlignment(II->getArgOperand(1), 16, TD) >= 16) {
Jim Grosbach00e403a2012-02-03 00:07:04 +0000488 Type *OpPtrTy =
Gabor Greif2f1ab742010-06-24 15:51:11 +0000489 PointerType::getUnqual(II->getArgOperand(0)->getType());
490 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(1), OpPtrTy);
491 return new StoreInst(II->getArgOperand(0), Ptr);
Chris Lattner753a2b42010-01-05 07:32:13 +0000492 }
493 break;
494 case Intrinsic::x86_sse_storeu_ps:
495 case Intrinsic::x86_sse2_storeu_pd:
496 case Intrinsic::x86_sse2_storeu_dq:
497 // Turn X86 storeu -> store if the pointer is known aligned.
Chris Lattner687140c2010-12-25 20:37:57 +0000498 if (getOrEnforceKnownAlignment(II->getArgOperand(0), 16, TD) >= 16) {
Jim Grosbach00e403a2012-02-03 00:07:04 +0000499 Type *OpPtrTy =
Gabor Greif2f1ab742010-06-24 15:51:11 +0000500 PointerType::getUnqual(II->getArgOperand(1)->getType());
501 Value *Ptr = Builder->CreateBitCast(II->getArgOperand(0), OpPtrTy);
502 return new StoreInst(II->getArgOperand(1), Ptr);
Chris Lattner753a2b42010-01-05 07:32:13 +0000503 }
504 break;
Chandler Carruth9cc9f502011-01-10 07:19:37 +0000505
506 case Intrinsic::x86_sse_cvtss2si:
507 case Intrinsic::x86_sse_cvtss2si64:
508 case Intrinsic::x86_sse_cvttss2si:
509 case Intrinsic::x86_sse_cvttss2si64:
510 case Intrinsic::x86_sse2_cvtsd2si:
511 case Intrinsic::x86_sse2_cvtsd2si64:
512 case Intrinsic::x86_sse2_cvttsd2si:
513 case Intrinsic::x86_sse2_cvttsd2si64: {
514 // These intrinsics only demand the 0th element of their input vectors. If
Chris Lattner753a2b42010-01-05 07:32:13 +0000515 // we can simplify the input based on that, do so now.
516 unsigned VWidth =
Gabor Greif9c68a7b2010-06-25 07:57:14 +0000517 cast<VectorType>(II->getArgOperand(0)->getType())->getNumElements();
Chris Lattner753a2b42010-01-05 07:32:13 +0000518 APInt DemandedElts(VWidth, 1);
519 APInt UndefElts(VWidth, 0);
Gabor Greifa3997812010-07-22 10:37:47 +0000520 if (Value *V = SimplifyDemandedVectorElts(II->getArgOperand(0),
521 DemandedElts, UndefElts)) {
Gabor Greifa90c5c72010-06-28 16:50:57 +0000522 II->setArgOperand(0, V);
Chris Lattner753a2b42010-01-05 07:32:13 +0000523 return II;
524 }
525 break;
526 }
Chandler Carruth9cc9f502011-01-10 07:19:37 +0000527
Stuart Hastingsca1ef482011-05-17 22:13:31 +0000528
529 case Intrinsic::x86_sse41_pmovsxbw:
530 case Intrinsic::x86_sse41_pmovsxwd:
531 case Intrinsic::x86_sse41_pmovsxdq:
532 case Intrinsic::x86_sse41_pmovzxbw:
533 case Intrinsic::x86_sse41_pmovzxwd:
534 case Intrinsic::x86_sse41_pmovzxdq: {
Evan Chengaaa7f492011-05-19 18:18:39 +0000535 // pmov{s|z}x ignores the upper half of their input vectors.
Stuart Hastingsca1ef482011-05-17 22:13:31 +0000536 unsigned VWidth =
537 cast<VectorType>(II->getArgOperand(0)->getType())->getNumElements();
538 unsigned LowHalfElts = VWidth / 2;
Stuart Hastingsd1166112011-05-18 15:54:26 +0000539 APInt InputDemandedElts(APInt::getBitsSet(VWidth, 0, LowHalfElts));
Stuart Hastingsca1ef482011-05-17 22:13:31 +0000540 APInt UndefElts(VWidth, 0);
541 if (Value *TmpV = SimplifyDemandedVectorElts(II->getArgOperand(0),
542 InputDemandedElts,
543 UndefElts)) {
544 II->setArgOperand(0, TmpV);
545 return II;
546 }
547 break;
548 }
549
Chris Lattner753a2b42010-01-05 07:32:13 +0000550 case Intrinsic::ppc_altivec_vperm:
551 // Turn vperm(V1,V2,mask) -> shuffle(V1,V2,mask) if mask is a constant.
Chris Lattnera78fa8c2012-01-27 03:08:05 +0000552 if (Constant *Mask = dyn_cast<Constant>(II->getArgOperand(2))) {
553 assert(Mask->getType()->getVectorNumElements() == 16 &&
554 "Bad type for intrinsic!");
Jim Grosbach00e403a2012-02-03 00:07:04 +0000555
Chris Lattner753a2b42010-01-05 07:32:13 +0000556 // Check that all of the elements are integer constants or undefs.
557 bool AllEltsOk = true;
558 for (unsigned i = 0; i != 16; ++i) {
Chris Lattnera78fa8c2012-01-27 03:08:05 +0000559 Constant *Elt = Mask->getAggregateElement(i);
560 if (Elt == 0 ||
561 !(isa<ConstantInt>(Elt) || isa<UndefValue>(Elt))) {
Chris Lattner753a2b42010-01-05 07:32:13 +0000562 AllEltsOk = false;
563 break;
564 }
565 }
Jim Grosbach00e403a2012-02-03 00:07:04 +0000566
Chris Lattner753a2b42010-01-05 07:32:13 +0000567 if (AllEltsOk) {
568 // Cast the input vectors to byte vectors.
Gabor Greifa3997812010-07-22 10:37:47 +0000569 Value *Op0 = Builder->CreateBitCast(II->getArgOperand(0),
570 Mask->getType());
571 Value *Op1 = Builder->CreateBitCast(II->getArgOperand(1),
572 Mask->getType());
Chris Lattner753a2b42010-01-05 07:32:13 +0000573 Value *Result = UndefValue::get(Op0->getType());
Jim Grosbach00e403a2012-02-03 00:07:04 +0000574
Chris Lattner753a2b42010-01-05 07:32:13 +0000575 // Only extract each element once.
576 Value *ExtractedElts[32];
577 memset(ExtractedElts, 0, sizeof(ExtractedElts));
Jim Grosbach00e403a2012-02-03 00:07:04 +0000578
Chris Lattner753a2b42010-01-05 07:32:13 +0000579 for (unsigned i = 0; i != 16; ++i) {
Chris Lattnera78fa8c2012-01-27 03:08:05 +0000580 if (isa<UndefValue>(Mask->getAggregateElement(i)))
Chris Lattner753a2b42010-01-05 07:32:13 +0000581 continue;
Jim Grosbach00e403a2012-02-03 00:07:04 +0000582 unsigned Idx =
Chris Lattnera78fa8c2012-01-27 03:08:05 +0000583 cast<ConstantInt>(Mask->getAggregateElement(i))->getZExtValue();
Chris Lattner753a2b42010-01-05 07:32:13 +0000584 Idx &= 31; // Match the hardware behavior.
Jim Grosbach00e403a2012-02-03 00:07:04 +0000585
Chris Lattner753a2b42010-01-05 07:32:13 +0000586 if (ExtractedElts[Idx] == 0) {
Jim Grosbach00e403a2012-02-03 00:07:04 +0000587 ExtractedElts[Idx] =
Benjamin Kramera9390a42011-09-27 20:39:19 +0000588 Builder->CreateExtractElement(Idx < 16 ? Op0 : Op1,
589 Builder->getInt32(Idx&15));
Chris Lattner753a2b42010-01-05 07:32:13 +0000590 }
Jim Grosbach00e403a2012-02-03 00:07:04 +0000591
Chris Lattner753a2b42010-01-05 07:32:13 +0000592 // Insert this value into the result vector.
593 Result = Builder->CreateInsertElement(Result, ExtractedElts[Idx],
Benjamin Kramera9390a42011-09-27 20:39:19 +0000594 Builder->getInt32(i));
Chris Lattner753a2b42010-01-05 07:32:13 +0000595 }
596 return CastInst::Create(Instruction::BitCast, Result, CI.getType());
597 }
598 }
599 break;
600
Bob Wilson364f17c2010-10-22 21:41:48 +0000601 case Intrinsic::arm_neon_vld1:
602 case Intrinsic::arm_neon_vld2:
603 case Intrinsic::arm_neon_vld3:
604 case Intrinsic::arm_neon_vld4:
605 case Intrinsic::arm_neon_vld2lane:
606 case Intrinsic::arm_neon_vld3lane:
607 case Intrinsic::arm_neon_vld4lane:
608 case Intrinsic::arm_neon_vst1:
609 case Intrinsic::arm_neon_vst2:
610 case Intrinsic::arm_neon_vst3:
611 case Intrinsic::arm_neon_vst4:
612 case Intrinsic::arm_neon_vst2lane:
613 case Intrinsic::arm_neon_vst3lane:
614 case Intrinsic::arm_neon_vst4lane: {
Chris Lattnerae47be12010-12-25 20:52:04 +0000615 unsigned MemAlign = getKnownAlignment(II->getArgOperand(0), TD);
Bob Wilson364f17c2010-10-22 21:41:48 +0000616 unsigned AlignArg = II->getNumArgOperands() - 1;
617 ConstantInt *IntrAlign = dyn_cast<ConstantInt>(II->getArgOperand(AlignArg));
618 if (IntrAlign && IntrAlign->getZExtValue() < MemAlign) {
619 II->setArgOperand(AlignArg,
620 ConstantInt::get(Type::getInt32Ty(II->getContext()),
621 MemAlign, false));
622 return II;
623 }
624 break;
625 }
626
Lang Hames973f72a2012-05-01 00:20:38 +0000627 case Intrinsic::arm_neon_vmulls:
628 case Intrinsic::arm_neon_vmullu: {
629 Value *Arg0 = II->getArgOperand(0);
630 Value *Arg1 = II->getArgOperand(1);
631
632 // Handle mul by zero first:
633 if (isa<ConstantAggregateZero>(Arg0) || isa<ConstantAggregateZero>(Arg1)) {
634 return ReplaceInstUsesWith(CI, ConstantAggregateZero::get(II->getType()));
635 }
636
637 // Check for constant LHS & RHS - in this case we just simplify.
638 bool Zext = (II->getIntrinsicID() == Intrinsic::arm_neon_vmullu);
639 VectorType *NewVT = cast<VectorType>(II->getType());
640 unsigned NewWidth = NewVT->getElementType()->getIntegerBitWidth();
641 if (ConstantDataVector *CV0 = dyn_cast<ConstantDataVector>(Arg0)) {
642 if (ConstantDataVector *CV1 = dyn_cast<ConstantDataVector>(Arg1)) {
643 VectorType* VT = cast<VectorType>(CV0->getType());
644 SmallVector<Constant*, 4> NewElems;
645 for (unsigned i = 0; i < VT->getNumElements(); ++i) {
646 APInt CV0E =
647 (cast<ConstantInt>(CV0->getAggregateElement(i)))->getValue();
648 CV0E = Zext ? CV0E.zext(NewWidth) : CV0E.sext(NewWidth);
649 APInt CV1E =
650 (cast<ConstantInt>(CV1->getAggregateElement(i)))->getValue();
651 CV1E = Zext ? CV1E.zext(NewWidth) : CV1E.sext(NewWidth);
652 NewElems.push_back(
653 ConstantInt::get(NewVT->getElementType(), CV0E * CV1E));
654 }
655 return ReplaceInstUsesWith(CI, ConstantVector::get(NewElems));
656 }
657
658 // Couldn't simplify - cannonicalize constant to the RHS.
659 std::swap(Arg0, Arg1);
660 }
661
662 // Handle mul by one:
663 if (ConstantDataVector *CV1 = dyn_cast<ConstantDataVector>(Arg1)) {
664 if (ConstantInt *Splat =
665 dyn_cast_or_null<ConstantInt>(CV1->getSplatValue())) {
666 if (Splat->isOne()) {
667 if (Zext)
668 return CastInst::CreateZExtOrBitCast(Arg0, II->getType());
669 // else
670 return CastInst::CreateSExtOrBitCast(Arg0, II->getType());
671 }
672 }
673 }
674
675 break;
676 }
677
Chris Lattner753a2b42010-01-05 07:32:13 +0000678 case Intrinsic::stackrestore: {
679 // If the save is right next to the restore, remove the restore. This can
680 // happen when variable allocas are DCE'd.
Gabor Greifcea7ac72010-06-24 12:58:35 +0000681 if (IntrinsicInst *SS = dyn_cast<IntrinsicInst>(II->getArgOperand(0))) {
Chris Lattner753a2b42010-01-05 07:32:13 +0000682 if (SS->getIntrinsicID() == Intrinsic::stacksave) {
683 BasicBlock::iterator BI = SS;
684 if (&*++BI == II)
685 return EraseInstFromFunction(CI);
686 }
687 }
Jim Grosbach00e403a2012-02-03 00:07:04 +0000688
Chris Lattner753a2b42010-01-05 07:32:13 +0000689 // Scan down this block to see if there is another stack restore in the
690 // same block without an intervening call/alloca.
691 BasicBlock::iterator BI = II;
692 TerminatorInst *TI = II->getParent()->getTerminator();
693 bool CannotRemove = false;
694 for (++BI; &*BI != TI; ++BI) {
Nuno Lopes9e72a792012-06-21 15:45:28 +0000695 if (isa<AllocaInst>(BI)) {
Chris Lattner753a2b42010-01-05 07:32:13 +0000696 CannotRemove = true;
697 break;
698 }
699 if (CallInst *BCI = dyn_cast<CallInst>(BI)) {
700 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(BCI)) {
701 // If there is a stackrestore below this one, remove this one.
702 if (II->getIntrinsicID() == Intrinsic::stackrestore)
703 return EraseInstFromFunction(CI);
704 // Otherwise, ignore the intrinsic.
705 } else {
706 // If we found a non-intrinsic call, we can't remove the stack
707 // restore.
708 CannotRemove = true;
709 break;
710 }
711 }
712 }
Jim Grosbach00e403a2012-02-03 00:07:04 +0000713
Bill Wendlingdccc03b2011-07-31 06:30:59 +0000714 // If the stack restore is in a return, resume, or unwind block and if there
715 // are no allocas or calls between the restore and the return, nuke the
716 // restore.
Bill Wendlingaa5abe82012-02-06 21:16:41 +0000717 if (!CannotRemove && (isa<ReturnInst>(TI) || isa<ResumeInst>(TI)))
Chris Lattner753a2b42010-01-05 07:32:13 +0000718 return EraseInstFromFunction(CI);
719 break;
720 }
Chris Lattner753a2b42010-01-05 07:32:13 +0000721 }
722
723 return visitCallSite(II);
724}
725
726// InvokeInst simplification
727//
728Instruction *InstCombiner::visitInvokeInst(InvokeInst &II) {
729 return visitCallSite(&II);
730}
731
Jim Grosbach00e403a2012-02-03 00:07:04 +0000732/// isSafeToEliminateVarargsCast - If this cast does not affect the value
Chris Lattner753a2b42010-01-05 07:32:13 +0000733/// passed through the varargs area, we can eliminate the use of the cast.
734static bool isSafeToEliminateVarargsCast(const CallSite CS,
735 const CastInst * const CI,
736 const TargetData * const TD,
737 const int ix) {
738 if (!CI->isLosslessCast())
739 return false;
740
741 // The size of ByVal arguments is derived from the type, so we
742 // can't change to a type with a different size. If the size were
743 // passed explicitly we could avoid this check.
Nick Lewycky173862e2011-11-20 19:09:04 +0000744 if (!CS.isByValArgument(ix))
Chris Lattner753a2b42010-01-05 07:32:13 +0000745 return true;
746
Jim Grosbach00e403a2012-02-03 00:07:04 +0000747 Type* SrcTy =
Chris Lattner753a2b42010-01-05 07:32:13 +0000748 cast<PointerType>(CI->getOperand(0)->getType())->getElementType();
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000749 Type* DstTy = cast<PointerType>(CI->getType())->getElementType();
Chris Lattner753a2b42010-01-05 07:32:13 +0000750 if (!SrcTy->isSized() || !DstTy->isSized())
751 return false;
752 if (!TD || TD->getTypeAllocSize(SrcTy) != TD->getTypeAllocSize(DstTy))
753 return false;
754 return true;
755}
756
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000757namespace {
758class InstCombineFortifiedLibCalls : public SimplifyFortifiedLibCalls {
759 InstCombiner *IC;
760protected:
761 void replaceCall(Value *With) {
762 NewInstruction = IC->ReplaceInstUsesWith(*CI, With);
763 }
764 bool isFoldable(unsigned SizeCIOp, unsigned SizeArgOp, bool isString) const {
Benjamin Kramer8143a842011-01-06 14:22:52 +0000765 if (CI->getArgOperand(SizeCIOp) == CI->getArgOperand(SizeArgOp))
766 return true;
Gabor Greifa3997812010-07-22 10:37:47 +0000767 if (ConstantInt *SizeCI =
768 dyn_cast<ConstantInt>(CI->getArgOperand(SizeCIOp))) {
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000769 if (SizeCI->isAllOnesValue())
770 return true;
Eric Christopherb9b80c32011-03-15 00:25:41 +0000771 if (isString) {
772 uint64_t Len = GetStringLength(CI->getArgOperand(SizeArgOp));
773 // If the length is 0 we don't know how long it is and so we can't
774 // remove the check.
775 if (Len == 0) return false;
776 return SizeCI->getZExtValue() >= Len;
777 }
Gabor Greifa3997812010-07-22 10:37:47 +0000778 if (ConstantInt *Arg = dyn_cast<ConstantInt>(
779 CI->getArgOperand(SizeArgOp)))
Evan Cheng9d8f0022010-03-23 06:06:09 +0000780 return SizeCI->getZExtValue() >= Arg->getZExtValue();
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000781 }
782 return false;
783 }
784public:
785 InstCombineFortifiedLibCalls(InstCombiner *IC) : IC(IC), NewInstruction(0) { }
786 Instruction *NewInstruction;
787};
788} // end anonymous namespace
789
Eric Christopher27ceaa12010-03-06 10:50:38 +0000790// Try to fold some different type of calls here.
Jim Grosbach00e403a2012-02-03 00:07:04 +0000791// Currently we're only working with the checking functions, memcpy_chk,
Eric Christopher27ceaa12010-03-06 10:50:38 +0000792// mempcpy_chk, memmove_chk, memset_chk, strcpy_chk, stpcpy_chk, strncpy_chk,
793// strcat_chk and strncat_chk.
794Instruction *InstCombiner::tryOptimizeCall(CallInst *CI, const TargetData *TD) {
795 if (CI->getCalledFunction() == 0) return 0;
Eric Christopher27ceaa12010-03-06 10:50:38 +0000796
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000797 InstCombineFortifiedLibCalls Simplifier(this);
Nuno Lopes51004df2012-07-25 16:46:31 +0000798 Simplifier.fold(CI, TD, TLI);
Benjamin Kramer0b6cb502010-03-12 09:27:41 +0000799 return Simplifier.NewInstruction;
Eric Christopher27ceaa12010-03-06 10:50:38 +0000800}
801
Duncan Sands4a544a72011-09-06 13:37:06 +0000802static IntrinsicInst *FindInitTrampolineFromAlloca(Value *TrampMem) {
803 // Strip off at most one level of pointer casts, looking for an alloca. This
804 // is good enough in practice and simpler than handling any number of casts.
805 Value *Underlying = TrampMem->stripPointerCasts();
806 if (Underlying != TrampMem &&
807 (!Underlying->hasOneUse() || *Underlying->use_begin() != TrampMem))
808 return 0;
809 if (!isa<AllocaInst>(Underlying))
810 return 0;
811
812 IntrinsicInst *InitTrampoline = 0;
813 for (Value::use_iterator I = TrampMem->use_begin(), E = TrampMem->use_end();
814 I != E; I++) {
815 IntrinsicInst *II = dyn_cast<IntrinsicInst>(*I);
816 if (!II)
817 return 0;
818 if (II->getIntrinsicID() == Intrinsic::init_trampoline) {
819 if (InitTrampoline)
820 // More than one init_trampoline writes to this value. Give up.
821 return 0;
822 InitTrampoline = II;
823 continue;
824 }
825 if (II->getIntrinsicID() == Intrinsic::adjust_trampoline)
826 // Allow any number of calls to adjust.trampoline.
827 continue;
828 return 0;
829 }
830
831 // No call to init.trampoline found.
832 if (!InitTrampoline)
833 return 0;
834
835 // Check that the alloca is being used in the expected way.
836 if (InitTrampoline->getOperand(0) != TrampMem)
837 return 0;
838
839 return InitTrampoline;
840}
841
842static IntrinsicInst *FindInitTrampolineFromBB(IntrinsicInst *AdjustTramp,
843 Value *TrampMem) {
844 // Visit all the previous instructions in the basic block, and try to find a
845 // init.trampoline which has a direct path to the adjust.trampoline.
846 for (BasicBlock::iterator I = AdjustTramp,
847 E = AdjustTramp->getParent()->begin(); I != E; ) {
848 Instruction *Inst = --I;
849 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I))
850 if (II->getIntrinsicID() == Intrinsic::init_trampoline &&
851 II->getOperand(0) == TrampMem)
852 return II;
853 if (Inst->mayWriteToMemory())
854 return 0;
855 }
856 return 0;
857}
858
859// Given a call to llvm.adjust.trampoline, find and return the corresponding
860// call to llvm.init.trampoline if the call to the trampoline can be optimized
861// to a direct call to a function. Otherwise return NULL.
862//
863static IntrinsicInst *FindInitTrampoline(Value *Callee) {
864 Callee = Callee->stripPointerCasts();
865 IntrinsicInst *AdjustTramp = dyn_cast<IntrinsicInst>(Callee);
866 if (!AdjustTramp ||
867 AdjustTramp->getIntrinsicID() != Intrinsic::adjust_trampoline)
868 return 0;
869
870 Value *TrampMem = AdjustTramp->getOperand(0);
871
872 if (IntrinsicInst *IT = FindInitTrampolineFromAlloca(TrampMem))
873 return IT;
874 if (IntrinsicInst *IT = FindInitTrampolineFromBB(AdjustTramp, TrampMem))
875 return IT;
876 return 0;
877}
878
Chris Lattner753a2b42010-01-05 07:32:13 +0000879// visitCallSite - Improvements for call and invoke instructions.
880//
881Instruction *InstCombiner::visitCallSite(CallSite CS) {
Nuno Lopes2b3e9582012-06-21 21:25:05 +0000882 if (isAllocLikeFn(CS.getInstruction()))
Nuno Lopes78f8ef42012-07-09 18:38:20 +0000883 return visitAllocSite(*CS.getInstruction());
Nuno Lopes2b3e9582012-06-21 21:25:05 +0000884
Chris Lattner753a2b42010-01-05 07:32:13 +0000885 bool Changed = false;
886
Chris Lattnerab215bc2010-12-20 08:25:06 +0000887 // If the callee is a pointer to a function, attempt to move any casts to the
888 // arguments of the call/invoke.
Chris Lattner753a2b42010-01-05 07:32:13 +0000889 Value *Callee = CS.getCalledValue();
Chris Lattnerab215bc2010-12-20 08:25:06 +0000890 if (!isa<Function>(Callee) && transformConstExprCastCall(CS))
891 return 0;
Chris Lattner753a2b42010-01-05 07:32:13 +0000892
893 if (Function *CalleeF = dyn_cast<Function>(Callee))
Chris Lattnerd5695612010-02-01 18:11:34 +0000894 // If the call and callee calling conventions don't match, this call must
895 // be unreachable, as the call is undefined.
896 if (CalleeF->getCallingConv() != CS.getCallingConv() &&
897 // Only do this for calls to a function with a body. A prototype may
898 // not actually end up matching the implementation's calling conv for a
899 // variety of reasons (e.g. it may be written in assembly).
900 !CalleeF->isDeclaration()) {
Chris Lattner753a2b42010-01-05 07:32:13 +0000901 Instruction *OldCall = CS.getInstruction();
Chris Lattner753a2b42010-01-05 07:32:13 +0000902 new StoreInst(ConstantInt::getTrue(Callee->getContext()),
Jim Grosbach00e403a2012-02-03 00:07:04 +0000903 UndefValue::get(Type::getInt1PtrTy(Callee->getContext())),
Chris Lattner753a2b42010-01-05 07:32:13 +0000904 OldCall);
905 // If OldCall dues not return void then replaceAllUsesWith undef.
906 // This allows ValueHandlers and custom metadata to adjust itself.
907 if (!OldCall->getType()->isVoidTy())
Eli Friedman3e22cb92011-05-18 00:32:01 +0000908 ReplaceInstUsesWith(*OldCall, UndefValue::get(OldCall->getType()));
Chris Lattner830f3f22010-02-01 18:04:58 +0000909 if (isa<CallInst>(OldCall))
Chris Lattner753a2b42010-01-05 07:32:13 +0000910 return EraseInstFromFunction(*OldCall);
Jim Grosbach00e403a2012-02-03 00:07:04 +0000911
Chris Lattner830f3f22010-02-01 18:04:58 +0000912 // We cannot remove an invoke, because it would change the CFG, just
913 // change the callee to a null pointer.
Gabor Greif654c06f2010-03-20 21:00:25 +0000914 cast<InvokeInst>(OldCall)->setCalledFunction(
Chris Lattner830f3f22010-02-01 18:04:58 +0000915 Constant::getNullValue(CalleeF->getType()));
Chris Lattner753a2b42010-01-05 07:32:13 +0000916 return 0;
917 }
918
919 if (isa<ConstantPointerNull>(Callee) || isa<UndefValue>(Callee)) {
Gabor Greifcea7ac72010-06-24 12:58:35 +0000920 // If CS does not return void then replaceAllUsesWith undef.
Chris Lattner753a2b42010-01-05 07:32:13 +0000921 // This allows ValueHandlers and custom metadata to adjust itself.
922 if (!CS.getInstruction()->getType()->isVoidTy())
Eli Friedman3e22cb92011-05-18 00:32:01 +0000923 ReplaceInstUsesWith(*CS.getInstruction(),
924 UndefValue::get(CS.getInstruction()->getType()));
Chris Lattner753a2b42010-01-05 07:32:13 +0000925
Nuno Lopesf1fb6c82012-06-21 23:52:14 +0000926 if (isa<InvokeInst>(CS.getInstruction())) {
927 // Can't remove an invoke because we cannot change the CFG.
928 return 0;
Chris Lattner753a2b42010-01-05 07:32:13 +0000929 }
Nuno Lopesf1fb6c82012-06-21 23:52:14 +0000930
931 // This instruction is not reachable, just remove it. We insert a store to
932 // undef so that we know that this code is not reachable, despite the fact
933 // that we can't modify the CFG here.
934 new StoreInst(ConstantInt::getTrue(Callee->getContext()),
935 UndefValue::get(Type::getInt1PtrTy(Callee->getContext())),
936 CS.getInstruction());
937
Chris Lattner753a2b42010-01-05 07:32:13 +0000938 return EraseInstFromFunction(*CS.getInstruction());
939 }
940
Duncan Sands4a544a72011-09-06 13:37:06 +0000941 if (IntrinsicInst *II = FindInitTrampoline(Callee))
942 return transformCallThroughTrampoline(CS, II);
Chris Lattner753a2b42010-01-05 07:32:13 +0000943
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000944 PointerType *PTy = cast<PointerType>(Callee->getType());
945 FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
Chris Lattner753a2b42010-01-05 07:32:13 +0000946 if (FTy->isVarArg()) {
Eli Friedmanba78c882011-11-29 01:18:23 +0000947 int ix = FTy->getNumParams();
Chris Lattner753a2b42010-01-05 07:32:13 +0000948 // See if we can optimize any arguments passed through the varargs area of
949 // the call.
950 for (CallSite::arg_iterator I = CS.arg_begin()+FTy->getNumParams(),
951 E = CS.arg_end(); I != E; ++I, ++ix) {
952 CastInst *CI = dyn_cast<CastInst>(*I);
953 if (CI && isSafeToEliminateVarargsCast(CS, CI, TD, ix)) {
954 *I = CI->getOperand(0);
955 Changed = true;
956 }
957 }
958 }
959
960 if (isa<InlineAsm>(Callee) && !CS.doesNotThrow()) {
961 // Inline asm calls cannot throw - mark them 'nounwind'.
962 CS.setDoesNotThrow();
963 Changed = true;
964 }
965
Eric Christopher27ceaa12010-03-06 10:50:38 +0000966 // Try to optimize the call if possible, we require TargetData for most of
967 // this. None of these calls are seen as possibly dead so go ahead and
968 // delete the instruction now.
969 if (CallInst *CI = dyn_cast<CallInst>(CS.getInstruction())) {
970 Instruction *I = tryOptimizeCall(CI, TD);
Eric Christopher7b323a32010-03-06 10:59:25 +0000971 // If we changed something return the result, etc. Otherwise let
972 // the fallthrough check.
973 if (I) return EraseInstFromFunction(*I);
Eric Christopher27ceaa12010-03-06 10:50:38 +0000974 }
975
Chris Lattner753a2b42010-01-05 07:32:13 +0000976 return Changed ? CS.getInstruction() : 0;
977}
978
979// transformConstExprCastCall - If the callee is a constexpr cast of a function,
980// attempt to move the cast to the arguments of the call/invoke.
981//
982bool InstCombiner::transformConstExprCastCall(CallSite CS) {
Chris Lattnerab215bc2010-12-20 08:25:06 +0000983 Function *Callee =
984 dyn_cast<Function>(CS.getCalledValue()->stripPointerCasts());
985 if (Callee == 0)
Chris Lattner753a2b42010-01-05 07:32:13 +0000986 return false;
Chris Lattner753a2b42010-01-05 07:32:13 +0000987 Instruction *Caller = CS.getInstruction();
988 const AttrListPtr &CallerPAL = CS.getAttributes();
989
990 // Okay, this is a cast from a function to a different type. Unless doing so
991 // would cause a type conversion of one of our arguments, change this call to
992 // be a direct call with arguments casted to the appropriate types.
993 //
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000994 FunctionType *FT = Callee->getFunctionType();
995 Type *OldRetTy = Caller->getType();
996 Type *NewRetTy = FT->getReturnType();
Chris Lattner753a2b42010-01-05 07:32:13 +0000997
Duncan Sands1df98592010-02-16 11:11:14 +0000998 if (NewRetTy->isStructTy())
Chris Lattner753a2b42010-01-05 07:32:13 +0000999 return false; // TODO: Handle multiple return values.
1000
1001 // Check to see if we are changing the return type...
1002 if (OldRetTy != NewRetTy) {
1003 if (Callee->isDeclaration() &&
1004 // Conversion is ok if changing from one pointer type to another or from
1005 // a pointer to an integer of the same size.
Duncan Sands1df98592010-02-16 11:11:14 +00001006 !((OldRetTy->isPointerTy() || !TD ||
Chris Lattner753a2b42010-01-05 07:32:13 +00001007 OldRetTy == TD->getIntPtrType(Caller->getContext())) &&
Duncan Sands1df98592010-02-16 11:11:14 +00001008 (NewRetTy->isPointerTy() || !TD ||
Chris Lattner753a2b42010-01-05 07:32:13 +00001009 NewRetTy == TD->getIntPtrType(Caller->getContext()))))
1010 return false; // Cannot transform this return value.
1011
1012 if (!Caller->use_empty() &&
1013 // void -> non-void is handled specially
1014 !NewRetTy->isVoidTy() && !CastInst::isCastable(NewRetTy, OldRetTy))
1015 return false; // Cannot transform this return value.
1016
1017 if (!CallerPAL.isEmpty() && !Caller->use_empty()) {
1018 Attributes RAttrs = CallerPAL.getRetAttributes();
1019 if (RAttrs & Attribute::typeIncompatible(NewRetTy))
1020 return false; // Attribute not compatible with transformed value.
1021 }
1022
1023 // If the callsite is an invoke instruction, and the return value is used by
1024 // a PHI node in a successor, we cannot change the return type of the call
1025 // because there is no place to put the cast instruction (without breaking
1026 // the critical edge). Bail out in this case.
1027 if (!Caller->use_empty())
1028 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller))
1029 for (Value::use_iterator UI = II->use_begin(), E = II->use_end();
1030 UI != E; ++UI)
1031 if (PHINode *PN = dyn_cast<PHINode>(*UI))
1032 if (PN->getParent() == II->getNormalDest() ||
1033 PN->getParent() == II->getUnwindDest())
1034 return false;
1035 }
1036
1037 unsigned NumActualArgs = unsigned(CS.arg_end()-CS.arg_begin());
1038 unsigned NumCommonArgs = std::min(FT->getNumParams(), NumActualArgs);
1039
1040 CallSite::arg_iterator AI = CS.arg_begin();
1041 for (unsigned i = 0, e = NumCommonArgs; i != e; ++i, ++AI) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001042 Type *ParamTy = FT->getParamType(i);
1043 Type *ActTy = (*AI)->getType();
Chris Lattner753a2b42010-01-05 07:32:13 +00001044
1045 if (!CastInst::isCastable(ActTy, ParamTy))
1046 return false; // Cannot transform this parameter value.
1047
Kostya Serebryany164b86b2012-01-20 17:56:17 +00001048 Attributes Attrs = CallerPAL.getParamAttributes(i + 1);
Chris Lattner2b9375e2010-12-20 08:36:38 +00001049 if (Attrs & Attribute::typeIncompatible(ParamTy))
Chris Lattner753a2b42010-01-05 07:32:13 +00001050 return false; // Attribute not compatible with transformed value.
Jim Grosbach00e403a2012-02-03 00:07:04 +00001051
Chris Lattner2b9375e2010-12-20 08:36:38 +00001052 // If the parameter is passed as a byval argument, then we have to have a
1053 // sized type and the sized type has to have the same size as the old type.
1054 if (ParamTy != ActTy && (Attrs & Attribute::ByVal)) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001055 PointerType *ParamPTy = dyn_cast<PointerType>(ParamTy);
Chris Lattner2b9375e2010-12-20 08:36:38 +00001056 if (ParamPTy == 0 || !ParamPTy->getElementType()->isSized() || TD == 0)
1057 return false;
Jim Grosbach00e403a2012-02-03 00:07:04 +00001058
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001059 Type *CurElTy = cast<PointerType>(ActTy)->getElementType();
Chris Lattner2b9375e2010-12-20 08:36:38 +00001060 if (TD->getTypeAllocSize(CurElTy) !=
1061 TD->getTypeAllocSize(ParamPTy->getElementType()))
1062 return false;
1063 }
Chris Lattner753a2b42010-01-05 07:32:13 +00001064
1065 // Converting from one pointer type to another or between a pointer and an
1066 // integer of the same size is safe even if we do not have a body.
1067 bool isConvertible = ActTy == ParamTy ||
Duncan Sands1df98592010-02-16 11:11:14 +00001068 (TD && ((ParamTy->isPointerTy() ||
Chris Lattner753a2b42010-01-05 07:32:13 +00001069 ParamTy == TD->getIntPtrType(Caller->getContext())) &&
Duncan Sands1df98592010-02-16 11:11:14 +00001070 (ActTy->isPointerTy() ||
Chris Lattner753a2b42010-01-05 07:32:13 +00001071 ActTy == TD->getIntPtrType(Caller->getContext()))));
1072 if (Callee->isDeclaration() && !isConvertible) return false;
1073 }
1074
Chris Lattner091b1e32011-02-24 05:10:56 +00001075 if (Callee->isDeclaration()) {
1076 // Do not delete arguments unless we have a function body.
1077 if (FT->getNumParams() < NumActualArgs && !FT->isVarArg())
1078 return false;
Chris Lattner753a2b42010-01-05 07:32:13 +00001079
Chris Lattner091b1e32011-02-24 05:10:56 +00001080 // If the callee is just a declaration, don't change the varargsness of the
1081 // call. We don't want to introduce a varargs call where one doesn't
1082 // already exist.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001083 PointerType *APTy = cast<PointerType>(CS.getCalledValue()->getType());
Chris Lattner091b1e32011-02-24 05:10:56 +00001084 if (FT->isVarArg()!=cast<FunctionType>(APTy->getElementType())->isVarArg())
1085 return false;
Jim Grosbachf3744862012-02-03 00:00:55 +00001086
1087 // If both the callee and the cast type are varargs, we still have to make
1088 // sure the number of fixed parameters are the same or we have the same
1089 // ABI issues as if we introduce a varargs call.
Jim Grosbach871a2052012-02-03 00:26:07 +00001090 if (FT->isVarArg() &&
1091 cast<FunctionType>(APTy->getElementType())->isVarArg() &&
1092 FT->getNumParams() !=
Jim Grosbachf3744862012-02-03 00:00:55 +00001093 cast<FunctionType>(APTy->getElementType())->getNumParams())
1094 return false;
Chris Lattner091b1e32011-02-24 05:10:56 +00001095 }
Jim Grosbach00e403a2012-02-03 00:07:04 +00001096
Jim Grosbachd5917f02012-02-03 00:00:50 +00001097 if (FT->getNumParams() < NumActualArgs && FT->isVarArg() &&
1098 !CallerPAL.isEmpty())
1099 // In this case we have more arguments than the new function type, but we
1100 // won't be dropping them. Check that these extra arguments have attributes
1101 // that are compatible with being a vararg call argument.
1102 for (unsigned i = CallerPAL.getNumSlots(); i; --i) {
1103 if (CallerPAL.getSlot(i - 1).Index <= FT->getNumParams())
1104 break;
1105 Attributes PAttrs = CallerPAL.getSlot(i - 1).Attrs;
1106 if (PAttrs & Attribute::VarArgsIncompatible)
1107 return false;
1108 }
Chris Lattner753a2b42010-01-05 07:32:13 +00001109
Jim Grosbach00e403a2012-02-03 00:07:04 +00001110
Chris Lattner753a2b42010-01-05 07:32:13 +00001111 // Okay, we decided that this is a safe thing to do: go ahead and start
Chris Lattner091b1e32011-02-24 05:10:56 +00001112 // inserting cast instructions as necessary.
Chris Lattner753a2b42010-01-05 07:32:13 +00001113 std::vector<Value*> Args;
1114 Args.reserve(NumActualArgs);
1115 SmallVector<AttributeWithIndex, 8> attrVec;
1116 attrVec.reserve(NumCommonArgs);
1117
1118 // Get any return attributes.
1119 Attributes RAttrs = CallerPAL.getRetAttributes();
1120
1121 // If the return value is not being used, the type may not be compatible
1122 // with the existing attributes. Wipe out any problematic attributes.
1123 RAttrs &= ~Attribute::typeIncompatible(NewRetTy);
1124
1125 // Add the new return attributes.
1126 if (RAttrs)
1127 attrVec.push_back(AttributeWithIndex::get(0, RAttrs));
1128
1129 AI = CS.arg_begin();
1130 for (unsigned i = 0; i != NumCommonArgs; ++i, ++AI) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001131 Type *ParamTy = FT->getParamType(i);
Chris Lattner753a2b42010-01-05 07:32:13 +00001132 if ((*AI)->getType() == ParamTy) {
1133 Args.push_back(*AI);
1134 } else {
1135 Instruction::CastOps opcode = CastInst::getCastOpcode(*AI,
1136 false, ParamTy, false);
Benjamin Kramera9390a42011-09-27 20:39:19 +00001137 Args.push_back(Builder->CreateCast(opcode, *AI, ParamTy));
Chris Lattner753a2b42010-01-05 07:32:13 +00001138 }
1139
1140 // Add any parameter attributes.
1141 if (Attributes PAttrs = CallerPAL.getParamAttributes(i + 1))
1142 attrVec.push_back(AttributeWithIndex::get(i + 1, PAttrs));
1143 }
1144
1145 // If the function takes more arguments than the call was taking, add them
1146 // now.
1147 for (unsigned i = NumCommonArgs; i != FT->getNumParams(); ++i)
1148 Args.push_back(Constant::getNullValue(FT->getParamType(i)));
1149
1150 // If we are removing arguments to the function, emit an obnoxious warning.
1151 if (FT->getNumParams() < NumActualArgs) {
1152 if (!FT->isVarArg()) {
1153 errs() << "WARNING: While resolving call to function '"
1154 << Callee->getName() << "' arguments were dropped!\n";
1155 } else {
1156 // Add all of the arguments in their promoted form to the arg list.
1157 for (unsigned i = FT->getNumParams(); i != NumActualArgs; ++i, ++AI) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001158 Type *PTy = getPromotedType((*AI)->getType());
Chris Lattner753a2b42010-01-05 07:32:13 +00001159 if (PTy != (*AI)->getType()) {
1160 // Must promote to pass through va_arg area!
1161 Instruction::CastOps opcode =
1162 CastInst::getCastOpcode(*AI, false, PTy, false);
Benjamin Kramera9390a42011-09-27 20:39:19 +00001163 Args.push_back(Builder->CreateCast(opcode, *AI, PTy));
Chris Lattner753a2b42010-01-05 07:32:13 +00001164 } else {
1165 Args.push_back(*AI);
1166 }
1167
1168 // Add any parameter attributes.
1169 if (Attributes PAttrs = CallerPAL.getParamAttributes(i + 1))
1170 attrVec.push_back(AttributeWithIndex::get(i + 1, PAttrs));
1171 }
1172 }
1173 }
1174
1175 if (Attributes FnAttrs = CallerPAL.getFnAttributes())
1176 attrVec.push_back(AttributeWithIndex::get(~0, FnAttrs));
1177
1178 if (NewRetTy->isVoidTy())
1179 Caller->setName(""); // Void type should not have a name.
1180
Chris Lattnerd509d0b2012-05-28 01:47:44 +00001181 const AttrListPtr &NewCallerPAL = AttrListPtr::get(attrVec);
Chris Lattner753a2b42010-01-05 07:32:13 +00001182
1183 Instruction *NC;
1184 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
Eli Friedmanef819d02011-05-18 01:28:27 +00001185 NC = Builder->CreateInvoke(Callee, II->getNormalDest(),
Jay Foada3efbb12011-07-15 08:37:34 +00001186 II->getUnwindDest(), Args);
Eli Friedmanef819d02011-05-18 01:28:27 +00001187 NC->takeName(II);
Chris Lattner753a2b42010-01-05 07:32:13 +00001188 cast<InvokeInst>(NC)->setCallingConv(II->getCallingConv());
1189 cast<InvokeInst>(NC)->setAttributes(NewCallerPAL);
1190 } else {
Chris Lattner753a2b42010-01-05 07:32:13 +00001191 CallInst *CI = cast<CallInst>(Caller);
Jay Foada3efbb12011-07-15 08:37:34 +00001192 NC = Builder->CreateCall(Callee, Args);
Eli Friedmanef819d02011-05-18 01:28:27 +00001193 NC->takeName(CI);
Chris Lattner753a2b42010-01-05 07:32:13 +00001194 if (CI->isTailCall())
1195 cast<CallInst>(NC)->setTailCall();
1196 cast<CallInst>(NC)->setCallingConv(CI->getCallingConv());
1197 cast<CallInst>(NC)->setAttributes(NewCallerPAL);
1198 }
1199
1200 // Insert a cast of the return type as necessary.
1201 Value *NV = NC;
1202 if (OldRetTy != NV->getType() && !Caller->use_empty()) {
1203 if (!NV->getType()->isVoidTy()) {
Chris Lattnerab215bc2010-12-20 08:25:06 +00001204 Instruction::CastOps opcode =
1205 CastInst::getCastOpcode(NC, false, OldRetTy, false);
Benjamin Kramera9390a42011-09-27 20:39:19 +00001206 NV = NC = CastInst::Create(opcode, NC, OldRetTy);
Eli Friedmana311c342011-05-27 00:19:40 +00001207 NC->setDebugLoc(Caller->getDebugLoc());
Chris Lattner753a2b42010-01-05 07:32:13 +00001208
1209 // If this is an invoke instruction, we should insert it after the first
1210 // non-phi, instruction in the normal successor block.
1211 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
Bill Wendling89d44112011-08-25 01:08:34 +00001212 BasicBlock::iterator I = II->getNormalDest()->getFirstInsertionPt();
Chris Lattner753a2b42010-01-05 07:32:13 +00001213 InsertNewInstBefore(NC, *I);
1214 } else {
Chris Lattnerab215bc2010-12-20 08:25:06 +00001215 // Otherwise, it's a call, just insert cast right after the call.
Chris Lattner753a2b42010-01-05 07:32:13 +00001216 InsertNewInstBefore(NC, *Caller);
1217 }
1218 Worklist.AddUsersToWorkList(*Caller);
1219 } else {
1220 NV = UndefValue::get(Caller->getType());
1221 }
1222 }
1223
Chris Lattner753a2b42010-01-05 07:32:13 +00001224 if (!Caller->use_empty())
Eli Friedman3e22cb92011-05-18 00:32:01 +00001225 ReplaceInstUsesWith(*Caller, NV);
1226
Chris Lattner753a2b42010-01-05 07:32:13 +00001227 EraseInstFromFunction(*Caller);
1228 return true;
1229}
1230
Duncan Sands4a544a72011-09-06 13:37:06 +00001231// transformCallThroughTrampoline - Turn a call to a function created by
1232// init_trampoline / adjust_trampoline intrinsic pair into a direct call to the
1233// underlying function.
Chris Lattner753a2b42010-01-05 07:32:13 +00001234//
Duncan Sands4a544a72011-09-06 13:37:06 +00001235Instruction *
1236InstCombiner::transformCallThroughTrampoline(CallSite CS,
1237 IntrinsicInst *Tramp) {
Chris Lattner753a2b42010-01-05 07:32:13 +00001238 Value *Callee = CS.getCalledValue();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001239 PointerType *PTy = cast<PointerType>(Callee->getType());
1240 FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
Chris Lattner753a2b42010-01-05 07:32:13 +00001241 const AttrListPtr &Attrs = CS.getAttributes();
1242
1243 // If the call already has the 'nest' attribute somewhere then give up -
1244 // otherwise 'nest' would occur twice after splicing in the chain.
1245 if (Attrs.hasAttrSomewhere(Attribute::Nest))
1246 return 0;
1247
Duncan Sands4a544a72011-09-06 13:37:06 +00001248 assert(Tramp &&
1249 "transformCallThroughTrampoline called with incorrect CallSite.");
Chris Lattner753a2b42010-01-05 07:32:13 +00001250
Gabor Greifa3997812010-07-22 10:37:47 +00001251 Function *NestF =cast<Function>(Tramp->getArgOperand(1)->stripPointerCasts());
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001252 PointerType *NestFPTy = cast<PointerType>(NestF->getType());
1253 FunctionType *NestFTy = cast<FunctionType>(NestFPTy->getElementType());
Chris Lattner753a2b42010-01-05 07:32:13 +00001254
1255 const AttrListPtr &NestAttrs = NestF->getAttributes();
1256 if (!NestAttrs.isEmpty()) {
1257 unsigned NestIdx = 1;
Jay Foad5fdd6c82011-07-12 14:06:48 +00001258 Type *NestTy = 0;
Chris Lattner753a2b42010-01-05 07:32:13 +00001259 Attributes NestAttr = Attribute::None;
1260
1261 // Look for a parameter marked with the 'nest' attribute.
1262 for (FunctionType::param_iterator I = NestFTy->param_begin(),
1263 E = NestFTy->param_end(); I != E; ++NestIdx, ++I)
1264 if (NestAttrs.paramHasAttr(NestIdx, Attribute::Nest)) {
1265 // Record the parameter type and any other attributes.
1266 NestTy = *I;
1267 NestAttr = NestAttrs.getParamAttributes(NestIdx);
1268 break;
1269 }
1270
1271 if (NestTy) {
1272 Instruction *Caller = CS.getInstruction();
1273 std::vector<Value*> NewArgs;
1274 NewArgs.reserve(unsigned(CS.arg_end()-CS.arg_begin())+1);
1275
1276 SmallVector<AttributeWithIndex, 8> NewAttrs;
1277 NewAttrs.reserve(Attrs.getNumSlots() + 1);
1278
1279 // Insert the nest argument into the call argument list, which may
1280 // mean appending it. Likewise for attributes.
1281
1282 // Add any result attributes.
1283 if (Attributes Attr = Attrs.getRetAttributes())
1284 NewAttrs.push_back(AttributeWithIndex::get(0, Attr));
1285
1286 {
1287 unsigned Idx = 1;
1288 CallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end();
1289 do {
1290 if (Idx == NestIdx) {
1291 // Add the chain argument and attributes.
Gabor Greifcea7ac72010-06-24 12:58:35 +00001292 Value *NestVal = Tramp->getArgOperand(2);
Chris Lattner753a2b42010-01-05 07:32:13 +00001293 if (NestVal->getType() != NestTy)
Eli Friedmane6f364b2011-05-18 23:58:37 +00001294 NestVal = Builder->CreateBitCast(NestVal, NestTy, "nest");
Chris Lattner753a2b42010-01-05 07:32:13 +00001295 NewArgs.push_back(NestVal);
1296 NewAttrs.push_back(AttributeWithIndex::get(NestIdx, NestAttr));
1297 }
1298
1299 if (I == E)
1300 break;
1301
1302 // Add the original argument and attributes.
1303 NewArgs.push_back(*I);
1304 if (Attributes Attr = Attrs.getParamAttributes(Idx))
1305 NewAttrs.push_back
1306 (AttributeWithIndex::get(Idx + (Idx >= NestIdx), Attr));
1307
1308 ++Idx, ++I;
1309 } while (1);
1310 }
1311
1312 // Add any function attributes.
1313 if (Attributes Attr = Attrs.getFnAttributes())
1314 NewAttrs.push_back(AttributeWithIndex::get(~0, Attr));
1315
1316 // The trampoline may have been bitcast to a bogus type (FTy).
1317 // Handle this by synthesizing a new function type, equal to FTy
1318 // with the chain parameter inserted.
1319
Jay Foad5fdd6c82011-07-12 14:06:48 +00001320 std::vector<Type*> NewTypes;
Chris Lattner753a2b42010-01-05 07:32:13 +00001321 NewTypes.reserve(FTy->getNumParams()+1);
1322
1323 // Insert the chain's type into the list of parameter types, which may
1324 // mean appending it.
1325 {
1326 unsigned Idx = 1;
1327 FunctionType::param_iterator I = FTy->param_begin(),
1328 E = FTy->param_end();
1329
1330 do {
1331 if (Idx == NestIdx)
1332 // Add the chain's type.
1333 NewTypes.push_back(NestTy);
1334
1335 if (I == E)
1336 break;
1337
1338 // Add the original type.
1339 NewTypes.push_back(*I);
1340
1341 ++Idx, ++I;
1342 } while (1);
1343 }
1344
1345 // Replace the trampoline call with a direct call. Let the generic
1346 // code sort out any function type mismatches.
Jim Grosbach00e403a2012-02-03 00:07:04 +00001347 FunctionType *NewFTy = FunctionType::get(FTy->getReturnType(), NewTypes,
Chris Lattner753a2b42010-01-05 07:32:13 +00001348 FTy->isVarArg());
1349 Constant *NewCallee =
1350 NestF->getType() == PointerType::getUnqual(NewFTy) ?
Jim Grosbach00e403a2012-02-03 00:07:04 +00001351 NestF : ConstantExpr::getBitCast(NestF,
Chris Lattner753a2b42010-01-05 07:32:13 +00001352 PointerType::getUnqual(NewFTy));
Chris Lattnerd509d0b2012-05-28 01:47:44 +00001353 const AttrListPtr &NewPAL = AttrListPtr::get(NewAttrs);
Chris Lattner753a2b42010-01-05 07:32:13 +00001354
1355 Instruction *NewCaller;
1356 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
1357 NewCaller = InvokeInst::Create(NewCallee,
1358 II->getNormalDest(), II->getUnwindDest(),
Jay Foada3efbb12011-07-15 08:37:34 +00001359 NewArgs);
Chris Lattner753a2b42010-01-05 07:32:13 +00001360 cast<InvokeInst>(NewCaller)->setCallingConv(II->getCallingConv());
1361 cast<InvokeInst>(NewCaller)->setAttributes(NewPAL);
1362 } else {
Jay Foada3efbb12011-07-15 08:37:34 +00001363 NewCaller = CallInst::Create(NewCallee, NewArgs);
Chris Lattner753a2b42010-01-05 07:32:13 +00001364 if (cast<CallInst>(Caller)->isTailCall())
1365 cast<CallInst>(NewCaller)->setTailCall();
1366 cast<CallInst>(NewCaller)->
1367 setCallingConv(cast<CallInst>(Caller)->getCallingConv());
1368 cast<CallInst>(NewCaller)->setAttributes(NewPAL);
1369 }
Eli Friedman59f15912011-05-18 19:57:14 +00001370
1371 return NewCaller;
Chris Lattner753a2b42010-01-05 07:32:13 +00001372 }
1373 }
1374
1375 // Replace the trampoline call with a direct call. Since there is no 'nest'
1376 // parameter, there is no need to adjust the argument list. Let the generic
1377 // code sort out any function type mismatches.
1378 Constant *NewCallee =
Jim Grosbach00e403a2012-02-03 00:07:04 +00001379 NestF->getType() == PTy ? NestF :
Chris Lattner753a2b42010-01-05 07:32:13 +00001380 ConstantExpr::getBitCast(NestF, PTy);
1381 CS.setCalledFunction(NewCallee);
1382 return CS.getInstruction();
1383}