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