]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
Upgrade our copy of llvm/clang to r132879, from upstream's trunk.
[FreeBSD/FreeBSD.git] / contrib / llvm / lib / Transforms / InstCombine / InstCombineCalls.cpp
1 //===- 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"
19 #include "llvm/Transforms/Utils/BuildLibCalls.h"
20 #include "llvm/Transforms/Utils/Local.h"
21 using namespace llvm;
22
23 /// getPromotedType - Return the specified type promoted as it would be to pass
24 /// though a va_arg area.
25 static 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
33
34 Instruction *InstCombiner::SimplifyMemTransfer(MemIntrinsic *MI) {
35   unsigned DstAlign = getKnownAlignment(MI->getArgOperand(0), TD);
36   unsigned SrcAlign = getKnownAlignment(MI->getArgOperand(1), TD);
37   unsigned MinAlign = std::min(DstAlign, SrcAlign);
38   unsigned CopyAlign = MI->getAlignment();
39
40   if (CopyAlign < MinAlign) {
41     MI->setAlignment(ConstantInt::get(MI->getAlignmentType(), 
42                                              MinAlign, false));
43     return MI;
44   }
45   
46   // If MemCpyInst length is 1/2/4/8 bytes then replace memcpy with
47   // load/store.
48   ConstantInt *MemOpLength = dyn_cast<ConstantInt>(MI->getArgOperand(2));
49   if (MemOpLength == 0) return 0;
50   
51   // 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.
57   
58   if (Size > 8 || (Size&(Size-1)))
59     return 0;  // If not 1/2/4/8 bytes, exit.
60   
61   // Use an integer load+store unless we can find something better.
62   unsigned SrcAddrSp =
63     cast<PointerType>(MI->getArgOperand(1)->getType())->getAddressSpace();
64   unsigned DstAddrSp =
65     cast<PointerType>(MI->getArgOperand(0)->getType())->getAddressSpace();
66
67   const IntegerType* IntType = IntegerType::get(MI->getContext(), Size<<3);
68   Type *NewSrcPtrTy = PointerType::get(IntType, SrcAddrSp);
69   Type *NewDstPtrTy = PointerType::get(IntType, DstAddrSp);
70   
71   // 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.
77   Value *StrippedDest = MI->getArgOperand(0)->stripPointerCasts();
78   if (StrippedDest != MI->getArgOperand(0)) {
79     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       }
98       
99       if (SrcETy->isSingleValueType()) {
100         NewSrcPtrTy = PointerType::get(SrcETy, SrcAddrSp);
101         NewDstPtrTy = PointerType::get(SrcETy, DstAddrSp);
102       }
103     }
104   }
105   
106   
107   // 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);
111   
112   Value *Src = Builder->CreateBitCast(MI->getArgOperand(1), NewSrcPtrTy);
113   Value *Dest = Builder->CreateBitCast(MI->getArgOperand(0), NewDstPtrTy);
114   LoadInst *L = Builder->CreateLoad(Src, MI->isVolatile());
115   L->setAlignment(SrcAlign);
116   StoreInst *S = Builder->CreateStore(L, Dest, MI->isVolatile());
117   S->setAlignment(DstAlign);
118
119   // Set the size of the copy to 0, it will be deleted on the next iteration.
120   MI->setArgOperand(2, Constant::getNullValue(MemOpLength->getType()));
121   return MI;
122 }
123
124 Instruction *InstCombiner::SimplifyMemSet(MemSetInst *MI) {
125   unsigned Alignment = getKnownAlignment(MI->getDest(), TD);
126   if (MI->getAlignment() < Alignment) {
127     MI->setAlignment(ConstantInt::get(MI->getAlignmentType(),
128                                              Alignment, false));
129     return MI;
130   }
131   
132   // 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());
135   if (!LenC || !FillC || !FillC->getType()->isIntegerTy(8))
136     return 0;
137   uint64_t Len = LenC->getZExtValue();
138   Alignment = MI->getAlignment();
139   
140   // If the length is zero, this is a no-op
141   if (Len == 0) return MI; // memset(d,c,0,a) -> noop
142   
143   // 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.
146     
147     Value *Dest = MI->getDest();
148     unsigned DstAddrSp = cast<PointerType>(Dest->getType())->getAddressSpace();
149     Type *NewDstPtrTy = PointerType::get(ITy, DstAddrSp);
150     Dest = Builder->CreateBitCast(Dest, NewDstPtrTy);
151
152     // Alignment 0 is identity for alignment 1 for memset, but not store.
153     if (Alignment == 0) Alignment = 1;
154     
155     // Extract the fill value and store.
156     uint64_t Fill = FillC->getZExtValue()*0x0101010101010101ULL;
157     StoreInst *S = Builder->CreateStore(ConstantInt::get(ITy, Fill), Dest,
158                                         MI->isVolatile());
159     S->setAlignment(Alignment);
160     
161     // 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
169 /// visitCallInst - CallInst simplification.  This mostly only handles folding 
170 /// of intrinsic instructions.  For normal calls, it allows visitCallSite to do
171 /// the heavy lifting.
172 ///
173 Instruction *InstCombiner::visitCallInst(CallInst &CI) {
174   if (isFreeCall(&CI))
175     return visitFree(CI);
176   if (isMalloc(&CI))
177     return visitMalloc(CI);
178
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   }
186   
187   IntrinsicInst *II = dyn_cast<IntrinsicInst>(&CI);
188   if (!II) return visitCallSite(&CI);
189
190   // 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())) {
197       if (NumBytes->isNullValue())
198         return EraseInstFromFunction(CI);
199
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     }
207     
208     // No other transformations apply to volatile transfers.
209     if (MI->isVolatile())
210       return 0;
211
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()) {
218           Module *M = CI.getParent()->getParent()->getParent();
219           Intrinsic::ID MemCpyID = Intrinsic::memcpy;
220           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));
224           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);
232     }
233
234     // 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))
238         return I;
239     } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(MI)) {
240       if (Instruction *I = SimplifyMemSet(MSI))
241         return I;
242     }
243
244     if (Changed) return II;
245   }
246   
247   switch (II->getIntrinsicID()) {
248   default: break;
249   case Intrinsic::objectsize: {
250     // We need target data for just about everything so depend on it.
251     if (!TD) break;
252     
253     const Type *ReturnTy = CI.getType();
254     uint64_t DontKnow = II->getArgOperand(1) == Builder->getTrue() ? 0 : -1ULL;
255
256     // Get to the real allocated thing and offset as fast as possible.
257     Value *Op1 = II->getArgOperand(0)->stripPointerCasts();
258
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
280     // If we've stripped down to a single global variable that we
281     // can know the size of then just return that.
282     if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Op1)) {
283       if (GV->hasDefinitiveInitializer()) {
284         Constant *C = GV->getInitializer();
285         Size = TD->getTypeAllocSize(C->getType());
286       } else {
287         // Can't determine size of the GV.
288         Constant *RetVal = ConstantInt::get(ReturnTy, DontKnow);
289         return ReplaceInstUsesWith(CI, RetVal);
290       }
291     } else if (AllocaInst *AI = dyn_cast<AllocaInst>(Op1)) {
292       // Get alloca size.
293       if (AI->getAllocatedType()->isSized()) {
294         Size = TD->getTypeAllocSize(AI->getAllocatedType());
295         if (AI->isArrayAllocation()) {
296           const ConstantInt *C = dyn_cast<ConstantInt>(AI->getArraySize());
297           if (!C) break;
298           Size *= C->getZExtValue();
299         }
300       }
301     } else if (CallInst *MI = extractMallocCall(Op1)) {
302       // Get allocation size.
303       const Type* MallocType = getMallocAllocatedType(MI);
304       if (MallocType && MallocType->isSized())
305         if (Value *NElems = getMallocArraySize(MI, TD, true))
306           if (ConstantInt *NElements = dyn_cast<ConstantInt>(NElems))
307             Size = NElements->getZExtValue() * TD->getTypeAllocSize(MallocType);
308     }
309
310     // Do not return "I don't know" here. Later optimization passes could
311     // make it possible to evaluate objectsize to a constant.
312     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));
321   }
322   case Intrinsic::bswap:
323     // bswap(bswap(x)) -> x
324     if (IntrinsicInst *Operand = dyn_cast<IntrinsicInst>(II->getArgOperand(0)))
325       if (Operand->getIntrinsicID() == Intrinsic::bswap)
326         return ReplaceInstUsesWith(CI, Operand->getArgOperand(0));
327       
328     // bswap(trunc(bswap(x))) -> trunc(lshr(x, c))
329     if (TruncInst *TI = dyn_cast<TruncInst>(II->getArgOperand(0))) {
330       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);
335           Value *V = Builder->CreateLShr(Operand->getArgOperand(0), CV);
336           return new TruncInst(V, TI->getType());
337         }
338     }
339       
340     break;
341   case Intrinsic::powi:
342     if (ConstantInt *Power = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
343       // 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())
348         return ReplaceInstUsesWith(CI, II->getArgOperand(0));
349       // powi(x, -1) -> 1/x
350       if (Power->isAllOnesValue())
351         return BinaryOperator::CreateFDiv(ConstantFP::get(CI.getType(), 1.0),
352                                           II->getArgOperand(0));
353     }
354     break;
355   case Intrinsic::cttz: {
356     // If all bits below the first known one are known zero,
357     // this value is constant.
358     const IntegerType *IT = cast<IntegerType>(II->getArgOperand(0)->getType());
359     uint32_t BitWidth = IT->getBitWidth();
360     APInt KnownZero(BitWidth, 0);
361     APInt KnownOne(BitWidth, 0);
362     ComputeMaskedBits(II->getArgOperand(0), APInt::getAllOnesValue(BitWidth),
363                       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)));
369     
370     }
371     break;
372   case Intrinsic::ctlz: {
373     // If all bits above the first known one are known zero,
374     // this value is constant.
375     const IntegerType *IT = cast<IntegerType>(II->getArgOperand(0)->getType());
376     uint32_t BitWidth = IT->getBitWidth();
377     APInt KnownZero(BitWidth, 0);
378     APInt KnownOne(BitWidth, 0);
379     ComputeMaskedBits(II->getArgOperand(0), APInt::getAllOnesValue(BitWidth),
380                       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)));
386     
387     }
388     break;
389   case Intrinsic::uadd_with_overflow: {
390     Value *LHS = II->getArgOperand(0), *RHS = II->getArgOperand(1);
391     const IntegerType *IT = cast<IntegerType>(II->getArgOperand(0)->getType());
392     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.
409         Value *Add = Builder->CreateAdd(LHS, RHS);
410         Add->takeName(&CI);
411         Constant *V[] = {
412           UndefValue::get(LHS->getType()),
413           ConstantInt::getTrue(II->getContext())
414         };
415         Constant *Struct = ConstantStruct::get(II->getContext(), V, 2, false);
416         return InsertValueInst::Create(Struct, Add, 0);
417       }
418
419       if (LHSKnownPositive && RHSKnownPositive) {
420         // The sign bit is clear in both cases: this CANNOT overflow.
421         // Create a simple add instruction, and insert it into the struct.
422         Value *Add = Builder->CreateNUWAdd(LHS, RHS);
423         Add->takeName(&CI);
424         Constant *V[] = {
425           UndefValue::get(LHS->getType()),
426           ConstantInt::getFalse(II->getContext())
427         };
428         Constant *Struct = ConstantStruct::get(II->getContext(), V, 2, false);
429         return InsertValueInst::Create(Struct, Add, 0);
430       }
431     }
432   }
433   // FALL THROUGH uadd into sadd
434   case Intrinsic::sadd_with_overflow:
435     // Canonicalize constants into the RHS.
436     if (isa<Constant>(II->getArgOperand(0)) &&
437         !isa<Constant>(II->getArgOperand(1))) {
438       Value *LHS = II->getArgOperand(0);
439       II->setArgOperand(0, II->getArgOperand(1));
440       II->setArgOperand(1, LHS);
441       return II;
442     }
443
444     // X + undef -> undef
445     if (isa<UndefValue>(II->getArgOperand(1)))
446       return ReplaceInstUsesWith(CI, UndefValue::get(II->getType()));
447       
448     if (ConstantInt *RHS = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
449       // X + 0 -> {X, false}
450       if (RHS->isZero()) {
451         Constant *V[] = {
452           UndefValue::get(II->getArgOperand(0)->getType()),
453           ConstantInt::getFalse(II->getContext())
454         };
455         Constant *Struct = ConstantStruct::get(II->getContext(), V, 2, false);
456         return InsertValueInst::Create(Struct, II->getArgOperand(0), 0);
457       }
458     }
459     break;
460   case Intrinsic::usub_with_overflow:
461   case Intrinsic::ssub_with_overflow:
462     // undef - X -> undef
463     // X - undef -> undef
464     if (isa<UndefValue>(II->getArgOperand(0)) ||
465         isa<UndefValue>(II->getArgOperand(1)))
466       return ReplaceInstUsesWith(CI, UndefValue::get(II->getType()));
467       
468     if (ConstantInt *RHS = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
469       // X - 0 -> {X, false}
470       if (RHS->isZero()) {
471         Constant *V[] = {
472           UndefValue::get(II->getArgOperand(0)->getType()),
473           ConstantInt::getFalse(II->getContext())
474         };
475         Constant *Struct = ConstantStruct::get(II->getContext(), V, 2, false);
476         return InsertValueInst::Create(Struct, II->getArgOperand(0), 0);
477       }
478     }
479     break;
480   case Intrinsic::umul_with_overflow: {
481     Value *LHS = II->getArgOperand(0), *RHS = II->getArgOperand(1);
482     unsigned BitWidth = cast<IntegerType>(LHS->getType())->getBitWidth();
483     APInt Mask = APInt::getAllOnesValue(BitWidth);
484
485     APInt LHSKnownZero(BitWidth, 0);
486     APInt LHSKnownOne(BitWidth, 0);
487     ComputeMaskedBits(LHS, Mask, LHSKnownZero, LHSKnownOne);
488     APInt RHSKnownZero(BitWidth, 0);
489     APInt RHSKnownOne(BitWidth, 0);
490     ComputeMaskedBits(RHS, Mask, RHSKnownZero, RHSKnownOne);
491
492     // Get the largest possible values for each operand.
493     APInt LHSMax = ~LHSKnownZero;
494     APInt RHSMax = ~RHSKnownZero;
495
496     // If multiplying the maximum values does not overflow then we can turn
497     // this into a plain NUW mul.
498     bool Overflow;
499     LHSMax.umul_ov(RHSMax, Overflow);
500     if (!Overflow) {
501       Value *Mul = Builder->CreateNUWMul(LHS, RHS, "umul_with_overflow");
502       Constant *V[] = {
503         UndefValue::get(LHS->getType()),
504         Builder->getFalse()
505       };
506       Constant *Struct = ConstantStruct::get(II->getContext(), V, 2, false);
507       return InsertValueInst::Create(Struct, Mul, 0);
508     }
509   } // FALL THROUGH
510   case Intrinsic::smul_with_overflow:
511     // Canonicalize constants into the RHS.
512     if (isa<Constant>(II->getArgOperand(0)) &&
513         !isa<Constant>(II->getArgOperand(1))) {
514       Value *LHS = II->getArgOperand(0);
515       II->setArgOperand(0, II->getArgOperand(1));
516       II->setArgOperand(1, LHS);
517       return II;
518     }
519
520     // X * undef -> undef
521     if (isa<UndefValue>(II->getArgOperand(1)))
522       return ReplaceInstUsesWith(CI, UndefValue::get(II->getType()));
523       
524     if (ConstantInt *RHSI = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
525       // X*0 -> {0, false}
526       if (RHSI->isZero())
527         return ReplaceInstUsesWith(CI, Constant::getNullValue(II->getType()));
528       
529       // X * 1 -> {X, false}
530       if (RHSI->equalsInt(1)) {
531         Constant *V[] = {
532           UndefValue::get(II->getArgOperand(0)->getType()),
533           ConstantInt::getFalse(II->getContext())
534         };
535         Constant *Struct = ConstantStruct::get(II->getContext(), V, 2, false);
536         return InsertValueInst::Create(Struct, II->getArgOperand(0), 0);
537       }
538     }
539     break;
540   case Intrinsic::ppc_altivec_lvx:
541   case Intrinsic::ppc_altivec_lvxl:
542     // Turn PPC lvx -> load if the pointer is known aligned.
543     if (getOrEnforceKnownAlignment(II->getArgOperand(0), 16, TD) >= 16) {
544       Value *Ptr = Builder->CreateBitCast(II->getArgOperand(0),
545                                          PointerType::getUnqual(II->getType()));
546       return new LoadInst(Ptr);
547     }
548     break;
549   case Intrinsic::ppc_altivec_stvx:
550   case Intrinsic::ppc_altivec_stvxl:
551     // Turn stvx -> store if the pointer is known aligned.
552     if (getOrEnforceKnownAlignment(II->getArgOperand(1), 16, TD) >= 16) {
553       const Type *OpPtrTy = 
554         PointerType::getUnqual(II->getArgOperand(0)->getType());
555       Value *Ptr = Builder->CreateBitCast(II->getArgOperand(1), OpPtrTy);
556       return new StoreInst(II->getArgOperand(0), Ptr);
557     }
558     break;
559   case Intrinsic::x86_sse_storeu_ps:
560   case Intrinsic::x86_sse2_storeu_pd:
561   case Intrinsic::x86_sse2_storeu_dq:
562     // Turn X86 storeu -> store if the pointer is known aligned.
563     if (getOrEnforceKnownAlignment(II->getArgOperand(0), 16, TD) >= 16) {
564       const Type *OpPtrTy = 
565         PointerType::getUnqual(II->getArgOperand(1)->getType());
566       Value *Ptr = Builder->CreateBitCast(II->getArgOperand(0), OpPtrTy);
567       return new StoreInst(II->getArgOperand(1), Ptr);
568     }
569     break;
570
571   case Intrinsic::x86_sse_cvtss2si:
572   case Intrinsic::x86_sse_cvtss2si64:
573   case Intrinsic::x86_sse_cvttss2si:
574   case Intrinsic::x86_sse_cvttss2si64:
575   case Intrinsic::x86_sse2_cvtsd2si:
576   case Intrinsic::x86_sse2_cvtsd2si64:
577   case Intrinsic::x86_sse2_cvttsd2si:
578   case Intrinsic::x86_sse2_cvttsd2si64: {
579     // These intrinsics only demand the 0th element of their input vectors. If
580     // we can simplify the input based on that, do so now.
581     unsigned VWidth =
582       cast<VectorType>(II->getArgOperand(0)->getType())->getNumElements();
583     APInt DemandedElts(VWidth, 1);
584     APInt UndefElts(VWidth, 0);
585     if (Value *V = SimplifyDemandedVectorElts(II->getArgOperand(0),
586                                               DemandedElts, UndefElts)) {
587       II->setArgOperand(0, V);
588       return II;
589     }
590     break;
591   }
592
593
594   case Intrinsic::x86_sse41_pmovsxbw:
595   case Intrinsic::x86_sse41_pmovsxwd:
596   case Intrinsic::x86_sse41_pmovsxdq:
597   case Intrinsic::x86_sse41_pmovzxbw:
598   case Intrinsic::x86_sse41_pmovzxwd:
599   case Intrinsic::x86_sse41_pmovzxdq: {
600     // pmov{s|z}x ignores the upper half of their input vectors.
601     unsigned VWidth =
602       cast<VectorType>(II->getArgOperand(0)->getType())->getNumElements();
603     unsigned LowHalfElts = VWidth / 2;
604     APInt InputDemandedElts(APInt::getBitsSet(VWidth, 0, LowHalfElts));
605     APInt UndefElts(VWidth, 0);
606     if (Value *TmpV = SimplifyDemandedVectorElts(II->getArgOperand(0),
607                                                  InputDemandedElts,
608                                                  UndefElts)) {
609       II->setArgOperand(0, TmpV);
610       return II;
611     }
612     break;
613   }
614
615   case Intrinsic::ppc_altivec_vperm:
616     // Turn vperm(V1,V2,mask) -> shuffle(V1,V2,mask) if mask is a constant.
617     if (ConstantVector *Mask = dyn_cast<ConstantVector>(II->getArgOperand(2))) {
618       assert(Mask->getNumOperands() == 16 && "Bad type for intrinsic!");
619       
620       // Check that all of the elements are integer constants or undefs.
621       bool AllEltsOk = true;
622       for (unsigned i = 0; i != 16; ++i) {
623         if (!isa<ConstantInt>(Mask->getOperand(i)) && 
624             !isa<UndefValue>(Mask->getOperand(i))) {
625           AllEltsOk = false;
626           break;
627         }
628       }
629       
630       if (AllEltsOk) {
631         // Cast the input vectors to byte vectors.
632         Value *Op0 = Builder->CreateBitCast(II->getArgOperand(0),
633                                             Mask->getType());
634         Value *Op1 = Builder->CreateBitCast(II->getArgOperand(1),
635                                             Mask->getType());
636         Value *Result = UndefValue::get(Op0->getType());
637         
638         // Only extract each element once.
639         Value *ExtractedElts[32];
640         memset(ExtractedElts, 0, sizeof(ExtractedElts));
641         
642         for (unsigned i = 0; i != 16; ++i) {
643           if (isa<UndefValue>(Mask->getOperand(i)))
644             continue;
645           unsigned Idx=cast<ConstantInt>(Mask->getOperand(i))->getZExtValue();
646           Idx &= 31;  // Match the hardware behavior.
647           
648           if (ExtractedElts[Idx] == 0) {
649             ExtractedElts[Idx] = 
650               Builder->CreateExtractElement(Idx < 16 ? Op0 : Op1, 
651                   ConstantInt::get(Type::getInt32Ty(II->getContext()),
652                                    Idx&15, false), "tmp");
653           }
654         
655           // Insert this value into the result vector.
656           Result = Builder->CreateInsertElement(Result, ExtractedElts[Idx],
657                          ConstantInt::get(Type::getInt32Ty(II->getContext()),
658                                           i, false), "tmp");
659         }
660         return CastInst::Create(Instruction::BitCast, Result, CI.getType());
661       }
662     }
663     break;
664
665   case Intrinsic::arm_neon_vld1:
666   case Intrinsic::arm_neon_vld2:
667   case Intrinsic::arm_neon_vld3:
668   case Intrinsic::arm_neon_vld4:
669   case Intrinsic::arm_neon_vld2lane:
670   case Intrinsic::arm_neon_vld3lane:
671   case Intrinsic::arm_neon_vld4lane:
672   case Intrinsic::arm_neon_vst1:
673   case Intrinsic::arm_neon_vst2:
674   case Intrinsic::arm_neon_vst3:
675   case Intrinsic::arm_neon_vst4:
676   case Intrinsic::arm_neon_vst2lane:
677   case Intrinsic::arm_neon_vst3lane:
678   case Intrinsic::arm_neon_vst4lane: {
679     unsigned MemAlign = getKnownAlignment(II->getArgOperand(0), TD);
680     unsigned AlignArg = II->getNumArgOperands() - 1;
681     ConstantInt *IntrAlign = dyn_cast<ConstantInt>(II->getArgOperand(AlignArg));
682     if (IntrAlign && IntrAlign->getZExtValue() < MemAlign) {
683       II->setArgOperand(AlignArg,
684                         ConstantInt::get(Type::getInt32Ty(II->getContext()),
685                                          MemAlign, false));
686       return II;
687     }
688     break;
689   }
690
691   case Intrinsic::stackrestore: {
692     // If the save is right next to the restore, remove the restore.  This can
693     // happen when variable allocas are DCE'd.
694     if (IntrinsicInst *SS = dyn_cast<IntrinsicInst>(II->getArgOperand(0))) {
695       if (SS->getIntrinsicID() == Intrinsic::stacksave) {
696         BasicBlock::iterator BI = SS;
697         if (&*++BI == II)
698           return EraseInstFromFunction(CI);
699       }
700     }
701     
702     // Scan down this block to see if there is another stack restore in the
703     // same block without an intervening call/alloca.
704     BasicBlock::iterator BI = II;
705     TerminatorInst *TI = II->getParent()->getTerminator();
706     bool CannotRemove = false;
707     for (++BI; &*BI != TI; ++BI) {
708       if (isa<AllocaInst>(BI) || isMalloc(BI)) {
709         CannotRemove = true;
710         break;
711       }
712       if (CallInst *BCI = dyn_cast<CallInst>(BI)) {
713         if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(BCI)) {
714           // If there is a stackrestore below this one, remove this one.
715           if (II->getIntrinsicID() == Intrinsic::stackrestore)
716             return EraseInstFromFunction(CI);
717           // Otherwise, ignore the intrinsic.
718         } else {
719           // If we found a non-intrinsic call, we can't remove the stack
720           // restore.
721           CannotRemove = true;
722           break;
723         }
724       }
725     }
726     
727     // If the stack restore is in a return/unwind block and if there are no
728     // allocas or calls between the restore and the return, nuke the restore.
729     if (!CannotRemove && (isa<ReturnInst>(TI) || isa<UnwindInst>(TI)))
730       return EraseInstFromFunction(CI);
731     break;
732   }
733   }
734
735   return visitCallSite(II);
736 }
737
738 // InvokeInst simplification
739 //
740 Instruction *InstCombiner::visitInvokeInst(InvokeInst &II) {
741   return visitCallSite(&II);
742 }
743
744 /// isSafeToEliminateVarargsCast - If this cast does not affect the value 
745 /// passed through the varargs area, we can eliminate the use of the cast.
746 static bool isSafeToEliminateVarargsCast(const CallSite CS,
747                                          const CastInst * const CI,
748                                          const TargetData * const TD,
749                                          const int ix) {
750   if (!CI->isLosslessCast())
751     return false;
752
753   // The size of ByVal arguments is derived from the type, so we
754   // can't change to a type with a different size.  If the size were
755   // passed explicitly we could avoid this check.
756   if (!CS.paramHasAttr(ix, Attribute::ByVal))
757     return true;
758
759   const Type* SrcTy = 
760             cast<PointerType>(CI->getOperand(0)->getType())->getElementType();
761   const Type* DstTy = cast<PointerType>(CI->getType())->getElementType();
762   if (!SrcTy->isSized() || !DstTy->isSized())
763     return false;
764   if (!TD || TD->getTypeAllocSize(SrcTy) != TD->getTypeAllocSize(DstTy))
765     return false;
766   return true;
767 }
768
769 namespace {
770 class InstCombineFortifiedLibCalls : public SimplifyFortifiedLibCalls {
771   InstCombiner *IC;
772 protected:
773   void replaceCall(Value *With) {
774     NewInstruction = IC->ReplaceInstUsesWith(*CI, With);
775   }
776   bool isFoldable(unsigned SizeCIOp, unsigned SizeArgOp, bool isString) const {
777     if (CI->getArgOperand(SizeCIOp) == CI->getArgOperand(SizeArgOp))
778       return true;
779     if (ConstantInt *SizeCI =
780                            dyn_cast<ConstantInt>(CI->getArgOperand(SizeCIOp))) {
781       if (SizeCI->isAllOnesValue())
782         return true;
783       if (isString) {
784         uint64_t Len = GetStringLength(CI->getArgOperand(SizeArgOp));
785         // If the length is 0 we don't know how long it is and so we can't
786         // remove the check.
787         if (Len == 0) return false;
788         return SizeCI->getZExtValue() >= Len;
789       }
790       if (ConstantInt *Arg = dyn_cast<ConstantInt>(
791                                                   CI->getArgOperand(SizeArgOp)))
792         return SizeCI->getZExtValue() >= Arg->getZExtValue();
793     }
794     return false;
795   }
796 public:
797   InstCombineFortifiedLibCalls(InstCombiner *IC) : IC(IC), NewInstruction(0) { }
798   Instruction *NewInstruction;
799 };
800 } // end anonymous namespace
801
802 // Try to fold some different type of calls here.
803 // Currently we're only working with the checking functions, memcpy_chk, 
804 // mempcpy_chk, memmove_chk, memset_chk, strcpy_chk, stpcpy_chk, strncpy_chk,
805 // strcat_chk and strncat_chk.
806 Instruction *InstCombiner::tryOptimizeCall(CallInst *CI, const TargetData *TD) {
807   if (CI->getCalledFunction() == 0) return 0;
808
809   InstCombineFortifiedLibCalls Simplifier(this);
810   Simplifier.fold(CI, TD);
811   return Simplifier.NewInstruction;
812 }
813
814 // visitCallSite - Improvements for call and invoke instructions.
815 //
816 Instruction *InstCombiner::visitCallSite(CallSite CS) {
817   bool Changed = false;
818
819   // If the callee is a pointer to a function, attempt to move any casts to the
820   // arguments of the call/invoke.
821   Value *Callee = CS.getCalledValue();
822   if (!isa<Function>(Callee) && transformConstExprCastCall(CS))
823     return 0;
824
825   if (Function *CalleeF = dyn_cast<Function>(Callee))
826     // If the call and callee calling conventions don't match, this call must
827     // be unreachable, as the call is undefined.
828     if (CalleeF->getCallingConv() != CS.getCallingConv() &&
829         // Only do this for calls to a function with a body.  A prototype may
830         // not actually end up matching the implementation's calling conv for a
831         // variety of reasons (e.g. it may be written in assembly).
832         !CalleeF->isDeclaration()) {
833       Instruction *OldCall = CS.getInstruction();
834       new StoreInst(ConstantInt::getTrue(Callee->getContext()),
835                 UndefValue::get(Type::getInt1PtrTy(Callee->getContext())), 
836                                   OldCall);
837       // If OldCall dues not return void then replaceAllUsesWith undef.
838       // This allows ValueHandlers and custom metadata to adjust itself.
839       if (!OldCall->getType()->isVoidTy())
840         ReplaceInstUsesWith(*OldCall, UndefValue::get(OldCall->getType()));
841       if (isa<CallInst>(OldCall))
842         return EraseInstFromFunction(*OldCall);
843       
844       // We cannot remove an invoke, because it would change the CFG, just
845       // change the callee to a null pointer.
846       cast<InvokeInst>(OldCall)->setCalledFunction(
847                                     Constant::getNullValue(CalleeF->getType()));
848       return 0;
849     }
850
851   if (isa<ConstantPointerNull>(Callee) || isa<UndefValue>(Callee)) {
852     // This instruction is not reachable, just remove it.  We insert a store to
853     // undef so that we know that this code is not reachable, despite the fact
854     // that we can't modify the CFG here.
855     new StoreInst(ConstantInt::getTrue(Callee->getContext()),
856                UndefValue::get(Type::getInt1PtrTy(Callee->getContext())),
857                   CS.getInstruction());
858
859     // If CS does not return void then replaceAllUsesWith undef.
860     // This allows ValueHandlers and custom metadata to adjust itself.
861     if (!CS.getInstruction()->getType()->isVoidTy())
862       ReplaceInstUsesWith(*CS.getInstruction(),
863                           UndefValue::get(CS.getInstruction()->getType()));
864
865     if (InvokeInst *II = dyn_cast<InvokeInst>(CS.getInstruction())) {
866       // Don't break the CFG, insert a dummy cond branch.
867       BranchInst::Create(II->getNormalDest(), II->getUnwindDest(),
868                          ConstantInt::getTrue(Callee->getContext()), II);
869     }
870     return EraseInstFromFunction(*CS.getInstruction());
871   }
872
873   if (BitCastInst *BC = dyn_cast<BitCastInst>(Callee))
874     if (IntrinsicInst *In = dyn_cast<IntrinsicInst>(BC->getOperand(0)))
875       if (In->getIntrinsicID() == Intrinsic::init_trampoline)
876         return transformCallThroughTrampoline(CS);
877
878   const PointerType *PTy = cast<PointerType>(Callee->getType());
879   const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
880   if (FTy->isVarArg()) {
881     int ix = FTy->getNumParams() + (isa<InvokeInst>(Callee) ? 3 : 1);
882     // See if we can optimize any arguments passed through the varargs area of
883     // the call.
884     for (CallSite::arg_iterator I = CS.arg_begin()+FTy->getNumParams(),
885            E = CS.arg_end(); I != E; ++I, ++ix) {
886       CastInst *CI = dyn_cast<CastInst>(*I);
887       if (CI && isSafeToEliminateVarargsCast(CS, CI, TD, ix)) {
888         *I = CI->getOperand(0);
889         Changed = true;
890       }
891     }
892   }
893
894   if (isa<InlineAsm>(Callee) && !CS.doesNotThrow()) {
895     // Inline asm calls cannot throw - mark them 'nounwind'.
896     CS.setDoesNotThrow();
897     Changed = true;
898   }
899
900   // Try to optimize the call if possible, we require TargetData for most of
901   // this.  None of these calls are seen as possibly dead so go ahead and
902   // delete the instruction now.
903   if (CallInst *CI = dyn_cast<CallInst>(CS.getInstruction())) {
904     Instruction *I = tryOptimizeCall(CI, TD);
905     // If we changed something return the result, etc. Otherwise let
906     // the fallthrough check.
907     if (I) return EraseInstFromFunction(*I);
908   }
909
910   return Changed ? CS.getInstruction() : 0;
911 }
912
913 // transformConstExprCastCall - If the callee is a constexpr cast of a function,
914 // attempt to move the cast to the arguments of the call/invoke.
915 //
916 bool InstCombiner::transformConstExprCastCall(CallSite CS) {
917   Function *Callee =
918     dyn_cast<Function>(CS.getCalledValue()->stripPointerCasts());
919   if (Callee == 0)
920     return false;
921   Instruction *Caller = CS.getInstruction();
922   const AttrListPtr &CallerPAL = CS.getAttributes();
923
924   // Okay, this is a cast from a function to a different type.  Unless doing so
925   // would cause a type conversion of one of our arguments, change this call to
926   // be a direct call with arguments casted to the appropriate types.
927   //
928   const FunctionType *FT = Callee->getFunctionType();
929   const Type *OldRetTy = Caller->getType();
930   const Type *NewRetTy = FT->getReturnType();
931
932   if (NewRetTy->isStructTy())
933     return false; // TODO: Handle multiple return values.
934
935   // Check to see if we are changing the return type...
936   if (OldRetTy != NewRetTy) {
937     if (Callee->isDeclaration() &&
938         // Conversion is ok if changing from one pointer type to another or from
939         // a pointer to an integer of the same size.
940         !((OldRetTy->isPointerTy() || !TD ||
941            OldRetTy == TD->getIntPtrType(Caller->getContext())) &&
942           (NewRetTy->isPointerTy() || !TD ||
943            NewRetTy == TD->getIntPtrType(Caller->getContext()))))
944       return false;   // Cannot transform this return value.
945
946     if (!Caller->use_empty() &&
947         // void -> non-void is handled specially
948         !NewRetTy->isVoidTy() && !CastInst::isCastable(NewRetTy, OldRetTy))
949       return false;   // Cannot transform this return value.
950
951     if (!CallerPAL.isEmpty() && !Caller->use_empty()) {
952       Attributes RAttrs = CallerPAL.getRetAttributes();
953       if (RAttrs & Attribute::typeIncompatible(NewRetTy))
954         return false;   // Attribute not compatible with transformed value.
955     }
956
957     // If the callsite is an invoke instruction, and the return value is used by
958     // a PHI node in a successor, we cannot change the return type of the call
959     // because there is no place to put the cast instruction (without breaking
960     // the critical edge).  Bail out in this case.
961     if (!Caller->use_empty())
962       if (InvokeInst *II = dyn_cast<InvokeInst>(Caller))
963         for (Value::use_iterator UI = II->use_begin(), E = II->use_end();
964              UI != E; ++UI)
965           if (PHINode *PN = dyn_cast<PHINode>(*UI))
966             if (PN->getParent() == II->getNormalDest() ||
967                 PN->getParent() == II->getUnwindDest())
968               return false;
969   }
970
971   unsigned NumActualArgs = unsigned(CS.arg_end()-CS.arg_begin());
972   unsigned NumCommonArgs = std::min(FT->getNumParams(), NumActualArgs);
973
974   CallSite::arg_iterator AI = CS.arg_begin();
975   for (unsigned i = 0, e = NumCommonArgs; i != e; ++i, ++AI) {
976     const Type *ParamTy = FT->getParamType(i);
977     const Type *ActTy = (*AI)->getType();
978
979     if (!CastInst::isCastable(ActTy, ParamTy))
980       return false;   // Cannot transform this parameter value.
981
982     unsigned Attrs = CallerPAL.getParamAttributes(i + 1);
983     if (Attrs & Attribute::typeIncompatible(ParamTy))
984       return false;   // Attribute not compatible with transformed value.
985     
986     // If the parameter is passed as a byval argument, then we have to have a
987     // sized type and the sized type has to have the same size as the old type.
988     if (ParamTy != ActTy && (Attrs & Attribute::ByVal)) {
989       const PointerType *ParamPTy = dyn_cast<PointerType>(ParamTy);
990       if (ParamPTy == 0 || !ParamPTy->getElementType()->isSized() || TD == 0)
991         return false;
992       
993       const Type *CurElTy = cast<PointerType>(ActTy)->getElementType();
994       if (TD->getTypeAllocSize(CurElTy) !=
995           TD->getTypeAllocSize(ParamPTy->getElementType()))
996         return false;
997     }
998
999     // Converting from one pointer type to another or between a pointer and an
1000     // integer of the same size is safe even if we do not have a body.
1001     bool isConvertible = ActTy == ParamTy ||
1002       (TD && ((ParamTy->isPointerTy() ||
1003       ParamTy == TD->getIntPtrType(Caller->getContext())) &&
1004               (ActTy->isPointerTy() ||
1005               ActTy == TD->getIntPtrType(Caller->getContext()))));
1006     if (Callee->isDeclaration() && !isConvertible) return false;
1007   }
1008
1009   if (Callee->isDeclaration()) {
1010     // Do not delete arguments unless we have a function body.
1011     if (FT->getNumParams() < NumActualArgs && !FT->isVarArg())
1012       return false;
1013
1014     // If the callee is just a declaration, don't change the varargsness of the
1015     // call.  We don't want to introduce a varargs call where one doesn't
1016     // already exist.
1017     const PointerType *APTy = cast<PointerType>(CS.getCalledValue()->getType());
1018     if (FT->isVarArg()!=cast<FunctionType>(APTy->getElementType())->isVarArg())
1019       return false;
1020   }
1021       
1022   if (FT->getNumParams() < NumActualArgs && FT->isVarArg() &&
1023       !CallerPAL.isEmpty())
1024     // In this case we have more arguments than the new function type, but we
1025     // won't be dropping them.  Check that these extra arguments have attributes
1026     // that are compatible with being a vararg call argument.
1027     for (unsigned i = CallerPAL.getNumSlots(); i; --i) {
1028       if (CallerPAL.getSlot(i - 1).Index <= FT->getNumParams())
1029         break;
1030       Attributes PAttrs = CallerPAL.getSlot(i - 1).Attrs;
1031       if (PAttrs & Attribute::VarArgsIncompatible)
1032         return false;
1033     }
1034
1035   
1036   // Okay, we decided that this is a safe thing to do: go ahead and start
1037   // inserting cast instructions as necessary.
1038   std::vector<Value*> Args;
1039   Args.reserve(NumActualArgs);
1040   SmallVector<AttributeWithIndex, 8> attrVec;
1041   attrVec.reserve(NumCommonArgs);
1042
1043   // Get any return attributes.
1044   Attributes RAttrs = CallerPAL.getRetAttributes();
1045
1046   // If the return value is not being used, the type may not be compatible
1047   // with the existing attributes.  Wipe out any problematic attributes.
1048   RAttrs &= ~Attribute::typeIncompatible(NewRetTy);
1049
1050   // Add the new return attributes.
1051   if (RAttrs)
1052     attrVec.push_back(AttributeWithIndex::get(0, RAttrs));
1053
1054   AI = CS.arg_begin();
1055   for (unsigned i = 0; i != NumCommonArgs; ++i, ++AI) {
1056     const Type *ParamTy = FT->getParamType(i);
1057     if ((*AI)->getType() == ParamTy) {
1058       Args.push_back(*AI);
1059     } else {
1060       Instruction::CastOps opcode = CastInst::getCastOpcode(*AI,
1061           false, ParamTy, false);
1062       Args.push_back(Builder->CreateCast(opcode, *AI, ParamTy, "tmp"));
1063     }
1064
1065     // Add any parameter attributes.
1066     if (Attributes PAttrs = CallerPAL.getParamAttributes(i + 1))
1067       attrVec.push_back(AttributeWithIndex::get(i + 1, PAttrs));
1068   }
1069
1070   // If the function takes more arguments than the call was taking, add them
1071   // now.
1072   for (unsigned i = NumCommonArgs; i != FT->getNumParams(); ++i)
1073     Args.push_back(Constant::getNullValue(FT->getParamType(i)));
1074
1075   // If we are removing arguments to the function, emit an obnoxious warning.
1076   if (FT->getNumParams() < NumActualArgs) {
1077     if (!FT->isVarArg()) {
1078       errs() << "WARNING: While resolving call to function '"
1079              << Callee->getName() << "' arguments were dropped!\n";
1080     } else {
1081       // Add all of the arguments in their promoted form to the arg list.
1082       for (unsigned i = FT->getNumParams(); i != NumActualArgs; ++i, ++AI) {
1083         const Type *PTy = getPromotedType((*AI)->getType());
1084         if (PTy != (*AI)->getType()) {
1085           // Must promote to pass through va_arg area!
1086           Instruction::CastOps opcode =
1087             CastInst::getCastOpcode(*AI, false, PTy, false);
1088           Args.push_back(Builder->CreateCast(opcode, *AI, PTy, "tmp"));
1089         } else {
1090           Args.push_back(*AI);
1091         }
1092
1093         // Add any parameter attributes.
1094         if (Attributes PAttrs = CallerPAL.getParamAttributes(i + 1))
1095           attrVec.push_back(AttributeWithIndex::get(i + 1, PAttrs));
1096       }
1097     }
1098   }
1099
1100   if (Attributes FnAttrs =  CallerPAL.getFnAttributes())
1101     attrVec.push_back(AttributeWithIndex::get(~0, FnAttrs));
1102
1103   if (NewRetTy->isVoidTy())
1104     Caller->setName("");   // Void type should not have a name.
1105
1106   const AttrListPtr &NewCallerPAL = AttrListPtr::get(attrVec.begin(),
1107                                                      attrVec.end());
1108
1109   Instruction *NC;
1110   if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
1111     NC = Builder->CreateInvoke(Callee, II->getNormalDest(),
1112                                II->getUnwindDest(), Args.begin(), Args.end());
1113     NC->takeName(II);
1114     cast<InvokeInst>(NC)->setCallingConv(II->getCallingConv());
1115     cast<InvokeInst>(NC)->setAttributes(NewCallerPAL);
1116   } else {
1117     CallInst *CI = cast<CallInst>(Caller);
1118     NC = Builder->CreateCall(Callee, Args.begin(), Args.end());
1119     NC->takeName(CI);
1120     if (CI->isTailCall())
1121       cast<CallInst>(NC)->setTailCall();
1122     cast<CallInst>(NC)->setCallingConv(CI->getCallingConv());
1123     cast<CallInst>(NC)->setAttributes(NewCallerPAL);
1124   }
1125
1126   // Insert a cast of the return type as necessary.
1127   Value *NV = NC;
1128   if (OldRetTy != NV->getType() && !Caller->use_empty()) {
1129     if (!NV->getType()->isVoidTy()) {
1130       Instruction::CastOps opcode =
1131         CastInst::getCastOpcode(NC, false, OldRetTy, false);
1132       NV = NC = CastInst::Create(opcode, NC, OldRetTy, "tmp");
1133       NC->setDebugLoc(Caller->getDebugLoc());
1134
1135       // If this is an invoke instruction, we should insert it after the first
1136       // non-phi, instruction in the normal successor block.
1137       if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
1138         BasicBlock::iterator I = II->getNormalDest()->getFirstNonPHI();
1139         InsertNewInstBefore(NC, *I);
1140       } else {
1141         // Otherwise, it's a call, just insert cast right after the call.
1142         InsertNewInstBefore(NC, *Caller);
1143       }
1144       Worklist.AddUsersToWorkList(*Caller);
1145     } else {
1146       NV = UndefValue::get(Caller->getType());
1147     }
1148   }
1149
1150   if (!Caller->use_empty())
1151     ReplaceInstUsesWith(*Caller, NV);
1152
1153   EraseInstFromFunction(*Caller);
1154   return true;
1155 }
1156
1157 // transformCallThroughTrampoline - Turn a call to a function created by the
1158 // init_trampoline intrinsic into a direct call to the underlying function.
1159 //
1160 Instruction *InstCombiner::transformCallThroughTrampoline(CallSite CS) {
1161   Value *Callee = CS.getCalledValue();
1162   const PointerType *PTy = cast<PointerType>(Callee->getType());
1163   const FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1164   const AttrListPtr &Attrs = CS.getAttributes();
1165
1166   // If the call already has the 'nest' attribute somewhere then give up -
1167   // otherwise 'nest' would occur twice after splicing in the chain.
1168   if (Attrs.hasAttrSomewhere(Attribute::Nest))
1169     return 0;
1170
1171   IntrinsicInst *Tramp =
1172     cast<IntrinsicInst>(cast<BitCastInst>(Callee)->getOperand(0));
1173
1174   Function *NestF =cast<Function>(Tramp->getArgOperand(1)->stripPointerCasts());
1175   const PointerType *NestFPTy = cast<PointerType>(NestF->getType());
1176   const FunctionType *NestFTy = cast<FunctionType>(NestFPTy->getElementType());
1177
1178   const AttrListPtr &NestAttrs = NestF->getAttributes();
1179   if (!NestAttrs.isEmpty()) {
1180     unsigned NestIdx = 1;
1181     const Type *NestTy = 0;
1182     Attributes NestAttr = Attribute::None;
1183
1184     // Look for a parameter marked with the 'nest' attribute.
1185     for (FunctionType::param_iterator I = NestFTy->param_begin(),
1186          E = NestFTy->param_end(); I != E; ++NestIdx, ++I)
1187       if (NestAttrs.paramHasAttr(NestIdx, Attribute::Nest)) {
1188         // Record the parameter type and any other attributes.
1189         NestTy = *I;
1190         NestAttr = NestAttrs.getParamAttributes(NestIdx);
1191         break;
1192       }
1193
1194     if (NestTy) {
1195       Instruction *Caller = CS.getInstruction();
1196       std::vector<Value*> NewArgs;
1197       NewArgs.reserve(unsigned(CS.arg_end()-CS.arg_begin())+1);
1198
1199       SmallVector<AttributeWithIndex, 8> NewAttrs;
1200       NewAttrs.reserve(Attrs.getNumSlots() + 1);
1201
1202       // Insert the nest argument into the call argument list, which may
1203       // mean appending it.  Likewise for attributes.
1204
1205       // Add any result attributes.
1206       if (Attributes Attr = Attrs.getRetAttributes())
1207         NewAttrs.push_back(AttributeWithIndex::get(0, Attr));
1208
1209       {
1210         unsigned Idx = 1;
1211         CallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end();
1212         do {
1213           if (Idx == NestIdx) {
1214             // Add the chain argument and attributes.
1215             Value *NestVal = Tramp->getArgOperand(2);
1216             if (NestVal->getType() != NestTy)
1217               NestVal = Builder->CreateBitCast(NestVal, NestTy, "nest");
1218             NewArgs.push_back(NestVal);
1219             NewAttrs.push_back(AttributeWithIndex::get(NestIdx, NestAttr));
1220           }
1221
1222           if (I == E)
1223             break;
1224
1225           // Add the original argument and attributes.
1226           NewArgs.push_back(*I);
1227           if (Attributes Attr = Attrs.getParamAttributes(Idx))
1228             NewAttrs.push_back
1229               (AttributeWithIndex::get(Idx + (Idx >= NestIdx), Attr));
1230
1231           ++Idx, ++I;
1232         } while (1);
1233       }
1234
1235       // Add any function attributes.
1236       if (Attributes Attr = Attrs.getFnAttributes())
1237         NewAttrs.push_back(AttributeWithIndex::get(~0, Attr));
1238
1239       // The trampoline may have been bitcast to a bogus type (FTy).
1240       // Handle this by synthesizing a new function type, equal to FTy
1241       // with the chain parameter inserted.
1242
1243       std::vector<const Type*> NewTypes;
1244       NewTypes.reserve(FTy->getNumParams()+1);
1245
1246       // Insert the chain's type into the list of parameter types, which may
1247       // mean appending it.
1248       {
1249         unsigned Idx = 1;
1250         FunctionType::param_iterator I = FTy->param_begin(),
1251           E = FTy->param_end();
1252
1253         do {
1254           if (Idx == NestIdx)
1255             // Add the chain's type.
1256             NewTypes.push_back(NestTy);
1257
1258           if (I == E)
1259             break;
1260
1261           // Add the original type.
1262           NewTypes.push_back(*I);
1263
1264           ++Idx, ++I;
1265         } while (1);
1266       }
1267
1268       // Replace the trampoline call with a direct call.  Let the generic
1269       // code sort out any function type mismatches.
1270       FunctionType *NewFTy = FunctionType::get(FTy->getReturnType(), NewTypes, 
1271                                                 FTy->isVarArg());
1272       Constant *NewCallee =
1273         NestF->getType() == PointerType::getUnqual(NewFTy) ?
1274         NestF : ConstantExpr::getBitCast(NestF, 
1275                                          PointerType::getUnqual(NewFTy));
1276       const AttrListPtr &NewPAL = AttrListPtr::get(NewAttrs.begin(),
1277                                                    NewAttrs.end());
1278
1279       Instruction *NewCaller;
1280       if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
1281         NewCaller = InvokeInst::Create(NewCallee,
1282                                        II->getNormalDest(), II->getUnwindDest(),
1283                                        NewArgs.begin(), NewArgs.end());
1284         cast<InvokeInst>(NewCaller)->setCallingConv(II->getCallingConv());
1285         cast<InvokeInst>(NewCaller)->setAttributes(NewPAL);
1286       } else {
1287         NewCaller = CallInst::Create(NewCallee, NewArgs.begin(), NewArgs.end());
1288         if (cast<CallInst>(Caller)->isTailCall())
1289           cast<CallInst>(NewCaller)->setTailCall();
1290         cast<CallInst>(NewCaller)->
1291           setCallingConv(cast<CallInst>(Caller)->getCallingConv());
1292         cast<CallInst>(NewCaller)->setAttributes(NewPAL);
1293       }
1294
1295       return NewCaller;
1296     }
1297   }
1298
1299   // Replace the trampoline call with a direct call.  Since there is no 'nest'
1300   // parameter, there is no need to adjust the argument list.  Let the generic
1301   // code sort out any function type mismatches.
1302   Constant *NewCallee =
1303     NestF->getType() == PTy ? NestF : 
1304                               ConstantExpr::getBitCast(NestF, PTy);
1305   CS.setCalledFunction(NewCallee);
1306   return CS.getInstruction();
1307 }
1308