Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 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" |
Meador Inge | e3f2b26 | 2012-11-30 04:05:06 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/Statistic.h" |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 16 | #include "llvm/Analysis/MemoryBuiltins.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 17 | #include "llvm/IR/DataLayout.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 18 | #include "llvm/Support/CallSite.h" |
Michael Ilseman | 536cc32 | 2012-12-13 03:13:36 +0000 | [diff] [blame] | 19 | #include "llvm/Support/PatternMatch.h" |
Eric Christopher | a7fb58f | 2010-03-06 10:50:38 +0000 | [diff] [blame] | 20 | #include "llvm/Transforms/Utils/BuildLibCalls.h" |
Chris Lattner | 6fcd32e | 2010-12-25 20:37:57 +0000 | [diff] [blame] | 21 | #include "llvm/Transforms/Utils/Local.h" |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 22 | using namespace llvm; |
Michael Ilseman | 536cc32 | 2012-12-13 03:13:36 +0000 | [diff] [blame] | 23 | using namespace PatternMatch; |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 24 | |
Meador Inge | e3f2b26 | 2012-11-30 04:05:06 +0000 | [diff] [blame] | 25 | STATISTIC(NumSimplified, "Number of library calls simplified"); |
| 26 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 27 | /// getPromotedType - Return the specified type promoted as it would be to pass |
| 28 | /// though a va_arg area. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 29 | static Type *getPromotedType(Type *Ty) { |
| 30 | if (IntegerType* ITy = dyn_cast<IntegerType>(Ty)) { |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 31 | if (ITy->getBitWidth() < 32) |
| 32 | return Type::getInt32Ty(Ty->getContext()); |
| 33 | } |
| 34 | return Ty; |
| 35 | } |
| 36 | |
Dan Gohman | d0080c4 | 2012-09-13 18:19:06 +0000 | [diff] [blame] | 37 | /// reduceToSingleValueType - Given an aggregate type which ultimately holds a |
| 38 | /// single scalar element, like {{{type}}} or [1 x type], return type. |
| 39 | static Type *reduceToSingleValueType(Type *T) { |
| 40 | while (!T->isSingleValueType()) { |
| 41 | if (StructType *STy = dyn_cast<StructType>(T)) { |
| 42 | if (STy->getNumElements() == 1) |
| 43 | T = STy->getElementType(0); |
| 44 | else |
| 45 | break; |
| 46 | } else if (ArrayType *ATy = dyn_cast<ArrayType>(T)) { |
| 47 | if (ATy->getNumElements() == 1) |
| 48 | T = ATy->getElementType(); |
| 49 | else |
| 50 | break; |
| 51 | } else |
| 52 | break; |
| 53 | } |
| 54 | |
| 55 | return T; |
| 56 | } |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 57 | |
| 58 | Instruction *InstCombiner::SimplifyMemTransfer(MemIntrinsic *MI) { |
Chris Lattner | 6fcd32e | 2010-12-25 20:37:57 +0000 | [diff] [blame] | 59 | unsigned DstAlign = getKnownAlignment(MI->getArgOperand(0), TD); |
| 60 | unsigned SrcAlign = getKnownAlignment(MI->getArgOperand(1), TD); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 61 | unsigned MinAlign = std::min(DstAlign, SrcAlign); |
| 62 | unsigned CopyAlign = MI->getAlignment(); |
| 63 | |
| 64 | if (CopyAlign < MinAlign) { |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 65 | MI->setAlignment(ConstantInt::get(MI->getAlignmentType(), |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 66 | MinAlign, false)); |
| 67 | return MI; |
| 68 | } |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 69 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 70 | // If MemCpyInst length is 1/2/4/8 bytes then replace memcpy with |
| 71 | // load/store. |
Gabor Greif | 0a136c9 | 2010-06-24 13:54:33 +0000 | [diff] [blame] | 72 | ConstantInt *MemOpLength = dyn_cast<ConstantInt>(MI->getArgOperand(2)); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 73 | if (MemOpLength == 0) return 0; |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 74 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 75 | // Source and destination pointer types are always "i8*" for intrinsic. See |
| 76 | // if the size is something we can handle with a single primitive load/store. |
| 77 | // A single load+store correctly handles overlapping memory in the memmove |
| 78 | // case. |
Michael Liao | 69e172a | 2012-08-15 03:49:59 +0000 | [diff] [blame] | 79 | uint64_t Size = MemOpLength->getLimitedValue(); |
Alp Toker | cb40291 | 2014-01-24 17:20:08 +0000 | [diff] [blame] | 80 | assert(Size && "0-sized memory transferring should be removed already."); |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 81 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 82 | if (Size > 8 || (Size&(Size-1))) |
| 83 | return 0; // If not 1/2/4/8 bytes, exit. |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 84 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 85 | // Use an integer load+store unless we can find something better. |
Mon P Wang | c576ee9 | 2010-04-04 03:10:48 +0000 | [diff] [blame] | 86 | unsigned SrcAddrSp = |
Gabor Greif | 0a136c9 | 2010-06-24 13:54:33 +0000 | [diff] [blame] | 87 | cast<PointerType>(MI->getArgOperand(1)->getType())->getAddressSpace(); |
Gabor Greif | f375520 | 2010-04-16 15:33:14 +0000 | [diff] [blame] | 88 | unsigned DstAddrSp = |
Gabor Greif | 0a136c9 | 2010-06-24 13:54:33 +0000 | [diff] [blame] | 89 | cast<PointerType>(MI->getArgOperand(0)->getType())->getAddressSpace(); |
Mon P Wang | c576ee9 | 2010-04-04 03:10:48 +0000 | [diff] [blame] | 90 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 91 | IntegerType* IntType = IntegerType::get(MI->getContext(), Size<<3); |
Mon P Wang | c576ee9 | 2010-04-04 03:10:48 +0000 | [diff] [blame] | 92 | Type *NewSrcPtrTy = PointerType::get(IntType, SrcAddrSp); |
| 93 | Type *NewDstPtrTy = PointerType::get(IntType, DstAddrSp); |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 94 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 95 | // Memcpy forces the use of i8* for the source and destination. That means |
| 96 | // that if you're using memcpy to move one double around, you'll get a cast |
| 97 | // from double* to i8*. We'd much rather use a double load+store rather than |
| 98 | // an i64 load+store, here because this improves the odds that the source or |
| 99 | // dest address will be promotable. See if we can find a better type than the |
| 100 | // integer datatype. |
Gabor Greif | 589a0b9 | 2010-06-24 12:58:35 +0000 | [diff] [blame] | 101 | Value *StrippedDest = MI->getArgOperand(0)->stripPointerCasts(); |
Dan Gohman | 3f553c2 | 2012-09-13 21:51:01 +0000 | [diff] [blame] | 102 | MDNode *CopyMD = 0; |
Gabor Greif | 589a0b9 | 2010-06-24 12:58:35 +0000 | [diff] [blame] | 103 | if (StrippedDest != MI->getArgOperand(0)) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 104 | Type *SrcETy = cast<PointerType>(StrippedDest->getType()) |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 105 | ->getElementType(); |
| 106 | if (TD && SrcETy->isSized() && TD->getTypeStoreSize(SrcETy) == Size) { |
| 107 | // The SrcETy might be something like {{{double}}} or [1 x double]. Rip |
| 108 | // down through these levels if so. |
Dan Gohman | d0080c4 | 2012-09-13 18:19:06 +0000 | [diff] [blame] | 109 | SrcETy = reduceToSingleValueType(SrcETy); |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 110 | |
Mon P Wang | c576ee9 | 2010-04-04 03:10:48 +0000 | [diff] [blame] | 111 | if (SrcETy->isSingleValueType()) { |
| 112 | NewSrcPtrTy = PointerType::get(SrcETy, SrcAddrSp); |
| 113 | NewDstPtrTy = PointerType::get(SrcETy, DstAddrSp); |
Dan Gohman | 3f553c2 | 2012-09-13 21:51:01 +0000 | [diff] [blame] | 114 | |
| 115 | // If the memcpy has metadata describing the members, see if we can |
| 116 | // get the TBAA tag describing our copy. |
| 117 | if (MDNode *M = MI->getMetadata(LLVMContext::MD_tbaa_struct)) { |
| 118 | if (M->getNumOperands() == 3 && |
Nick Lewycky | 49ac81a | 2012-10-11 02:05:23 +0000 | [diff] [blame] | 119 | M->getOperand(0) && |
Dan Gohman | 3f553c2 | 2012-09-13 21:51:01 +0000 | [diff] [blame] | 120 | isa<ConstantInt>(M->getOperand(0)) && |
| 121 | cast<ConstantInt>(M->getOperand(0))->isNullValue() && |
Nick Lewycky | 49ac81a | 2012-10-11 02:05:23 +0000 | [diff] [blame] | 122 | M->getOperand(1) && |
Dan Gohman | 3f553c2 | 2012-09-13 21:51:01 +0000 | [diff] [blame] | 123 | isa<ConstantInt>(M->getOperand(1)) && |
| 124 | cast<ConstantInt>(M->getOperand(1))->getValue() == Size && |
Nick Lewycky | 49ac81a | 2012-10-11 02:05:23 +0000 | [diff] [blame] | 125 | M->getOperand(2) && |
Dan Gohman | 3f553c2 | 2012-09-13 21:51:01 +0000 | [diff] [blame] | 126 | isa<MDNode>(M->getOperand(2))) |
| 127 | CopyMD = cast<MDNode>(M->getOperand(2)); |
| 128 | } |
Mon P Wang | c576ee9 | 2010-04-04 03:10:48 +0000 | [diff] [blame] | 129 | } |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 130 | } |
| 131 | } |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 132 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 133 | // If the memcpy/memmove provides better alignment info than we can |
| 134 | // infer, use it. |
| 135 | SrcAlign = std::max(SrcAlign, CopyAlign); |
| 136 | DstAlign = std::max(DstAlign, CopyAlign); |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 137 | |
Gabor Greif | 5f3e656 | 2010-06-25 07:57:14 +0000 | [diff] [blame] | 138 | Value *Src = Builder->CreateBitCast(MI->getArgOperand(1), NewSrcPtrTy); |
| 139 | Value *Dest = Builder->CreateBitCast(MI->getArgOperand(0), NewDstPtrTy); |
Eli Friedman | 4934601 | 2011-05-18 19:57:14 +0000 | [diff] [blame] | 140 | LoadInst *L = Builder->CreateLoad(Src, MI->isVolatile()); |
| 141 | L->setAlignment(SrcAlign); |
Dan Gohman | 3f553c2 | 2012-09-13 21:51:01 +0000 | [diff] [blame] | 142 | if (CopyMD) |
| 143 | L->setMetadata(LLVMContext::MD_tbaa, CopyMD); |
Eli Friedman | 4934601 | 2011-05-18 19:57:14 +0000 | [diff] [blame] | 144 | StoreInst *S = Builder->CreateStore(L, Dest, MI->isVolatile()); |
| 145 | S->setAlignment(DstAlign); |
Dan Gohman | 3f553c2 | 2012-09-13 21:51:01 +0000 | [diff] [blame] | 146 | if (CopyMD) |
| 147 | S->setMetadata(LLVMContext::MD_tbaa, CopyMD); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 148 | |
| 149 | // Set the size of the copy to 0, it will be deleted on the next iteration. |
Gabor Greif | 5b1370e | 2010-06-28 16:50:57 +0000 | [diff] [blame] | 150 | MI->setArgOperand(2, Constant::getNullValue(MemOpLength->getType())); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 151 | return MI; |
| 152 | } |
| 153 | |
| 154 | Instruction *InstCombiner::SimplifyMemSet(MemSetInst *MI) { |
Chris Lattner | d729d0d | 2010-12-25 20:52:04 +0000 | [diff] [blame] | 155 | unsigned Alignment = getKnownAlignment(MI->getDest(), TD); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 156 | if (MI->getAlignment() < Alignment) { |
| 157 | MI->setAlignment(ConstantInt::get(MI->getAlignmentType(), |
| 158 | Alignment, false)); |
| 159 | return MI; |
| 160 | } |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 161 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 162 | // Extract the length and alignment and fill if they are constant. |
| 163 | ConstantInt *LenC = dyn_cast<ConstantInt>(MI->getLength()); |
| 164 | ConstantInt *FillC = dyn_cast<ConstantInt>(MI->getValue()); |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 165 | if (!LenC || !FillC || !FillC->getType()->isIntegerTy(8)) |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 166 | return 0; |
Michael Liao | 69e172a | 2012-08-15 03:49:59 +0000 | [diff] [blame] | 167 | uint64_t Len = LenC->getLimitedValue(); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 168 | Alignment = MI->getAlignment(); |
Michael Liao | 69e172a | 2012-08-15 03:49:59 +0000 | [diff] [blame] | 169 | assert(Len && "0-sized memory setting should be removed already."); |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 170 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 171 | // memset(s,c,n) -> store s, c (for n=1,2,4,8) |
| 172 | if (Len <= 8 && isPowerOf2_32((uint32_t)Len)) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 173 | Type *ITy = IntegerType::get(MI->getContext(), Len*8); // n=1 -> i8. |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 174 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 175 | Value *Dest = MI->getDest(); |
Mon P Wang | 1991c47 | 2010-12-20 01:05:30 +0000 | [diff] [blame] | 176 | unsigned DstAddrSp = cast<PointerType>(Dest->getType())->getAddressSpace(); |
| 177 | Type *NewDstPtrTy = PointerType::get(ITy, DstAddrSp); |
| 178 | Dest = Builder->CreateBitCast(Dest, NewDstPtrTy); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 179 | |
| 180 | // Alignment 0 is identity for alignment 1 for memset, but not store. |
| 181 | if (Alignment == 0) Alignment = 1; |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 182 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 183 | // Extract the fill value and store. |
| 184 | uint64_t Fill = FillC->getZExtValue()*0x0101010101010101ULL; |
Eli Friedman | 4934601 | 2011-05-18 19:57:14 +0000 | [diff] [blame] | 185 | StoreInst *S = Builder->CreateStore(ConstantInt::get(ITy, Fill), Dest, |
| 186 | MI->isVolatile()); |
| 187 | S->setAlignment(Alignment); |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 188 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 189 | // Set the size of the copy to 0, it will be deleted on the next iteration. |
| 190 | MI->setLength(Constant::getNullValue(LenC->getType())); |
| 191 | return MI; |
| 192 | } |
| 193 | |
| 194 | return 0; |
| 195 | } |
| 196 | |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 197 | /// visitCallInst - CallInst simplification. This mostly only handles folding |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 198 | /// of intrinsic instructions. For normal calls, it allows visitCallSite to do |
| 199 | /// the heavy lifting. |
| 200 | /// |
| 201 | Instruction *InstCombiner::visitCallInst(CallInst &CI) { |
Benjamin Kramer | 8bcc971 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 202 | if (isFreeCall(&CI, TLI)) |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 203 | return visitFree(CI); |
| 204 | |
| 205 | // If the caller function is nounwind, mark the call as nounwind, even if the |
| 206 | // callee isn't. |
| 207 | if (CI.getParent()->getParent()->doesNotThrow() && |
| 208 | !CI.doesNotThrow()) { |
| 209 | CI.setDoesNotThrow(); |
| 210 | return &CI; |
| 211 | } |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 212 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 213 | IntrinsicInst *II = dyn_cast<IntrinsicInst>(&CI); |
| 214 | if (!II) return visitCallSite(&CI); |
Gabor Greif | 589a0b9 | 2010-06-24 12:58:35 +0000 | [diff] [blame] | 215 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 216 | // Intrinsics cannot occur in an invoke, so handle them here instead of in |
| 217 | // visitCallSite. |
| 218 | if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(II)) { |
| 219 | bool Changed = false; |
| 220 | |
| 221 | // memmove/cpy/set of zero bytes is a noop. |
| 222 | if (Constant *NumBytes = dyn_cast<Constant>(MI->getLength())) { |
Chris Lattner | c663a67 | 2010-10-01 05:51:02 +0000 | [diff] [blame] | 223 | if (NumBytes->isNullValue()) |
| 224 | return EraseInstFromFunction(CI); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 225 | |
| 226 | if (ConstantInt *CI = dyn_cast<ConstantInt>(NumBytes)) |
| 227 | if (CI->getZExtValue() == 1) { |
| 228 | // Replace the instruction with just byte operations. We would |
| 229 | // transform other cases to loads/stores, but we don't know if |
| 230 | // alignment is sufficient. |
| 231 | } |
| 232 | } |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 233 | |
Chris Lattner | c663a67 | 2010-10-01 05:51:02 +0000 | [diff] [blame] | 234 | // No other transformations apply to volatile transfers. |
| 235 | if (MI->isVolatile()) |
| 236 | return 0; |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 237 | |
| 238 | // If we have a memmove and the source operation is a constant global, |
| 239 | // then the source and dest pointers can't alias, so we can change this |
| 240 | // into a call to memcpy. |
| 241 | if (MemMoveInst *MMI = dyn_cast<MemMoveInst>(MI)) { |
| 242 | if (GlobalVariable *GVSrc = dyn_cast<GlobalVariable>(MMI->getSource())) |
| 243 | if (GVSrc->isConstant()) { |
Eric Christopher | 7258dcd | 2010-04-16 23:37:20 +0000 | [diff] [blame] | 244 | Module *M = CI.getParent()->getParent()->getParent(); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 245 | Intrinsic::ID MemCpyID = Intrinsic::memcpy; |
Jay Foad | b804a2b | 2011-07-12 14:06:48 +0000 | [diff] [blame] | 246 | Type *Tys[3] = { CI.getArgOperand(0)->getType(), |
| 247 | CI.getArgOperand(1)->getType(), |
| 248 | CI.getArgOperand(2)->getType() }; |
Benjamin Kramer | e6e1933 | 2011-07-14 17:45:39 +0000 | [diff] [blame] | 249 | CI.setCalledFunction(Intrinsic::getDeclaration(M, MemCpyID, Tys)); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 250 | Changed = true; |
| 251 | } |
| 252 | } |
| 253 | |
| 254 | if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(MI)) { |
| 255 | // memmove(x,x,size) -> noop. |
| 256 | if (MTI->getSource() == MTI->getDest()) |
| 257 | return EraseInstFromFunction(CI); |
Eric Christopher | 7258dcd | 2010-04-16 23:37:20 +0000 | [diff] [blame] | 258 | } |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 259 | |
Eric Christopher | 7258dcd | 2010-04-16 23:37:20 +0000 | [diff] [blame] | 260 | // If we can determine a pointer alignment that is bigger than currently |
| 261 | // set, update the alignment. |
| 262 | if (isa<MemTransferInst>(MI)) { |
| 263 | if (Instruction *I = SimplifyMemTransfer(MI)) |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 264 | return I; |
| 265 | } else if (MemSetInst *MSI = dyn_cast<MemSetInst>(MI)) { |
| 266 | if (Instruction *I = SimplifyMemSet(MSI)) |
| 267 | return I; |
| 268 | } |
Gabor Greif | 590d95e | 2010-06-24 13:42:49 +0000 | [diff] [blame] | 269 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 270 | if (Changed) return II; |
| 271 | } |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 272 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 273 | switch (II->getIntrinsicID()) { |
| 274 | default: break; |
Eric Christopher | 7b7028f | 2010-02-09 21:24:27 +0000 | [diff] [blame] | 275 | case Intrinsic::objectsize: { |
Nuno Lopes | 55fff83 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 276 | uint64_t Size; |
Benjamin Kramer | 8bcc971 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 277 | if (getObjectSize(II->getArgOperand(0), Size, TD, TLI)) |
Nuno Lopes | 55fff83 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 278 | return ReplaceInstUsesWith(CI, ConstantInt::get(CI.getType(), Size)); |
| 279 | return 0; |
Eric Christopher | 7b7028f | 2010-02-09 21:24:27 +0000 | [diff] [blame] | 280 | } |
Michael Ilseman | 536cc32 | 2012-12-13 03:13:36 +0000 | [diff] [blame] | 281 | case Intrinsic::bswap: { |
| 282 | Value *IIOperand = II->getArgOperand(0); |
| 283 | Value *X = 0; |
| 284 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 285 | // bswap(bswap(x)) -> x |
Michael Ilseman | 536cc32 | 2012-12-13 03:13:36 +0000 | [diff] [blame] | 286 | if (match(IIOperand, m_BSwap(m_Value(X)))) |
| 287 | return ReplaceInstUsesWith(CI, X); |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 288 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 289 | // bswap(trunc(bswap(x))) -> trunc(lshr(x, c)) |
Michael Ilseman | 536cc32 | 2012-12-13 03:13:36 +0000 | [diff] [blame] | 290 | if (match(IIOperand, m_Trunc(m_BSwap(m_Value(X))))) { |
| 291 | unsigned C = X->getType()->getPrimitiveSizeInBits() - |
| 292 | IIOperand->getType()->getPrimitiveSizeInBits(); |
| 293 | Value *CV = ConstantInt::get(X->getType(), C); |
| 294 | Value *V = Builder->CreateLShr(X, CV); |
| 295 | return new TruncInst(V, IIOperand->getType()); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 296 | } |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 297 | break; |
Michael Ilseman | 536cc32 | 2012-12-13 03:13:36 +0000 | [diff] [blame] | 298 | } |
| 299 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 300 | case Intrinsic::powi: |
Gabor Greif | 589a0b9 | 2010-06-24 12:58:35 +0000 | [diff] [blame] | 301 | if (ConstantInt *Power = dyn_cast<ConstantInt>(II->getArgOperand(1))) { |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 302 | // powi(x, 0) -> 1.0 |
| 303 | if (Power->isZero()) |
| 304 | return ReplaceInstUsesWith(CI, ConstantFP::get(CI.getType(), 1.0)); |
| 305 | // powi(x, 1) -> x |
| 306 | if (Power->isOne()) |
Gabor Greif | 589a0b9 | 2010-06-24 12:58:35 +0000 | [diff] [blame] | 307 | return ReplaceInstUsesWith(CI, II->getArgOperand(0)); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 308 | // powi(x, -1) -> 1/x |
| 309 | if (Power->isAllOnesValue()) |
| 310 | return BinaryOperator::CreateFDiv(ConstantFP::get(CI.getType(), 1.0), |
Gabor Greif | 589a0b9 | 2010-06-24 12:58:35 +0000 | [diff] [blame] | 311 | II->getArgOperand(0)); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 312 | } |
| 313 | break; |
| 314 | case Intrinsic::cttz: { |
| 315 | // If all bits below the first known one are known zero, |
| 316 | // this value is constant. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 317 | IntegerType *IT = dyn_cast<IntegerType>(II->getArgOperand(0)->getType()); |
Owen Anderson | 2f37bdc | 2011-07-01 21:52:38 +0000 | [diff] [blame] | 318 | // FIXME: Try to simplify vectors of integers. |
| 319 | if (!IT) break; |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 320 | uint32_t BitWidth = IT->getBitWidth(); |
| 321 | APInt KnownZero(BitWidth, 0); |
| 322 | APInt KnownOne(BitWidth, 0); |
Rafael Espindola | ba0a6ca | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 323 | ComputeMaskedBits(II->getArgOperand(0), KnownZero, KnownOne); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 324 | unsigned TrailingZeros = KnownOne.countTrailingZeros(); |
| 325 | APInt Mask(APInt::getLowBitsSet(BitWidth, TrailingZeros)); |
| 326 | if ((Mask & KnownZero) == Mask) |
| 327 | return ReplaceInstUsesWith(CI, ConstantInt::get(IT, |
| 328 | APInt(BitWidth, TrailingZeros))); |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 329 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 330 | } |
| 331 | break; |
| 332 | case Intrinsic::ctlz: { |
| 333 | // If all bits above the first known one are known zero, |
| 334 | // this value is constant. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 335 | IntegerType *IT = dyn_cast<IntegerType>(II->getArgOperand(0)->getType()); |
Owen Anderson | 2f37bdc | 2011-07-01 21:52:38 +0000 | [diff] [blame] | 336 | // FIXME: Try to simplify vectors of integers. |
| 337 | if (!IT) break; |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 338 | uint32_t BitWidth = IT->getBitWidth(); |
| 339 | APInt KnownZero(BitWidth, 0); |
| 340 | APInt KnownOne(BitWidth, 0); |
Rafael Espindola | ba0a6ca | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 341 | ComputeMaskedBits(II->getArgOperand(0), KnownZero, KnownOne); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 342 | unsigned LeadingZeros = KnownOne.countLeadingZeros(); |
| 343 | APInt Mask(APInt::getHighBitsSet(BitWidth, LeadingZeros)); |
| 344 | if ((Mask & KnownZero) == Mask) |
| 345 | return ReplaceInstUsesWith(CI, ConstantInt::get(IT, |
| 346 | APInt(BitWidth, LeadingZeros))); |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 347 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 348 | } |
| 349 | break; |
| 350 | case Intrinsic::uadd_with_overflow: { |
Gabor Greif | 589a0b9 | 2010-06-24 12:58:35 +0000 | [diff] [blame] | 351 | Value *LHS = II->getArgOperand(0), *RHS = II->getArgOperand(1); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 352 | IntegerType *IT = cast<IntegerType>(II->getArgOperand(0)->getType()); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 353 | uint32_t BitWidth = IT->getBitWidth(); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 354 | APInt LHSKnownZero(BitWidth, 0); |
| 355 | APInt LHSKnownOne(BitWidth, 0); |
Rafael Espindola | ba0a6ca | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 356 | ComputeMaskedBits(LHS, LHSKnownZero, LHSKnownOne); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 357 | bool LHSKnownNegative = LHSKnownOne[BitWidth - 1]; |
| 358 | bool LHSKnownPositive = LHSKnownZero[BitWidth - 1]; |
| 359 | |
| 360 | if (LHSKnownNegative || LHSKnownPositive) { |
| 361 | APInt RHSKnownZero(BitWidth, 0); |
| 362 | APInt RHSKnownOne(BitWidth, 0); |
Rafael Espindola | ba0a6ca | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 363 | ComputeMaskedBits(RHS, RHSKnownZero, RHSKnownOne); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 364 | bool RHSKnownNegative = RHSKnownOne[BitWidth - 1]; |
| 365 | bool RHSKnownPositive = RHSKnownZero[BitWidth - 1]; |
| 366 | if (LHSKnownNegative && RHSKnownNegative) { |
| 367 | // The sign bit is set in both cases: this MUST overflow. |
| 368 | // Create a simple add instruction, and insert it into the struct. |
Eli Friedman | 4934601 | 2011-05-18 19:57:14 +0000 | [diff] [blame] | 369 | Value *Add = Builder->CreateAdd(LHS, RHS); |
| 370 | Add->takeName(&CI); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 371 | Constant *V[] = { |
Eli Friedman | 4934601 | 2011-05-18 19:57:14 +0000 | [diff] [blame] | 372 | UndefValue::get(LHS->getType()), |
| 373 | ConstantInt::getTrue(II->getContext()) |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 374 | }; |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 375 | StructType *ST = cast<StructType>(II->getType()); |
Chris Lattner | cc19efa | 2011-06-20 04:01:31 +0000 | [diff] [blame] | 376 | Constant *Struct = ConstantStruct::get(ST, V); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 377 | return InsertValueInst::Create(Struct, Add, 0); |
| 378 | } |
Eli Friedman | 4934601 | 2011-05-18 19:57:14 +0000 | [diff] [blame] | 379 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 380 | if (LHSKnownPositive && RHSKnownPositive) { |
| 381 | // The sign bit is clear in both cases: this CANNOT overflow. |
| 382 | // Create a simple add instruction, and insert it into the struct. |
Eli Friedman | 4934601 | 2011-05-18 19:57:14 +0000 | [diff] [blame] | 383 | Value *Add = Builder->CreateNUWAdd(LHS, RHS); |
| 384 | Add->takeName(&CI); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 385 | Constant *V[] = { |
| 386 | UndefValue::get(LHS->getType()), |
| 387 | ConstantInt::getFalse(II->getContext()) |
| 388 | }; |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 389 | StructType *ST = cast<StructType>(II->getType()); |
Chris Lattner | cc19efa | 2011-06-20 04:01:31 +0000 | [diff] [blame] | 390 | Constant *Struct = ConstantStruct::get(ST, V); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 391 | return InsertValueInst::Create(Struct, Add, 0); |
| 392 | } |
| 393 | } |
| 394 | } |
| 395 | // FALL THROUGH uadd into sadd |
| 396 | case Intrinsic::sadd_with_overflow: |
| 397 | // Canonicalize constants into the RHS. |
Gabor Greif | 5b1370e | 2010-06-28 16:50:57 +0000 | [diff] [blame] | 398 | if (isa<Constant>(II->getArgOperand(0)) && |
| 399 | !isa<Constant>(II->getArgOperand(1))) { |
| 400 | Value *LHS = II->getArgOperand(0); |
| 401 | II->setArgOperand(0, II->getArgOperand(1)); |
| 402 | II->setArgOperand(1, LHS); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 403 | return II; |
| 404 | } |
| 405 | |
| 406 | // X + undef -> undef |
Gabor Greif | 5f3e656 | 2010-06-25 07:57:14 +0000 | [diff] [blame] | 407 | if (isa<UndefValue>(II->getArgOperand(1))) |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 408 | return ReplaceInstUsesWith(CI, UndefValue::get(II->getType())); |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 409 | |
Gabor Greif | 5f3e656 | 2010-06-25 07:57:14 +0000 | [diff] [blame] | 410 | if (ConstantInt *RHS = dyn_cast<ConstantInt>(II->getArgOperand(1))) { |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 411 | // X + 0 -> {X, false} |
| 412 | if (RHS->isZero()) { |
| 413 | Constant *V[] = { |
Eli Friedman | f99e7e6 | 2010-08-09 20:49:43 +0000 | [diff] [blame] | 414 | UndefValue::get(II->getArgOperand(0)->getType()), |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 415 | ConstantInt::getFalse(II->getContext()) |
| 416 | }; |
Chris Lattner | cc19efa | 2011-06-20 04:01:31 +0000 | [diff] [blame] | 417 | Constant *Struct = |
| 418 | ConstantStruct::get(cast<StructType>(II->getType()), V); |
Gabor Greif | 589a0b9 | 2010-06-24 12:58:35 +0000 | [diff] [blame] | 419 | return InsertValueInst::Create(Struct, II->getArgOperand(0), 0); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 420 | } |
| 421 | } |
| 422 | break; |
| 423 | case Intrinsic::usub_with_overflow: |
| 424 | case Intrinsic::ssub_with_overflow: |
| 425 | // undef - X -> undef |
| 426 | // X - undef -> undef |
Gabor Greif | 5f3e656 | 2010-06-25 07:57:14 +0000 | [diff] [blame] | 427 | if (isa<UndefValue>(II->getArgOperand(0)) || |
| 428 | isa<UndefValue>(II->getArgOperand(1))) |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 429 | return ReplaceInstUsesWith(CI, UndefValue::get(II->getType())); |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 430 | |
Gabor Greif | 5f3e656 | 2010-06-25 07:57:14 +0000 | [diff] [blame] | 431 | if (ConstantInt *RHS = dyn_cast<ConstantInt>(II->getArgOperand(1))) { |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 432 | // X - 0 -> {X, false} |
| 433 | if (RHS->isZero()) { |
| 434 | Constant *V[] = { |
Gabor Greif | 5f3e656 | 2010-06-25 07:57:14 +0000 | [diff] [blame] | 435 | UndefValue::get(II->getArgOperand(0)->getType()), |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 436 | ConstantInt::getFalse(II->getContext()) |
| 437 | }; |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 438 | Constant *Struct = |
Chris Lattner | cc19efa | 2011-06-20 04:01:31 +0000 | [diff] [blame] | 439 | ConstantStruct::get(cast<StructType>(II->getType()), V); |
Gabor Greif | 5f3e656 | 2010-06-25 07:57:14 +0000 | [diff] [blame] | 440 | return InsertValueInst::Create(Struct, II->getArgOperand(0), 0); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 441 | } |
| 442 | } |
| 443 | break; |
Benjamin Kramer | b49b964 | 2011-03-10 18:40:14 +0000 | [diff] [blame] | 444 | case Intrinsic::umul_with_overflow: { |
| 445 | Value *LHS = II->getArgOperand(0), *RHS = II->getArgOperand(1); |
| 446 | unsigned BitWidth = cast<IntegerType>(LHS->getType())->getBitWidth(); |
Benjamin Kramer | b49b964 | 2011-03-10 18:40:14 +0000 | [diff] [blame] | 447 | |
| 448 | APInt LHSKnownZero(BitWidth, 0); |
| 449 | APInt LHSKnownOne(BitWidth, 0); |
Rafael Espindola | ba0a6ca | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 450 | ComputeMaskedBits(LHS, LHSKnownZero, LHSKnownOne); |
Benjamin Kramer | b49b964 | 2011-03-10 18:40:14 +0000 | [diff] [blame] | 451 | APInt RHSKnownZero(BitWidth, 0); |
| 452 | APInt RHSKnownOne(BitWidth, 0); |
Rafael Espindola | ba0a6ca | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 453 | ComputeMaskedBits(RHS, RHSKnownZero, RHSKnownOne); |
Benjamin Kramer | b49b964 | 2011-03-10 18:40:14 +0000 | [diff] [blame] | 454 | |
Benjamin Kramer | 1f90da1 | 2011-03-27 15:04:38 +0000 | [diff] [blame] | 455 | // Get the largest possible values for each operand. |
| 456 | APInt LHSMax = ~LHSKnownZero; |
| 457 | APInt RHSMax = ~RHSKnownZero; |
Benjamin Kramer | b49b964 | 2011-03-10 18:40:14 +0000 | [diff] [blame] | 458 | |
| 459 | // If multiplying the maximum values does not overflow then we can turn |
| 460 | // this into a plain NUW mul. |
Benjamin Kramer | 1f90da1 | 2011-03-27 15:04:38 +0000 | [diff] [blame] | 461 | bool Overflow; |
| 462 | LHSMax.umul_ov(RHSMax, Overflow); |
| 463 | if (!Overflow) { |
Benjamin Kramer | b49b964 | 2011-03-10 18:40:14 +0000 | [diff] [blame] | 464 | Value *Mul = Builder->CreateNUWMul(LHS, RHS, "umul_with_overflow"); |
| 465 | Constant *V[] = { |
| 466 | UndefValue::get(LHS->getType()), |
| 467 | Builder->getFalse() |
| 468 | }; |
Chris Lattner | cc19efa | 2011-06-20 04:01:31 +0000 | [diff] [blame] | 469 | Constant *Struct = ConstantStruct::get(cast<StructType>(II->getType()),V); |
Benjamin Kramer | b49b964 | 2011-03-10 18:40:14 +0000 | [diff] [blame] | 470 | return InsertValueInst::Create(Struct, Mul, 0); |
| 471 | } |
| 472 | } // FALL THROUGH |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 473 | case Intrinsic::smul_with_overflow: |
| 474 | // Canonicalize constants into the RHS. |
Gabor Greif | 5b1370e | 2010-06-28 16:50:57 +0000 | [diff] [blame] | 475 | if (isa<Constant>(II->getArgOperand(0)) && |
| 476 | !isa<Constant>(II->getArgOperand(1))) { |
| 477 | Value *LHS = II->getArgOperand(0); |
| 478 | II->setArgOperand(0, II->getArgOperand(1)); |
| 479 | II->setArgOperand(1, LHS); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 480 | return II; |
| 481 | } |
| 482 | |
| 483 | // X * undef -> undef |
Gabor Greif | 5f3e656 | 2010-06-25 07:57:14 +0000 | [diff] [blame] | 484 | if (isa<UndefValue>(II->getArgOperand(1))) |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 485 | return ReplaceInstUsesWith(CI, UndefValue::get(II->getType())); |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 486 | |
Gabor Greif | 5f3e656 | 2010-06-25 07:57:14 +0000 | [diff] [blame] | 487 | if (ConstantInt *RHSI = dyn_cast<ConstantInt>(II->getArgOperand(1))) { |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 488 | // X*0 -> {0, false} |
| 489 | if (RHSI->isZero()) |
| 490 | return ReplaceInstUsesWith(CI, Constant::getNullValue(II->getType())); |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 491 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 492 | // X * 1 -> {X, false} |
| 493 | if (RHSI->equalsInt(1)) { |
| 494 | Constant *V[] = { |
Gabor Greif | 589a0b9 | 2010-06-24 12:58:35 +0000 | [diff] [blame] | 495 | UndefValue::get(II->getArgOperand(0)->getType()), |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 496 | ConstantInt::getFalse(II->getContext()) |
| 497 | }; |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 498 | Constant *Struct = |
Chris Lattner | cc19efa | 2011-06-20 04:01:31 +0000 | [diff] [blame] | 499 | ConstantStruct::get(cast<StructType>(II->getType()), V); |
Gabor Greif | 589a0b9 | 2010-06-24 12:58:35 +0000 | [diff] [blame] | 500 | return InsertValueInst::Create(Struct, II->getArgOperand(0), 0); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 501 | } |
| 502 | } |
| 503 | break; |
| 504 | case Intrinsic::ppc_altivec_lvx: |
| 505 | case Intrinsic::ppc_altivec_lvxl: |
Bill Wendling | b902f1d | 2011-04-13 00:36:11 +0000 | [diff] [blame] | 506 | // Turn PPC lvx -> load if the pointer is known aligned. |
Chris Lattner | 6fcd32e | 2010-12-25 20:37:57 +0000 | [diff] [blame] | 507 | if (getOrEnforceKnownAlignment(II->getArgOperand(0), 16, TD) >= 16) { |
Gabor Greif | 589a0b9 | 2010-06-24 12:58:35 +0000 | [diff] [blame] | 508 | Value *Ptr = Builder->CreateBitCast(II->getArgOperand(0), |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 509 | PointerType::getUnqual(II->getType())); |
| 510 | return new LoadInst(Ptr); |
| 511 | } |
| 512 | break; |
| 513 | case Intrinsic::ppc_altivec_stvx: |
| 514 | case Intrinsic::ppc_altivec_stvxl: |
| 515 | // Turn stvx -> store if the pointer is known aligned. |
Chris Lattner | 6fcd32e | 2010-12-25 20:37:57 +0000 | [diff] [blame] | 516 | if (getOrEnforceKnownAlignment(II->getArgOperand(1), 16, TD) >= 16) { |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 517 | Type *OpPtrTy = |
Gabor Greif | a6d75e2 | 2010-06-24 15:51:11 +0000 | [diff] [blame] | 518 | PointerType::getUnqual(II->getArgOperand(0)->getType()); |
| 519 | Value *Ptr = Builder->CreateBitCast(II->getArgOperand(1), OpPtrTy); |
| 520 | return new StoreInst(II->getArgOperand(0), Ptr); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 521 | } |
| 522 | break; |
| 523 | case Intrinsic::x86_sse_storeu_ps: |
| 524 | case Intrinsic::x86_sse2_storeu_pd: |
| 525 | case Intrinsic::x86_sse2_storeu_dq: |
| 526 | // Turn X86 storeu -> store if the pointer is known aligned. |
Chris Lattner | 6fcd32e | 2010-12-25 20:37:57 +0000 | [diff] [blame] | 527 | if (getOrEnforceKnownAlignment(II->getArgOperand(0), 16, TD) >= 16) { |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 528 | Type *OpPtrTy = |
Gabor Greif | a6d75e2 | 2010-06-24 15:51:11 +0000 | [diff] [blame] | 529 | PointerType::getUnqual(II->getArgOperand(1)->getType()); |
| 530 | Value *Ptr = Builder->CreateBitCast(II->getArgOperand(0), OpPtrTy); |
| 531 | return new StoreInst(II->getArgOperand(1), Ptr); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 532 | } |
| 533 | break; |
Chandler Carruth | cf414cf | 2011-01-10 07:19:37 +0000 | [diff] [blame] | 534 | |
| 535 | case Intrinsic::x86_sse_cvtss2si: |
| 536 | case Intrinsic::x86_sse_cvtss2si64: |
| 537 | case Intrinsic::x86_sse_cvttss2si: |
| 538 | case Intrinsic::x86_sse_cvttss2si64: |
| 539 | case Intrinsic::x86_sse2_cvtsd2si: |
| 540 | case Intrinsic::x86_sse2_cvtsd2si64: |
| 541 | case Intrinsic::x86_sse2_cvttsd2si: |
| 542 | case Intrinsic::x86_sse2_cvttsd2si64: { |
| 543 | // These intrinsics only demand the 0th element of their input vectors. If |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 544 | // we can simplify the input based on that, do so now. |
| 545 | unsigned VWidth = |
Gabor Greif | 5f3e656 | 2010-06-25 07:57:14 +0000 | [diff] [blame] | 546 | cast<VectorType>(II->getArgOperand(0)->getType())->getNumElements(); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 547 | APInt DemandedElts(VWidth, 1); |
| 548 | APInt UndefElts(VWidth, 0); |
Gabor Greif | 3e44ea1 | 2010-07-22 10:37:47 +0000 | [diff] [blame] | 549 | if (Value *V = SimplifyDemandedVectorElts(II->getArgOperand(0), |
| 550 | DemandedElts, UndefElts)) { |
Gabor Greif | 5b1370e | 2010-06-28 16:50:57 +0000 | [diff] [blame] | 551 | II->setArgOperand(0, V); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 552 | return II; |
| 553 | } |
| 554 | break; |
| 555 | } |
Chandler Carruth | cf414cf | 2011-01-10 07:19:37 +0000 | [diff] [blame] | 556 | |
Stuart Hastings | 5bd18b6 | 2011-05-17 22:13:31 +0000 | [diff] [blame] | 557 | |
| 558 | case Intrinsic::x86_sse41_pmovsxbw: |
| 559 | case Intrinsic::x86_sse41_pmovsxwd: |
| 560 | case Intrinsic::x86_sse41_pmovsxdq: |
| 561 | case Intrinsic::x86_sse41_pmovzxbw: |
| 562 | case Intrinsic::x86_sse41_pmovzxwd: |
| 563 | case Intrinsic::x86_sse41_pmovzxdq: { |
Evan Cheng | dc867ae | 2011-05-19 18:18:39 +0000 | [diff] [blame] | 564 | // pmov{s|z}x ignores the upper half of their input vectors. |
Stuart Hastings | 5bd18b6 | 2011-05-17 22:13:31 +0000 | [diff] [blame] | 565 | unsigned VWidth = |
| 566 | cast<VectorType>(II->getArgOperand(0)->getType())->getNumElements(); |
| 567 | unsigned LowHalfElts = VWidth / 2; |
Stuart Hastings | 728f626 | 2011-05-18 15:54:26 +0000 | [diff] [blame] | 568 | APInt InputDemandedElts(APInt::getBitsSet(VWidth, 0, LowHalfElts)); |
Stuart Hastings | 5bd18b6 | 2011-05-17 22:13:31 +0000 | [diff] [blame] | 569 | APInt UndefElts(VWidth, 0); |
| 570 | if (Value *TmpV = SimplifyDemandedVectorElts(II->getArgOperand(0), |
| 571 | InputDemandedElts, |
| 572 | UndefElts)) { |
| 573 | II->setArgOperand(0, TmpV); |
| 574 | return II; |
| 575 | } |
| 576 | break; |
| 577 | } |
| 578 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 579 | case Intrinsic::ppc_altivec_vperm: |
| 580 | // Turn vperm(V1,V2,mask) -> shuffle(V1,V2,mask) if mask is a constant. |
Chris Lattner | 0256be9 | 2012-01-27 03:08:05 +0000 | [diff] [blame] | 581 | if (Constant *Mask = dyn_cast<Constant>(II->getArgOperand(2))) { |
| 582 | assert(Mask->getType()->getVectorNumElements() == 16 && |
| 583 | "Bad type for intrinsic!"); |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 584 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 585 | // Check that all of the elements are integer constants or undefs. |
| 586 | bool AllEltsOk = true; |
| 587 | for (unsigned i = 0; i != 16; ++i) { |
Chris Lattner | 0256be9 | 2012-01-27 03:08:05 +0000 | [diff] [blame] | 588 | Constant *Elt = Mask->getAggregateElement(i); |
| 589 | if (Elt == 0 || |
| 590 | !(isa<ConstantInt>(Elt) || isa<UndefValue>(Elt))) { |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 591 | AllEltsOk = false; |
| 592 | break; |
| 593 | } |
| 594 | } |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 595 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 596 | if (AllEltsOk) { |
| 597 | // Cast the input vectors to byte vectors. |
Gabor Greif | 3e44ea1 | 2010-07-22 10:37:47 +0000 | [diff] [blame] | 598 | Value *Op0 = Builder->CreateBitCast(II->getArgOperand(0), |
| 599 | Mask->getType()); |
| 600 | Value *Op1 = Builder->CreateBitCast(II->getArgOperand(1), |
| 601 | Mask->getType()); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 602 | Value *Result = UndefValue::get(Op0->getType()); |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 603 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 604 | // Only extract each element once. |
| 605 | Value *ExtractedElts[32]; |
| 606 | memset(ExtractedElts, 0, sizeof(ExtractedElts)); |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 607 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 608 | for (unsigned i = 0; i != 16; ++i) { |
Chris Lattner | 0256be9 | 2012-01-27 03:08:05 +0000 | [diff] [blame] | 609 | if (isa<UndefValue>(Mask->getAggregateElement(i))) |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 610 | continue; |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 611 | unsigned Idx = |
Chris Lattner | 0256be9 | 2012-01-27 03:08:05 +0000 | [diff] [blame] | 612 | cast<ConstantInt>(Mask->getAggregateElement(i))->getZExtValue(); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 613 | Idx &= 31; // Match the hardware behavior. |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 614 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 615 | if (ExtractedElts[Idx] == 0) { |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 616 | ExtractedElts[Idx] = |
Benjamin Kramer | 547b6c5 | 2011-09-27 20:39:19 +0000 | [diff] [blame] | 617 | Builder->CreateExtractElement(Idx < 16 ? Op0 : Op1, |
| 618 | Builder->getInt32(Idx&15)); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 619 | } |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 620 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 621 | // Insert this value into the result vector. |
| 622 | Result = Builder->CreateInsertElement(Result, ExtractedElts[Idx], |
Benjamin Kramer | 547b6c5 | 2011-09-27 20:39:19 +0000 | [diff] [blame] | 623 | Builder->getInt32(i)); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 624 | } |
| 625 | return CastInst::Create(Instruction::BitCast, Result, CI.getType()); |
| 626 | } |
| 627 | } |
| 628 | break; |
| 629 | |
Bob Wilson | a4e231c | 2010-10-22 21:41:48 +0000 | [diff] [blame] | 630 | case Intrinsic::arm_neon_vld1: |
| 631 | case Intrinsic::arm_neon_vld2: |
| 632 | case Intrinsic::arm_neon_vld3: |
| 633 | case Intrinsic::arm_neon_vld4: |
| 634 | case Intrinsic::arm_neon_vld2lane: |
| 635 | case Intrinsic::arm_neon_vld3lane: |
| 636 | case Intrinsic::arm_neon_vld4lane: |
| 637 | case Intrinsic::arm_neon_vst1: |
| 638 | case Intrinsic::arm_neon_vst2: |
| 639 | case Intrinsic::arm_neon_vst3: |
| 640 | case Intrinsic::arm_neon_vst4: |
| 641 | case Intrinsic::arm_neon_vst2lane: |
| 642 | case Intrinsic::arm_neon_vst3lane: |
| 643 | case Intrinsic::arm_neon_vst4lane: { |
Chris Lattner | d729d0d | 2010-12-25 20:52:04 +0000 | [diff] [blame] | 644 | unsigned MemAlign = getKnownAlignment(II->getArgOperand(0), TD); |
Bob Wilson | a4e231c | 2010-10-22 21:41:48 +0000 | [diff] [blame] | 645 | unsigned AlignArg = II->getNumArgOperands() - 1; |
| 646 | ConstantInt *IntrAlign = dyn_cast<ConstantInt>(II->getArgOperand(AlignArg)); |
| 647 | if (IntrAlign && IntrAlign->getZExtValue() < MemAlign) { |
| 648 | II->setArgOperand(AlignArg, |
| 649 | ConstantInt::get(Type::getInt32Ty(II->getContext()), |
| 650 | MemAlign, false)); |
| 651 | return II; |
| 652 | } |
| 653 | break; |
| 654 | } |
| 655 | |
Lang Hames | 3a90fab | 2012-05-01 00:20:38 +0000 | [diff] [blame] | 656 | case Intrinsic::arm_neon_vmulls: |
| 657 | case Intrinsic::arm_neon_vmullu: { |
| 658 | Value *Arg0 = II->getArgOperand(0); |
| 659 | Value *Arg1 = II->getArgOperand(1); |
| 660 | |
| 661 | // Handle mul by zero first: |
| 662 | if (isa<ConstantAggregateZero>(Arg0) || isa<ConstantAggregateZero>(Arg1)) { |
| 663 | return ReplaceInstUsesWith(CI, ConstantAggregateZero::get(II->getType())); |
| 664 | } |
| 665 | |
| 666 | // Check for constant LHS & RHS - in this case we just simplify. |
| 667 | bool Zext = (II->getIntrinsicID() == Intrinsic::arm_neon_vmullu); |
| 668 | VectorType *NewVT = cast<VectorType>(II->getType()); |
Benjamin Kramer | 9204095 | 2014-02-13 18:23:24 +0000 | [diff] [blame] | 669 | if (Constant *CV0 = dyn_cast<Constant>(Arg0)) { |
| 670 | if (Constant *CV1 = dyn_cast<Constant>(Arg1)) { |
| 671 | CV0 = ConstantExpr::getIntegerCast(CV0, NewVT, /*isSigned=*/!Zext); |
| 672 | CV1 = ConstantExpr::getIntegerCast(CV1, NewVT, /*isSigned=*/!Zext); |
| 673 | |
| 674 | return ReplaceInstUsesWith(CI, ConstantExpr::getMul(CV0, CV1)); |
Lang Hames | 3a90fab | 2012-05-01 00:20:38 +0000 | [diff] [blame] | 675 | } |
| 676 | |
Alp Toker | cb40291 | 2014-01-24 17:20:08 +0000 | [diff] [blame] | 677 | // Couldn't simplify - canonicalize constant to the RHS. |
Lang Hames | 3a90fab | 2012-05-01 00:20:38 +0000 | [diff] [blame] | 678 | std::swap(Arg0, Arg1); |
| 679 | } |
| 680 | |
| 681 | // Handle mul by one: |
Benjamin Kramer | 9204095 | 2014-02-13 18:23:24 +0000 | [diff] [blame] | 682 | if (Constant *CV1 = dyn_cast<Constant>(Arg1)) |
Lang Hames | 3a90fab | 2012-05-01 00:20:38 +0000 | [diff] [blame] | 683 | if (ConstantInt *Splat = |
Benjamin Kramer | 9204095 | 2014-02-13 18:23:24 +0000 | [diff] [blame] | 684 | dyn_cast_or_null<ConstantInt>(CV1->getSplatValue())) |
| 685 | if (Splat->isOne()) |
| 686 | return CastInst::CreateIntegerCast(Arg0, II->getType(), |
| 687 | /*isSigned=*/!Zext); |
Lang Hames | 3a90fab | 2012-05-01 00:20:38 +0000 | [diff] [blame] | 688 | |
| 689 | break; |
| 690 | } |
| 691 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 692 | case Intrinsic::stackrestore: { |
| 693 | // If the save is right next to the restore, remove the restore. This can |
| 694 | // happen when variable allocas are DCE'd. |
Gabor Greif | 589a0b9 | 2010-06-24 12:58:35 +0000 | [diff] [blame] | 695 | if (IntrinsicInst *SS = dyn_cast<IntrinsicInst>(II->getArgOperand(0))) { |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 696 | if (SS->getIntrinsicID() == Intrinsic::stacksave) { |
| 697 | BasicBlock::iterator BI = SS; |
| 698 | if (&*++BI == II) |
| 699 | return EraseInstFromFunction(CI); |
| 700 | } |
| 701 | } |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 702 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 703 | // Scan down this block to see if there is another stack restore in the |
| 704 | // same block without an intervening call/alloca. |
| 705 | BasicBlock::iterator BI = II; |
| 706 | TerminatorInst *TI = II->getParent()->getTerminator(); |
| 707 | bool CannotRemove = false; |
| 708 | for (++BI; &*BI != TI; ++BI) { |
Nuno Lopes | 55fff83 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 709 | if (isa<AllocaInst>(BI)) { |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 710 | CannotRemove = true; |
| 711 | break; |
| 712 | } |
| 713 | if (CallInst *BCI = dyn_cast<CallInst>(BI)) { |
| 714 | if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(BCI)) { |
| 715 | // If there is a stackrestore below this one, remove this one. |
| 716 | if (II->getIntrinsicID() == Intrinsic::stackrestore) |
| 717 | return EraseInstFromFunction(CI); |
| 718 | // Otherwise, ignore the intrinsic. |
| 719 | } else { |
| 720 | // If we found a non-intrinsic call, we can't remove the stack |
| 721 | // restore. |
| 722 | CannotRemove = true; |
| 723 | break; |
| 724 | } |
| 725 | } |
| 726 | } |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 727 | |
Bill Wendling | f891bf8 | 2011-07-31 06:30:59 +0000 | [diff] [blame] | 728 | // If the stack restore is in a return, resume, or unwind block and if there |
| 729 | // are no allocas or calls between the restore and the return, nuke the |
| 730 | // restore. |
Bill Wendling | d5d95b0 | 2012-02-06 21:16:41 +0000 | [diff] [blame] | 731 | if (!CannotRemove && (isa<ReturnInst>(TI) || isa<ResumeInst>(TI))) |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 732 | return EraseInstFromFunction(CI); |
| 733 | break; |
| 734 | } |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 735 | } |
| 736 | |
| 737 | return visitCallSite(II); |
| 738 | } |
| 739 | |
| 740 | // InvokeInst simplification |
| 741 | // |
| 742 | Instruction *InstCombiner::visitInvokeInst(InvokeInst &II) { |
| 743 | return visitCallSite(&II); |
| 744 | } |
| 745 | |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 746 | /// isSafeToEliminateVarargsCast - If this cast does not affect the value |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 747 | /// passed through the varargs area, we can eliminate the use of the cast. |
| 748 | static bool isSafeToEliminateVarargsCast(const CallSite CS, |
| 749 | const CastInst * const CI, |
Micah Villmow | cdfe20b | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 750 | const DataLayout * const TD, |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 751 | const int ix) { |
| 752 | if (!CI->isLosslessCast()) |
| 753 | return false; |
| 754 | |
Reid Kleckner | 26af2ca | 2014-01-28 02:38:36 +0000 | [diff] [blame] | 755 | // The size of ByVal or InAlloca arguments is derived from the type, so we |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 756 | // can't change to a type with a different size. If the size were |
| 757 | // passed explicitly we could avoid this check. |
Reid Kleckner | 26af2ca | 2014-01-28 02:38:36 +0000 | [diff] [blame] | 758 | if (!CS.isByValOrInAllocaArgument(ix)) |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 759 | return true; |
| 760 | |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 761 | Type* SrcTy = |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 762 | cast<PointerType>(CI->getOperand(0)->getType())->getElementType(); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 763 | Type* DstTy = cast<PointerType>(CI->getType())->getElementType(); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 764 | if (!SrcTy->isSized() || !DstTy->isSized()) |
| 765 | return false; |
| 766 | if (!TD || TD->getTypeAllocSize(SrcTy) != TD->getTypeAllocSize(DstTy)) |
| 767 | return false; |
| 768 | return true; |
| 769 | } |
| 770 | |
Eric Christopher | a7fb58f | 2010-03-06 10:50:38 +0000 | [diff] [blame] | 771 | // Try to fold some different type of calls here. |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 772 | // Currently we're only working with the checking functions, memcpy_chk, |
Eric Christopher | a7fb58f | 2010-03-06 10:50:38 +0000 | [diff] [blame] | 773 | // mempcpy_chk, memmove_chk, memset_chk, strcpy_chk, stpcpy_chk, strncpy_chk, |
| 774 | // strcat_chk and strncat_chk. |
Micah Villmow | cdfe20b | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 775 | Instruction *InstCombiner::tryOptimizeCall(CallInst *CI, const DataLayout *TD) { |
Eric Christopher | a7fb58f | 2010-03-06 10:50:38 +0000 | [diff] [blame] | 776 | if (CI->getCalledFunction() == 0) return 0; |
Eric Christopher | a7fb58f | 2010-03-06 10:50:38 +0000 | [diff] [blame] | 777 | |
Meador Inge | e3f2b26 | 2012-11-30 04:05:06 +0000 | [diff] [blame] | 778 | if (Value *With = Simplifier->optimizeCall(CI)) { |
| 779 | ++NumSimplified; |
Meador Inge | f1bc9e7 | 2012-11-27 18:52:49 +0000 | [diff] [blame] | 780 | return CI->use_empty() ? CI : ReplaceInstUsesWith(*CI, With); |
Meador Inge | e3f2b26 | 2012-11-30 04:05:06 +0000 | [diff] [blame] | 781 | } |
Meador Inge | df796f8 | 2012-10-13 16:45:24 +0000 | [diff] [blame] | 782 | |
| 783 | return 0; |
Eric Christopher | a7fb58f | 2010-03-06 10:50:38 +0000 | [diff] [blame] | 784 | } |
| 785 | |
Duncan Sands | a098436 | 2011-09-06 13:37:06 +0000 | [diff] [blame] | 786 | static IntrinsicInst *FindInitTrampolineFromAlloca(Value *TrampMem) { |
| 787 | // Strip off at most one level of pointer casts, looking for an alloca. This |
| 788 | // is good enough in practice and simpler than handling any number of casts. |
| 789 | Value *Underlying = TrampMem->stripPointerCasts(); |
| 790 | if (Underlying != TrampMem && |
| 791 | (!Underlying->hasOneUse() || *Underlying->use_begin() != TrampMem)) |
| 792 | return 0; |
| 793 | if (!isa<AllocaInst>(Underlying)) |
| 794 | return 0; |
| 795 | |
| 796 | IntrinsicInst *InitTrampoline = 0; |
| 797 | for (Value::use_iterator I = TrampMem->use_begin(), E = TrampMem->use_end(); |
| 798 | I != E; I++) { |
| 799 | IntrinsicInst *II = dyn_cast<IntrinsicInst>(*I); |
| 800 | if (!II) |
| 801 | return 0; |
| 802 | if (II->getIntrinsicID() == Intrinsic::init_trampoline) { |
| 803 | if (InitTrampoline) |
| 804 | // More than one init_trampoline writes to this value. Give up. |
| 805 | return 0; |
| 806 | InitTrampoline = II; |
| 807 | continue; |
| 808 | } |
| 809 | if (II->getIntrinsicID() == Intrinsic::adjust_trampoline) |
| 810 | // Allow any number of calls to adjust.trampoline. |
| 811 | continue; |
| 812 | return 0; |
| 813 | } |
| 814 | |
| 815 | // No call to init.trampoline found. |
| 816 | if (!InitTrampoline) |
| 817 | return 0; |
| 818 | |
| 819 | // Check that the alloca is being used in the expected way. |
| 820 | if (InitTrampoline->getOperand(0) != TrampMem) |
| 821 | return 0; |
| 822 | |
| 823 | return InitTrampoline; |
| 824 | } |
| 825 | |
| 826 | static IntrinsicInst *FindInitTrampolineFromBB(IntrinsicInst *AdjustTramp, |
| 827 | Value *TrampMem) { |
| 828 | // Visit all the previous instructions in the basic block, and try to find a |
| 829 | // init.trampoline which has a direct path to the adjust.trampoline. |
| 830 | for (BasicBlock::iterator I = AdjustTramp, |
| 831 | E = AdjustTramp->getParent()->begin(); I != E; ) { |
| 832 | Instruction *Inst = --I; |
| 833 | if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) |
| 834 | if (II->getIntrinsicID() == Intrinsic::init_trampoline && |
| 835 | II->getOperand(0) == TrampMem) |
| 836 | return II; |
| 837 | if (Inst->mayWriteToMemory()) |
| 838 | return 0; |
| 839 | } |
| 840 | return 0; |
| 841 | } |
| 842 | |
| 843 | // Given a call to llvm.adjust.trampoline, find and return the corresponding |
| 844 | // call to llvm.init.trampoline if the call to the trampoline can be optimized |
| 845 | // to a direct call to a function. Otherwise return NULL. |
| 846 | // |
| 847 | static IntrinsicInst *FindInitTrampoline(Value *Callee) { |
| 848 | Callee = Callee->stripPointerCasts(); |
| 849 | IntrinsicInst *AdjustTramp = dyn_cast<IntrinsicInst>(Callee); |
| 850 | if (!AdjustTramp || |
| 851 | AdjustTramp->getIntrinsicID() != Intrinsic::adjust_trampoline) |
| 852 | return 0; |
| 853 | |
| 854 | Value *TrampMem = AdjustTramp->getOperand(0); |
| 855 | |
| 856 | if (IntrinsicInst *IT = FindInitTrampolineFromAlloca(TrampMem)) |
| 857 | return IT; |
| 858 | if (IntrinsicInst *IT = FindInitTrampolineFromBB(AdjustTramp, TrampMem)) |
| 859 | return IT; |
| 860 | return 0; |
| 861 | } |
| 862 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 863 | // visitCallSite - Improvements for call and invoke instructions. |
| 864 | // |
| 865 | Instruction *InstCombiner::visitCallSite(CallSite CS) { |
Benjamin Kramer | 8bcc971 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 866 | if (isAllocLikeFn(CS.getInstruction(), TLI)) |
Nuno Lopes | 95cc4f3 | 2012-07-09 18:38:20 +0000 | [diff] [blame] | 867 | return visitAllocSite(*CS.getInstruction()); |
Nuno Lopes | dc6085e | 2012-06-21 21:25:05 +0000 | [diff] [blame] | 868 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 869 | bool Changed = false; |
| 870 | |
Chris Lattner | 7398965 | 2010-12-20 08:25:06 +0000 | [diff] [blame] | 871 | // If the callee is a pointer to a function, attempt to move any casts to the |
| 872 | // arguments of the call/invoke. |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 873 | Value *Callee = CS.getCalledValue(); |
Chris Lattner | 7398965 | 2010-12-20 08:25:06 +0000 | [diff] [blame] | 874 | if (!isa<Function>(Callee) && transformConstExprCastCall(CS)) |
| 875 | return 0; |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 876 | |
| 877 | if (Function *CalleeF = dyn_cast<Function>(Callee)) |
Chris Lattner | 846a52e | 2010-02-01 18:11:34 +0000 | [diff] [blame] | 878 | // If the call and callee calling conventions don't match, this call must |
| 879 | // be unreachable, as the call is undefined. |
| 880 | if (CalleeF->getCallingConv() != CS.getCallingConv() && |
| 881 | // Only do this for calls to a function with a body. A prototype may |
| 882 | // not actually end up matching the implementation's calling conv for a |
| 883 | // variety of reasons (e.g. it may be written in assembly). |
| 884 | !CalleeF->isDeclaration()) { |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 885 | Instruction *OldCall = CS.getInstruction(); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 886 | new StoreInst(ConstantInt::getTrue(Callee->getContext()), |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 887 | UndefValue::get(Type::getInt1PtrTy(Callee->getContext())), |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 888 | OldCall); |
Chad Rosier | e28ae30 | 2012-12-13 00:18:46 +0000 | [diff] [blame] | 889 | // If OldCall does not return void then replaceAllUsesWith undef. |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 890 | // This allows ValueHandlers and custom metadata to adjust itself. |
| 891 | if (!OldCall->getType()->isVoidTy()) |
Eli Friedman | b9ed18f | 2011-05-18 00:32:01 +0000 | [diff] [blame] | 892 | ReplaceInstUsesWith(*OldCall, UndefValue::get(OldCall->getType())); |
Chris Lattner | 2cecedf | 2010-02-01 18:04:58 +0000 | [diff] [blame] | 893 | if (isa<CallInst>(OldCall)) |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 894 | return EraseInstFromFunction(*OldCall); |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 895 | |
Chris Lattner | 2cecedf | 2010-02-01 18:04:58 +0000 | [diff] [blame] | 896 | // We cannot remove an invoke, because it would change the CFG, just |
| 897 | // change the callee to a null pointer. |
Gabor Greif | febf6ab | 2010-03-20 21:00:25 +0000 | [diff] [blame] | 898 | cast<InvokeInst>(OldCall)->setCalledFunction( |
Chris Lattner | 2cecedf | 2010-02-01 18:04:58 +0000 | [diff] [blame] | 899 | Constant::getNullValue(CalleeF->getType())); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 900 | return 0; |
| 901 | } |
| 902 | |
| 903 | if (isa<ConstantPointerNull>(Callee) || isa<UndefValue>(Callee)) { |
Gabor Greif | 589a0b9 | 2010-06-24 12:58:35 +0000 | [diff] [blame] | 904 | // If CS does not return void then replaceAllUsesWith undef. |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 905 | // This allows ValueHandlers and custom metadata to adjust itself. |
| 906 | if (!CS.getInstruction()->getType()->isVoidTy()) |
Eli Friedman | b9ed18f | 2011-05-18 00:32:01 +0000 | [diff] [blame] | 907 | ReplaceInstUsesWith(*CS.getInstruction(), |
| 908 | UndefValue::get(CS.getInstruction()->getType())); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 909 | |
Nuno Lopes | 771e7bd | 2012-06-21 23:52:14 +0000 | [diff] [blame] | 910 | if (isa<InvokeInst>(CS.getInstruction())) { |
| 911 | // Can't remove an invoke because we cannot change the CFG. |
| 912 | return 0; |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 913 | } |
Nuno Lopes | 771e7bd | 2012-06-21 23:52:14 +0000 | [diff] [blame] | 914 | |
| 915 | // This instruction is not reachable, just remove it. We insert a store to |
| 916 | // undef so that we know that this code is not reachable, despite the fact |
| 917 | // that we can't modify the CFG here. |
| 918 | new StoreInst(ConstantInt::getTrue(Callee->getContext()), |
| 919 | UndefValue::get(Type::getInt1PtrTy(Callee->getContext())), |
| 920 | CS.getInstruction()); |
| 921 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 922 | return EraseInstFromFunction(*CS.getInstruction()); |
| 923 | } |
| 924 | |
Duncan Sands | a098436 | 2011-09-06 13:37:06 +0000 | [diff] [blame] | 925 | if (IntrinsicInst *II = FindInitTrampoline(Callee)) |
| 926 | return transformCallThroughTrampoline(CS, II); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 927 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 928 | PointerType *PTy = cast<PointerType>(Callee->getType()); |
| 929 | FunctionType *FTy = cast<FunctionType>(PTy->getElementType()); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 930 | if (FTy->isVarArg()) { |
Eli Friedman | 7534b468 | 2011-11-29 01:18:23 +0000 | [diff] [blame] | 931 | int ix = FTy->getNumParams(); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 932 | // See if we can optimize any arguments passed through the varargs area of |
| 933 | // the call. |
Matt Arsenault | 5d2e85f | 2013-06-28 00:25:40 +0000 | [diff] [blame] | 934 | for (CallSite::arg_iterator I = CS.arg_begin() + FTy->getNumParams(), |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 935 | E = CS.arg_end(); I != E; ++I, ++ix) { |
| 936 | CastInst *CI = dyn_cast<CastInst>(*I); |
| 937 | if (CI && isSafeToEliminateVarargsCast(CS, CI, TD, ix)) { |
| 938 | *I = CI->getOperand(0); |
| 939 | Changed = true; |
| 940 | } |
| 941 | } |
| 942 | } |
| 943 | |
| 944 | if (isa<InlineAsm>(Callee) && !CS.doesNotThrow()) { |
| 945 | // Inline asm calls cannot throw - mark them 'nounwind'. |
| 946 | CS.setDoesNotThrow(); |
| 947 | Changed = true; |
| 948 | } |
| 949 | |
Micah Villmow | cdfe20b | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 950 | // Try to optimize the call if possible, we require DataLayout for most of |
Eric Christopher | a7fb58f | 2010-03-06 10:50:38 +0000 | [diff] [blame] | 951 | // this. None of these calls are seen as possibly dead so go ahead and |
| 952 | // delete the instruction now. |
| 953 | if (CallInst *CI = dyn_cast<CallInst>(CS.getInstruction())) { |
| 954 | Instruction *I = tryOptimizeCall(CI, TD); |
Eric Christopher | 1810d77 | 2010-03-06 10:59:25 +0000 | [diff] [blame] | 955 | // If we changed something return the result, etc. Otherwise let |
| 956 | // the fallthrough check. |
| 957 | if (I) return EraseInstFromFunction(*I); |
Eric Christopher | a7fb58f | 2010-03-06 10:50:38 +0000 | [diff] [blame] | 958 | } |
| 959 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 960 | return Changed ? CS.getInstruction() : 0; |
| 961 | } |
| 962 | |
| 963 | // transformConstExprCastCall - If the callee is a constexpr cast of a function, |
| 964 | // attempt to move the cast to the arguments of the call/invoke. |
| 965 | // |
| 966 | bool InstCombiner::transformConstExprCastCall(CallSite CS) { |
Chris Lattner | 7398965 | 2010-12-20 08:25:06 +0000 | [diff] [blame] | 967 | Function *Callee = |
| 968 | dyn_cast<Function>(CS.getCalledValue()->stripPointerCasts()); |
| 969 | if (Callee == 0) |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 970 | return false; |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 971 | Instruction *Caller = CS.getInstruction(); |
Bill Wendling | e94d843 | 2012-12-07 23:16:57 +0000 | [diff] [blame] | 972 | const AttributeSet &CallerPAL = CS.getAttributes(); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 973 | |
| 974 | // Okay, this is a cast from a function to a different type. Unless doing so |
| 975 | // would cause a type conversion of one of our arguments, change this call to |
| 976 | // be a direct call with arguments casted to the appropriate types. |
| 977 | // |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 978 | FunctionType *FT = Callee->getFunctionType(); |
| 979 | Type *OldRetTy = Caller->getType(); |
| 980 | Type *NewRetTy = FT->getReturnType(); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 981 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 982 | // Check to see if we are changing the return type... |
| 983 | if (OldRetTy != NewRetTy) { |
Nick Lewycky | a6a17d7 | 2014-01-18 22:47:12 +0000 | [diff] [blame] | 984 | |
| 985 | if (NewRetTy->isStructTy()) |
| 986 | return false; // TODO: Handle multiple return values. |
| 987 | |
Matt Arsenault | e6952f2 | 2013-09-17 21:10:14 +0000 | [diff] [blame] | 988 | if (!CastInst::isBitCastable(NewRetTy, OldRetTy)) { |
| 989 | if (Callee->isDeclaration()) |
| 990 | return false; // Cannot transform this return value. |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 991 | |
Matt Arsenault | e6952f2 | 2013-09-17 21:10:14 +0000 | [diff] [blame] | 992 | if (!Caller->use_empty() && |
| 993 | // void -> non-void is handled specially |
| 994 | !NewRetTy->isVoidTy()) |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 995 | return false; // Cannot transform this return value. |
Matt Arsenault | e6952f2 | 2013-09-17 21:10:14 +0000 | [diff] [blame] | 996 | } |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 997 | |
| 998 | if (!CallerPAL.isEmpty() && !Caller->use_empty()) { |
Bill Wendling | 658d24d | 2013-01-18 21:53:16 +0000 | [diff] [blame] | 999 | AttrBuilder RAttrs(CallerPAL, AttributeSet::ReturnIndex); |
Bill Wendling | d219675 | 2013-01-30 23:07:40 +0000 | [diff] [blame] | 1000 | if (RAttrs. |
| 1001 | hasAttributes(AttributeFuncs:: |
| 1002 | typeIncompatible(NewRetTy, AttributeSet::ReturnIndex), |
| 1003 | AttributeSet::ReturnIndex)) |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1004 | return false; // Attribute not compatible with transformed value. |
| 1005 | } |
| 1006 | |
| 1007 | // If the callsite is an invoke instruction, and the return value is used by |
| 1008 | // a PHI node in a successor, we cannot change the return type of the call |
| 1009 | // because there is no place to put the cast instruction (without breaking |
| 1010 | // the critical edge). Bail out in this case. |
| 1011 | if (!Caller->use_empty()) |
| 1012 | if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) |
| 1013 | for (Value::use_iterator UI = II->use_begin(), E = II->use_end(); |
| 1014 | UI != E; ++UI) |
| 1015 | if (PHINode *PN = dyn_cast<PHINode>(*UI)) |
| 1016 | if (PN->getParent() == II->getNormalDest() || |
| 1017 | PN->getParent() == II->getUnwindDest()) |
| 1018 | return false; |
| 1019 | } |
| 1020 | |
Matt Arsenault | 5d2e85f | 2013-06-28 00:25:40 +0000 | [diff] [blame] | 1021 | unsigned NumActualArgs = CS.arg_size(); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1022 | unsigned NumCommonArgs = std::min(FT->getNumParams(), NumActualArgs); |
| 1023 | |
| 1024 | CallSite::arg_iterator AI = CS.arg_begin(); |
| 1025 | for (unsigned i = 0, e = NumCommonArgs; i != e; ++i, ++AI) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1026 | Type *ParamTy = FT->getParamType(i); |
| 1027 | Type *ActTy = (*AI)->getType(); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1028 | |
Matt Arsenault | e6952f2 | 2013-09-17 21:10:14 +0000 | [diff] [blame] | 1029 | if (!CastInst::isBitCastable(ActTy, ParamTy)) |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1030 | return false; // Cannot transform this parameter value. |
| 1031 | |
Bill Wendling | 49bc76c | 2013-01-23 06:14:59 +0000 | [diff] [blame] | 1032 | if (AttrBuilder(CallerPAL.getParamAttributes(i + 1), i + 1). |
Bill Wendling | d219675 | 2013-01-30 23:07:40 +0000 | [diff] [blame] | 1033 | hasAttributes(AttributeFuncs:: |
| 1034 | typeIncompatible(ParamTy, i + 1), i + 1)) |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1035 | return false; // Attribute not compatible with transformed value. |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 1036 | |
Reid Kleckner | 26af2ca | 2014-01-28 02:38:36 +0000 | [diff] [blame] | 1037 | if (CS.isInAllocaArgument(i)) |
| 1038 | return false; // Cannot transform to and from inalloca. |
| 1039 | |
Chris Lattner | 27ca8eb | 2010-12-20 08:36:38 +0000 | [diff] [blame] | 1040 | // If the parameter is passed as a byval argument, then we have to have a |
| 1041 | // sized type and the sized type has to have the same size as the old type. |
Bill Wendling | 49bc76c | 2013-01-23 06:14:59 +0000 | [diff] [blame] | 1042 | if (ParamTy != ActTy && |
| 1043 | CallerPAL.getParamAttributes(i + 1).hasAttribute(i + 1, |
| 1044 | Attribute::ByVal)) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1045 | PointerType *ParamPTy = dyn_cast<PointerType>(ParamTy); |
Chris Lattner | 27ca8eb | 2010-12-20 08:36:38 +0000 | [diff] [blame] | 1046 | if (ParamPTy == 0 || !ParamPTy->getElementType()->isSized() || TD == 0) |
| 1047 | return false; |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 1048 | |
Matt Arsenault | fa25272 | 2013-09-27 22:18:51 +0000 | [diff] [blame] | 1049 | Type *CurElTy = ActTy->getPointerElementType(); |
Chris Lattner | 27ca8eb | 2010-12-20 08:36:38 +0000 | [diff] [blame] | 1050 | if (TD->getTypeAllocSize(CurElTy) != |
| 1051 | TD->getTypeAllocSize(ParamPTy->getElementType())) |
| 1052 | return false; |
| 1053 | } |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1054 | } |
| 1055 | |
Chris Lattner | adf38b3 | 2011-02-24 05:10:56 +0000 | [diff] [blame] | 1056 | if (Callee->isDeclaration()) { |
| 1057 | // Do not delete arguments unless we have a function body. |
| 1058 | if (FT->getNumParams() < NumActualArgs && !FT->isVarArg()) |
| 1059 | return false; |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1060 | |
Chris Lattner | adf38b3 | 2011-02-24 05:10:56 +0000 | [diff] [blame] | 1061 | // If the callee is just a declaration, don't change the varargsness of the |
| 1062 | // call. We don't want to introduce a varargs call where one doesn't |
| 1063 | // already exist. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1064 | PointerType *APTy = cast<PointerType>(CS.getCalledValue()->getType()); |
Chris Lattner | adf38b3 | 2011-02-24 05:10:56 +0000 | [diff] [blame] | 1065 | if (FT->isVarArg()!=cast<FunctionType>(APTy->getElementType())->isVarArg()) |
| 1066 | return false; |
Jim Grosbach | e84ae7b | 2012-02-03 00:00:55 +0000 | [diff] [blame] | 1067 | |
| 1068 | // If both the callee and the cast type are varargs, we still have to make |
| 1069 | // sure the number of fixed parameters are the same or we have the same |
| 1070 | // ABI issues as if we introduce a varargs call. |
Jim Grosbach | 1df8cdc | 2012-02-03 00:26:07 +0000 | [diff] [blame] | 1071 | if (FT->isVarArg() && |
| 1072 | cast<FunctionType>(APTy->getElementType())->isVarArg() && |
| 1073 | FT->getNumParams() != |
Jim Grosbach | e84ae7b | 2012-02-03 00:00:55 +0000 | [diff] [blame] | 1074 | cast<FunctionType>(APTy->getElementType())->getNumParams()) |
| 1075 | return false; |
Chris Lattner | adf38b3 | 2011-02-24 05:10:56 +0000 | [diff] [blame] | 1076 | } |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 1077 | |
Jim Grosbach | 0ab5418 | 2012-02-03 00:00:50 +0000 | [diff] [blame] | 1078 | if (FT->getNumParams() < NumActualArgs && FT->isVarArg() && |
| 1079 | !CallerPAL.isEmpty()) |
| 1080 | // In this case we have more arguments than the new function type, but we |
| 1081 | // won't be dropping them. Check that these extra arguments have attributes |
| 1082 | // that are compatible with being a vararg call argument. |
| 1083 | for (unsigned i = CallerPAL.getNumSlots(); i; --i) { |
Bill Wendling | 57625a4 | 2013-01-25 23:09:36 +0000 | [diff] [blame] | 1084 | unsigned Index = CallerPAL.getSlotIndex(i - 1); |
| 1085 | if (Index <= FT->getNumParams()) |
Jim Grosbach | 0ab5418 | 2012-02-03 00:00:50 +0000 | [diff] [blame] | 1086 | break; |
Bill Wendling | 57625a4 | 2013-01-25 23:09:36 +0000 | [diff] [blame] | 1087 | |
Bill Wendling | d97b75d | 2012-12-19 08:57:40 +0000 | [diff] [blame] | 1088 | // Check if it has an attribute that's incompatible with varargs. |
Bill Wendling | 57625a4 | 2013-01-25 23:09:36 +0000 | [diff] [blame] | 1089 | AttributeSet PAttrs = CallerPAL.getSlotAttributes(i - 1); |
| 1090 | if (PAttrs.hasAttribute(Index, Attribute::StructRet)) |
Jim Grosbach | 0ab5418 | 2012-02-03 00:00:50 +0000 | [diff] [blame] | 1091 | return false; |
| 1092 | } |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1093 | |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 1094 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1095 | // Okay, we decided that this is a safe thing to do: go ahead and start |
Chris Lattner | adf38b3 | 2011-02-24 05:10:56 +0000 | [diff] [blame] | 1096 | // inserting cast instructions as necessary. |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1097 | std::vector<Value*> Args; |
| 1098 | Args.reserve(NumActualArgs); |
Bill Wendling | 3575c8c | 2013-01-27 02:08:22 +0000 | [diff] [blame] | 1099 | SmallVector<AttributeSet, 8> attrVec; |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1100 | attrVec.reserve(NumCommonArgs); |
| 1101 | |
| 1102 | // Get any return attributes. |
Bill Wendling | 658d24d | 2013-01-18 21:53:16 +0000 | [diff] [blame] | 1103 | AttrBuilder RAttrs(CallerPAL, AttributeSet::ReturnIndex); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1104 | |
| 1105 | // If the return value is not being used, the type may not be compatible |
| 1106 | // with the existing attributes. Wipe out any problematic attributes. |
Bill Wendling | d219675 | 2013-01-30 23:07:40 +0000 | [diff] [blame] | 1107 | RAttrs. |
| 1108 | removeAttributes(AttributeFuncs:: |
| 1109 | typeIncompatible(NewRetTy, AttributeSet::ReturnIndex), |
| 1110 | AttributeSet::ReturnIndex); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1111 | |
| 1112 | // Add the new return attributes. |
Bill Wendling | 70f3917 | 2012-10-09 00:01:21 +0000 | [diff] [blame] | 1113 | if (RAttrs.hasAttributes()) |
Bill Wendling | 3575c8c | 2013-01-27 02:08:22 +0000 | [diff] [blame] | 1114 | attrVec.push_back(AttributeSet::get(Caller->getContext(), |
| 1115 | AttributeSet::ReturnIndex, RAttrs)); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1116 | |
| 1117 | AI = CS.arg_begin(); |
| 1118 | for (unsigned i = 0; i != NumCommonArgs; ++i, ++AI) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1119 | Type *ParamTy = FT->getParamType(i); |
Matt Arsenault | cacbb23 | 2013-07-30 20:45:05 +0000 | [diff] [blame] | 1120 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1121 | if ((*AI)->getType() == ParamTy) { |
| 1122 | Args.push_back(*AI); |
| 1123 | } else { |
Matt Arsenault | cacbb23 | 2013-07-30 20:45:05 +0000 | [diff] [blame] | 1124 | Args.push_back(Builder->CreateBitCast(*AI, ParamTy)); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1125 | } |
| 1126 | |
| 1127 | // Add any parameter attributes. |
Bill Wendling | 49bc76c | 2013-01-23 06:14:59 +0000 | [diff] [blame] | 1128 | AttrBuilder PAttrs(CallerPAL.getParamAttributes(i + 1), i + 1); |
Bill Wendling | 76d2cd2 | 2012-10-14 08:54:26 +0000 | [diff] [blame] | 1129 | if (PAttrs.hasAttributes()) |
Bill Wendling | 3575c8c | 2013-01-27 02:08:22 +0000 | [diff] [blame] | 1130 | attrVec.push_back(AttributeSet::get(Caller->getContext(), i + 1, |
| 1131 | PAttrs)); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1132 | } |
| 1133 | |
| 1134 | // If the function takes more arguments than the call was taking, add them |
| 1135 | // now. |
| 1136 | for (unsigned i = NumCommonArgs; i != FT->getNumParams(); ++i) |
| 1137 | Args.push_back(Constant::getNullValue(FT->getParamType(i))); |
| 1138 | |
| 1139 | // If we are removing arguments to the function, emit an obnoxious warning. |
| 1140 | if (FT->getNumParams() < NumActualArgs) { |
Nick Lewycky | 90053a1 | 2012-12-26 22:00:35 +0000 | [diff] [blame] | 1141 | // TODO: if (!FT->isVarArg()) this call may be unreachable. PR14722 |
| 1142 | if (FT->isVarArg()) { |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1143 | // Add all of the arguments in their promoted form to the arg list. |
| 1144 | for (unsigned i = FT->getNumParams(); i != NumActualArgs; ++i, ++AI) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1145 | Type *PTy = getPromotedType((*AI)->getType()); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1146 | if (PTy != (*AI)->getType()) { |
| 1147 | // Must promote to pass through va_arg area! |
| 1148 | Instruction::CastOps opcode = |
| 1149 | CastInst::getCastOpcode(*AI, false, PTy, false); |
Benjamin Kramer | 547b6c5 | 2011-09-27 20:39:19 +0000 | [diff] [blame] | 1150 | Args.push_back(Builder->CreateCast(opcode, *AI, PTy)); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1151 | } else { |
| 1152 | Args.push_back(*AI); |
| 1153 | } |
| 1154 | |
| 1155 | // Add any parameter attributes. |
Bill Wendling | 49bc76c | 2013-01-23 06:14:59 +0000 | [diff] [blame] | 1156 | AttrBuilder PAttrs(CallerPAL.getParamAttributes(i + 1), i + 1); |
Bill Wendling | 76d2cd2 | 2012-10-14 08:54:26 +0000 | [diff] [blame] | 1157 | if (PAttrs.hasAttributes()) |
Bill Wendling | 3575c8c | 2013-01-27 02:08:22 +0000 | [diff] [blame] | 1158 | attrVec.push_back(AttributeSet::get(FT->getContext(), i + 1, |
| 1159 | PAttrs)); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1160 | } |
| 1161 | } |
| 1162 | } |
| 1163 | |
Bill Wendling | bd4ea16 | 2013-01-21 21:57:28 +0000 | [diff] [blame] | 1164 | AttributeSet FnAttrs = CallerPAL.getFnAttributes(); |
Bill Wendling | 7754389 | 2013-01-18 21:11:39 +0000 | [diff] [blame] | 1165 | if (CallerPAL.hasAttributes(AttributeSet::FunctionIndex)) |
Bill Wendling | 3575c8c | 2013-01-27 02:08:22 +0000 | [diff] [blame] | 1166 | attrVec.push_back(AttributeSet::get(Callee->getContext(), FnAttrs)); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1167 | |
| 1168 | if (NewRetTy->isVoidTy()) |
| 1169 | Caller->setName(""); // Void type should not have a name. |
| 1170 | |
Bill Wendling | e94d843 | 2012-12-07 23:16:57 +0000 | [diff] [blame] | 1171 | const AttributeSet &NewCallerPAL = AttributeSet::get(Callee->getContext(), |
Bill Wendling | bd4ea16 | 2013-01-21 21:57:28 +0000 | [diff] [blame] | 1172 | attrVec); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1173 | |
| 1174 | Instruction *NC; |
| 1175 | if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) { |
Eli Friedman | 96254a0 | 2011-05-18 01:28:27 +0000 | [diff] [blame] | 1176 | NC = Builder->CreateInvoke(Callee, II->getNormalDest(), |
Jay Foad | 5bd375a | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 1177 | II->getUnwindDest(), Args); |
Eli Friedman | 96254a0 | 2011-05-18 01:28:27 +0000 | [diff] [blame] | 1178 | NC->takeName(II); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1179 | cast<InvokeInst>(NC)->setCallingConv(II->getCallingConv()); |
| 1180 | cast<InvokeInst>(NC)->setAttributes(NewCallerPAL); |
| 1181 | } else { |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1182 | CallInst *CI = cast<CallInst>(Caller); |
Jay Foad | 5bd375a | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 1183 | NC = Builder->CreateCall(Callee, Args); |
Eli Friedman | 96254a0 | 2011-05-18 01:28:27 +0000 | [diff] [blame] | 1184 | NC->takeName(CI); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1185 | if (CI->isTailCall()) |
| 1186 | cast<CallInst>(NC)->setTailCall(); |
| 1187 | cast<CallInst>(NC)->setCallingConv(CI->getCallingConv()); |
| 1188 | cast<CallInst>(NC)->setAttributes(NewCallerPAL); |
| 1189 | } |
| 1190 | |
| 1191 | // Insert a cast of the return type as necessary. |
| 1192 | Value *NV = NC; |
| 1193 | if (OldRetTy != NV->getType() && !Caller->use_empty()) { |
| 1194 | if (!NV->getType()->isVoidTy()) { |
Matt Arsenault | cacbb23 | 2013-07-30 20:45:05 +0000 | [diff] [blame] | 1195 | NV = NC = CastInst::Create(CastInst::BitCast, NC, OldRetTy); |
Eli Friedman | 35211c6 | 2011-05-27 00:19:40 +0000 | [diff] [blame] | 1196 | NC->setDebugLoc(Caller->getDebugLoc()); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1197 | |
| 1198 | // If this is an invoke instruction, we should insert it after the first |
| 1199 | // non-phi, instruction in the normal successor block. |
| 1200 | if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) { |
Bill Wendling | 07efd6f | 2011-08-25 01:08:34 +0000 | [diff] [blame] | 1201 | BasicBlock::iterator I = II->getNormalDest()->getFirstInsertionPt(); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1202 | InsertNewInstBefore(NC, *I); |
| 1203 | } else { |
Chris Lattner | 7398965 | 2010-12-20 08:25:06 +0000 | [diff] [blame] | 1204 | // Otherwise, it's a call, just insert cast right after the call. |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1205 | InsertNewInstBefore(NC, *Caller); |
| 1206 | } |
| 1207 | Worklist.AddUsersToWorkList(*Caller); |
| 1208 | } else { |
| 1209 | NV = UndefValue::get(Caller->getType()); |
| 1210 | } |
| 1211 | } |
| 1212 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1213 | if (!Caller->use_empty()) |
Eli Friedman | b9ed18f | 2011-05-18 00:32:01 +0000 | [diff] [blame] | 1214 | ReplaceInstUsesWith(*Caller, NV); |
| 1215 | |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1216 | EraseInstFromFunction(*Caller); |
| 1217 | return true; |
| 1218 | } |
| 1219 | |
Duncan Sands | a098436 | 2011-09-06 13:37:06 +0000 | [diff] [blame] | 1220 | // transformCallThroughTrampoline - Turn a call to a function created by |
| 1221 | // init_trampoline / adjust_trampoline intrinsic pair into a direct call to the |
| 1222 | // underlying function. |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1223 | // |
Duncan Sands | a098436 | 2011-09-06 13:37:06 +0000 | [diff] [blame] | 1224 | Instruction * |
| 1225 | InstCombiner::transformCallThroughTrampoline(CallSite CS, |
| 1226 | IntrinsicInst *Tramp) { |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1227 | Value *Callee = CS.getCalledValue(); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1228 | PointerType *PTy = cast<PointerType>(Callee->getType()); |
| 1229 | FunctionType *FTy = cast<FunctionType>(PTy->getElementType()); |
Bill Wendling | e94d843 | 2012-12-07 23:16:57 +0000 | [diff] [blame] | 1230 | const AttributeSet &Attrs = CS.getAttributes(); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1231 | |
| 1232 | // If the call already has the 'nest' attribute somewhere then give up - |
| 1233 | // otherwise 'nest' would occur twice after splicing in the chain. |
Bill Wendling | 6e95ae8 | 2012-12-31 00:49:59 +0000 | [diff] [blame] | 1234 | if (Attrs.hasAttrSomewhere(Attribute::Nest)) |
| 1235 | return 0; |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1236 | |
Duncan Sands | a098436 | 2011-09-06 13:37:06 +0000 | [diff] [blame] | 1237 | assert(Tramp && |
| 1238 | "transformCallThroughTrampoline called with incorrect CallSite."); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1239 | |
Gabor Greif | 3e44ea1 | 2010-07-22 10:37:47 +0000 | [diff] [blame] | 1240 | Function *NestF =cast<Function>(Tramp->getArgOperand(1)->stripPointerCasts()); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1241 | PointerType *NestFPTy = cast<PointerType>(NestF->getType()); |
| 1242 | FunctionType *NestFTy = cast<FunctionType>(NestFPTy->getElementType()); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1243 | |
Bill Wendling | e94d843 | 2012-12-07 23:16:57 +0000 | [diff] [blame] | 1244 | const AttributeSet &NestAttrs = NestF->getAttributes(); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1245 | if (!NestAttrs.isEmpty()) { |
| 1246 | unsigned NestIdx = 1; |
Jay Foad | b804a2b | 2011-07-12 14:06:48 +0000 | [diff] [blame] | 1247 | Type *NestTy = 0; |
Bill Wendling | 49bc76c | 2013-01-23 06:14:59 +0000 | [diff] [blame] | 1248 | AttributeSet NestAttr; |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1249 | |
| 1250 | // Look for a parameter marked with the 'nest' attribute. |
| 1251 | for (FunctionType::param_iterator I = NestFTy->param_begin(), |
| 1252 | E = NestFTy->param_end(); I != E; ++NestIdx, ++I) |
Bill Wendling | 49bc76c | 2013-01-23 06:14:59 +0000 | [diff] [blame] | 1253 | if (NestAttrs.hasAttribute(NestIdx, Attribute::Nest)) { |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1254 | // Record the parameter type and any other attributes. |
| 1255 | NestTy = *I; |
| 1256 | NestAttr = NestAttrs.getParamAttributes(NestIdx); |
| 1257 | break; |
| 1258 | } |
| 1259 | |
| 1260 | if (NestTy) { |
| 1261 | Instruction *Caller = CS.getInstruction(); |
| 1262 | std::vector<Value*> NewArgs; |
Matt Arsenault | 5d2e85f | 2013-06-28 00:25:40 +0000 | [diff] [blame] | 1263 | NewArgs.reserve(CS.arg_size() + 1); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1264 | |
Bill Wendling | 3575c8c | 2013-01-27 02:08:22 +0000 | [diff] [blame] | 1265 | SmallVector<AttributeSet, 8> NewAttrs; |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1266 | NewAttrs.reserve(Attrs.getNumSlots() + 1); |
| 1267 | |
| 1268 | // Insert the nest argument into the call argument list, which may |
| 1269 | // mean appending it. Likewise for attributes. |
| 1270 | |
| 1271 | // Add any result attributes. |
Bill Wendling | 658d24d | 2013-01-18 21:53:16 +0000 | [diff] [blame] | 1272 | if (Attrs.hasAttributes(AttributeSet::ReturnIndex)) |
Bill Wendling | 3575c8c | 2013-01-27 02:08:22 +0000 | [diff] [blame] | 1273 | NewAttrs.push_back(AttributeSet::get(Caller->getContext(), |
| 1274 | Attrs.getRetAttributes())); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1275 | |
| 1276 | { |
| 1277 | unsigned Idx = 1; |
| 1278 | CallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end(); |
| 1279 | do { |
| 1280 | if (Idx == NestIdx) { |
| 1281 | // Add the chain argument and attributes. |
Gabor Greif | 589a0b9 | 2010-06-24 12:58:35 +0000 | [diff] [blame] | 1282 | Value *NestVal = Tramp->getArgOperand(2); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1283 | if (NestVal->getType() != NestTy) |
Eli Friedman | 41e509a | 2011-05-18 23:58:37 +0000 | [diff] [blame] | 1284 | NestVal = Builder->CreateBitCast(NestVal, NestTy, "nest"); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1285 | NewArgs.push_back(NestVal); |
Bill Wendling | 3575c8c | 2013-01-27 02:08:22 +0000 | [diff] [blame] | 1286 | NewAttrs.push_back(AttributeSet::get(Caller->getContext(), |
| 1287 | NestAttr)); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1288 | } |
| 1289 | |
| 1290 | if (I == E) |
| 1291 | break; |
| 1292 | |
| 1293 | // Add the original argument and attributes. |
| 1294 | NewArgs.push_back(*I); |
Bill Wendling | 49bc76c | 2013-01-23 06:14:59 +0000 | [diff] [blame] | 1295 | AttributeSet Attr = Attrs.getParamAttributes(Idx); |
| 1296 | if (Attr.hasAttributes(Idx)) { |
Bill Wendling | 3575c8c | 2013-01-27 02:08:22 +0000 | [diff] [blame] | 1297 | AttrBuilder B(Attr, Idx); |
| 1298 | NewAttrs.push_back(AttributeSet::get(Caller->getContext(), |
| 1299 | Idx + (Idx >= NestIdx), B)); |
Bill Wendling | 49bc76c | 2013-01-23 06:14:59 +0000 | [diff] [blame] | 1300 | } |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1301 | |
| 1302 | ++Idx, ++I; |
| 1303 | } while (1); |
| 1304 | } |
| 1305 | |
| 1306 | // Add any function attributes. |
Bill Wendling | 7754389 | 2013-01-18 21:11:39 +0000 | [diff] [blame] | 1307 | if (Attrs.hasAttributes(AttributeSet::FunctionIndex)) |
Bill Wendling | 3575c8c | 2013-01-27 02:08:22 +0000 | [diff] [blame] | 1308 | NewAttrs.push_back(AttributeSet::get(FTy->getContext(), |
| 1309 | Attrs.getFnAttributes())); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1310 | |
| 1311 | // The trampoline may have been bitcast to a bogus type (FTy). |
| 1312 | // Handle this by synthesizing a new function type, equal to FTy |
| 1313 | // with the chain parameter inserted. |
| 1314 | |
Jay Foad | b804a2b | 2011-07-12 14:06:48 +0000 | [diff] [blame] | 1315 | std::vector<Type*> NewTypes; |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1316 | NewTypes.reserve(FTy->getNumParams()+1); |
| 1317 | |
| 1318 | // Insert the chain's type into the list of parameter types, which may |
| 1319 | // mean appending it. |
| 1320 | { |
| 1321 | unsigned Idx = 1; |
| 1322 | FunctionType::param_iterator I = FTy->param_begin(), |
| 1323 | E = FTy->param_end(); |
| 1324 | |
| 1325 | do { |
| 1326 | if (Idx == NestIdx) |
| 1327 | // Add the chain's type. |
| 1328 | NewTypes.push_back(NestTy); |
| 1329 | |
| 1330 | if (I == E) |
| 1331 | break; |
| 1332 | |
| 1333 | // Add the original type. |
| 1334 | NewTypes.push_back(*I); |
| 1335 | |
| 1336 | ++Idx, ++I; |
| 1337 | } while (1); |
| 1338 | } |
| 1339 | |
| 1340 | // Replace the trampoline call with a direct call. Let the generic |
| 1341 | // code sort out any function type mismatches. |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 1342 | FunctionType *NewFTy = FunctionType::get(FTy->getReturnType(), NewTypes, |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1343 | FTy->isVarArg()); |
| 1344 | Constant *NewCallee = |
| 1345 | NestF->getType() == PointerType::getUnqual(NewFTy) ? |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 1346 | NestF : ConstantExpr::getBitCast(NestF, |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1347 | PointerType::getUnqual(NewFTy)); |
Jim Grosbach | bdbd734 | 2013-04-05 21:20:12 +0000 | [diff] [blame] | 1348 | const AttributeSet &NewPAL = |
| 1349 | AttributeSet::get(FTy->getContext(), NewAttrs); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1350 | |
| 1351 | Instruction *NewCaller; |
| 1352 | if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) { |
| 1353 | NewCaller = InvokeInst::Create(NewCallee, |
| 1354 | II->getNormalDest(), II->getUnwindDest(), |
Jay Foad | 5bd375a | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 1355 | NewArgs); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1356 | cast<InvokeInst>(NewCaller)->setCallingConv(II->getCallingConv()); |
| 1357 | cast<InvokeInst>(NewCaller)->setAttributes(NewPAL); |
| 1358 | } else { |
Jay Foad | 5bd375a | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 1359 | NewCaller = CallInst::Create(NewCallee, NewArgs); |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1360 | if (cast<CallInst>(Caller)->isTailCall()) |
| 1361 | cast<CallInst>(NewCaller)->setTailCall(); |
| 1362 | cast<CallInst>(NewCaller)-> |
| 1363 | setCallingConv(cast<CallInst>(Caller)->getCallingConv()); |
| 1364 | cast<CallInst>(NewCaller)->setAttributes(NewPAL); |
| 1365 | } |
Eli Friedman | 4934601 | 2011-05-18 19:57:14 +0000 | [diff] [blame] | 1366 | |
| 1367 | return NewCaller; |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1368 | } |
| 1369 | } |
| 1370 | |
| 1371 | // Replace the trampoline call with a direct call. Since there is no 'nest' |
| 1372 | // parameter, there is no need to adjust the argument list. Let the generic |
| 1373 | // code sort out any function type mismatches. |
| 1374 | Constant *NewCallee = |
Jim Grosbach | 7815f56 | 2012-02-03 00:07:04 +0000 | [diff] [blame] | 1375 | NestF->getType() == PTy ? NestF : |
Chris Lattner | 7a9e47a | 2010-01-05 07:32:13 +0000 | [diff] [blame] | 1376 | ConstantExpr::getBitCast(NestF, PTy); |
| 1377 | CS.setCalledFunction(NewCallee); |
| 1378 | return CS.getInstruction(); |
| 1379 | } |