Chris Lattner | 17079fc | 2009-12-28 21:28:46 +0000 | [diff] [blame] | 1 | //===---- IRBuilder.cpp - Builder for LLVM Instrs -------------------------===// |
| 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 IRBuilder class, which is used as a convenient way |
| 11 | // to create LLVM instructions with a consistent and simplified interface. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 15 | #include "llvm/IR/Function.h" |
| 16 | #include "llvm/IR/GlobalVariable.h" |
| 17 | #include "llvm/IR/IRBuilder.h" |
| 18 | #include "llvm/IR/Intrinsics.h" |
| 19 | #include "llvm/IR/LLVMContext.h" |
Pat Gavlin | cc0431d | 2015-05-08 18:07:42 +0000 | [diff] [blame] | 20 | #include "llvm/IR/Statepoint.h" |
Chris Lattner | 17079fc | 2009-12-28 21:28:46 +0000 | [diff] [blame] | 21 | using namespace llvm; |
| 22 | |
| 23 | /// CreateGlobalString - Make a new global variable with an initializer that |
Dan Gohman | 97c5902 | 2010-02-10 20:04:19 +0000 | [diff] [blame] | 24 | /// has array of i8 type filled in with the nul terminated string value |
Chris Lattner | 17079fc | 2009-12-28 21:28:46 +0000 | [diff] [blame] | 25 | /// specified. If Name is specified, it is the name of the global variable |
| 26 | /// created. |
David Blaikie | aa41cd5 | 2015-04-03 21:33:42 +0000 | [diff] [blame] | 27 | GlobalVariable *IRBuilderBase::CreateGlobalString(StringRef Str, |
Tobias Grosser | cdb8914 | 2015-06-19 02:12:07 +0000 | [diff] [blame] | 28 | const Twine &Name, |
| 29 | unsigned AddressSpace) { |
Chris Lattner | cf9e8f6 | 2012-02-05 02:29:43 +0000 | [diff] [blame] | 30 | Constant *StrConstant = ConstantDataArray::getString(Context, Str); |
Chris Lattner | 17079fc | 2009-12-28 21:28:46 +0000 | [diff] [blame] | 31 | Module &M = *BB->getParent()->getParent(); |
| 32 | GlobalVariable *GV = new GlobalVariable(M, StrConstant->getType(), |
Benjamin Kramer | f1fd6e3 | 2011-12-22 14:22:14 +0000 | [diff] [blame] | 33 | true, GlobalValue::PrivateLinkage, |
Tobias Grosser | cdb8914 | 2015-06-19 02:12:07 +0000 | [diff] [blame] | 34 | StrConstant, Name, nullptr, |
| 35 | GlobalVariable::NotThreadLocal, |
| 36 | AddressSpace); |
Nick Lewycky | 561f175 | 2011-04-07 00:14:29 +0000 | [diff] [blame] | 37 | GV->setUnnamedAddr(true); |
Chris Lattner | 17079fc | 2009-12-28 21:28:46 +0000 | [diff] [blame] | 38 | return GV; |
| 39 | } |
Chris Lattner | 7ef1cac | 2009-12-28 21:45:40 +0000 | [diff] [blame] | 40 | |
Chris Lattner | b1907b2 | 2011-07-12 04:14:22 +0000 | [diff] [blame] | 41 | Type *IRBuilderBase::getCurrentFunctionReturnType() const { |
Chris Lattner | 49f9f76 | 2009-12-28 21:50:56 +0000 | [diff] [blame] | 42 | assert(BB && BB->getParent() && "No current function!"); |
| 43 | return BB->getParent()->getReturnType(); |
| 44 | } |
Chris Lattner | 143a07c | 2010-12-26 22:49:25 +0000 | [diff] [blame] | 45 | |
| 46 | Value *IRBuilderBase::getCastedInt8PtrValue(Value *Ptr) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 47 | PointerType *PT = cast<PointerType>(Ptr->getType()); |
Chris Lattner | 143a07c | 2010-12-26 22:49:25 +0000 | [diff] [blame] | 48 | if (PT->getElementType()->isIntegerTy(8)) |
| 49 | return Ptr; |
| 50 | |
| 51 | // Otherwise, we need to insert a bitcast. |
| 52 | PT = getInt8PtrTy(PT->getAddressSpace()); |
| 53 | BitCastInst *BCI = new BitCastInst(Ptr, PT, ""); |
| 54 | BB->getInstList().insert(InsertPt, BCI); |
| 55 | SetInstDebugLocation(BCI); |
| 56 | return BCI; |
| 57 | } |
| 58 | |
Jay Foad | 5bd375a | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 59 | static CallInst *createCallHelper(Value *Callee, ArrayRef<Value *> Ops, |
Philip Reames | 4750dd1 | 2014-12-30 05:55:58 +0000 | [diff] [blame] | 60 | IRBuilderBase *Builder, |
| 61 | const Twine& Name="") { |
| 62 | CallInst *CI = CallInst::Create(Callee, Ops, Name); |
Chris Lattner | 143a07c | 2010-12-26 22:49:25 +0000 | [diff] [blame] | 63 | Builder->GetInsertBlock()->getInstList().insert(Builder->GetInsertPoint(),CI); |
| 64 | Builder->SetInstDebugLocation(CI); |
| 65 | return CI; |
| 66 | } |
| 67 | |
Sanjoy Das | abe1c68 | 2015-05-06 23:53:09 +0000 | [diff] [blame] | 68 | static InvokeInst *createInvokeHelper(Value *Invokee, BasicBlock *NormalDest, |
| 69 | BasicBlock *UnwindDest, |
| 70 | ArrayRef<Value *> Ops, |
| 71 | IRBuilderBase *Builder, |
| 72 | const Twine &Name = "") { |
| 73 | InvokeInst *II = |
| 74 | InvokeInst::Create(Invokee, NormalDest, UnwindDest, Ops, Name); |
| 75 | Builder->GetInsertBlock()->getInstList().insert(Builder->GetInsertPoint(), |
| 76 | II); |
| 77 | Builder->SetInstDebugLocation(II); |
| 78 | return II; |
| 79 | } |
| 80 | |
Chris Lattner | 143a07c | 2010-12-26 22:49:25 +0000 | [diff] [blame] | 81 | CallInst *IRBuilderBase:: |
Pete Cooper | 67cf9a7 | 2015-11-19 05:56:52 +0000 | [diff] [blame] | 82 | CreateMemSet(Value *Ptr, Value *Val, Value *Size, unsigned Align, |
Hal Finkel | 9414665 | 2014-07-24 14:25:39 +0000 | [diff] [blame] | 83 | bool isVolatile, MDNode *TBAATag, MDNode *ScopeTag, |
| 84 | MDNode *NoAliasTag) { |
Chris Lattner | 143a07c | 2010-12-26 22:49:25 +0000 | [diff] [blame] | 85 | Ptr = getCastedInt8PtrValue(Ptr); |
Pete Cooper | 67cf9a7 | 2015-11-19 05:56:52 +0000 | [diff] [blame] | 86 | Value *Ops[] = { Ptr, Val, Size, getInt32(Align), getInt1(isVolatile) }; |
Jay Foad | b804a2b | 2011-07-12 14:06:48 +0000 | [diff] [blame] | 87 | Type *Tys[] = { Ptr->getType(), Size->getType() }; |
Chris Lattner | 143a07c | 2010-12-26 22:49:25 +0000 | [diff] [blame] | 88 | Module *M = BB->getParent()->getParent(); |
Benjamin Kramer | e6e1933 | 2011-07-14 17:45:39 +0000 | [diff] [blame] | 89 | Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memset, Tys); |
Chris Lattner | 143a07c | 2010-12-26 22:49:25 +0000 | [diff] [blame] | 90 | |
Jay Foad | 5bd375a | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 91 | CallInst *CI = createCallHelper(TheFn, Ops, this); |
Chris Lattner | 143a07c | 2010-12-26 22:49:25 +0000 | [diff] [blame] | 92 | |
| 93 | // Set the TBAA info if present. |
| 94 | if (TBAATag) |
| 95 | CI->setMetadata(LLVMContext::MD_tbaa, TBAATag); |
Hal Finkel | 9414665 | 2014-07-24 14:25:39 +0000 | [diff] [blame] | 96 | |
| 97 | if (ScopeTag) |
| 98 | CI->setMetadata(LLVMContext::MD_alias_scope, ScopeTag); |
| 99 | |
| 100 | if (NoAliasTag) |
| 101 | CI->setMetadata(LLVMContext::MD_noalias, NoAliasTag); |
| 102 | |
Chris Lattner | 143a07c | 2010-12-26 22:49:25 +0000 | [diff] [blame] | 103 | return CI; |
| 104 | } |
| 105 | |
| 106 | CallInst *IRBuilderBase:: |
Pete Cooper | 67cf9a7 | 2015-11-19 05:56:52 +0000 | [diff] [blame] | 107 | CreateMemCpy(Value *Dst, Value *Src, Value *Size, unsigned Align, |
Hal Finkel | 9414665 | 2014-07-24 14:25:39 +0000 | [diff] [blame] | 108 | bool isVolatile, MDNode *TBAATag, MDNode *TBAAStructTag, |
| 109 | MDNode *ScopeTag, MDNode *NoAliasTag) { |
Chris Lattner | 143a07c | 2010-12-26 22:49:25 +0000 | [diff] [blame] | 110 | Dst = getCastedInt8PtrValue(Dst); |
| 111 | Src = getCastedInt8PtrValue(Src); |
| 112 | |
Pete Cooper | 67cf9a7 | 2015-11-19 05:56:52 +0000 | [diff] [blame] | 113 | Value *Ops[] = { Dst, Src, Size, getInt32(Align), getInt1(isVolatile) }; |
Jay Foad | b804a2b | 2011-07-12 14:06:48 +0000 | [diff] [blame] | 114 | Type *Tys[] = { Dst->getType(), Src->getType(), Size->getType() }; |
Chris Lattner | 143a07c | 2010-12-26 22:49:25 +0000 | [diff] [blame] | 115 | Module *M = BB->getParent()->getParent(); |
Benjamin Kramer | e6e1933 | 2011-07-14 17:45:39 +0000 | [diff] [blame] | 116 | Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memcpy, Tys); |
Chris Lattner | 143a07c | 2010-12-26 22:49:25 +0000 | [diff] [blame] | 117 | |
Jay Foad | 5bd375a | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 118 | CallInst *CI = createCallHelper(TheFn, Ops, this); |
Chris Lattner | 143a07c | 2010-12-26 22:49:25 +0000 | [diff] [blame] | 119 | |
| 120 | // Set the TBAA info if present. |
| 121 | if (TBAATag) |
| 122 | CI->setMetadata(LLVMContext::MD_tbaa, TBAATag); |
Dan Gohman | 099727f | 2012-09-26 22:17:14 +0000 | [diff] [blame] | 123 | |
| 124 | // Set the TBAA Struct info if present. |
| 125 | if (TBAAStructTag) |
| 126 | CI->setMetadata(LLVMContext::MD_tbaa_struct, TBAAStructTag); |
Hal Finkel | 9414665 | 2014-07-24 14:25:39 +0000 | [diff] [blame] | 127 | |
| 128 | if (ScopeTag) |
| 129 | CI->setMetadata(LLVMContext::MD_alias_scope, ScopeTag); |
| 130 | |
| 131 | if (NoAliasTag) |
| 132 | CI->setMetadata(LLVMContext::MD_noalias, NoAliasTag); |
| 133 | |
Chris Lattner | 143a07c | 2010-12-26 22:49:25 +0000 | [diff] [blame] | 134 | return CI; |
| 135 | } |
| 136 | |
| 137 | CallInst *IRBuilderBase:: |
Pete Cooper | 67cf9a7 | 2015-11-19 05:56:52 +0000 | [diff] [blame] | 138 | CreateMemMove(Value *Dst, Value *Src, Value *Size, unsigned Align, |
Hal Finkel | 9414665 | 2014-07-24 14:25:39 +0000 | [diff] [blame] | 139 | bool isVolatile, MDNode *TBAATag, MDNode *ScopeTag, |
| 140 | MDNode *NoAliasTag) { |
Chris Lattner | 143a07c | 2010-12-26 22:49:25 +0000 | [diff] [blame] | 141 | Dst = getCastedInt8PtrValue(Dst); |
| 142 | Src = getCastedInt8PtrValue(Src); |
| 143 | |
Pete Cooper | 67cf9a7 | 2015-11-19 05:56:52 +0000 | [diff] [blame] | 144 | Value *Ops[] = { Dst, Src, Size, getInt32(Align), getInt1(isVolatile) }; |
Jay Foad | b804a2b | 2011-07-12 14:06:48 +0000 | [diff] [blame] | 145 | Type *Tys[] = { Dst->getType(), Src->getType(), Size->getType() }; |
Chris Lattner | 143a07c | 2010-12-26 22:49:25 +0000 | [diff] [blame] | 146 | Module *M = BB->getParent()->getParent(); |
Benjamin Kramer | e6e1933 | 2011-07-14 17:45:39 +0000 | [diff] [blame] | 147 | Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memmove, Tys); |
Chris Lattner | 143a07c | 2010-12-26 22:49:25 +0000 | [diff] [blame] | 148 | |
Jay Foad | 5bd375a | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 149 | CallInst *CI = createCallHelper(TheFn, Ops, this); |
Chris Lattner | 143a07c | 2010-12-26 22:49:25 +0000 | [diff] [blame] | 150 | |
| 151 | // Set the TBAA info if present. |
| 152 | if (TBAATag) |
| 153 | CI->setMetadata(LLVMContext::MD_tbaa, TBAATag); |
Hal Finkel | 9414665 | 2014-07-24 14:25:39 +0000 | [diff] [blame] | 154 | |
| 155 | if (ScopeTag) |
| 156 | CI->setMetadata(LLVMContext::MD_alias_scope, ScopeTag); |
| 157 | |
| 158 | if (NoAliasTag) |
| 159 | CI->setMetadata(LLVMContext::MD_noalias, NoAliasTag); |
| 160 | |
Chris Lattner | 143a07c | 2010-12-26 22:49:25 +0000 | [diff] [blame] | 161 | return CI; |
| 162 | } |
Nick Lewycky | babca9a | 2011-05-21 23:14:36 +0000 | [diff] [blame] | 163 | |
| 164 | CallInst *IRBuilderBase::CreateLifetimeStart(Value *Ptr, ConstantInt *Size) { |
| 165 | assert(isa<PointerType>(Ptr->getType()) && |
Bill Wendling | ea6397f | 2012-07-19 00:11:40 +0000 | [diff] [blame] | 166 | "lifetime.start only applies to pointers."); |
Nick Lewycky | babca9a | 2011-05-21 23:14:36 +0000 | [diff] [blame] | 167 | Ptr = getCastedInt8PtrValue(Ptr); |
| 168 | if (!Size) |
| 169 | Size = getInt64(-1); |
| 170 | else |
| 171 | assert(Size->getType() == getInt64Ty() && |
Bill Wendling | ea6397f | 2012-07-19 00:11:40 +0000 | [diff] [blame] | 172 | "lifetime.start requires the size to be an i64"); |
Nick Lewycky | babca9a | 2011-05-21 23:14:36 +0000 | [diff] [blame] | 173 | Value *Ops[] = { Size, Ptr }; |
| 174 | Module *M = BB->getParent()->getParent(); |
| 175 | Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::lifetime_start); |
Jay Foad | 5bd375a | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 176 | return createCallHelper(TheFn, Ops, this); |
Nick Lewycky | babca9a | 2011-05-21 23:14:36 +0000 | [diff] [blame] | 177 | } |
| 178 | |
| 179 | CallInst *IRBuilderBase::CreateLifetimeEnd(Value *Ptr, ConstantInt *Size) { |
| 180 | assert(isa<PointerType>(Ptr->getType()) && |
Bill Wendling | ea6397f | 2012-07-19 00:11:40 +0000 | [diff] [blame] | 181 | "lifetime.end only applies to pointers."); |
Nick Lewycky | babca9a | 2011-05-21 23:14:36 +0000 | [diff] [blame] | 182 | Ptr = getCastedInt8PtrValue(Ptr); |
| 183 | if (!Size) |
| 184 | Size = getInt64(-1); |
| 185 | else |
| 186 | assert(Size->getType() == getInt64Ty() && |
Bill Wendling | ea6397f | 2012-07-19 00:11:40 +0000 | [diff] [blame] | 187 | "lifetime.end requires the size to be an i64"); |
Nick Lewycky | babca9a | 2011-05-21 23:14:36 +0000 | [diff] [blame] | 188 | Value *Ops[] = { Size, Ptr }; |
| 189 | Module *M = BB->getParent()->getParent(); |
| 190 | Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::lifetime_end); |
Jay Foad | 5bd375a | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 191 | return createCallHelper(TheFn, Ops, this); |
Nick Lewycky | babca9a | 2011-05-21 23:14:36 +0000 | [diff] [blame] | 192 | } |
Hal Finkel | 6f814db | 2014-10-15 23:44:22 +0000 | [diff] [blame] | 193 | |
| 194 | CallInst *IRBuilderBase::CreateAssumption(Value *Cond) { |
| 195 | assert(Cond->getType() == getInt1Ty() && |
| 196 | "an assumption condition must be of type i1"); |
| 197 | |
| 198 | Value *Ops[] = { Cond }; |
| 199 | Module *M = BB->getParent()->getParent(); |
| 200 | Value *FnAssume = Intrinsic::getDeclaration(M, Intrinsic::assume); |
| 201 | return createCallHelper(FnAssume, Ops, this); |
| 202 | } |
| 203 | |
Elena Demikhovsky | 88e76ca | 2016-02-17 19:23:04 +0000 | [diff] [blame] | 204 | /// \brief Create a call to a Masked Load intrinsic. |
| 205 | /// \p Ptr - base pointer for the load |
| 206 | /// \p Align - alignment of the source location |
| 207 | /// \p Mask - vector of booleans which indicates what vector lanes should |
| 208 | /// be accessed in memory |
| 209 | /// \p PassThru - pass-through value that is used to fill the masked-off lanes |
| 210 | /// of the result |
| 211 | /// \p Name - name of the result variable |
Elena Demikhovsky | 84d1997 | 2014-12-30 14:28:14 +0000 | [diff] [blame] | 212 | CallInst *IRBuilderBase::CreateMaskedLoad(Value *Ptr, unsigned Align, |
| 213 | Value *Mask, Value *PassThru, |
| 214 | const Twine &Name) { |
Elena Demikhovsky | 84d1997 | 2014-12-30 14:28:14 +0000 | [diff] [blame] | 215 | // DataTy is the overloaded type |
| 216 | Type *DataTy = cast<PointerType>(Ptr->getType())->getElementType(); |
| 217 | assert(DataTy->isVectorTy() && "Ptr should point to a vector"); |
| 218 | if (!PassThru) |
| 219 | PassThru = UndefValue::get(DataTy); |
| 220 | Value *Ops[] = { Ptr, getInt32(Align), Mask, PassThru}; |
| 221 | return CreateMaskedIntrinsic(Intrinsic::masked_load, Ops, DataTy, Name); |
Elena Demikhovsky | f1de34b | 2014-12-04 09:40:44 +0000 | [diff] [blame] | 222 | } |
| 223 | |
Elena Demikhovsky | 88e76ca | 2016-02-17 19:23:04 +0000 | [diff] [blame] | 224 | /// \brief Create a call to a Masked Store intrinsic. |
| 225 | /// \p Val - data to be stored, |
| 226 | /// \p Ptr - base pointer for the store |
| 227 | /// \p Align - alignment of the destination location |
| 228 | /// \p Mask - vector of booleans which indicates what vector lanes should |
| 229 | /// be accessed in memory |
Elena Demikhovsky | 84d1997 | 2014-12-30 14:28:14 +0000 | [diff] [blame] | 230 | CallInst *IRBuilderBase::CreateMaskedStore(Value *Val, Value *Ptr, |
| 231 | unsigned Align, Value *Mask) { |
| 232 | Value *Ops[] = { Val, Ptr, getInt32(Align), Mask }; |
| 233 | // Type of the data to be stored - the only one overloaded type |
| 234 | return CreateMaskedIntrinsic(Intrinsic::masked_store, Ops, Val->getType()); |
Elena Demikhovsky | f1de34b | 2014-12-04 09:40:44 +0000 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | /// Create a call to a Masked intrinsic, with given intrinsic Id, |
| 238 | /// an array of operands - Ops, and one overloaded type - DataTy |
Pete Cooper | 9e1d335 | 2015-05-20 17:16:39 +0000 | [diff] [blame] | 239 | CallInst *IRBuilderBase::CreateMaskedIntrinsic(Intrinsic::ID Id, |
Elena Demikhovsky | f1de34b | 2014-12-04 09:40:44 +0000 | [diff] [blame] | 240 | ArrayRef<Value *> Ops, |
Elena Demikhovsky | 84d1997 | 2014-12-30 14:28:14 +0000 | [diff] [blame] | 241 | Type *DataTy, |
| 242 | const Twine &Name) { |
Elena Demikhovsky | f1de34b | 2014-12-04 09:40:44 +0000 | [diff] [blame] | 243 | Module *M = BB->getParent()->getParent(); |
| 244 | Type *OverloadedTypes[] = { DataTy }; |
Pete Cooper | 9e1d335 | 2015-05-20 17:16:39 +0000 | [diff] [blame] | 245 | Value *TheFn = Intrinsic::getDeclaration(M, Id, OverloadedTypes); |
Elena Demikhovsky | 84d1997 | 2014-12-30 14:28:14 +0000 | [diff] [blame] | 246 | return createCallHelper(TheFn, Ops, this, Name); |
Elena Demikhovsky | f1de34b | 2014-12-04 09:40:44 +0000 | [diff] [blame] | 247 | } |
Philip Reames | 4750dd1 | 2014-12-30 05:55:58 +0000 | [diff] [blame] | 248 | |
Elena Demikhovsky | 88e76ca | 2016-02-17 19:23:04 +0000 | [diff] [blame] | 249 | /// \brief Create a call to a Masked Gather intrinsic. |
| 250 | /// \p Ptrs - vector of pointers for loading |
| 251 | /// \p Align - alignment for one element |
| 252 | /// \p Mask - vector of booleans which indicates what vector lanes should |
| 253 | /// be accessed in memory |
| 254 | /// \p PassThru - pass-through value that is used to fill the masked-off lanes |
| 255 | /// of the result |
| 256 | /// \p Name - name of the result variable |
| 257 | CallInst *IRBuilderBase::CreateMaskedGather(Value *Ptrs, unsigned Align, |
| 258 | Value *Mask, Value *PassThru, |
| 259 | const Twine& Name) { |
| 260 | auto PtrsTy = cast<VectorType>(Ptrs->getType()); |
| 261 | auto PtrTy = cast<PointerType>(PtrsTy->getElementType()); |
| 262 | unsigned NumElts = PtrsTy->getVectorNumElements(); |
| 263 | Type *DataTy = VectorType::get(PtrTy->getElementType(), NumElts); |
| 264 | |
| 265 | if (!Mask) |
| 266 | Mask = Constant::getAllOnesValue(VectorType::get(Type::getInt1Ty(Context), |
| 267 | NumElts)); |
| 268 | |
| 269 | Value * Ops[] = {Ptrs, getInt32(Align), Mask, UndefValue::get(DataTy)}; |
| 270 | |
| 271 | // We specify only one type when we create this intrinsic. Types of other |
| 272 | // arguments are derived from this type. |
| 273 | return CreateMaskedIntrinsic(Intrinsic::masked_gather, Ops, DataTy, Name); |
| 274 | } |
| 275 | |
| 276 | /// \brief Create a call to a Masked Scatter intrinsic. |
| 277 | /// \p Data - data to be stored, |
| 278 | /// \p Ptrs - the vector of pointers, where the \p Data elements should be |
| 279 | /// stored |
| 280 | /// \p Align - alignment for one element |
| 281 | /// \p Mask - vector of booleans which indicates what vector lanes should |
| 282 | /// be accessed in memory |
| 283 | CallInst *IRBuilderBase::CreateMaskedScatter(Value *Data, Value *Ptrs, |
| 284 | unsigned Align, Value *Mask) { |
| 285 | auto PtrsTy = cast<VectorType>(Ptrs->getType()); |
| 286 | auto DataTy = cast<VectorType>(Data->getType()); |
Elena Demikhovsky | 88e76ca | 2016-02-17 19:23:04 +0000 | [diff] [blame] | 287 | unsigned NumElts = PtrsTy->getVectorNumElements(); |
| 288 | |
Tim Northover | 5a1a56c | 2016-02-17 21:16:59 +0000 | [diff] [blame^] | 289 | #ifndef NDEBUG |
| 290 | auto PtrTy = cast<PointerType>(PtrsTy->getElementType()); |
Elena Demikhovsky | 88e76ca | 2016-02-17 19:23:04 +0000 | [diff] [blame] | 291 | assert(NumElts == DataTy->getVectorNumElements() && |
Tim Northover | 5a1a56c | 2016-02-17 21:16:59 +0000 | [diff] [blame^] | 292 | PtrTy->getElementType() == DataTy->getElementType() && |
| 293 | "Incompatible pointer and data types"); |
| 294 | #endif |
Elena Demikhovsky | 88e76ca | 2016-02-17 19:23:04 +0000 | [diff] [blame] | 295 | |
| 296 | if (!Mask) |
| 297 | Mask = Constant::getAllOnesValue(VectorType::get(Type::getInt1Ty(Context), |
| 298 | NumElts)); |
| 299 | Value * Ops[] = {Data, Ptrs, getInt32(Align), Mask}; |
| 300 | |
| 301 | // We specify only one type when we create this intrinsic. Types of other |
| 302 | // arguments are derived from this type. |
| 303 | return CreateMaskedIntrinsic(Intrinsic::masked_scatter, Ops, DataTy); |
| 304 | } |
| 305 | |
Sanjoy Das | af6980c | 2015-10-07 19:52:12 +0000 | [diff] [blame] | 306 | template <typename T0, typename T1, typename T2, typename T3> |
Sanjoy Das | a1d39ba | 2015-05-12 23:52:24 +0000 | [diff] [blame] | 307 | static std::vector<Value *> |
| 308 | getStatepointArgs(IRBuilderBase &B, uint64_t ID, uint32_t NumPatchBytes, |
Sanjoy Das | 4fd3d40 | 2015-10-08 23:18:33 +0000 | [diff] [blame] | 309 | Value *ActualCallee, uint32_t Flags, ArrayRef<T0> CallArgs, |
| 310 | ArrayRef<T1> TransitionArgs, ArrayRef<T2> DeoptArgs, |
| 311 | ArrayRef<T3> GCArgs) { |
Sanjoy Das | abe1c68 | 2015-05-06 23:53:09 +0000 | [diff] [blame] | 312 | std::vector<Value *> Args; |
Sanjoy Das | a1d39ba | 2015-05-12 23:52:24 +0000 | [diff] [blame] | 313 | Args.push_back(B.getInt64(ID)); |
| 314 | Args.push_back(B.getInt32(NumPatchBytes)); |
Sanjoy Das | abe1c68 | 2015-05-06 23:53:09 +0000 | [diff] [blame] | 315 | Args.push_back(ActualCallee); |
| 316 | Args.push_back(B.getInt32(CallArgs.size())); |
Sanjoy Das | 4fd3d40 | 2015-10-08 23:18:33 +0000 | [diff] [blame] | 317 | Args.push_back(B.getInt32(Flags)); |
Sanjoy Das | abe1c68 | 2015-05-06 23:53:09 +0000 | [diff] [blame] | 318 | Args.insert(Args.end(), CallArgs.begin(), CallArgs.end()); |
Sanjoy Das | af6980c | 2015-10-07 19:52:12 +0000 | [diff] [blame] | 319 | Args.push_back(B.getInt32(TransitionArgs.size())); |
| 320 | Args.insert(Args.end(), TransitionArgs.begin(), TransitionArgs.end()); |
Sanjoy Das | abe1c68 | 2015-05-06 23:53:09 +0000 | [diff] [blame] | 321 | Args.push_back(B.getInt32(DeoptArgs.size())); |
| 322 | Args.insert(Args.end(), DeoptArgs.begin(), DeoptArgs.end()); |
| 323 | Args.insert(Args.end(), GCArgs.begin(), GCArgs.end()); |
| 324 | |
| 325 | return Args; |
| 326 | } |
| 327 | |
Sanjoy Das | af6980c | 2015-10-07 19:52:12 +0000 | [diff] [blame] | 328 | template <typename T0, typename T1, typename T2, typename T3> |
| 329 | static CallInst *CreateGCStatepointCallCommon( |
| 330 | IRBuilderBase *Builder, uint64_t ID, uint32_t NumPatchBytes, |
Sanjoy Das | 4fd3d40 | 2015-10-08 23:18:33 +0000 | [diff] [blame] | 331 | Value *ActualCallee, uint32_t Flags, ArrayRef<T0> CallArgs, |
Sanjoy Das | af6980c | 2015-10-07 19:52:12 +0000 | [diff] [blame] | 332 | ArrayRef<T1> TransitionArgs, ArrayRef<T2> DeoptArgs, ArrayRef<T3> GCArgs, |
| 333 | const Twine &Name) { |
Sanjoy Das | 63245b5 | 2015-05-06 02:36:34 +0000 | [diff] [blame] | 334 | // Extract out the type of the callee. |
| 335 | PointerType *FuncPtrType = cast<PointerType>(ActualCallee->getType()); |
| 336 | assert(isa<FunctionType>(FuncPtrType->getElementType()) && |
| 337 | "actual callee must be a callable value"); |
Philip Reames | 4750dd1 | 2014-12-30 05:55:58 +0000 | [diff] [blame] | 338 | |
Sanjoy Das | af6980c | 2015-10-07 19:52:12 +0000 | [diff] [blame] | 339 | Module *M = Builder->GetInsertBlock()->getParent()->getParent(); |
Sanjoy Das | 63245b5 | 2015-05-06 02:36:34 +0000 | [diff] [blame] | 340 | // Fill in the one generic type'd argument (the function is also vararg) |
| 341 | Type *ArgTypes[] = { FuncPtrType }; |
| 342 | Function *FnStatepoint = |
| 343 | Intrinsic::getDeclaration(M, Intrinsic::experimental_gc_statepoint, |
| 344 | ArgTypes); |
Philip Reames | 4750dd1 | 2014-12-30 05:55:58 +0000 | [diff] [blame] | 345 | |
Sanjoy Das | af6980c | 2015-10-07 19:52:12 +0000 | [diff] [blame] | 346 | std::vector<llvm::Value *> Args = |
| 347 | getStatepointArgs(*Builder, ID, NumPatchBytes, ActualCallee, Flags, |
| 348 | CallArgs, TransitionArgs, DeoptArgs, GCArgs); |
| 349 | return createCallHelper(FnStatepoint, Args, Builder, Name); |
| 350 | } |
| 351 | |
| 352 | CallInst *IRBuilderBase::CreateGCStatepointCall( |
| 353 | uint64_t ID, uint32_t NumPatchBytes, Value *ActualCallee, |
| 354 | ArrayRef<Value *> CallArgs, ArrayRef<Value *> DeoptArgs, |
| 355 | ArrayRef<Value *> GCArgs, const Twine &Name) { |
| 356 | return CreateGCStatepointCallCommon<Value *, Value *, Value *, Value *>( |
Sanjoy Das | 4fd3d40 | 2015-10-08 23:18:33 +0000 | [diff] [blame] | 357 | this, ID, NumPatchBytes, ActualCallee, uint32_t(StatepointFlags::None), |
| 358 | CallArgs, None /* No Transition Args */, DeoptArgs, GCArgs, Name); |
Sanjoy Das | af6980c | 2015-10-07 19:52:12 +0000 | [diff] [blame] | 359 | } |
| 360 | |
| 361 | CallInst *IRBuilderBase::CreateGCStatepointCall( |
Sanjoy Das | 4fd3d40 | 2015-10-08 23:18:33 +0000 | [diff] [blame] | 362 | uint64_t ID, uint32_t NumPatchBytes, Value *ActualCallee, uint32_t Flags, |
| 363 | ArrayRef<Use> CallArgs, ArrayRef<Use> TransitionArgs, |
Sanjoy Das | af6980c | 2015-10-07 19:52:12 +0000 | [diff] [blame] | 364 | ArrayRef<Use> DeoptArgs, ArrayRef<Value *> GCArgs, const Twine &Name) { |
| 365 | return CreateGCStatepointCallCommon<Use, Use, Use, Value *>( |
| 366 | this, ID, NumPatchBytes, ActualCallee, Flags, CallArgs, TransitionArgs, |
| 367 | DeoptArgs, GCArgs, Name); |
Philip Reames | 4750dd1 | 2014-12-30 05:55:58 +0000 | [diff] [blame] | 368 | } |
| 369 | |
Sanjoy Das | a1d39ba | 2015-05-12 23:52:24 +0000 | [diff] [blame] | 370 | CallInst *IRBuilderBase::CreateGCStatepointCall( |
| 371 | uint64_t ID, uint32_t NumPatchBytes, Value *ActualCallee, |
| 372 | ArrayRef<Use> CallArgs, ArrayRef<Value *> DeoptArgs, |
| 373 | ArrayRef<Value *> GCArgs, const Twine &Name) { |
Sanjoy Das | af6980c | 2015-10-07 19:52:12 +0000 | [diff] [blame] | 374 | return CreateGCStatepointCallCommon<Use, Value *, Value *, Value *>( |
Sanjoy Das | 4fd3d40 | 2015-10-08 23:18:33 +0000 | [diff] [blame] | 375 | this, ID, NumPatchBytes, ActualCallee, uint32_t(StatepointFlags::None), |
| 376 | CallArgs, None, DeoptArgs, GCArgs, Name); |
Sanjoy Das | af6980c | 2015-10-07 19:52:12 +0000 | [diff] [blame] | 377 | } |
| 378 | |
| 379 | template <typename T0, typename T1, typename T2, typename T3> |
| 380 | static InvokeInst *CreateGCStatepointInvokeCommon( |
| 381 | IRBuilderBase *Builder, uint64_t ID, uint32_t NumPatchBytes, |
| 382 | Value *ActualInvokee, BasicBlock *NormalDest, BasicBlock *UnwindDest, |
Sanjoy Das | 4fd3d40 | 2015-10-08 23:18:33 +0000 | [diff] [blame] | 383 | uint32_t Flags, ArrayRef<T0> InvokeArgs, ArrayRef<T1> TransitionArgs, |
Sanjoy Das | af6980c | 2015-10-07 19:52:12 +0000 | [diff] [blame] | 384 | ArrayRef<T2> DeoptArgs, ArrayRef<T3> GCArgs, const Twine &Name) { |
| 385 | // Extract out the type of the callee. |
| 386 | PointerType *FuncPtrType = cast<PointerType>(ActualInvokee->getType()); |
| 387 | assert(isa<FunctionType>(FuncPtrType->getElementType()) && |
| 388 | "actual callee must be a callable value"); |
| 389 | |
| 390 | Module *M = Builder->GetInsertBlock()->getParent()->getParent(); |
| 391 | // Fill in the one generic type'd argument (the function is also vararg) |
| 392 | Function *FnStatepoint = Intrinsic::getDeclaration( |
| 393 | M, Intrinsic::experimental_gc_statepoint, {FuncPtrType}); |
| 394 | |
| 395 | std::vector<llvm::Value *> Args = |
| 396 | getStatepointArgs(*Builder, ID, NumPatchBytes, ActualInvokee, Flags, |
| 397 | InvokeArgs, TransitionArgs, DeoptArgs, GCArgs); |
| 398 | return createInvokeHelper(FnStatepoint, NormalDest, UnwindDest, Args, Builder, |
| 399 | Name); |
Sanjoy Das | abe1c68 | 2015-05-06 23:53:09 +0000 | [diff] [blame] | 400 | } |
| 401 | |
| 402 | InvokeInst *IRBuilderBase::CreateGCStatepointInvoke( |
Sanjoy Das | a1d39ba | 2015-05-12 23:52:24 +0000 | [diff] [blame] | 403 | uint64_t ID, uint32_t NumPatchBytes, Value *ActualInvokee, |
| 404 | BasicBlock *NormalDest, BasicBlock *UnwindDest, |
Sanjoy Das | abe1c68 | 2015-05-06 23:53:09 +0000 | [diff] [blame] | 405 | ArrayRef<Value *> InvokeArgs, ArrayRef<Value *> DeoptArgs, |
| 406 | ArrayRef<Value *> GCArgs, const Twine &Name) { |
Sanjoy Das | af6980c | 2015-10-07 19:52:12 +0000 | [diff] [blame] | 407 | return CreateGCStatepointInvokeCommon<Value *, Value *, Value *, Value *>( |
| 408 | this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, |
Sanjoy Das | 4fd3d40 | 2015-10-08 23:18:33 +0000 | [diff] [blame] | 409 | uint32_t(StatepointFlags::None), InvokeArgs, None /* No Transition Args*/, |
Sanjoy Das | af6980c | 2015-10-07 19:52:12 +0000 | [diff] [blame] | 410 | DeoptArgs, GCArgs, Name); |
| 411 | } |
Sanjoy Das | abe1c68 | 2015-05-06 23:53:09 +0000 | [diff] [blame] | 412 | |
Sanjoy Das | af6980c | 2015-10-07 19:52:12 +0000 | [diff] [blame] | 413 | InvokeInst *IRBuilderBase::CreateGCStatepointInvoke( |
| 414 | uint64_t ID, uint32_t NumPatchBytes, Value *ActualInvokee, |
Sanjoy Das | 4fd3d40 | 2015-10-08 23:18:33 +0000 | [diff] [blame] | 415 | BasicBlock *NormalDest, BasicBlock *UnwindDest, uint32_t Flags, |
Sanjoy Das | af6980c | 2015-10-07 19:52:12 +0000 | [diff] [blame] | 416 | ArrayRef<Use> InvokeArgs, ArrayRef<Use> TransitionArgs, |
| 417 | ArrayRef<Use> DeoptArgs, ArrayRef<Value *> GCArgs, const Twine &Name) { |
| 418 | return CreateGCStatepointInvokeCommon<Use, Use, Use, Value *>( |
| 419 | this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, Flags, |
| 420 | InvokeArgs, TransitionArgs, DeoptArgs, GCArgs, Name); |
Sanjoy Das | abe1c68 | 2015-05-06 23:53:09 +0000 | [diff] [blame] | 421 | } |
| 422 | |
| 423 | InvokeInst *IRBuilderBase::CreateGCStatepointInvoke( |
Sanjoy Das | a1d39ba | 2015-05-12 23:52:24 +0000 | [diff] [blame] | 424 | uint64_t ID, uint32_t NumPatchBytes, Value *ActualInvokee, |
| 425 | BasicBlock *NormalDest, BasicBlock *UnwindDest, ArrayRef<Use> InvokeArgs, |
| 426 | ArrayRef<Value *> DeoptArgs, ArrayRef<Value *> GCArgs, const Twine &Name) { |
Sanjoy Das | af6980c | 2015-10-07 19:52:12 +0000 | [diff] [blame] | 427 | return CreateGCStatepointInvokeCommon<Use, Value *, Value *, Value *>( |
| 428 | this, ID, NumPatchBytes, ActualInvokee, NormalDest, UnwindDest, |
Sanjoy Das | 4fd3d40 | 2015-10-08 23:18:33 +0000 | [diff] [blame] | 429 | uint32_t(StatepointFlags::None), InvokeArgs, None, DeoptArgs, GCArgs, |
| 430 | Name); |
Ramkumar Ramachandra | 3408f3e | 2015-02-26 00:35:56 +0000 | [diff] [blame] | 431 | } |
| 432 | |
Philip Reames | 4750dd1 | 2014-12-30 05:55:58 +0000 | [diff] [blame] | 433 | CallInst *IRBuilderBase::CreateGCResult(Instruction *Statepoint, |
| 434 | Type *ResultType, |
| 435 | const Twine &Name) { |
Ramkumar Ramachandra | 75a4f35 | 2015-01-22 20:14:38 +0000 | [diff] [blame] | 436 | Intrinsic::ID ID = Intrinsic::experimental_gc_result; |
Philip Reames | 4750dd1 | 2014-12-30 05:55:58 +0000 | [diff] [blame] | 437 | Module *M = BB->getParent()->getParent(); |
| 438 | Type *Types[] = {ResultType}; |
| 439 | Value *FnGCResult = Intrinsic::getDeclaration(M, ID, Types); |
| 440 | |
| 441 | Value *Args[] = {Statepoint}; |
| 442 | return createCallHelper(FnGCResult, Args, this, Name); |
| 443 | } |
| 444 | |
| 445 | CallInst *IRBuilderBase::CreateGCRelocate(Instruction *Statepoint, |
| 446 | int BaseOffset, |
| 447 | int DerivedOffset, |
| 448 | Type *ResultType, |
| 449 | const Twine &Name) { |
| 450 | Module *M = BB->getParent()->getParent(); |
| 451 | Type *Types[] = {ResultType}; |
| 452 | Value *FnGCRelocate = |
| 453 | Intrinsic::getDeclaration(M, Intrinsic::experimental_gc_relocate, Types); |
| 454 | |
| 455 | Value *Args[] = {Statepoint, |
| 456 | getInt32(BaseOffset), |
| 457 | getInt32(DerivedOffset)}; |
| 458 | return createCallHelper(FnGCRelocate, Args, this, Name); |
| 459 | } |