blob: d603d21bbe0bddb810ee0f780fd01e82ee9b7ffb [file] [log] [blame]
Hans Wennborgdcfba332015-10-06 23:40:43 +00001//===--- CGBlocks.cpp - Emit LLVM Code for declarations ---------*- C++ -*-===//
Anders Carlsson2437cbf2009-02-12 00:39:25 +00002//
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 contains code to emit blocks.
11//
12//===----------------------------------------------------------------------===//
13
John McCallad7c5c12011-02-08 08:22:06 +000014#include "CGBlocks.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000015#include "CGDebugInfo.h"
16#include "CGObjCRuntime.h"
17#include "CodeGenFunction.h"
18#include "CodeGenModule.h"
Mike Stump692c6e32009-03-20 21:53:12 +000019#include "clang/AST/DeclObjC.h"
Benjamin Kramer9e2e1c92010-03-31 15:04:05 +000020#include "llvm/ADT/SmallSet.h"
Chandler Carruthc80ceea2014-03-04 11:02:08 +000021#include "llvm/IR/CallSite.h"
Chandler Carruthffd55512013-01-02 11:45:17 +000022#include "llvm/IR/DataLayout.h"
23#include "llvm/IR/Module.h"
Anders Carlsson2437cbf2009-02-12 00:39:25 +000024#include <algorithm>
Fariborz Jahanian983ae492012-11-14 17:43:08 +000025#include <cstdio>
Torok Edwindb714922009-08-24 13:25:12 +000026
Anders Carlsson2437cbf2009-02-12 00:39:25 +000027using namespace clang;
28using namespace CodeGen;
29
John McCall08ef4662011-11-10 08:15:53 +000030CGBlockInfo::CGBlockInfo(const BlockDecl *block, StringRef name)
31 : Name(name), CXXThisIndex(0), CanBeGlobal(false), NeedsCopyDispose(false),
Fariborz Jahanian23290b02012-11-01 18:32:55 +000032 HasCXXObject(false), UsesStret(false), HasCapturedVariableLayout(false),
John McCall7f416cc2015-09-08 08:05:57 +000033 LocalAddress(Address::invalid()), StructureType(nullptr), Block(block),
Craig Topper8a13c412014-05-21 05:09:00 +000034 DominatingIP(nullptr) {
35
John McCall08ef4662011-11-10 08:15:53 +000036 // Skip asm prefix, if any. 'name' is usually taken directly from
37 // the mangled name of the enclosing function.
38 if (!name.empty() && name[0] == '\01')
39 name = name.substr(1);
John McCall9d42f0f2010-05-21 04:11:14 +000040}
41
John McCallf9b056b2011-03-31 08:03:29 +000042// Anchor the vtable to this translation unit.
Angel Garcia Gomez637d1e62015-10-20 13:23:58 +000043BlockByrefHelpers::~BlockByrefHelpers() {}
John McCallf9b056b2011-03-31 08:03:29 +000044
John McCall351762c2011-02-07 10:33:21 +000045/// Build the given block as a global block.
46static llvm::Constant *buildGlobalBlock(CodeGenModule &CGM,
47 const CGBlockInfo &blockInfo,
48 llvm::Constant *blockFn);
John McCall9d42f0f2010-05-21 04:11:14 +000049
John McCall351762c2011-02-07 10:33:21 +000050/// Build the helper function to copy a block.
51static llvm::Constant *buildCopyHelper(CodeGenModule &CGM,
52 const CGBlockInfo &blockInfo) {
53 return CodeGenFunction(CGM).GenerateCopyHelperFunction(blockInfo);
54}
55
Alp Tokerf6a24ce2013-12-05 16:25:25 +000056/// Build the helper function to dispose of a block.
John McCall351762c2011-02-07 10:33:21 +000057static llvm::Constant *buildDisposeHelper(CodeGenModule &CGM,
58 const CGBlockInfo &blockInfo) {
59 return CodeGenFunction(CGM).GenerateDestroyHelperFunction(blockInfo);
60}
61
Fariborz Jahanianbf7bf292012-10-25 18:06:53 +000062/// buildBlockDescriptor - Build the block descriptor meta-data for a block.
63/// buildBlockDescriptor is accessed from 5th field of the Block_literal
64/// meta-data and contains stationary information about the block literal.
65/// Its definition will have 4 (or optinally 6) words.
Dmitri Gribenko6c96ba22013-05-08 23:09:44 +000066/// \code
Fariborz Jahanianbf7bf292012-10-25 18:06:53 +000067/// struct Block_descriptor {
68/// unsigned long reserved;
69/// unsigned long size; // size of Block_literal metadata in bytes.
70/// void *copy_func_helper_decl; // optional copy helper.
71/// void *destroy_func_decl; // optioanl destructor helper.
Dmitri Gribenko6c96ba22013-05-08 23:09:44 +000072/// void *block_method_encoding_address; // @encode for block literal signature.
Fariborz Jahanianbf7bf292012-10-25 18:06:53 +000073/// void *block_layout_info; // encoding of captured block variables.
74/// };
Dmitri Gribenko6c96ba22013-05-08 23:09:44 +000075/// \endcode
John McCall351762c2011-02-07 10:33:21 +000076static llvm::Constant *buildBlockDescriptor(CodeGenModule &CGM,
77 const CGBlockInfo &blockInfo) {
78 ASTContext &C = CGM.getContext();
79
Chris Lattner2192fe52011-07-18 04:24:23 +000080 llvm::Type *ulong = CGM.getTypes().ConvertType(C.UnsignedLongTy);
Hans Wennborgdcfba332015-10-06 23:40:43 +000081 llvm::Type *i8p = nullptr;
Pekka Jaaskelainenab751a82014-08-14 09:37:50 +000082 if (CGM.getLangOpts().OpenCL)
83 i8p =
84 llvm::Type::getInt8PtrTy(
85 CGM.getLLVMContext(), C.getTargetAddressSpace(LangAS::opencl_constant));
86 else
87 i8p = CGM.getTypes().ConvertType(C.VoidPtrTy);
John McCall351762c2011-02-07 10:33:21 +000088
Chris Lattner0e62c1c2011-07-23 10:55:15 +000089 SmallVector<llvm::Constant*, 6> elements;
Mike Stump85284ba2009-02-13 16:19:19 +000090
91 // reserved
John McCall351762c2011-02-07 10:33:21 +000092 elements.push_back(llvm::ConstantInt::get(ulong, 0));
Mike Stump85284ba2009-02-13 16:19:19 +000093
94 // Size
Mike Stump2ac40a92009-02-21 20:07:44 +000095 // FIXME: What is the right way to say this doesn't fit? We should give
96 // a user diagnostic in that case. Better fix would be to change the
97 // API to size_t.
John McCall351762c2011-02-07 10:33:21 +000098 elements.push_back(llvm::ConstantInt::get(ulong,
99 blockInfo.BlockSize.getQuantity()));
Mike Stump85284ba2009-02-13 16:19:19 +0000100
John McCall351762c2011-02-07 10:33:21 +0000101 // Optional copy/dispose helpers.
102 if (blockInfo.NeedsCopyDispose) {
Mike Stump85284ba2009-02-13 16:19:19 +0000103 // copy_func_helper_decl
John McCall351762c2011-02-07 10:33:21 +0000104 elements.push_back(buildCopyHelper(CGM, blockInfo));
Mike Stump85284ba2009-02-13 16:19:19 +0000105
106 // destroy_func_decl
John McCall351762c2011-02-07 10:33:21 +0000107 elements.push_back(buildDisposeHelper(CGM, blockInfo));
Mike Stump85284ba2009-02-13 16:19:19 +0000108 }
109
John McCall351762c2011-02-07 10:33:21 +0000110 // Signature. Mandatory ObjC-style method descriptor @encode sequence.
111 std::string typeAtEncoding =
112 CGM.getContext().getObjCEncodingForBlock(blockInfo.getBlockExpr());
113 elements.push_back(llvm::ConstantExpr::getBitCast(
John McCall7f416cc2015-09-08 08:05:57 +0000114 CGM.GetAddrOfConstantCString(typeAtEncoding).getPointer(), i8p));
Blaine Garstfc83aa02010-02-23 21:51:17 +0000115
John McCall351762c2011-02-07 10:33:21 +0000116 // GC layout.
Fariborz Jahanian0c58ce92012-10-27 21:10:38 +0000117 if (C.getLangOpts().ObjC1) {
118 if (CGM.getLangOpts().getGC() != LangOptions::NonGC)
119 elements.push_back(CGM.getObjCRuntime().BuildGCBlockLayout(CGM, blockInfo));
120 else
121 elements.push_back(CGM.getObjCRuntime().BuildRCBlockLayout(CGM, blockInfo));
122 }
John McCall351762c2011-02-07 10:33:21 +0000123 else
124 elements.push_back(llvm::Constant::getNullValue(i8p));
Blaine Garstfc83aa02010-02-23 21:51:17 +0000125
Chris Lattnere64d7ba2011-06-20 04:01:35 +0000126 llvm::Constant *init = llvm::ConstantStruct::getAnon(elements);
Mike Stump85284ba2009-02-13 16:19:19 +0000127
John McCall351762c2011-02-07 10:33:21 +0000128 llvm::GlobalVariable *global =
129 new llvm::GlobalVariable(CGM.getModule(), init->getType(), true,
130 llvm::GlobalValue::InternalLinkage,
131 init, "__block_descriptor_tmp");
Mike Stump85284ba2009-02-13 16:19:19 +0000132
John McCall351762c2011-02-07 10:33:21 +0000133 return llvm::ConstantExpr::getBitCast(global, CGM.getBlockDescriptorType());
Anders Carlssoned5e69f2009-03-01 01:09:12 +0000134}
135
John McCall351762c2011-02-07 10:33:21 +0000136/*
137 Purely notional variadic template describing the layout of a block.
Anders Carlssoned5e69f2009-03-01 01:09:12 +0000138
John McCall351762c2011-02-07 10:33:21 +0000139 template <class _ResultType, class... _ParamTypes, class... _CaptureTypes>
140 struct Block_literal {
141 /// Initialized to one of:
142 /// extern void *_NSConcreteStackBlock[];
143 /// extern void *_NSConcreteGlobalBlock[];
144 ///
145 /// In theory, we could start one off malloc'ed by setting
146 /// BLOCK_NEEDS_FREE, giving it a refcount of 1, and using
147 /// this isa:
148 /// extern void *_NSConcreteMallocBlock[];
149 struct objc_class *isa;
Mike Stump4446dcf2009-03-05 08:32:30 +0000150
John McCall351762c2011-02-07 10:33:21 +0000151 /// These are the flags (with corresponding bit number) that the
152 /// compiler is actually supposed to know about.
153 /// 25. BLOCK_HAS_COPY_DISPOSE - indicates that the block
154 /// descriptor provides copy and dispose helper functions
155 /// 26. BLOCK_HAS_CXX_OBJ - indicates that there's a captured
156 /// object with a nontrivial destructor or copy constructor
157 /// 28. BLOCK_IS_GLOBAL - indicates that the block is allocated
158 /// as global memory
159 /// 29. BLOCK_USE_STRET - indicates that the block function
160 /// uses stret, which objc_msgSend needs to know about
161 /// 30. BLOCK_HAS_SIGNATURE - indicates that the block has an
162 /// @encoded signature string
163 /// And we're not supposed to manipulate these:
164 /// 24. BLOCK_NEEDS_FREE - indicates that the block has been moved
165 /// to malloc'ed memory
166 /// 27. BLOCK_IS_GC - indicates that the block has been moved to
167 /// to GC-allocated memory
168 /// Additionally, the bottom 16 bits are a reference count which
169 /// should be zero on the stack.
170 int flags;
David Chisnall950a9512009-11-17 19:33:30 +0000171
John McCall351762c2011-02-07 10:33:21 +0000172 /// Reserved; should be zero-initialized.
173 int reserved;
David Chisnall950a9512009-11-17 19:33:30 +0000174
John McCall351762c2011-02-07 10:33:21 +0000175 /// Function pointer generated from block literal.
176 _ResultType (*invoke)(Block_literal *, _ParamTypes...);
Mike Stump85284ba2009-02-13 16:19:19 +0000177
John McCall351762c2011-02-07 10:33:21 +0000178 /// Block description metadata generated from block literal.
179 struct Block_descriptor *block_descriptor;
John McCall3882ace2011-01-05 12:14:39 +0000180
John McCall351762c2011-02-07 10:33:21 +0000181 /// Captured values follow.
182 _CapturesTypes captures...;
183 };
184 */
David Chisnall950a9512009-11-17 19:33:30 +0000185
John McCall351762c2011-02-07 10:33:21 +0000186/// The number of fields in a block header.
187const unsigned BlockHeaderSize = 5;
Mike Stump4446dcf2009-03-05 08:32:30 +0000188
John McCall351762c2011-02-07 10:33:21 +0000189namespace {
190 /// A chunk of data that we actually have to capture in the block.
191 struct BlockLayoutChunk {
192 CharUnits Alignment;
193 CharUnits Size;
Fariborz Jahanianc8892052013-01-17 00:25:06 +0000194 Qualifiers::ObjCLifetime Lifetime;
John McCall351762c2011-02-07 10:33:21 +0000195 const BlockDecl::Capture *Capture; // null for 'this'
Jay Foad7c57be32011-07-11 09:56:20 +0000196 llvm::Type *Type;
Mike Stump85284ba2009-02-13 16:19:19 +0000197
John McCall351762c2011-02-07 10:33:21 +0000198 BlockLayoutChunk(CharUnits align, CharUnits size,
Fariborz Jahanianc8892052013-01-17 00:25:06 +0000199 Qualifiers::ObjCLifetime lifetime,
John McCall351762c2011-02-07 10:33:21 +0000200 const BlockDecl::Capture *capture,
Jay Foad7c57be32011-07-11 09:56:20 +0000201 llvm::Type *type)
Fariborz Jahanianc8892052013-01-17 00:25:06 +0000202 : Alignment(align), Size(size), Lifetime(lifetime),
203 Capture(capture), Type(type) {}
Mike Stump85284ba2009-02-13 16:19:19 +0000204
John McCall351762c2011-02-07 10:33:21 +0000205 /// Tell the block info that this chunk has the given field index.
John McCall7f416cc2015-09-08 08:05:57 +0000206 void setIndex(CGBlockInfo &info, unsigned index, CharUnits offset) {
207 if (!Capture) {
John McCall351762c2011-02-07 10:33:21 +0000208 info.CXXThisIndex = index;
John McCall7f416cc2015-09-08 08:05:57 +0000209 info.CXXThisOffset = offset;
210 } else {
211 info.Captures.insert({Capture->getVariable(),
212 CGBlockInfo::Capture::makeIndex(index, offset)});
213 }
John McCall87fe5d52010-05-20 01:18:31 +0000214 }
John McCall351762c2011-02-07 10:33:21 +0000215 };
Mike Stumpd6ef62f2009-03-06 18:42:23 +0000216
Fariborz Jahanianc8892052013-01-17 00:25:06 +0000217 /// Order by 1) all __strong together 2) next, all byfref together 3) next,
218 /// all __weak together. Preserve descending alignment in all situations.
John McCall351762c2011-02-07 10:33:21 +0000219 bool operator<(const BlockLayoutChunk &left, const BlockLayoutChunk &right) {
John McCall7f416cc2015-09-08 08:05:57 +0000220 if (left.Alignment != right.Alignment)
221 return left.Alignment > right.Alignment;
222
223 auto getPrefOrder = [](const BlockLayoutChunk &chunk) {
John McCall9c52b282015-09-11 22:00:51 +0000224 if (chunk.Capture && chunk.Capture->isByRef())
John McCall7f416cc2015-09-08 08:05:57 +0000225 return 1;
226 if (chunk.Lifetime == Qualifiers::OCL_Strong)
227 return 0;
228 if (chunk.Lifetime == Qualifiers::OCL_Weak)
229 return 2;
230 return 3;
231 };
232
233 return getPrefOrder(left) < getPrefOrder(right);
John McCall351762c2011-02-07 10:33:21 +0000234 }
Hans Wennborgdcfba332015-10-06 23:40:43 +0000235} // end anonymous namespace
John McCall351762c2011-02-07 10:33:21 +0000236
John McCallb0a3ecb2011-02-08 03:07:00 +0000237/// Determines if the given type is safe for constant capture in C++.
238static bool isSafeForCXXConstantCapture(QualType type) {
239 const RecordType *recordType =
240 type->getBaseElementTypeUnsafe()->getAs<RecordType>();
241
242 // Only records can be unsafe.
243 if (!recordType) return true;
244
Rafael Espindola2ae250c2014-05-09 00:08:36 +0000245 const auto *record = cast<CXXRecordDecl>(recordType->getDecl());
John McCallb0a3ecb2011-02-08 03:07:00 +0000246
247 // Maintain semantics for classes with non-trivial dtors or copy ctors.
248 if (!record->hasTrivialDestructor()) return false;
Richard Smith16488472012-11-16 00:53:38 +0000249 if (record->hasNonTrivialCopyConstructor()) return false;
John McCallb0a3ecb2011-02-08 03:07:00 +0000250
251 // Otherwise, we just have to make sure there aren't any mutable
252 // fields that might have changed since initialization.
Douglas Gregor61226d32011-05-13 01:05:07 +0000253 return !record->hasMutableFields();
John McCallb0a3ecb2011-02-08 03:07:00 +0000254}
255
John McCall351762c2011-02-07 10:33:21 +0000256/// It is illegal to modify a const object after initialization.
257/// Therefore, if a const object has a constant initializer, we don't
258/// actually need to keep storage for it in the block; we'll just
259/// rematerialize it at the start of the block function. This is
260/// acceptable because we make no promises about address stability of
261/// captured variables.
262static llvm::Constant *tryCaptureAsConstant(CodeGenModule &CGM,
Richard Smithdafff942012-01-14 04:30:29 +0000263 CodeGenFunction *CGF,
John McCall351762c2011-02-07 10:33:21 +0000264 const VarDecl *var) {
Akira Hatanaka1cfa2732016-05-02 22:29:40 +0000265 // Return if this is a function paramter. We shouldn't try to
266 // rematerialize default arguments of function parameters.
267 if (isa<ParmVarDecl>(var))
268 return nullptr;
Akira Hatanaka3ba65352016-05-02 21:52:57 +0000269
John McCall351762c2011-02-07 10:33:21 +0000270 QualType type = var->getType();
271
272 // We can only do this if the variable is const.
Craig Topper8a13c412014-05-21 05:09:00 +0000273 if (!type.isConstQualified()) return nullptr;
John McCall351762c2011-02-07 10:33:21 +0000274
John McCallb0a3ecb2011-02-08 03:07:00 +0000275 // Furthermore, in C++ we have to worry about mutable fields:
276 // C++ [dcl.type.cv]p4:
277 // Except that any class member declared mutable can be
278 // modified, any attempt to modify a const object during its
279 // lifetime results in undefined behavior.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000280 if (CGM.getLangOpts().CPlusPlus && !isSafeForCXXConstantCapture(type))
Craig Topper8a13c412014-05-21 05:09:00 +0000281 return nullptr;
John McCall351762c2011-02-07 10:33:21 +0000282
283 // If the variable doesn't have any initializer (shouldn't this be
284 // invalid?), it's not clear what we should do. Maybe capture as
285 // zero?
286 const Expr *init = var->getInit();
Craig Topper8a13c412014-05-21 05:09:00 +0000287 if (!init) return nullptr;
John McCall351762c2011-02-07 10:33:21 +0000288
Richard Smithdafff942012-01-14 04:30:29 +0000289 return CGM.EmitConstantInit(*var, CGF);
John McCall351762c2011-02-07 10:33:21 +0000290}
291
292/// Get the low bit of a nonzero character count. This is the
293/// alignment of the nth byte if the 0th byte is universally aligned.
294static CharUnits getLowBit(CharUnits v) {
295 return CharUnits::fromQuantity(v.getQuantity() & (~v.getQuantity() + 1));
296}
297
298static void initializeForBlockHeader(CodeGenModule &CGM, CGBlockInfo &info,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000299 SmallVectorImpl<llvm::Type*> &elementTypes) {
John McCall7f416cc2015-09-08 08:05:57 +0000300 // The header is basically 'struct { void *; int; int; void *; void *; }'.
301 // Assert that that struct is packed.
302 assert(CGM.getIntSize() <= CGM.getPointerSize());
303 assert(CGM.getIntAlign() <= CGM.getPointerAlign());
304 assert((2 * CGM.getIntSize()).isMultipleOf(CGM.getPointerAlign()));
John McCall351762c2011-02-07 10:33:21 +0000305
John McCall7f416cc2015-09-08 08:05:57 +0000306 info.BlockAlign = CGM.getPointerAlign();
307 info.BlockSize = 3 * CGM.getPointerSize() + 2 * CGM.getIntSize();
John McCall351762c2011-02-07 10:33:21 +0000308
309 assert(elementTypes.empty());
John McCall7f416cc2015-09-08 08:05:57 +0000310 elementTypes.push_back(CGM.VoidPtrTy);
311 elementTypes.push_back(CGM.IntTy);
312 elementTypes.push_back(CGM.IntTy);
313 elementTypes.push_back(CGM.VoidPtrTy);
John McCall351762c2011-02-07 10:33:21 +0000314 elementTypes.push_back(CGM.getBlockDescriptorType());
315
316 assert(elementTypes.size() == BlockHeaderSize);
317}
318
319/// Compute the layout of the given block. Attempts to lay the block
320/// out with minimal space requirements.
Richard Smithdafff942012-01-14 04:30:29 +0000321static void computeBlockInfo(CodeGenModule &CGM, CodeGenFunction *CGF,
322 CGBlockInfo &info) {
John McCall351762c2011-02-07 10:33:21 +0000323 ASTContext &C = CGM.getContext();
324 const BlockDecl *block = info.getBlockDecl();
325
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000326 SmallVector<llvm::Type*, 8> elementTypes;
John McCall351762c2011-02-07 10:33:21 +0000327 initializeForBlockHeader(CGM, info, elementTypes);
328
329 if (!block->hasCaptures()) {
330 info.StructureType =
331 llvm::StructType::get(CGM.getLLVMContext(), elementTypes, true);
332 info.CanBeGlobal = true;
333 return;
Mike Stump85284ba2009-02-13 16:19:19 +0000334 }
Fariborz Jahanian23290b02012-11-01 18:32:55 +0000335 else if (C.getLangOpts().ObjC1 &&
336 CGM.getLangOpts().getGC() == LangOptions::NonGC)
337 info.HasCapturedVariableLayout = true;
338
John McCall351762c2011-02-07 10:33:21 +0000339 // Collect the layout chunks.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000340 SmallVector<BlockLayoutChunk, 16> layout;
John McCall351762c2011-02-07 10:33:21 +0000341 layout.reserve(block->capturesCXXThis() +
342 (block->capture_end() - block->capture_begin()));
343
344 CharUnits maxFieldAlign;
345
346 // First, 'this'.
347 if (block->capturesCXXThis()) {
Eli Friedmanc6036aa2013-07-12 22:05:26 +0000348 assert(CGF && CGF->CurFuncDecl && isa<CXXMethodDecl>(CGF->CurFuncDecl) &&
349 "Can't capture 'this' outside a method");
350 QualType thisType = cast<CXXMethodDecl>(CGF->CurFuncDecl)->getThisType(C);
John McCall351762c2011-02-07 10:33:21 +0000351
John McCall7f416cc2015-09-08 08:05:57 +0000352 // Theoretically, this could be in a different address space, so
353 // don't assume standard pointer size/align.
Jay Foad7c57be32011-07-11 09:56:20 +0000354 llvm::Type *llvmType = CGM.getTypes().ConvertType(thisType);
John McCall351762c2011-02-07 10:33:21 +0000355 std::pair<CharUnits,CharUnits> tinfo
356 = CGM.getContext().getTypeInfoInChars(thisType);
357 maxFieldAlign = std::max(maxFieldAlign, tinfo.second);
358
Fariborz Jahanianc8892052013-01-17 00:25:06 +0000359 layout.push_back(BlockLayoutChunk(tinfo.second, tinfo.first,
360 Qualifiers::OCL_None,
Craig Topper8a13c412014-05-21 05:09:00 +0000361 nullptr, llvmType));
John McCall351762c2011-02-07 10:33:21 +0000362 }
363
364 // Next, all the block captures.
Aaron Ballman9371dd22014-03-14 18:34:04 +0000365 for (const auto &CI : block->captures()) {
366 const VarDecl *variable = CI.getVariable();
John McCall351762c2011-02-07 10:33:21 +0000367
Aaron Ballman9371dd22014-03-14 18:34:04 +0000368 if (CI.isByRef()) {
John McCall351762c2011-02-07 10:33:21 +0000369 // We have to copy/dispose of the __block reference.
370 info.NeedsCopyDispose = true;
371
John McCall351762c2011-02-07 10:33:21 +0000372 // Just use void* instead of a pointer to the byref type.
John McCall7f416cc2015-09-08 08:05:57 +0000373 CharUnits align = CGM.getPointerAlign();
374 maxFieldAlign = std::max(maxFieldAlign, align);
John McCall351762c2011-02-07 10:33:21 +0000375
John McCall7f416cc2015-09-08 08:05:57 +0000376 layout.push_back(BlockLayoutChunk(align, CGM.getPointerSize(),
377 Qualifiers::OCL_None, &CI,
378 CGM.VoidPtrTy));
John McCall351762c2011-02-07 10:33:21 +0000379 continue;
380 }
381
382 // Otherwise, build a layout chunk with the size and alignment of
383 // the declaration.
Richard Smithdafff942012-01-14 04:30:29 +0000384 if (llvm::Constant *constant = tryCaptureAsConstant(CGM, CGF, variable)) {
John McCall351762c2011-02-07 10:33:21 +0000385 info.Captures[variable] = CGBlockInfo::Capture::makeConstant(constant);
386 continue;
387 }
388
John McCall31168b02011-06-15 23:02:42 +0000389 // If we have a lifetime qualifier, honor it for capture purposes.
390 // That includes *not* copying it if it's __unsafe_unretained.
Fariborz Jahanianc8892052013-01-17 00:25:06 +0000391 Qualifiers::ObjCLifetime lifetime =
392 variable->getType().getObjCLifetime();
393 if (lifetime) {
John McCall31168b02011-06-15 23:02:42 +0000394 switch (lifetime) {
395 case Qualifiers::OCL_None: llvm_unreachable("impossible");
396 case Qualifiers::OCL_ExplicitNone:
397 case Qualifiers::OCL_Autoreleasing:
398 break;
John McCall351762c2011-02-07 10:33:21 +0000399
John McCall31168b02011-06-15 23:02:42 +0000400 case Qualifiers::OCL_Strong:
401 case Qualifiers::OCL_Weak:
402 info.NeedsCopyDispose = true;
403 }
404
405 // Block pointers require copy/dispose. So do Objective-C pointers.
406 } else if (variable->getType()->isObjCRetainableType()) {
John McCall00b2bbb2015-11-19 02:28:03 +0000407 // But honor the inert __unsafe_unretained qualifier, which doesn't
408 // actually make it into the type system.
409 if (variable->getType()->isObjCInertUnsafeUnretainedType()) {
410 lifetime = Qualifiers::OCL_ExplicitNone;
411 } else {
412 info.NeedsCopyDispose = true;
413 // used for mrr below.
414 lifetime = Qualifiers::OCL_Strong;
415 }
John McCall351762c2011-02-07 10:33:21 +0000416
417 // So do types that require non-trivial copy construction.
Aaron Ballman9371dd22014-03-14 18:34:04 +0000418 } else if (CI.hasCopyExpr()) {
John McCall351762c2011-02-07 10:33:21 +0000419 info.NeedsCopyDispose = true;
420 info.HasCXXObject = true;
421
422 // And so do types with destructors.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000423 } else if (CGM.getLangOpts().CPlusPlus) {
John McCall351762c2011-02-07 10:33:21 +0000424 if (const CXXRecordDecl *record =
425 variable->getType()->getAsCXXRecordDecl()) {
426 if (!record->hasTrivialDestructor()) {
427 info.HasCXXObject = true;
428 info.NeedsCopyDispose = true;
429 }
430 }
431 }
432
Fariborz Jahanian10317ea2011-11-02 22:53:43 +0000433 QualType VT = variable->getType();
Fariborz Jahanianf0cda632011-10-31 23:44:33 +0000434 CharUnits size = C.getTypeSizeInChars(VT);
Fariborz Jahanian10317ea2011-11-02 22:53:43 +0000435 CharUnits align = C.getDeclAlign(variable);
Fariborz Jahanianf0cda632011-10-31 23:44:33 +0000436
John McCall351762c2011-02-07 10:33:21 +0000437 maxFieldAlign = std::max(maxFieldAlign, align);
438
Jay Foad7c57be32011-07-11 09:56:20 +0000439 llvm::Type *llvmType =
Fariborz Jahanianf0cda632011-10-31 23:44:33 +0000440 CGM.getTypes().ConvertTypeForMem(VT);
441
Aaron Ballman9371dd22014-03-14 18:34:04 +0000442 layout.push_back(BlockLayoutChunk(align, size, lifetime, &CI, llvmType));
John McCall351762c2011-02-07 10:33:21 +0000443 }
444
445 // If that was everything, we're done here.
446 if (layout.empty()) {
447 info.StructureType =
448 llvm::StructType::get(CGM.getLLVMContext(), elementTypes, true);
449 info.CanBeGlobal = true;
450 return;
451 }
452
453 // Sort the layout by alignment. We have to use a stable sort here
454 // to get reproducible results. There should probably be an
455 // llvm::array_pod_stable_sort.
456 std::stable_sort(layout.begin(), layout.end());
Fariborz Jahanian4cf177e2012-12-04 17:20:57 +0000457
458 // Needed for blocks layout info.
459 info.BlockHeaderForcedGapOffset = info.BlockSize;
460 info.BlockHeaderForcedGapSize = CharUnits::Zero();
461
John McCall351762c2011-02-07 10:33:21 +0000462 CharUnits &blockSize = info.BlockSize;
463 info.BlockAlign = std::max(maxFieldAlign, info.BlockAlign);
464
465 // Assuming that the first byte in the header is maximally aligned,
466 // get the alignment of the first byte following the header.
467 CharUnits endAlign = getLowBit(blockSize);
468
469 // If the end of the header isn't satisfactorily aligned for the
470 // maximum thing, look for things that are okay with the header-end
471 // alignment, and keep appending them until we get something that's
472 // aligned right. This algorithm is only guaranteed optimal if
473 // that condition is satisfied at some point; otherwise we can get
474 // things like:
475 // header // next byte has alignment 4
476 // something_with_size_5; // next byte has alignment 1
477 // something_with_alignment_8;
478 // which has 7 bytes of padding, as opposed to the naive solution
479 // which might have less (?).
480 if (endAlign < maxFieldAlign) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000481 SmallVectorImpl<BlockLayoutChunk>::iterator
John McCall351762c2011-02-07 10:33:21 +0000482 li = layout.begin() + 1, le = layout.end();
483
484 // Look for something that the header end is already
485 // satisfactorily aligned for.
486 for (; li != le && endAlign < li->Alignment; ++li)
487 ;
488
489 // If we found something that's naturally aligned for the end of
490 // the header, keep adding things...
491 if (li != le) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000492 SmallVectorImpl<BlockLayoutChunk>::iterator first = li;
John McCall351762c2011-02-07 10:33:21 +0000493 for (; li != le; ++li) {
494 assert(endAlign >= li->Alignment);
495
John McCall7f416cc2015-09-08 08:05:57 +0000496 li->setIndex(info, elementTypes.size(), blockSize);
John McCall351762c2011-02-07 10:33:21 +0000497 elementTypes.push_back(li->Type);
498 blockSize += li->Size;
499 endAlign = getLowBit(blockSize);
500
501 // ...until we get to the alignment of the maximum field.
Fariborz Jahanian4cf177e2012-12-04 17:20:57 +0000502 if (endAlign >= maxFieldAlign) {
John McCall351762c2011-02-07 10:33:21 +0000503 break;
Fariborz Jahanian4cf177e2012-12-04 17:20:57 +0000504 }
John McCall351762c2011-02-07 10:33:21 +0000505 }
John McCall351762c2011-02-07 10:33:21 +0000506 // Don't re-append everything we just appended.
507 layout.erase(first, li);
508 }
509 }
510
John McCallac0350a2012-04-26 21:14:42 +0000511 assert(endAlign == getLowBit(blockSize));
Fariborz Jahanian4cf177e2012-12-04 17:20:57 +0000512
John McCall351762c2011-02-07 10:33:21 +0000513 // At this point, we just have to add padding if the end align still
514 // isn't aligned right.
515 if (endAlign < maxFieldAlign) {
Rui Ueyama83aa9792016-01-14 21:00:27 +0000516 CharUnits newBlockSize = blockSize.alignTo(maxFieldAlign);
John McCallac0350a2012-04-26 21:14:42 +0000517 CharUnits padding = newBlockSize - blockSize;
John McCall351762c2011-02-07 10:33:21 +0000518
John McCall7f416cc2015-09-08 08:05:57 +0000519 // If we haven't yet added any fields, remember that there was an
520 // initial gap; this need to go into the block layout bit map.
521 if (blockSize == info.BlockHeaderForcedGapOffset) {
522 info.BlockHeaderForcedGapSize = padding;
523 }
524
John McCalle3dc1702011-02-15 09:22:45 +0000525 elementTypes.push_back(llvm::ArrayType::get(CGM.Int8Ty,
526 padding.getQuantity()));
John McCallac0350a2012-04-26 21:14:42 +0000527 blockSize = newBlockSize;
John McCall1db0a2f2012-05-01 20:28:00 +0000528 endAlign = getLowBit(blockSize); // might be > maxFieldAlign
John McCall351762c2011-02-07 10:33:21 +0000529 }
530
John McCall1db0a2f2012-05-01 20:28:00 +0000531 assert(endAlign >= maxFieldAlign);
John McCallac0350a2012-04-26 21:14:42 +0000532 assert(endAlign == getLowBit(blockSize));
John McCall351762c2011-02-07 10:33:21 +0000533 // Slam everything else on now. This works because they have
534 // strictly decreasing alignment and we expect that size is always a
535 // multiple of alignment.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000536 for (SmallVectorImpl<BlockLayoutChunk>::iterator
John McCall351762c2011-02-07 10:33:21 +0000537 li = layout.begin(), le = layout.end(); li != le; ++li) {
Fariborz Jahanian9c56fc92014-08-12 15:51:49 +0000538 if (endAlign < li->Alignment) {
539 // size may not be multiple of alignment. This can only happen with
540 // an over-aligned variable. We will be adding a padding field to
541 // make the size be multiple of alignment.
542 CharUnits padding = li->Alignment - endAlign;
543 elementTypes.push_back(llvm::ArrayType::get(CGM.Int8Ty,
544 padding.getQuantity()));
545 blockSize += padding;
546 endAlign = getLowBit(blockSize);
547 }
John McCall351762c2011-02-07 10:33:21 +0000548 assert(endAlign >= li->Alignment);
John McCall7f416cc2015-09-08 08:05:57 +0000549 li->setIndex(info, elementTypes.size(), blockSize);
John McCall351762c2011-02-07 10:33:21 +0000550 elementTypes.push_back(li->Type);
551 blockSize += li->Size;
552 endAlign = getLowBit(blockSize);
553 }
554
555 info.StructureType =
556 llvm::StructType::get(CGM.getLLVMContext(), elementTypes, true);
557}
558
John McCall08ef4662011-11-10 08:15:53 +0000559/// Enter the scope of a block. This should be run at the entrance to
560/// a full-expression so that the block's cleanups are pushed at the
561/// right place in the stack.
562static void enterBlockScope(CodeGenFunction &CGF, BlockDecl *block) {
John McCall8c38d352012-04-13 18:44:05 +0000563 assert(CGF.HaveInsertPoint());
564
John McCall08ef4662011-11-10 08:15:53 +0000565 // Allocate the block info and place it at the head of the list.
566 CGBlockInfo &blockInfo =
567 *new CGBlockInfo(block, CGF.CurFn->getName());
568 blockInfo.NextBlockInfo = CGF.FirstBlockInfo;
569 CGF.FirstBlockInfo = &blockInfo;
570
571 // Compute information about the layout, etc., of this block,
572 // pushing cleanups as necessary.
Richard Smithdafff942012-01-14 04:30:29 +0000573 computeBlockInfo(CGF.CGM, &CGF, blockInfo);
John McCall08ef4662011-11-10 08:15:53 +0000574
575 // Nothing else to do if it can be global.
576 if (blockInfo.CanBeGlobal) return;
577
578 // Make the allocation for the block.
John McCall7f416cc2015-09-08 08:05:57 +0000579 blockInfo.LocalAddress = CGF.CreateTempAlloca(blockInfo.StructureType,
580 blockInfo.BlockAlign, "block");
John McCall08ef4662011-11-10 08:15:53 +0000581
582 // If there are cleanups to emit, enter them (but inactive).
583 if (!blockInfo.NeedsCopyDispose) return;
584
585 // Walk through the captures (in order) and find the ones not
586 // captured by constant.
Aaron Ballman9371dd22014-03-14 18:34:04 +0000587 for (const auto &CI : block->captures()) {
John McCall08ef4662011-11-10 08:15:53 +0000588 // Ignore __block captures; there's nothing special in the
589 // on-stack block that we need to do for them.
Aaron Ballman9371dd22014-03-14 18:34:04 +0000590 if (CI.isByRef()) continue;
John McCall08ef4662011-11-10 08:15:53 +0000591
592 // Ignore variables that are constant-captured.
Aaron Ballman9371dd22014-03-14 18:34:04 +0000593 const VarDecl *variable = CI.getVariable();
John McCall08ef4662011-11-10 08:15:53 +0000594 CGBlockInfo::Capture &capture = blockInfo.getCapture(variable);
595 if (capture.isConstant()) continue;
596
597 // Ignore objects that aren't destructed.
598 QualType::DestructionKind dtorKind =
599 variable->getType().isDestructedType();
600 if (dtorKind == QualType::DK_none) continue;
601
602 CodeGenFunction::Destroyer *destroyer;
603
604 // Block captures count as local values and have imprecise semantics.
605 // They also can't be arrays, so need to worry about that.
606 if (dtorKind == QualType::DK_objc_strong_lifetime) {
Peter Collingbourne1425b452012-01-26 03:33:36 +0000607 destroyer = CodeGenFunction::destroyARCStrongImprecise;
John McCall08ef4662011-11-10 08:15:53 +0000608 } else {
Peter Collingbourne1425b452012-01-26 03:33:36 +0000609 destroyer = CGF.getDestroyer(dtorKind);
John McCall08ef4662011-11-10 08:15:53 +0000610 }
611
612 // GEP down to the address.
John McCall7f416cc2015-09-08 08:05:57 +0000613 Address addr = CGF.Builder.CreateStructGEP(blockInfo.LocalAddress,
614 capture.getIndex(),
615 capture.getOffset());
John McCall08ef4662011-11-10 08:15:53 +0000616
John McCallf4beacd2011-11-10 10:43:54 +0000617 // We can use that GEP as the dominating IP.
618 if (!blockInfo.DominatingIP)
John McCall7f416cc2015-09-08 08:05:57 +0000619 blockInfo.DominatingIP = cast<llvm::Instruction>(addr.getPointer());
John McCallf4beacd2011-11-10 10:43:54 +0000620
John McCall08ef4662011-11-10 08:15:53 +0000621 CleanupKind cleanupKind = InactiveNormalCleanup;
622 bool useArrayEHCleanup = CGF.needsEHCleanup(dtorKind);
623 if (useArrayEHCleanup)
624 cleanupKind = InactiveNormalAndEHCleanup;
625
626 CGF.pushDestroy(cleanupKind, addr, variable->getType(),
Peter Collingbourne1425b452012-01-26 03:33:36 +0000627 destroyer, useArrayEHCleanup);
John McCall08ef4662011-11-10 08:15:53 +0000628
629 // Remember where that cleanup was.
630 capture.setCleanup(CGF.EHStack.stable_begin());
631 }
632}
633
634/// Enter a full-expression with a non-trivial number of objects to
635/// clean up. This is in this file because, at the moment, the only
636/// kind of cleanup object is a BlockDecl*.
637void CodeGenFunction::enterNonTrivialFullExpression(const ExprWithCleanups *E) {
638 assert(E->getNumObjects() != 0);
639 ArrayRef<ExprWithCleanups::CleanupObject> cleanups = E->getObjects();
640 for (ArrayRef<ExprWithCleanups::CleanupObject>::iterator
641 i = cleanups.begin(), e = cleanups.end(); i != e; ++i) {
642 enterBlockScope(*this, *i);
643 }
644}
645
646/// Find the layout for the given block in a linked list and remove it.
647static CGBlockInfo *findAndRemoveBlockInfo(CGBlockInfo **head,
648 const BlockDecl *block) {
649 while (true) {
650 assert(head && *head);
651 CGBlockInfo *cur = *head;
652
653 // If this is the block we're looking for, splice it out of the list.
654 if (cur->getBlockDecl() == block) {
655 *head = cur->NextBlockInfo;
656 return cur;
657 }
658
659 head = &cur->NextBlockInfo;
660 }
661}
662
663/// Destroy a chain of block layouts.
664void CodeGenFunction::destroyBlockInfos(CGBlockInfo *head) {
665 assert(head && "destroying an empty chain");
666 do {
667 CGBlockInfo *cur = head;
668 head = cur->NextBlockInfo;
669 delete cur;
Craig Topper8a13c412014-05-21 05:09:00 +0000670 } while (head != nullptr);
John McCall08ef4662011-11-10 08:15:53 +0000671}
672
John McCall351762c2011-02-07 10:33:21 +0000673/// Emit a block literal expression in the current function.
674llvm::Value *CodeGenFunction::EmitBlockLiteral(const BlockExpr *blockExpr) {
John McCall08ef4662011-11-10 08:15:53 +0000675 // If the block has no captures, we won't have a pre-computed
676 // layout for it.
677 if (!blockExpr->getBlockDecl()->hasCaptures()) {
678 CGBlockInfo blockInfo(blockExpr->getBlockDecl(), CurFn->getName());
Richard Smithdafff942012-01-14 04:30:29 +0000679 computeBlockInfo(CGM, this, blockInfo);
John McCall08ef4662011-11-10 08:15:53 +0000680 blockInfo.BlockExpression = blockExpr;
681 return EmitBlockLiteral(blockInfo);
682 }
John McCall351762c2011-02-07 10:33:21 +0000683
John McCall08ef4662011-11-10 08:15:53 +0000684 // Find the block info for this block and take ownership of it.
Ahmed Charlesb8984322014-03-07 20:03:18 +0000685 std::unique_ptr<CGBlockInfo> blockInfo;
John McCall08ef4662011-11-10 08:15:53 +0000686 blockInfo.reset(findAndRemoveBlockInfo(&FirstBlockInfo,
687 blockExpr->getBlockDecl()));
John McCall351762c2011-02-07 10:33:21 +0000688
John McCall08ef4662011-11-10 08:15:53 +0000689 blockInfo->BlockExpression = blockExpr;
690 return EmitBlockLiteral(*blockInfo);
691}
692
693llvm::Value *CodeGenFunction::EmitBlockLiteral(const CGBlockInfo &blockInfo) {
694 // Using the computed layout, generate the actual block function.
Eli Friedman98b01ed2012-03-01 04:01:32 +0000695 bool isLambdaConv = blockInfo.getBlockDecl()->isConversionFromLambda();
John McCall351762c2011-02-07 10:33:21 +0000696 llvm::Constant *blockFn
Fariborz Jahanian63628032012-06-26 16:06:38 +0000697 = CodeGenFunction(CGM, true).GenerateBlockFunction(CurGD, blockInfo,
John McCalldec348f72013-05-03 07:33:41 +0000698 LocalDeclMap,
699 isLambdaConv);
John McCalle3dc1702011-02-15 09:22:45 +0000700 blockFn = llvm::ConstantExpr::getBitCast(blockFn, VoidPtrTy);
John McCall351762c2011-02-07 10:33:21 +0000701
702 // If there is nothing to capture, we can emit this as a global block.
703 if (blockInfo.CanBeGlobal)
704 return buildGlobalBlock(CGM, blockInfo, blockFn);
705
706 // Otherwise, we have to emit this as a local block.
707
708 llvm::Constant *isa = CGM.getNSConcreteStackBlock();
John McCalle3dc1702011-02-15 09:22:45 +0000709 isa = llvm::ConstantExpr::getBitCast(isa, VoidPtrTy);
John McCall351762c2011-02-07 10:33:21 +0000710
711 // Build the block descriptor.
712 llvm::Constant *descriptor = buildBlockDescriptor(CGM, blockInfo);
713
John McCall7f416cc2015-09-08 08:05:57 +0000714 Address blockAddr = blockInfo.LocalAddress;
715 assert(blockAddr.isValid() && "block has no address!");
John McCall351762c2011-02-07 10:33:21 +0000716
717 // Compute the initial on-stack block flags.
John McCallad7c5c12011-02-08 08:22:06 +0000718 BlockFlags flags = BLOCK_HAS_SIGNATURE;
Fariborz Jahanian23290b02012-11-01 18:32:55 +0000719 if (blockInfo.HasCapturedVariableLayout) flags |= BLOCK_HAS_EXTENDED_LAYOUT;
John McCall351762c2011-02-07 10:33:21 +0000720 if (blockInfo.NeedsCopyDispose) flags |= BLOCK_HAS_COPY_DISPOSE;
721 if (blockInfo.HasCXXObject) flags |= BLOCK_HAS_CXX_OBJ;
John McCall85915252011-03-09 08:39:33 +0000722 if (blockInfo.UsesStret) flags |= BLOCK_USE_STRET;
John McCall351762c2011-02-07 10:33:21 +0000723
John McCall7f416cc2015-09-08 08:05:57 +0000724 auto projectField =
725 [&](unsigned index, CharUnits offset, const Twine &name) -> Address {
726 return Builder.CreateStructGEP(blockAddr, index, offset, name);
727 };
728 auto storeField =
729 [&](llvm::Value *value, unsigned index, CharUnits offset,
730 const Twine &name) {
731 Builder.CreateStore(value, projectField(index, offset, name));
732 };
733
734 // Initialize the block header.
735 {
736 // We assume all the header fields are densely packed.
737 unsigned index = 0;
738 CharUnits offset;
739 auto addHeaderField =
740 [&](llvm::Value *value, CharUnits size, const Twine &name) {
741 storeField(value, index, offset, name);
742 offset += size;
743 index++;
744 };
745
746 addHeaderField(isa, getPointerSize(), "block.isa");
747 addHeaderField(llvm::ConstantInt::get(IntTy, flags.getBitMask()),
748 getIntSize(), "block.flags");
749 addHeaderField(llvm::ConstantInt::get(IntTy, 0),
750 getIntSize(), "block.reserved");
751 addHeaderField(blockFn, getPointerSize(), "block.invoke");
752 addHeaderField(descriptor, getPointerSize(), "block.descriptor");
753 }
John McCall351762c2011-02-07 10:33:21 +0000754
755 // Finally, capture all the values into the block.
756 const BlockDecl *blockDecl = blockInfo.getBlockDecl();
757
758 // First, 'this'.
759 if (blockDecl->capturesCXXThis()) {
John McCall7f416cc2015-09-08 08:05:57 +0000760 Address addr = projectField(blockInfo.CXXThisIndex, blockInfo.CXXThisOffset,
761 "block.captured-this.addr");
John McCall351762c2011-02-07 10:33:21 +0000762 Builder.CreateStore(LoadCXXThis(), addr);
763 }
764
765 // Next, captured variables.
Aaron Ballman9371dd22014-03-14 18:34:04 +0000766 for (const auto &CI : blockDecl->captures()) {
767 const VarDecl *variable = CI.getVariable();
John McCall351762c2011-02-07 10:33:21 +0000768 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable);
769
770 // Ignore constant captures.
771 if (capture.isConstant()) continue;
772
773 QualType type = variable->getType();
774
775 // This will be a [[type]]*, except that a byref entry will just be
776 // an i8**.
John McCall7f416cc2015-09-08 08:05:57 +0000777 Address blockField =
778 projectField(capture.getIndex(), capture.getOffset(), "block.captured");
John McCall351762c2011-02-07 10:33:21 +0000779
780 // Compute the address of the thing we're going to move into the
781 // block literal.
John McCall7f416cc2015-09-08 08:05:57 +0000782 Address src = Address::invalid();
Aaron Ballman9371dd22014-03-14 18:34:04 +0000783 if (BlockInfo && CI.isNested()) {
John McCall351762c2011-02-07 10:33:21 +0000784 // We need to use the capture from the enclosing block.
785 const CGBlockInfo::Capture &enclosingCapture =
786 BlockInfo->getCapture(variable);
787
788 // This is a [[type]]*, except that a byref entry wil just be an i8**.
John McCall7f416cc2015-09-08 08:05:57 +0000789 src = Builder.CreateStructGEP(LoadBlockStruct(),
John McCall351762c2011-02-07 10:33:21 +0000790 enclosingCapture.getIndex(),
John McCall7f416cc2015-09-08 08:05:57 +0000791 enclosingCapture.getOffset(),
John McCall351762c2011-02-07 10:33:21 +0000792 "block.capture.addr");
Eli Friedman98b01ed2012-03-01 04:01:32 +0000793 } else if (blockDecl->isConversionFromLambda()) {
Eli Friedman2495ab02012-02-25 02:48:22 +0000794 // The lambda capture in a lambda's conversion-to-block-pointer is
Eli Friedman98b01ed2012-03-01 04:01:32 +0000795 // special; we'll simply emit it directly.
John McCall7f416cc2015-09-08 08:05:57 +0000796 src = Address::invalid();
John McCall351762c2011-02-07 10:33:21 +0000797 } else {
John McCalla37c2fa2013-03-04 06:32:36 +0000798 // Just look it up in the locals map, which will give us back a
799 // [[type]]*. If that doesn't work, do the more elaborate DRE
800 // emission.
John McCall7f416cc2015-09-08 08:05:57 +0000801 auto it = LocalDeclMap.find(variable);
802 if (it != LocalDeclMap.end()) {
803 src = it->second;
804 } else {
Alexey Bataev19acc3d2015-01-12 10:17:46 +0000805 DeclRefExpr declRef(
806 const_cast<VarDecl *>(variable),
807 /*RefersToEnclosingVariableOrCapture*/ CI.isNested(), type,
808 VK_LValue, SourceLocation());
John McCalla37c2fa2013-03-04 06:32:36 +0000809 src = EmitDeclRefLValue(&declRef).getAddress();
810 }
John McCall351762c2011-02-07 10:33:21 +0000811 }
812
813 // For byrefs, we just write the pointer to the byref struct into
814 // the block field. There's no need to chase the forwarding
815 // pointer at this point, since we're building something that will
816 // live a shorter life than the stack byref anyway.
Aaron Ballman9371dd22014-03-14 18:34:04 +0000817 if (CI.isByRef()) {
John McCalle3dc1702011-02-15 09:22:45 +0000818 // Get a void* that points to the byref struct.
John McCall7f416cc2015-09-08 08:05:57 +0000819 llvm::Value *byrefPointer;
Aaron Ballman9371dd22014-03-14 18:34:04 +0000820 if (CI.isNested())
John McCall7f416cc2015-09-08 08:05:57 +0000821 byrefPointer = Builder.CreateLoad(src, "byref.capture");
John McCall351762c2011-02-07 10:33:21 +0000822 else
John McCall7f416cc2015-09-08 08:05:57 +0000823 byrefPointer = Builder.CreateBitCast(src.getPointer(), VoidPtrTy);
John McCall351762c2011-02-07 10:33:21 +0000824
John McCalle3dc1702011-02-15 09:22:45 +0000825 // Write that void* into the capture field.
John McCall7f416cc2015-09-08 08:05:57 +0000826 Builder.CreateStore(byrefPointer, blockField);
John McCall351762c2011-02-07 10:33:21 +0000827
828 // If we have a copy constructor, evaluate that into the block field.
Aaron Ballman9371dd22014-03-14 18:34:04 +0000829 } else if (const Expr *copyExpr = CI.getCopyExpr()) {
Eli Friedman98b01ed2012-03-01 04:01:32 +0000830 if (blockDecl->isConversionFromLambda()) {
831 // If we have a lambda conversion, emit the expression
832 // directly into the block instead.
Eli Friedman98b01ed2012-03-01 04:01:32 +0000833 AggValueSlot Slot =
John McCall7f416cc2015-09-08 08:05:57 +0000834 AggValueSlot::forAddr(blockField, Qualifiers(),
Eli Friedman98b01ed2012-03-01 04:01:32 +0000835 AggValueSlot::IsDestructed,
836 AggValueSlot::DoesNotNeedGCBarriers,
Chad Rosier615ed1a2012-03-29 17:37:10 +0000837 AggValueSlot::IsNotAliased);
Eli Friedman98b01ed2012-03-01 04:01:32 +0000838 EmitAggExpr(copyExpr, Slot);
839 } else {
840 EmitSynthesizedCXXCopyCtor(blockField, src, copyExpr);
841 }
John McCall351762c2011-02-07 10:33:21 +0000842
843 // If it's a reference variable, copy the reference into the block field.
Fariborz Jahanian10317ea2011-11-02 22:53:43 +0000844 } else if (type->isReferenceType()) {
John McCall7f416cc2015-09-08 08:05:57 +0000845 llvm::Value *ref = Builder.CreateLoad(src, "ref.val");
846 Builder.CreateStore(ref, blockField);
John McCall4d14a902013-04-08 23:27:49 +0000847
848 // If this is an ARC __strong block-pointer variable, don't do a
849 // block copy.
850 //
851 // TODO: this can be generalized into the normal initialization logic:
852 // we should never need to do a block-copy when initializing a local
853 // variable, because the local variable's lifetime should be strictly
854 // contained within the stack block's.
855 } else if (type.getObjCLifetime() == Qualifiers::OCL_Strong &&
856 type->isBlockPointerType()) {
857 // Load the block and do a simple retain.
John McCall7f416cc2015-09-08 08:05:57 +0000858 llvm::Value *value = Builder.CreateLoad(src, "block.captured_block");
John McCall4d14a902013-04-08 23:27:49 +0000859 value = EmitARCRetainNonBlock(value);
860
861 // Do a primitive store to the block field.
John McCall7f416cc2015-09-08 08:05:57 +0000862 Builder.CreateStore(value, blockField);
John McCall351762c2011-02-07 10:33:21 +0000863
864 // Otherwise, fake up a POD copy into the block field.
865 } else {
John McCall31168b02011-06-15 23:02:42 +0000866 // Fake up a new variable so that EmitScalarInit doesn't think
867 // we're referring to the variable in its own initializer.
Craig Topper8a13c412014-05-21 05:09:00 +0000868 ImplicitParamDecl blockFieldPseudoVar(getContext(), /*DC*/ nullptr,
869 SourceLocation(), /*name*/ nullptr,
870 type);
John McCall31168b02011-06-15 23:02:42 +0000871
John McCall93be3f72011-02-07 18:37:40 +0000872 // We use one of these or the other depending on whether the
873 // reference is nested.
Alexey Bataev19acc3d2015-01-12 10:17:46 +0000874 DeclRefExpr declRef(const_cast<VarDecl *>(variable),
875 /*RefersToEnclosingVariableOrCapture*/ CI.isNested(),
876 type, VK_LValue, SourceLocation());
John McCall93be3f72011-02-07 18:37:40 +0000877
Fariborz Jahanian10317ea2011-11-02 22:53:43 +0000878 ImplicitCastExpr l2r(ImplicitCastExpr::OnStack, type, CK_LValueToRValue,
John McCall113bee02012-03-10 09:33:50 +0000879 &declRef, VK_RValue);
David Blaikie7f138812014-12-09 22:04:13 +0000880 // FIXME: Pass a specific location for the expr init so that the store is
881 // attributed to a reasonable location - otherwise it may be attributed to
882 // locations of subexpressions in the initialization.
John McCall1553b192011-06-16 04:16:24 +0000883 EmitExprAsInit(&l2r, &blockFieldPseudoVar,
John McCall7f416cc2015-09-08 08:05:57 +0000884 MakeAddrLValue(blockField, type, AlignmentSource::Decl),
David Blaikie66e41972015-01-14 07:38:27 +0000885 /*captured by init*/ false);
John McCall351762c2011-02-07 10:33:21 +0000886 }
887
John McCall08ef4662011-11-10 08:15:53 +0000888 // Activate the cleanup if layout pushed one.
Aaron Ballman9371dd22014-03-14 18:34:04 +0000889 if (!CI.isByRef()) {
John McCall08ef4662011-11-10 08:15:53 +0000890 EHScopeStack::stable_iterator cleanup = capture.getCleanup();
891 if (cleanup.isValid())
John McCallf4beacd2011-11-10 10:43:54 +0000892 ActivateCleanupBlock(cleanup, blockInfo.DominatingIP);
John McCall31168b02011-06-15 23:02:42 +0000893 }
John McCall351762c2011-02-07 10:33:21 +0000894 }
895
896 // Cast to the converted block-pointer type, which happens (somewhat
897 // unfortunately) to be a pointer to function type.
898 llvm::Value *result =
John McCall7f416cc2015-09-08 08:05:57 +0000899 Builder.CreateBitCast(blockAddr.getPointer(),
John McCall351762c2011-02-07 10:33:21 +0000900 ConvertType(blockInfo.getBlockExpr()->getType()));
John McCall3882ace2011-01-05 12:14:39 +0000901
John McCall351762c2011-02-07 10:33:21 +0000902 return result;
Mike Stump85284ba2009-02-13 16:19:19 +0000903}
904
905
Chris Lattnera5f58b02011-07-09 17:41:47 +0000906llvm::Type *CodeGenModule::getBlockDescriptorType() {
Mike Stump650c9322009-02-13 15:16:56 +0000907 if (BlockDescriptorType)
908 return BlockDescriptorType;
909
Chris Lattnera5f58b02011-07-09 17:41:47 +0000910 llvm::Type *UnsignedLongTy =
Mike Stump650c9322009-02-13 15:16:56 +0000911 getTypes().ConvertType(getContext().UnsignedLongTy);
Mike Stumpb7074c02009-02-13 15:32:32 +0000912
Mike Stump650c9322009-02-13 15:16:56 +0000913 // struct __block_descriptor {
914 // unsigned long reserved;
915 // unsigned long block_size;
Blaine Garstfc83aa02010-02-23 21:51:17 +0000916 //
917 // // later, the following will be added
918 //
919 // struct {
920 // void (*copyHelper)();
921 // void (*copyHelper)();
922 // } helpers; // !!! optional
923 //
924 // const char *signature; // the block signature
925 // const char *layout; // reserved
Mike Stump650c9322009-02-13 15:16:56 +0000926 // };
Chris Lattner845511f2011-06-18 22:49:11 +0000927 BlockDescriptorType =
Chris Lattner5ec04a52011-08-12 17:43:31 +0000928 llvm::StructType::create("struct.__block_descriptor",
Reid Kleckneree7cf842014-12-01 22:02:27 +0000929 UnsignedLongTy, UnsignedLongTy, nullptr);
Mike Stump650c9322009-02-13 15:16:56 +0000930
John McCall351762c2011-02-07 10:33:21 +0000931 // Now form a pointer to that.
932 BlockDescriptorType = llvm::PointerType::getUnqual(BlockDescriptorType);
Mike Stump650c9322009-02-13 15:16:56 +0000933 return BlockDescriptorType;
Anders Carlsson2437cbf2009-02-12 00:39:25 +0000934}
935
Chris Lattnera5f58b02011-07-09 17:41:47 +0000936llvm::Type *CodeGenModule::getGenericBlockLiteralType() {
Mike Stump005c9a62009-02-13 15:25:34 +0000937 if (GenericBlockLiteralType)
938 return GenericBlockLiteralType;
939
Chris Lattnera5f58b02011-07-09 17:41:47 +0000940 llvm::Type *BlockDescPtrTy = getBlockDescriptorType();
Mike Stumpb7074c02009-02-13 15:32:32 +0000941
Mike Stump005c9a62009-02-13 15:25:34 +0000942 // struct __block_literal_generic {
Mike Stump5d2534ad2009-02-19 01:01:04 +0000943 // void *__isa;
944 // int __flags;
945 // int __reserved;
946 // void (*__invoke)(void *);
947 // struct __block_descriptor *__descriptor;
Mike Stump005c9a62009-02-13 15:25:34 +0000948 // };
Chris Lattnera5f58b02011-07-09 17:41:47 +0000949 GenericBlockLiteralType =
Chris Lattner5ec04a52011-08-12 17:43:31 +0000950 llvm::StructType::create("struct.__block_literal_generic",
951 VoidPtrTy, IntTy, IntTy, VoidPtrTy,
Reid Kleckneree7cf842014-12-01 22:02:27 +0000952 BlockDescPtrTy, nullptr);
Mike Stumpb7074c02009-02-13 15:32:32 +0000953
Mike Stump005c9a62009-02-13 15:25:34 +0000954 return GenericBlockLiteralType;
Anders Carlsson2437cbf2009-02-12 00:39:25 +0000955}
956
Nick Lewycky2d84e842013-10-02 02:29:49 +0000957RValue CodeGenFunction::EmitBlockCallExpr(const CallExpr *E,
Anders Carlssonbfb36712009-12-24 21:13:40 +0000958 ReturnValueSlot ReturnValue) {
Mike Stumpb7074c02009-02-13 15:32:32 +0000959 const BlockPointerType *BPT =
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000960 E->getCallee()->getType()->getAs<BlockPointerType>();
Mike Stumpb7074c02009-02-13 15:32:32 +0000961
Anders Carlsson2437cbf2009-02-12 00:39:25 +0000962 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
963
964 // Get a pointer to the generic block literal.
Chris Lattner2192fe52011-07-18 04:24:23 +0000965 llvm::Type *BlockLiteralTy =
Owen Anderson9793f0e2009-07-29 22:16:19 +0000966 llvm::PointerType::getUnqual(CGM.getGenericBlockLiteralType());
Anders Carlsson2437cbf2009-02-12 00:39:25 +0000967
968 // Bitcast the callee to a block literal.
Mike Stumpb7074c02009-02-13 15:32:32 +0000969 llvm::Value *BlockLiteral =
Anders Carlsson2437cbf2009-02-12 00:39:25 +0000970 Builder.CreateBitCast(Callee, BlockLiteralTy, "block.literal");
971
972 // Get the function pointer from the literal.
John McCall7f416cc2015-09-08 08:05:57 +0000973 llvm::Value *FuncPtr =
974 Builder.CreateStructGEP(CGM.getGenericBlockLiteralType(), BlockLiteral, 3);
Anders Carlsson2437cbf2009-02-12 00:39:25 +0000975
Benjamin Kramer76399eb2011-09-27 21:06:10 +0000976 BlockLiteral = Builder.CreateBitCast(BlockLiteral, VoidPtrTy);
Mike Stumpb7074c02009-02-13 15:32:32 +0000977
Anders Carlsson2437cbf2009-02-12 00:39:25 +0000978 // Add the block literal.
Anders Carlsson2437cbf2009-02-12 00:39:25 +0000979 CallArgList Args;
John McCall9dc0db22011-05-15 01:53:33 +0000980 Args.add(RValue::get(BlockLiteral), getContext().VoidPtrTy);
Mike Stumpb7074c02009-02-13 15:32:32 +0000981
Anders Carlsson479e6fc2009-04-08 23:13:16 +0000982 QualType FnType = BPT->getPointeeType();
983
Anders Carlsson2437cbf2009-02-12 00:39:25 +0000984 // And the rest of the arguments.
David Blaikief05779e2015-07-21 18:37:18 +0000985 EmitCallArgs(Args, FnType->getAs<FunctionProtoType>(), E->arguments());
Mike Stumpb7074c02009-02-13 15:32:32 +0000986
Anders Carlsson5f50c652009-04-07 22:10:22 +0000987 // Load the function.
John McCall7f416cc2015-09-08 08:05:57 +0000988 llvm::Value *Func = Builder.CreateAlignedLoad(FuncPtr, getPointerAlign());
Anders Carlsson5f50c652009-04-07 22:10:22 +0000989
John McCall85915252011-03-09 08:39:33 +0000990 const FunctionType *FuncTy = FnType->castAs<FunctionType>();
John McCalla729c622012-02-17 03:33:10 +0000991 const CGFunctionInfo &FnInfo =
John McCallc818bbb2012-12-07 07:03:17 +0000992 CGM.getTypes().arrangeBlockFunctionCall(Args, FuncTy);
Mike Stump11289f42009-09-09 15:08:12 +0000993
Anders Carlsson5f50c652009-04-07 22:10:22 +0000994 // Cast the function pointer to the right type.
John McCalla729c622012-02-17 03:33:10 +0000995 llvm::Type *BlockFTy = CGM.getTypes().GetFunctionType(FnInfo);
Mike Stump11289f42009-09-09 15:08:12 +0000996
Chris Lattner2192fe52011-07-18 04:24:23 +0000997 llvm::Type *BlockFTyPtr = llvm::PointerType::getUnqual(BlockFTy);
Anders Carlsson5f50c652009-04-07 22:10:22 +0000998 Func = Builder.CreateBitCast(Func, BlockFTyPtr);
Mike Stump11289f42009-09-09 15:08:12 +0000999
Anders Carlsson2437cbf2009-02-12 00:39:25 +00001000 // And call the block.
Anders Carlssonbfb36712009-12-24 21:13:40 +00001001 return EmitCall(FnInfo, Func, ReturnValue, Args);
Anders Carlsson2437cbf2009-02-12 00:39:25 +00001002}
Anders Carlsson6a60fa22009-02-12 17:55:02 +00001003
John McCall7f416cc2015-09-08 08:05:57 +00001004Address CodeGenFunction::GetAddrOfBlockDecl(const VarDecl *variable,
1005 bool isByRef) {
John McCall351762c2011-02-07 10:33:21 +00001006 assert(BlockInfo && "evaluating block ref without block information?");
1007 const CGBlockInfo::Capture &capture = BlockInfo->getCapture(variable);
John McCall87fe5d52010-05-20 01:18:31 +00001008
John McCall351762c2011-02-07 10:33:21 +00001009 // Handle constant captures.
John McCall7f416cc2015-09-08 08:05:57 +00001010 if (capture.isConstant()) return LocalDeclMap.find(variable)->second;
John McCall87fe5d52010-05-20 01:18:31 +00001011
John McCall7f416cc2015-09-08 08:05:57 +00001012 Address addr =
1013 Builder.CreateStructGEP(LoadBlockStruct(), capture.getIndex(),
1014 capture.getOffset(), "block.capture.addr");
John McCall87fe5d52010-05-20 01:18:31 +00001015
John McCall351762c2011-02-07 10:33:21 +00001016 if (isByRef) {
1017 // addr should be a void** right now. Load, then cast the result
1018 // to byref*.
Mike Stump97d01d52009-03-04 03:23:46 +00001019
John McCall7f416cc2015-09-08 08:05:57 +00001020 auto &byrefInfo = getBlockByrefInfo(variable);
1021 addr = Address(Builder.CreateLoad(addr), byrefInfo.ByrefAlignment);
Mike Stump7fe9cc12009-10-21 03:49:08 +00001022
John McCall7f416cc2015-09-08 08:05:57 +00001023 auto byrefPointerType = llvm::PointerType::get(byrefInfo.Type, 0);
1024 addr = Builder.CreateBitCast(addr, byrefPointerType, "byref.addr");
Mike Stump7fe9cc12009-10-21 03:49:08 +00001025
John McCall7f416cc2015-09-08 08:05:57 +00001026 addr = emitBlockByrefAddress(addr, byrefInfo, /*follow*/ true,
1027 variable->getName());
John McCall87fe5d52010-05-20 01:18:31 +00001028 }
1029
John McCall7f416cc2015-09-08 08:05:57 +00001030 if (auto refType = variable->getType()->getAs<ReferenceType>()) {
1031 addr = EmitLoadOfReference(addr, refType);
1032 }
Mike Stump7fe9cc12009-10-21 03:49:08 +00001033
John McCall351762c2011-02-07 10:33:21 +00001034 return addr;
Mike Stump97d01d52009-03-04 03:23:46 +00001035}
1036
Mike Stump2d5a2872009-02-14 22:16:35 +00001037llvm::Constant *
John McCallad7c5c12011-02-08 08:22:06 +00001038CodeGenModule::GetAddrOfGlobalBlock(const BlockExpr *blockExpr,
John McCalle3dc1702011-02-15 09:22:45 +00001039 const char *name) {
John McCall08ef4662011-11-10 08:15:53 +00001040 CGBlockInfo blockInfo(blockExpr->getBlockDecl(), name);
1041 blockInfo.BlockExpression = blockExpr;
Mike Stumpb7074c02009-02-13 15:32:32 +00001042
John McCall351762c2011-02-07 10:33:21 +00001043 // Compute information about the layout, etc., of this block.
Craig Topper8a13c412014-05-21 05:09:00 +00001044 computeBlockInfo(*this, nullptr, blockInfo);
Mike Stumpb7074c02009-02-13 15:32:32 +00001045
John McCall351762c2011-02-07 10:33:21 +00001046 // Using that metadata, generate the actual block function.
1047 llvm::Constant *blockFn;
1048 {
John McCall7f416cc2015-09-08 08:05:57 +00001049 CodeGenFunction::DeclMapTy LocalDeclMap;
John McCallad7c5c12011-02-08 08:22:06 +00001050 blockFn = CodeGenFunction(*this).GenerateBlockFunction(GlobalDecl(),
1051 blockInfo,
John McCalldec348f72013-05-03 07:33:41 +00001052 LocalDeclMap,
Eli Friedman2495ab02012-02-25 02:48:22 +00001053 false);
John McCall351762c2011-02-07 10:33:21 +00001054 }
John McCalle3dc1702011-02-15 09:22:45 +00001055 blockFn = llvm::ConstantExpr::getBitCast(blockFn, VoidPtrTy);
Mike Stumpb7074c02009-02-13 15:32:32 +00001056
John McCallad7c5c12011-02-08 08:22:06 +00001057 return buildGlobalBlock(*this, blockInfo, blockFn);
Anders Carlsson6a60fa22009-02-12 17:55:02 +00001058}
1059
John McCall351762c2011-02-07 10:33:21 +00001060static llvm::Constant *buildGlobalBlock(CodeGenModule &CGM,
1061 const CGBlockInfo &blockInfo,
1062 llvm::Constant *blockFn) {
1063 assert(blockInfo.CanBeGlobal);
1064
1065 // Generate the constants for the block literal initializer.
1066 llvm::Constant *fields[BlockHeaderSize];
1067
1068 // isa
1069 fields[0] = CGM.getNSConcreteGlobalBlock();
1070
1071 // __flags
John McCall85915252011-03-09 08:39:33 +00001072 BlockFlags flags = BLOCK_IS_GLOBAL | BLOCK_HAS_SIGNATURE;
1073 if (blockInfo.UsesStret) flags |= BLOCK_USE_STRET;
1074
John McCalle3dc1702011-02-15 09:22:45 +00001075 fields[1] = llvm::ConstantInt::get(CGM.IntTy, flags.getBitMask());
John McCall351762c2011-02-07 10:33:21 +00001076
1077 // Reserved
John McCalle3dc1702011-02-15 09:22:45 +00001078 fields[2] = llvm::Constant::getNullValue(CGM.IntTy);
John McCall351762c2011-02-07 10:33:21 +00001079
1080 // Function
1081 fields[3] = blockFn;
1082
1083 // Descriptor
1084 fields[4] = buildBlockDescriptor(CGM, blockInfo);
1085
Chris Lattnere64d7ba2011-06-20 04:01:35 +00001086 llvm::Constant *init = llvm::ConstantStruct::getAnon(fields);
John McCall351762c2011-02-07 10:33:21 +00001087
1088 llvm::GlobalVariable *literal =
1089 new llvm::GlobalVariable(CGM.getModule(),
1090 init->getType(),
1091 /*constant*/ true,
1092 llvm::GlobalVariable::InternalLinkage,
1093 init,
1094 "__block_literal_global");
1095 literal->setAlignment(blockInfo.BlockAlign.getQuantity());
1096
1097 // Return a constant of the appropriately-casted type.
Chris Lattner2192fe52011-07-18 04:24:23 +00001098 llvm::Type *requiredType =
John McCall351762c2011-02-07 10:33:21 +00001099 CGM.getTypes().ConvertType(blockInfo.getBlockExpr()->getType());
1100 return llvm::ConstantExpr::getBitCast(literal, requiredType);
Mike Stumpcb2fbcb2009-02-21 20:00:35 +00001101}
1102
John McCall7f416cc2015-09-08 08:05:57 +00001103void CodeGenFunction::setBlockContextParameter(const ImplicitParamDecl *D,
1104 unsigned argNum,
1105 llvm::Value *arg) {
1106 assert(BlockInfo && "not emitting prologue of block invocation function?!");
1107
1108 llvm::Value *localAddr = nullptr;
1109 if (CGM.getCodeGenOpts().OptimizationLevel == 0) {
1110 // Allocate a stack slot to let the debug info survive the RA.
1111 Address alloc = CreateMemTemp(D->getType(), D->getName() + ".addr");
1112 Builder.CreateStore(arg, alloc);
1113 localAddr = Builder.CreateLoad(alloc);
1114 }
1115
1116 if (CGDebugInfo *DI = getDebugInfo()) {
Benjamin Kramer8c305922016-02-02 11:06:51 +00001117 if (CGM.getCodeGenOpts().getDebugInfo() >=
1118 codegenoptions::LimitedDebugInfo) {
John McCall7f416cc2015-09-08 08:05:57 +00001119 DI->setLocation(D->getLocation());
1120 DI->EmitDeclareOfBlockLiteralArgVariable(*BlockInfo, arg, argNum,
1121 localAddr, Builder);
1122 }
1123 }
1124
1125 SourceLocation StartLoc = BlockInfo->getBlockExpr()->getBody()->getLocStart();
1126 ApplyDebugLocation Scope(*this, StartLoc);
1127
1128 // Instead of messing around with LocalDeclMap, just set the value
1129 // directly as BlockPointer.
1130 BlockPointer = Builder.CreateBitCast(arg,
1131 BlockInfo->StructureType->getPointerTo(),
1132 "block");
1133}
1134
1135Address CodeGenFunction::LoadBlockStruct() {
1136 assert(BlockInfo && "not in a block invocation function!");
1137 assert(BlockPointer && "no block pointer set!");
1138 return Address(BlockPointer, BlockInfo->BlockAlign);
1139}
1140
Mike Stump4446dcf2009-03-05 08:32:30 +00001141llvm::Function *
John McCall351762c2011-02-07 10:33:21 +00001142CodeGenFunction::GenerateBlockFunction(GlobalDecl GD,
1143 const CGBlockInfo &blockInfo,
Eli Friedman2495ab02012-02-25 02:48:22 +00001144 const DeclMapTy &ldm,
1145 bool IsLambdaConversionToBlock) {
John McCall351762c2011-02-07 10:33:21 +00001146 const BlockDecl *blockDecl = blockInfo.getBlockDecl();
Devang Patel9074ed82009-04-15 21:51:44 +00001147
Fariborz Jahanian63628032012-06-26 16:06:38 +00001148 CurGD = GD;
David Blaikie1ae04912015-01-13 23:06:27 +00001149
1150 CurEHLocation = blockInfo.getBlockExpr()->getLocEnd();
Fariborz Jahanian63628032012-06-26 16:06:38 +00001151
John McCall351762c2011-02-07 10:33:21 +00001152 BlockInfo = &blockInfo;
Mike Stump11289f42009-09-09 15:08:12 +00001153
Mike Stump5469f292009-03-13 23:34:28 +00001154 // Arrange for local static and local extern declarations to appear
John McCall351762c2011-02-07 10:33:21 +00001155 // to be local to this function as well, in case they're directly
1156 // referenced in a block.
1157 for (DeclMapTy::const_iterator i = ldm.begin(), e = ldm.end(); i != e; ++i) {
Rafael Espindola2ae250c2014-05-09 00:08:36 +00001158 const auto *var = dyn_cast<VarDecl>(i->first);
John McCall351762c2011-02-07 10:33:21 +00001159 if (var && !var->hasLocalStorage())
John McCall7f416cc2015-09-08 08:05:57 +00001160 setAddrOfLocalVar(var, i->second);
Mike Stump5469f292009-03-13 23:34:28 +00001161 }
1162
John McCall351762c2011-02-07 10:33:21 +00001163 // Begin building the function declaration.
Eli Friedman09a9b6e2009-03-28 03:24:54 +00001164
John McCall351762c2011-02-07 10:33:21 +00001165 // Build the argument list.
1166 FunctionArgList args;
Mike Stumpb7074c02009-02-13 15:32:32 +00001167
John McCall351762c2011-02-07 10:33:21 +00001168 // The first argument is the block pointer. Just take it as a void*
1169 // and cast it later.
1170 QualType selfTy = getContext().VoidPtrTy;
Mike Stump7fe9cc12009-10-21 03:49:08 +00001171 IdentifierInfo *II = &CGM.getContext().Idents.get(".block_descriptor");
Mike Stumpd0153282009-10-20 02:12:22 +00001172
Richard Smith053f6c62014-05-16 23:01:30 +00001173 ImplicitParamDecl selfDecl(getContext(), const_cast<BlockDecl*>(blockDecl),
John McCall147d0212011-02-22 22:38:33 +00001174 SourceLocation(), II, selfTy);
John McCalla738c252011-03-09 04:27:21 +00001175 args.push_back(&selfDecl);
Mike Stump7fe9cc12009-10-21 03:49:08 +00001176
John McCall351762c2011-02-07 10:33:21 +00001177 // Now add the rest of the parameters.
Benjamin Kramerf9890422015-02-17 16:48:30 +00001178 args.append(blockDecl->param_begin(), blockDecl->param_end());
John McCall87fe5d52010-05-20 01:18:31 +00001179
John McCall351762c2011-02-07 10:33:21 +00001180 // Create the function declaration.
John McCalla729c622012-02-17 03:33:10 +00001181 const FunctionProtoType *fnType = blockInfo.getBlockExpr()->getFunctionType();
John McCallc56a8b32016-03-11 04:30:31 +00001182 const CGFunctionInfo &fnInfo =
1183 CGM.getTypes().arrangeBlockFunctionDeclaration(fnType, args);
Tim Northovere77cc392014-03-29 13:28:05 +00001184 if (CGM.ReturnSlotInterferesWithArgs(fnInfo))
John McCall85915252011-03-09 08:39:33 +00001185 blockInfo.UsesStret = true;
1186
John McCalla729c622012-02-17 03:33:10 +00001187 llvm::FunctionType *fnLLVMType = CGM.getTypes().GetFunctionType(fnInfo);
Mike Stumpb7074c02009-02-13 15:32:32 +00001188
Alp Tokerfb8d02b2014-06-05 22:10:59 +00001189 StringRef name = CGM.getBlockMangledName(GD, blockDecl);
Alp Toker0e64e0d2014-06-03 02:13:57 +00001190 llvm::Function *fn = llvm::Function::Create(
1191 fnLLVMType, llvm::GlobalValue::InternalLinkage, name, &CGM.getModule());
John McCall351762c2011-02-07 10:33:21 +00001192 CGM.SetInternalFunctionAttributes(blockDecl, fn, fnInfo);
Mike Stumpb7074c02009-02-13 15:32:32 +00001193
John McCall351762c2011-02-07 10:33:21 +00001194 // Begin generating the function.
Alp Toker314cc812014-01-25 16:55:45 +00001195 StartFunction(blockDecl, fnType->getReturnType(), fn, fnInfo, args,
Adrian Prantl42d71b92014-04-10 23:21:53 +00001196 blockDecl->getLocation(),
Devang Patel5f070a52011-03-25 21:26:13 +00001197 blockInfo.getBlockExpr()->getBody()->getLocStart());
Mike Stumpb7074c02009-02-13 15:32:32 +00001198
John McCall147d0212011-02-22 22:38:33 +00001199 // Okay. Undo some of what StartFunction did.
John McCall7f416cc2015-09-08 08:05:57 +00001200
Adrian Prantl0f6df002013-03-29 19:20:35 +00001201 // At -O0 we generate an explicit alloca for the BlockPointer, so the RA
1202 // won't delete the dbg.declare intrinsics for captured variables.
1203 llvm::Value *BlockPointerDbgLoc = BlockPointer;
1204 if (CGM.getCodeGenOpts().OptimizationLevel == 0) {
1205 // Allocate a stack slot for it, so we can point the debugger to it
John McCall7f416cc2015-09-08 08:05:57 +00001206 Address Alloca = CreateTempAlloca(BlockPointer->getType(),
1207 getPointerAlign(),
1208 "block.addr");
Adrian Prantl2832b4e2013-04-02 01:00:48 +00001209 // Set the DebugLocation to empty, so the store is recognized as a
1210 // frame setup instruction by llvm::DwarfDebug::beginFunction().
Adrian Prantl95b24e92015-02-03 20:00:54 +00001211 auto NL = ApplyDebugLocation::CreateEmpty(*this);
John McCall7f416cc2015-09-08 08:05:57 +00001212 Builder.CreateStore(BlockPointer, Alloca);
1213 BlockPointerDbgLoc = Alloca.getPointer();
Adrian Prantl0f6df002013-03-29 19:20:35 +00001214 }
Anders Carlsson6a60fa22009-02-12 17:55:02 +00001215
John McCall87fe5d52010-05-20 01:18:31 +00001216 // If we have a C++ 'this' reference, go ahead and force it into
1217 // existence now.
John McCall351762c2011-02-07 10:33:21 +00001218 if (blockDecl->capturesCXXThis()) {
John McCall7f416cc2015-09-08 08:05:57 +00001219 Address addr =
1220 Builder.CreateStructGEP(LoadBlockStruct(), blockInfo.CXXThisIndex,
1221 blockInfo.CXXThisOffset, "block.captured-this");
John McCall351762c2011-02-07 10:33:21 +00001222 CXXThisValue = Builder.CreateLoad(addr, "this");
John McCall87fe5d52010-05-20 01:18:31 +00001223 }
1224
John McCall351762c2011-02-07 10:33:21 +00001225 // Also force all the constant captures.
Aaron Ballman9371dd22014-03-14 18:34:04 +00001226 for (const auto &CI : blockDecl->captures()) {
1227 const VarDecl *variable = CI.getVariable();
John McCall351762c2011-02-07 10:33:21 +00001228 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable);
1229 if (!capture.isConstant()) continue;
1230
John McCall7f416cc2015-09-08 08:05:57 +00001231 CharUnits align = getContext().getDeclAlign(variable);
1232 Address alloca =
1233 CreateMemTemp(variable->getType(), align, "block.captured-const");
John McCall351762c2011-02-07 10:33:21 +00001234
John McCall7f416cc2015-09-08 08:05:57 +00001235 Builder.CreateStore(capture.getConstant(), alloca);
John McCall351762c2011-02-07 10:33:21 +00001236
John McCall7f416cc2015-09-08 08:05:57 +00001237 setAddrOfLocalVar(variable, alloca);
John McCall9d42f0f2010-05-21 04:11:14 +00001238 }
1239
John McCall113bee02012-03-10 09:33:50 +00001240 // Save a spot to insert the debug information for all the DeclRefExprs.
Mike Stump017460a2009-10-01 22:29:41 +00001241 llvm::BasicBlock *entry = Builder.GetInsertBlock();
1242 llvm::BasicBlock::iterator entry_ptr = Builder.GetInsertPoint();
1243 --entry_ptr;
1244
Eli Friedman2495ab02012-02-25 02:48:22 +00001245 if (IsLambdaConversionToBlock)
1246 EmitLambdaBlockInvokeBody();
Bob Wilsonc845c002014-03-06 20:24:27 +00001247 else {
Serge Pavlov3a561452015-12-06 14:32:39 +00001248 PGO.assignRegionCounters(GlobalDecl(blockDecl), fn);
Justin Bogner66242d62015-04-23 23:06:47 +00001249 incrementProfileCounter(blockDecl->getBody());
Eli Friedman2495ab02012-02-25 02:48:22 +00001250 EmitStmt(blockDecl->getBody());
Bob Wilsonc845c002014-03-06 20:24:27 +00001251 }
Mike Stump017460a2009-10-01 22:29:41 +00001252
Mike Stump7d699112009-10-01 00:27:30 +00001253 // Remember where we were...
1254 llvm::BasicBlock *resume = Builder.GetInsertBlock();
Mike Stump017460a2009-10-01 22:29:41 +00001255
Mike Stump7d699112009-10-01 00:27:30 +00001256 // Go back to the entry.
Mike Stump017460a2009-10-01 22:29:41 +00001257 ++entry_ptr;
1258 Builder.SetInsertPoint(entry, entry_ptr);
1259
John McCall113bee02012-03-10 09:33:50 +00001260 // Emit debug information for all the DeclRefExprs.
John McCall351762c2011-02-07 10:33:21 +00001261 // FIXME: also for 'this'
Mike Stump2e722b92009-09-30 02:43:10 +00001262 if (CGDebugInfo *DI = getDebugInfo()) {
Aaron Ballman9371dd22014-03-14 18:34:04 +00001263 for (const auto &CI : blockDecl->captures()) {
1264 const VarDecl *variable = CI.getVariable();
Eric Christopher7cdf9482011-10-13 21:45:18 +00001265 DI->EmitLocation(Builder, variable->getLocation());
John McCall351762c2011-02-07 10:33:21 +00001266
Benjamin Kramer8c305922016-02-02 11:06:51 +00001267 if (CGM.getCodeGenOpts().getDebugInfo() >=
1268 codegenoptions::LimitedDebugInfo) {
Alexey Samsonov74a38682012-05-04 07:39:27 +00001269 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable);
1270 if (capture.isConstant()) {
John McCall7f416cc2015-09-08 08:05:57 +00001271 auto addr = LocalDeclMap.find(variable)->second;
1272 DI->EmitDeclareOfAutoVariable(variable, addr.getPointer(),
Alexey Samsonov74a38682012-05-04 07:39:27 +00001273 Builder);
1274 continue;
1275 }
John McCall351762c2011-02-07 10:33:21 +00001276
Duncan P. N. Exon Smith9f5260a2015-11-06 23:00:41 +00001277 DI->EmitDeclareOfBlockDeclRefVariable(
1278 variable, BlockPointerDbgLoc, Builder, blockInfo,
1279 entry_ptr == entry->end() ? nullptr : &*entry_ptr);
Alexey Samsonov74a38682012-05-04 07:39:27 +00001280 }
Mike Stump2e722b92009-09-30 02:43:10 +00001281 }
Manman Renab08a9a2013-01-04 18:51:35 +00001282 // Recover location if it was changed in the above loop.
1283 DI->EmitLocation(Builder,
Adrian Prantl83e30fd2013-04-08 20:52:12 +00001284 cast<CompoundStmt>(blockDecl->getBody())->getRBracLoc());
Mike Stump2e722b92009-09-30 02:43:10 +00001285 }
John McCall351762c2011-02-07 10:33:21 +00001286
Mike Stump7d699112009-10-01 00:27:30 +00001287 // And resume where we left off.
Craig Topper8a13c412014-05-21 05:09:00 +00001288 if (resume == nullptr)
Mike Stump7d699112009-10-01 00:27:30 +00001289 Builder.ClearInsertionPoint();
1290 else
1291 Builder.SetInsertPoint(resume);
Mike Stump2e722b92009-09-30 02:43:10 +00001292
John McCall351762c2011-02-07 10:33:21 +00001293 FinishFunction(cast<CompoundStmt>(blockDecl->getBody())->getRBracLoc());
Anders Carlsson6a60fa22009-02-12 17:55:02 +00001294
John McCall351762c2011-02-07 10:33:21 +00001295 return fn;
Anders Carlsson6a60fa22009-02-12 17:55:02 +00001296}
Mike Stump1db7d042009-02-28 09:07:16 +00001297
John McCall351762c2011-02-07 10:33:21 +00001298/*
1299 notes.push_back(HelperInfo());
1300 HelperInfo &note = notes.back();
1301 note.index = capture.getIndex();
1302 note.RequiresCopying = (ci->hasCopyExpr() || BlockRequiresCopying(type));
1303 note.cxxbar_import = ci->getCopyExpr();
Mike Stump1db7d042009-02-28 09:07:16 +00001304
John McCall351762c2011-02-07 10:33:21 +00001305 if (ci->isByRef()) {
1306 note.flag = BLOCK_FIELD_IS_BYREF;
1307 if (type.isObjCGCWeak())
1308 note.flag |= BLOCK_FIELD_IS_WEAK;
1309 } else if (type->isBlockPointerType()) {
1310 note.flag = BLOCK_FIELD_IS_BLOCK;
1311 } else {
1312 note.flag = BLOCK_FIELD_IS_OBJECT;
1313 }
1314 */
Mike Stump1db7d042009-02-28 09:07:16 +00001315
John McCallf593b102013-01-22 03:56:22 +00001316/// Generate the copy-helper function for a block closure object:
1317/// static void block_copy_helper(block_t *dst, block_t *src);
1318/// The runtime will have previously initialized 'dst' by doing a
1319/// bit-copy of 'src'.
1320///
1321/// Note that this copies an entire block closure object to the heap;
1322/// it should not be confused with a 'byref copy helper', which moves
1323/// the contents of an individual __block variable to the heap.
John McCall351762c2011-02-07 10:33:21 +00001324llvm::Constant *
John McCallad7c5c12011-02-08 08:22:06 +00001325CodeGenFunction::GenerateCopyHelperFunction(const CGBlockInfo &blockInfo) {
John McCall351762c2011-02-07 10:33:21 +00001326 ASTContext &C = getContext();
1327
1328 FunctionArgList args;
Craig Topper8a13c412014-05-21 05:09:00 +00001329 ImplicitParamDecl dstDecl(getContext(), nullptr, SourceLocation(), nullptr,
1330 C.VoidPtrTy);
John McCalla738c252011-03-09 04:27:21 +00001331 args.push_back(&dstDecl);
Craig Topper8a13c412014-05-21 05:09:00 +00001332 ImplicitParamDecl srcDecl(getContext(), nullptr, SourceLocation(), nullptr,
1333 C.VoidPtrTy);
John McCalla738c252011-03-09 04:27:21 +00001334 args.push_back(&srcDecl);
Mike Stump11289f42009-09-09 15:08:12 +00001335
John McCallc56a8b32016-03-11 04:30:31 +00001336 const CGFunctionInfo &FI =
1337 CGM.getTypes().arrangeBuiltinFunctionDeclaration(C.VoidTy, args);
Mike Stump0c743272009-03-06 01:33:24 +00001338
John McCall351762c2011-02-07 10:33:21 +00001339 // FIXME: it would be nice if these were mergeable with things with
1340 // identical semantics.
John McCalla729c622012-02-17 03:33:10 +00001341 llvm::FunctionType *LTy = CGM.getTypes().GetFunctionType(FI);
Mike Stump0c743272009-03-06 01:33:24 +00001342
1343 llvm::Function *Fn =
1344 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
Benjamin Kramerd6b28fc2010-01-22 13:59:13 +00001345 "__copy_helper_block_", &CGM.getModule());
Mike Stump0c743272009-03-06 01:33:24 +00001346
1347 IdentifierInfo *II
1348 = &CGM.getContext().Idents.get("__copy_helper_block_");
1349
John McCall351762c2011-02-07 10:33:21 +00001350 FunctionDecl *FD = FunctionDecl::Create(C,
1351 C.getTranslationUnitDecl(),
Abramo Bagnaradff19302011-03-08 08:55:46 +00001352 SourceLocation(),
Craig Topper8a13c412014-05-21 05:09:00 +00001353 SourceLocation(), II, C.VoidTy,
1354 nullptr, SC_Static,
Douglas Gregorc4df4072010-04-19 22:54:31 +00001355 false,
Eric Christopher56ef3742012-04-12 00:35:04 +00001356 false);
Akira Hatanakaaec6b2c2015-10-08 20:26:34 +00001357
1358 CGM.SetInternalFunctionAttributes(nullptr, Fn, FI);
1359
Adrian Prantl95b24e92015-02-03 20:00:54 +00001360 auto NL = ApplyDebugLocation::CreateEmpty(*this);
Adrian Prantl22e66b42014-04-11 01:13:04 +00001361 StartFunction(FD, C.VoidTy, Fn, FI, args);
Adrian Prantl39428e72015-02-03 18:40:42 +00001362 // Create a scope with an artificial location for the body of this function.
Adrian Prantl95b24e92015-02-03 20:00:54 +00001363 auto AL = ApplyDebugLocation::CreateArtificial(*this);
Chris Lattner2192fe52011-07-18 04:24:23 +00001364 llvm::Type *structPtrTy = blockInfo.StructureType->getPointerTo();
Mike Stumpaeb0ffd2009-03-07 02:35:30 +00001365
John McCall7f416cc2015-09-08 08:05:57 +00001366 Address src = GetAddrOfLocalVar(&srcDecl);
1367 src = Address(Builder.CreateLoad(src), blockInfo.BlockAlign);
John McCallad7c5c12011-02-08 08:22:06 +00001368 src = Builder.CreateBitCast(src, structPtrTy, "block.source");
Mike Stumpaeb0ffd2009-03-07 02:35:30 +00001369
John McCall7f416cc2015-09-08 08:05:57 +00001370 Address dst = GetAddrOfLocalVar(&dstDecl);
1371 dst = Address(Builder.CreateLoad(dst), blockInfo.BlockAlign);
John McCallad7c5c12011-02-08 08:22:06 +00001372 dst = Builder.CreateBitCast(dst, structPtrTy, "block.dest");
Mike Stumpaeb0ffd2009-03-07 02:35:30 +00001373
John McCall351762c2011-02-07 10:33:21 +00001374 const BlockDecl *blockDecl = blockInfo.getBlockDecl();
Mike Stumpaeb0ffd2009-03-07 02:35:30 +00001375
Aaron Ballman9371dd22014-03-14 18:34:04 +00001376 for (const auto &CI : blockDecl->captures()) {
1377 const VarDecl *variable = CI.getVariable();
John McCall351762c2011-02-07 10:33:21 +00001378 QualType type = variable->getType();
Mike Stumpaeb0ffd2009-03-07 02:35:30 +00001379
John McCall351762c2011-02-07 10:33:21 +00001380 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable);
1381 if (capture.isConstant()) continue;
1382
Aaron Ballman9371dd22014-03-14 18:34:04 +00001383 const Expr *copyExpr = CI.getCopyExpr();
John McCall31168b02011-06-15 23:02:42 +00001384 BlockFieldFlags flags;
1385
John McCalle68b8f42012-10-17 02:28:37 +00001386 bool useARCWeakCopy = false;
1387 bool useARCStrongCopy = false;
John McCall351762c2011-02-07 10:33:21 +00001388
1389 if (copyExpr) {
Aaron Ballman9371dd22014-03-14 18:34:04 +00001390 assert(!CI.isByRef());
John McCall351762c2011-02-07 10:33:21 +00001391 // don't bother computing flags
John McCall31168b02011-06-15 23:02:42 +00001392
Aaron Ballman9371dd22014-03-14 18:34:04 +00001393 } else if (CI.isByRef()) {
John McCall351762c2011-02-07 10:33:21 +00001394 flags = BLOCK_FIELD_IS_BYREF;
John McCall31168b02011-06-15 23:02:42 +00001395 if (type.isObjCGCWeak())
1396 flags |= BLOCK_FIELD_IS_WEAK;
John McCall351762c2011-02-07 10:33:21 +00001397
John McCall31168b02011-06-15 23:02:42 +00001398 } else if (type->isObjCRetainableType()) {
1399 flags = BLOCK_FIELD_IS_OBJECT;
John McCalle68b8f42012-10-17 02:28:37 +00001400 bool isBlockPointer = type->isBlockPointerType();
1401 if (isBlockPointer)
John McCall31168b02011-06-15 23:02:42 +00001402 flags = BLOCK_FIELD_IS_BLOCK;
1403
1404 // Special rules for ARC captures:
John McCall460ce582015-10-22 18:38:17 +00001405 Qualifiers qs = type.getQualifiers();
John McCall31168b02011-06-15 23:02:42 +00001406
John McCall460ce582015-10-22 18:38:17 +00001407 // We need to register __weak direct captures with the runtime.
1408 if (qs.getObjCLifetime() == Qualifiers::OCL_Weak) {
1409 useARCWeakCopy = true;
John McCall31168b02011-06-15 23:02:42 +00001410
John McCall460ce582015-10-22 18:38:17 +00001411 // We need to retain the copied value for __strong direct captures.
1412 } else if (qs.getObjCLifetime() == Qualifiers::OCL_Strong) {
1413 // If it's a block pointer, we have to copy the block and
1414 // assign that to the destination pointer, so we might as
1415 // well use _Block_object_assign. Otherwise we can avoid that.
1416 if (!isBlockPointer)
1417 useARCStrongCopy = true;
John McCalle68b8f42012-10-17 02:28:37 +00001418
1419 // Non-ARC captures of retainable pointers are strong and
1420 // therefore require a call to _Block_object_assign.
John McCall460ce582015-10-22 18:38:17 +00001421 } else if (!qs.getObjCLifetime() && !getLangOpts().ObjCAutoRefCount) {
John McCalle68b8f42012-10-17 02:28:37 +00001422 // fall through
John McCall460ce582015-10-22 18:38:17 +00001423
1424 // Otherwise the memcpy is fine.
1425 } else {
1426 continue;
John McCall31168b02011-06-15 23:02:42 +00001427 }
John McCall460ce582015-10-22 18:38:17 +00001428
1429 // For all other types, the memcpy is fine.
John McCall31168b02011-06-15 23:02:42 +00001430 } else {
1431 continue;
1432 }
John McCall351762c2011-02-07 10:33:21 +00001433
1434 unsigned index = capture.getIndex();
John McCall7f416cc2015-09-08 08:05:57 +00001435 Address srcField = Builder.CreateStructGEP(src, index, capture.getOffset());
1436 Address dstField = Builder.CreateStructGEP(dst, index, capture.getOffset());
John McCall351762c2011-02-07 10:33:21 +00001437
1438 // If there's an explicit copy expression, we do that.
1439 if (copyExpr) {
John McCallad7c5c12011-02-08 08:22:06 +00001440 EmitSynthesizedCXXCopyCtor(dstField, srcField, copyExpr);
John McCalle68b8f42012-10-17 02:28:37 +00001441 } else if (useARCWeakCopy) {
John McCall31168b02011-06-15 23:02:42 +00001442 EmitARCCopyWeak(dstField, srcField);
John McCall351762c2011-02-07 10:33:21 +00001443 } else {
1444 llvm::Value *srcValue = Builder.CreateLoad(srcField, "blockcopy.src");
John McCalle68b8f42012-10-17 02:28:37 +00001445 if (useARCStrongCopy) {
1446 // At -O0, store null into the destination field (so that the
1447 // storeStrong doesn't over-release) and then call storeStrong.
1448 // This is a workaround to not having an initStrong call.
1449 if (CGM.getCodeGenOpts().OptimizationLevel == 0) {
Rafael Espindola2ae250c2014-05-09 00:08:36 +00001450 auto *ty = cast<llvm::PointerType>(srcValue->getType());
John McCalle68b8f42012-10-17 02:28:37 +00001451 llvm::Value *null = llvm::ConstantPointerNull::get(ty);
1452 Builder.CreateStore(null, dstField);
1453 EmitARCStoreStrongCall(dstField, srcValue, true);
1454
1455 // With optimization enabled, take advantage of the fact that
1456 // the blocks runtime guarantees a memcpy of the block data, and
1457 // just emit a retain of the src field.
1458 } else {
1459 EmitARCRetainNonBlock(srcValue);
1460
1461 // We don't need this anymore, so kill it. It's not quite
1462 // worth the annoyance to avoid creating it in the first place.
John McCall7f416cc2015-09-08 08:05:57 +00001463 cast<llvm::Instruction>(dstField.getPointer())->eraseFromParent();
John McCalle68b8f42012-10-17 02:28:37 +00001464 }
1465 } else {
1466 srcValue = Builder.CreateBitCast(srcValue, VoidPtrTy);
John McCall7f416cc2015-09-08 08:05:57 +00001467 llvm::Value *dstAddr =
1468 Builder.CreateBitCast(dstField.getPointer(), VoidPtrTy);
John McCall882987f2013-02-28 19:01:20 +00001469 llvm::Value *args[] = {
1470 dstAddr, srcValue, llvm::ConstantInt::get(Int32Ty, flags.getBitMask())
1471 };
1472
1473 bool copyCanThrow = false;
Aaron Ballman9371dd22014-03-14 18:34:04 +00001474 if (CI.isByRef() && variable->getType()->getAsCXXRecordDecl()) {
John McCall882987f2013-02-28 19:01:20 +00001475 const Expr *copyExpr =
1476 CGM.getContext().getBlockVarCopyInits(variable);
1477 if (copyExpr) {
1478 copyCanThrow = true; // FIXME: reuse the noexcept logic
1479 }
1480 }
1481
1482 if (copyCanThrow) {
1483 EmitRuntimeCallOrInvoke(CGM.getBlockObjectAssign(), args);
1484 } else {
1485 EmitNounwindRuntimeCall(CGM.getBlockObjectAssign(), args);
1486 }
John McCalle68b8f42012-10-17 02:28:37 +00001487 }
Mike Stumpaeb0ffd2009-03-07 02:35:30 +00001488 }
1489 }
1490
John McCallad7c5c12011-02-08 08:22:06 +00001491 FinishFunction();
Mike Stump0c743272009-03-06 01:33:24 +00001492
John McCalle3dc1702011-02-15 09:22:45 +00001493 return llvm::ConstantExpr::getBitCast(Fn, VoidPtrTy);
Mike Stump97d01d52009-03-04 03:23:46 +00001494}
1495
John McCallf593b102013-01-22 03:56:22 +00001496/// Generate the destroy-helper function for a block closure object:
1497/// static void block_destroy_helper(block_t *theBlock);
1498///
1499/// Note that this destroys a heap-allocated block closure object;
1500/// it should not be confused with a 'byref destroy helper', which
1501/// destroys the heap-allocated contents of an individual __block
1502/// variable.
John McCall351762c2011-02-07 10:33:21 +00001503llvm::Constant *
John McCallad7c5c12011-02-08 08:22:06 +00001504CodeGenFunction::GenerateDestroyHelperFunction(const CGBlockInfo &blockInfo) {
John McCall351762c2011-02-07 10:33:21 +00001505 ASTContext &C = getContext();
Mike Stump0c743272009-03-06 01:33:24 +00001506
John McCall351762c2011-02-07 10:33:21 +00001507 FunctionArgList args;
Craig Topper8a13c412014-05-21 05:09:00 +00001508 ImplicitParamDecl srcDecl(getContext(), nullptr, SourceLocation(), nullptr,
1509 C.VoidPtrTy);
John McCalla738c252011-03-09 04:27:21 +00001510 args.push_back(&srcDecl);
Mike Stump11289f42009-09-09 15:08:12 +00001511
John McCallc56a8b32016-03-11 04:30:31 +00001512 const CGFunctionInfo &FI =
1513 CGM.getTypes().arrangeBuiltinFunctionDeclaration(C.VoidTy, args);
Mike Stump0c743272009-03-06 01:33:24 +00001514
Mike Stumpcbc2bca2009-06-05 23:26:36 +00001515 // FIXME: We'd like to put these into a mergable by content, with
1516 // internal linkage.
John McCalla729c622012-02-17 03:33:10 +00001517 llvm::FunctionType *LTy = CGM.getTypes().GetFunctionType(FI);
Mike Stump0c743272009-03-06 01:33:24 +00001518
1519 llvm::Function *Fn =
1520 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
Benjamin Kramerd6b28fc2010-01-22 13:59:13 +00001521 "__destroy_helper_block_", &CGM.getModule());
Mike Stump0c743272009-03-06 01:33:24 +00001522
1523 IdentifierInfo *II
1524 = &CGM.getContext().Idents.get("__destroy_helper_block_");
1525
John McCall351762c2011-02-07 10:33:21 +00001526 FunctionDecl *FD = FunctionDecl::Create(C, C.getTranslationUnitDecl(),
Abramo Bagnaradff19302011-03-08 08:55:46 +00001527 SourceLocation(),
Craig Topper8a13c412014-05-21 05:09:00 +00001528 SourceLocation(), II, C.VoidTy,
1529 nullptr, SC_Static,
Eric Christopher56ef3742012-04-12 00:35:04 +00001530 false, false);
Akira Hatanakaaec6b2c2015-10-08 20:26:34 +00001531
1532 CGM.SetInternalFunctionAttributes(nullptr, Fn, FI);
1533
Adrian Prantl49a78562013-07-24 20:34:39 +00001534 // Create a scope with an artificial location for the body of this function.
Adrian Prantl95b24e92015-02-03 20:00:54 +00001535 auto NL = ApplyDebugLocation::CreateEmpty(*this);
Adrian Prantl22e66b42014-04-11 01:13:04 +00001536 StartFunction(FD, C.VoidTy, Fn, FI, args);
Adrian Prantl95b24e92015-02-03 20:00:54 +00001537 auto AL = ApplyDebugLocation::CreateArtificial(*this);
Mike Stump6f7d9f82009-03-07 02:53:18 +00001538
Chris Lattner2192fe52011-07-18 04:24:23 +00001539 llvm::Type *structPtrTy = blockInfo.StructureType->getPointerTo();
Mike Stump6f7d9f82009-03-07 02:53:18 +00001540
John McCall7f416cc2015-09-08 08:05:57 +00001541 Address src = GetAddrOfLocalVar(&srcDecl);
1542 src = Address(Builder.CreateLoad(src), blockInfo.BlockAlign);
John McCallad7c5c12011-02-08 08:22:06 +00001543 src = Builder.CreateBitCast(src, structPtrTy, "block");
Mike Stump6f7d9f82009-03-07 02:53:18 +00001544
John McCall351762c2011-02-07 10:33:21 +00001545 const BlockDecl *blockDecl = blockInfo.getBlockDecl();
1546
John McCallad7c5c12011-02-08 08:22:06 +00001547 CodeGenFunction::RunCleanupsScope cleanups(*this);
John McCall351762c2011-02-07 10:33:21 +00001548
Aaron Ballman9371dd22014-03-14 18:34:04 +00001549 for (const auto &CI : blockDecl->captures()) {
1550 const VarDecl *variable = CI.getVariable();
John McCall351762c2011-02-07 10:33:21 +00001551 QualType type = variable->getType();
1552
1553 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable);
1554 if (capture.isConstant()) continue;
1555
John McCallad7c5c12011-02-08 08:22:06 +00001556 BlockFieldFlags flags;
Craig Topper8a13c412014-05-21 05:09:00 +00001557 const CXXDestructorDecl *dtor = nullptr;
John McCall351762c2011-02-07 10:33:21 +00001558
John McCalle68b8f42012-10-17 02:28:37 +00001559 bool useARCWeakDestroy = false;
1560 bool useARCStrongDestroy = false;
John McCall31168b02011-06-15 23:02:42 +00001561
Aaron Ballman9371dd22014-03-14 18:34:04 +00001562 if (CI.isByRef()) {
John McCall351762c2011-02-07 10:33:21 +00001563 flags = BLOCK_FIELD_IS_BYREF;
John McCall31168b02011-06-15 23:02:42 +00001564 if (type.isObjCGCWeak())
1565 flags |= BLOCK_FIELD_IS_WEAK;
1566 } else if (const CXXRecordDecl *record = type->getAsCXXRecordDecl()) {
1567 if (record->hasTrivialDestructor())
1568 continue;
1569 dtor = record->getDestructor();
1570 } else if (type->isObjCRetainableType()) {
John McCall351762c2011-02-07 10:33:21 +00001571 flags = BLOCK_FIELD_IS_OBJECT;
John McCall31168b02011-06-15 23:02:42 +00001572 if (type->isBlockPointerType())
1573 flags = BLOCK_FIELD_IS_BLOCK;
John McCall351762c2011-02-07 10:33:21 +00001574
John McCall31168b02011-06-15 23:02:42 +00001575 // Special rules for ARC captures.
John McCall460ce582015-10-22 18:38:17 +00001576 Qualifiers qs = type.getQualifiers();
John McCall31168b02011-06-15 23:02:42 +00001577
John McCall460ce582015-10-22 18:38:17 +00001578 // Use objc_storeStrong for __strong direct captures; the
1579 // dynamic tools really like it when we do this.
1580 if (qs.getObjCLifetime() == Qualifiers::OCL_Strong) {
1581 useARCStrongDestroy = true;
John McCall31168b02011-06-15 23:02:42 +00001582
John McCall460ce582015-10-22 18:38:17 +00001583 // Support __weak direct captures.
1584 } else if (qs.getObjCLifetime() == Qualifiers::OCL_Weak) {
1585 useARCWeakDestroy = true;
John McCalle68b8f42012-10-17 02:28:37 +00001586
John McCall460ce582015-10-22 18:38:17 +00001587 // Non-ARC captures are strong, and we need to use _Block_object_dispose.
1588 } else if (!qs.hasObjCLifetime() && !getLangOpts().ObjCAutoRefCount) {
1589 // fall through
1590
1591 // Otherwise, we have nothing to do.
1592 } else {
1593 continue;
John McCall31168b02011-06-15 23:02:42 +00001594 }
1595 } else {
1596 continue;
1597 }
John McCall351762c2011-02-07 10:33:21 +00001598
John McCall7f416cc2015-09-08 08:05:57 +00001599 Address srcField =
1600 Builder.CreateStructGEP(src, capture.getIndex(), capture.getOffset());
John McCall351762c2011-02-07 10:33:21 +00001601
1602 // If there's an explicit copy expression, we do that.
1603 if (dtor) {
John McCallad7c5c12011-02-08 08:22:06 +00001604 PushDestructorCleanup(dtor, srcField);
John McCall351762c2011-02-07 10:33:21 +00001605
John McCall31168b02011-06-15 23:02:42 +00001606 // If this is a __weak capture, emit the release directly.
John McCalle68b8f42012-10-17 02:28:37 +00001607 } else if (useARCWeakDestroy) {
John McCall31168b02011-06-15 23:02:42 +00001608 EmitARCDestroyWeak(srcField);
1609
John McCalle68b8f42012-10-17 02:28:37 +00001610 // Destroy strong objects with a call if requested.
1611 } else if (useARCStrongDestroy) {
John McCallcdda29c2013-03-13 03:10:54 +00001612 EmitARCDestroyStrong(srcField, ARCImpreciseLifetime);
John McCalle68b8f42012-10-17 02:28:37 +00001613
John McCall351762c2011-02-07 10:33:21 +00001614 // Otherwise we call _Block_object_dispose. It wouldn't be too
1615 // hard to just emit this as a cleanup if we wanted to make sure
1616 // that things were done in reverse.
1617 } else {
1618 llvm::Value *value = Builder.CreateLoad(srcField);
John McCalle3dc1702011-02-15 09:22:45 +00001619 value = Builder.CreateBitCast(value, VoidPtrTy);
John McCall351762c2011-02-07 10:33:21 +00001620 BuildBlockRelease(value, flags);
1621 }
Mike Stump6f7d9f82009-03-07 02:53:18 +00001622 }
1623
John McCall351762c2011-02-07 10:33:21 +00001624 cleanups.ForceCleanup();
1625
John McCallad7c5c12011-02-08 08:22:06 +00001626 FinishFunction();
Mike Stump0c743272009-03-06 01:33:24 +00001627
John McCalle3dc1702011-02-15 09:22:45 +00001628 return llvm::ConstantExpr::getBitCast(Fn, VoidPtrTy);
Mike Stump0c743272009-03-06 01:33:24 +00001629}
1630
John McCallf9b056b2011-03-31 08:03:29 +00001631namespace {
1632
1633/// Emits the copy/dispose helper functions for a __block object of id type.
John McCall7f416cc2015-09-08 08:05:57 +00001634class ObjectByrefHelpers final : public BlockByrefHelpers {
John McCallf9b056b2011-03-31 08:03:29 +00001635 BlockFieldFlags Flags;
1636
1637public:
1638 ObjectByrefHelpers(CharUnits alignment, BlockFieldFlags flags)
John McCall7f416cc2015-09-08 08:05:57 +00001639 : BlockByrefHelpers(alignment), Flags(flags) {}
John McCallf9b056b2011-03-31 08:03:29 +00001640
John McCall7f416cc2015-09-08 08:05:57 +00001641 void emitCopy(CodeGenFunction &CGF, Address destField,
1642 Address srcField) override {
John McCallf9b056b2011-03-31 08:03:29 +00001643 destField = CGF.Builder.CreateBitCast(destField, CGF.VoidPtrTy);
1644
1645 srcField = CGF.Builder.CreateBitCast(srcField, CGF.VoidPtrPtrTy);
1646 llvm::Value *srcValue = CGF.Builder.CreateLoad(srcField);
1647
1648 unsigned flags = (Flags | BLOCK_BYREF_CALLER).getBitMask();
1649
1650 llvm::Value *flagsVal = llvm::ConstantInt::get(CGF.Int32Ty, flags);
1651 llvm::Value *fn = CGF.CGM.getBlockObjectAssign();
John McCall882987f2013-02-28 19:01:20 +00001652
John McCall7f416cc2015-09-08 08:05:57 +00001653 llvm::Value *args[] = { destField.getPointer(), srcValue, flagsVal };
John McCall882987f2013-02-28 19:01:20 +00001654 CGF.EmitNounwindRuntimeCall(fn, args);
John McCallf9b056b2011-03-31 08:03:29 +00001655 }
1656
John McCall7f416cc2015-09-08 08:05:57 +00001657 void emitDispose(CodeGenFunction &CGF, Address field) override {
John McCallf9b056b2011-03-31 08:03:29 +00001658 field = CGF.Builder.CreateBitCast(field, CGF.Int8PtrTy->getPointerTo(0));
1659 llvm::Value *value = CGF.Builder.CreateLoad(field);
1660
1661 CGF.BuildBlockRelease(value, Flags | BLOCK_BYREF_CALLER);
1662 }
1663
Craig Topper4f12f102014-03-12 06:41:41 +00001664 void profileImpl(llvm::FoldingSetNodeID &id) const override {
John McCallf9b056b2011-03-31 08:03:29 +00001665 id.AddInteger(Flags.getBitMask());
1666 }
1667};
1668
John McCall31168b02011-06-15 23:02:42 +00001669/// Emits the copy/dispose helpers for an ARC __block __weak variable.
John McCall7f416cc2015-09-08 08:05:57 +00001670class ARCWeakByrefHelpers final : public BlockByrefHelpers {
John McCall31168b02011-06-15 23:02:42 +00001671public:
John McCall7f416cc2015-09-08 08:05:57 +00001672 ARCWeakByrefHelpers(CharUnits alignment) : BlockByrefHelpers(alignment) {}
John McCall31168b02011-06-15 23:02:42 +00001673
John McCall7f416cc2015-09-08 08:05:57 +00001674 void emitCopy(CodeGenFunction &CGF, Address destField,
1675 Address srcField) override {
John McCall31168b02011-06-15 23:02:42 +00001676 CGF.EmitARCMoveWeak(destField, srcField);
1677 }
1678
John McCall7f416cc2015-09-08 08:05:57 +00001679 void emitDispose(CodeGenFunction &CGF, Address field) override {
John McCall31168b02011-06-15 23:02:42 +00001680 CGF.EmitARCDestroyWeak(field);
1681 }
1682
Craig Topper4f12f102014-03-12 06:41:41 +00001683 void profileImpl(llvm::FoldingSetNodeID &id) const override {
John McCall31168b02011-06-15 23:02:42 +00001684 // 0 is distinguishable from all pointers and byref flags
1685 id.AddInteger(0);
1686 }
1687};
1688
1689/// Emits the copy/dispose helpers for an ARC __block __strong variable
1690/// that's not of block-pointer type.
John McCall7f416cc2015-09-08 08:05:57 +00001691class ARCStrongByrefHelpers final : public BlockByrefHelpers {
John McCall31168b02011-06-15 23:02:42 +00001692public:
John McCall7f416cc2015-09-08 08:05:57 +00001693 ARCStrongByrefHelpers(CharUnits alignment) : BlockByrefHelpers(alignment) {}
John McCall31168b02011-06-15 23:02:42 +00001694
John McCall7f416cc2015-09-08 08:05:57 +00001695 void emitCopy(CodeGenFunction &CGF, Address destField,
1696 Address srcField) override {
John McCall31168b02011-06-15 23:02:42 +00001697 // Do a "move" by copying the value and then zeroing out the old
1698 // variable.
1699
John McCall7f416cc2015-09-08 08:05:57 +00001700 llvm::Value *value = CGF.Builder.CreateLoad(srcField);
John McCall3a237aa2011-11-09 03:17:26 +00001701
John McCall31168b02011-06-15 23:02:42 +00001702 llvm::Value *null =
1703 llvm::ConstantPointerNull::get(cast<llvm::PointerType>(value->getType()));
John McCall3a237aa2011-11-09 03:17:26 +00001704
Fariborz Jahaniana82e9262013-01-04 23:32:24 +00001705 if (CGF.CGM.getCodeGenOpts().OptimizationLevel == 0) {
John McCall7f416cc2015-09-08 08:05:57 +00001706 CGF.Builder.CreateStore(null, destField);
Fariborz Jahaniana82e9262013-01-04 23:32:24 +00001707 CGF.EmitARCStoreStrongCall(destField, value, /*ignored*/ true);
1708 CGF.EmitARCStoreStrongCall(srcField, null, /*ignored*/ true);
1709 return;
1710 }
John McCall7f416cc2015-09-08 08:05:57 +00001711 CGF.Builder.CreateStore(value, destField);
1712 CGF.Builder.CreateStore(null, srcField);
John McCall31168b02011-06-15 23:02:42 +00001713 }
1714
John McCall7f416cc2015-09-08 08:05:57 +00001715 void emitDispose(CodeGenFunction &CGF, Address field) override {
John McCallcdda29c2013-03-13 03:10:54 +00001716 CGF.EmitARCDestroyStrong(field, ARCImpreciseLifetime);
John McCall31168b02011-06-15 23:02:42 +00001717 }
1718
Craig Topper4f12f102014-03-12 06:41:41 +00001719 void profileImpl(llvm::FoldingSetNodeID &id) const override {
John McCall31168b02011-06-15 23:02:42 +00001720 // 1 is distinguishable from all pointers and byref flags
1721 id.AddInteger(1);
1722 }
1723};
1724
John McCall3a237aa2011-11-09 03:17:26 +00001725/// Emits the copy/dispose helpers for an ARC __block __strong
1726/// variable that's of block-pointer type.
John McCall7f416cc2015-09-08 08:05:57 +00001727class ARCStrongBlockByrefHelpers final : public BlockByrefHelpers {
John McCall3a237aa2011-11-09 03:17:26 +00001728public:
John McCall7f416cc2015-09-08 08:05:57 +00001729 ARCStrongBlockByrefHelpers(CharUnits alignment)
1730 : BlockByrefHelpers(alignment) {}
John McCall3a237aa2011-11-09 03:17:26 +00001731
John McCall7f416cc2015-09-08 08:05:57 +00001732 void emitCopy(CodeGenFunction &CGF, Address destField,
1733 Address srcField) override {
John McCall3a237aa2011-11-09 03:17:26 +00001734 // Do the copy with objc_retainBlock; that's all that
1735 // _Block_object_assign would do anyway, and we'd have to pass the
1736 // right arguments to make sure it doesn't get no-op'ed.
John McCall7f416cc2015-09-08 08:05:57 +00001737 llvm::Value *oldValue = CGF.Builder.CreateLoad(srcField);
John McCall3a237aa2011-11-09 03:17:26 +00001738 llvm::Value *copy = CGF.EmitARCRetainBlock(oldValue, /*mandatory*/ true);
John McCall7f416cc2015-09-08 08:05:57 +00001739 CGF.Builder.CreateStore(copy, destField);
John McCall3a237aa2011-11-09 03:17:26 +00001740 }
1741
John McCall7f416cc2015-09-08 08:05:57 +00001742 void emitDispose(CodeGenFunction &CGF, Address field) override {
John McCallcdda29c2013-03-13 03:10:54 +00001743 CGF.EmitARCDestroyStrong(field, ARCImpreciseLifetime);
John McCall3a237aa2011-11-09 03:17:26 +00001744 }
1745
Craig Topper4f12f102014-03-12 06:41:41 +00001746 void profileImpl(llvm::FoldingSetNodeID &id) const override {
John McCall3a237aa2011-11-09 03:17:26 +00001747 // 2 is distinguishable from all pointers and byref flags
1748 id.AddInteger(2);
1749 }
1750};
1751
John McCallf9b056b2011-03-31 08:03:29 +00001752/// Emits the copy/dispose helpers for a __block variable with a
1753/// nontrivial copy constructor or destructor.
John McCall7f416cc2015-09-08 08:05:57 +00001754class CXXByrefHelpers final : public BlockByrefHelpers {
John McCallf9b056b2011-03-31 08:03:29 +00001755 QualType VarType;
1756 const Expr *CopyExpr;
1757
1758public:
1759 CXXByrefHelpers(CharUnits alignment, QualType type,
1760 const Expr *copyExpr)
John McCall7f416cc2015-09-08 08:05:57 +00001761 : BlockByrefHelpers(alignment), VarType(type), CopyExpr(copyExpr) {}
John McCallf9b056b2011-03-31 08:03:29 +00001762
Craig Topper8a13c412014-05-21 05:09:00 +00001763 bool needsCopy() const override { return CopyExpr != nullptr; }
John McCall7f416cc2015-09-08 08:05:57 +00001764 void emitCopy(CodeGenFunction &CGF, Address destField,
1765 Address srcField) override {
John McCallf9b056b2011-03-31 08:03:29 +00001766 if (!CopyExpr) return;
1767 CGF.EmitSynthesizedCXXCopyCtor(destField, srcField, CopyExpr);
1768 }
1769
John McCall7f416cc2015-09-08 08:05:57 +00001770 void emitDispose(CodeGenFunction &CGF, Address field) override {
John McCallf9b056b2011-03-31 08:03:29 +00001771 EHScopeStack::stable_iterator cleanupDepth = CGF.EHStack.stable_begin();
1772 CGF.PushDestructorCleanup(VarType, field);
1773 CGF.PopCleanupBlocks(cleanupDepth);
1774 }
1775
Craig Topper4f12f102014-03-12 06:41:41 +00001776 void profileImpl(llvm::FoldingSetNodeID &id) const override {
John McCallf9b056b2011-03-31 08:03:29 +00001777 id.AddPointer(VarType.getCanonicalType().getAsOpaquePtr());
1778 }
1779};
1780} // end anonymous namespace
1781
1782static llvm::Constant *
John McCall7f416cc2015-09-08 08:05:57 +00001783generateByrefCopyHelper(CodeGenFunction &CGF, const BlockByrefInfo &byrefInfo,
1784 BlockByrefHelpers &generator) {
John McCallf9b056b2011-03-31 08:03:29 +00001785 ASTContext &Context = CGF.getContext();
1786
1787 QualType R = Context.VoidTy;
Mike Stumpee2a5ee2009-03-06 02:29:21 +00001788
John McCalla738c252011-03-09 04:27:21 +00001789 FunctionArgList args;
Craig Topper8a13c412014-05-21 05:09:00 +00001790 ImplicitParamDecl dst(CGF.getContext(), nullptr, SourceLocation(), nullptr,
Richard Smith053f6c62014-05-16 23:01:30 +00001791 Context.VoidPtrTy);
John McCalla738c252011-03-09 04:27:21 +00001792 args.push_back(&dst);
Mike Stumpf89230d2009-03-06 06:12:24 +00001793
Craig Topper8a13c412014-05-21 05:09:00 +00001794 ImplicitParamDecl src(CGF.getContext(), nullptr, SourceLocation(), nullptr,
Richard Smith053f6c62014-05-16 23:01:30 +00001795 Context.VoidPtrTy);
John McCalla738c252011-03-09 04:27:21 +00001796 args.push_back(&src);
Mike Stump11289f42009-09-09 15:08:12 +00001797
John McCallc56a8b32016-03-11 04:30:31 +00001798 const CGFunctionInfo &FI =
1799 CGF.CGM.getTypes().arrangeBuiltinFunctionDeclaration(R, args);
Mike Stumpee2a5ee2009-03-06 02:29:21 +00001800
John McCall7f416cc2015-09-08 08:05:57 +00001801 llvm::FunctionType *LTy = CGF.CGM.getTypes().GetFunctionType(FI);
Mike Stumpee2a5ee2009-03-06 02:29:21 +00001802
Mike Stumpcbc2bca2009-06-05 23:26:36 +00001803 // FIXME: We'd like to put these into a mergable by content, with
1804 // internal linkage.
Mike Stumpee2a5ee2009-03-06 02:29:21 +00001805 llvm::Function *Fn =
1806 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
John McCallf9b056b2011-03-31 08:03:29 +00001807 "__Block_byref_object_copy_", &CGF.CGM.getModule());
Mike Stumpee2a5ee2009-03-06 02:29:21 +00001808
1809 IdentifierInfo *II
John McCallf9b056b2011-03-31 08:03:29 +00001810 = &Context.Idents.get("__Block_byref_object_copy_");
Mike Stumpee2a5ee2009-03-06 02:29:21 +00001811
John McCallf9b056b2011-03-31 08:03:29 +00001812 FunctionDecl *FD = FunctionDecl::Create(Context,
1813 Context.getTranslationUnitDecl(),
Abramo Bagnaradff19302011-03-08 08:55:46 +00001814 SourceLocation(),
Craig Topper8a13c412014-05-21 05:09:00 +00001815 SourceLocation(), II, R, nullptr,
John McCall8e7d6562010-08-26 03:08:43 +00001816 SC_Static,
Eric Christopher0b1aef22012-04-12 02:16:49 +00001817 false, false);
John McCall31168b02011-06-15 23:02:42 +00001818
Akira Hatanakaaec6b2c2015-10-08 20:26:34 +00001819 CGF.CGM.SetInternalFunctionAttributes(nullptr, Fn, FI);
1820
Adrian Prantl22e66b42014-04-11 01:13:04 +00001821 CGF.StartFunction(FD, R, Fn, FI, args);
Mike Stumpf89230d2009-03-06 06:12:24 +00001822
John McCall7f416cc2015-09-08 08:05:57 +00001823 if (generator.needsCopy()) {
1824 llvm::Type *byrefPtrType = byrefInfo.Type->getPointerTo(0);
Mike Stumpf89230d2009-03-06 06:12:24 +00001825
John McCallf9b056b2011-03-31 08:03:29 +00001826 // dst->x
John McCall7f416cc2015-09-08 08:05:57 +00001827 Address destField = CGF.GetAddrOfLocalVar(&dst);
1828 destField = Address(CGF.Builder.CreateLoad(destField),
1829 byrefInfo.ByrefAlignment);
John McCallf9b056b2011-03-31 08:03:29 +00001830 destField = CGF.Builder.CreateBitCast(destField, byrefPtrType);
John McCall7f416cc2015-09-08 08:05:57 +00001831 destField = CGF.emitBlockByrefAddress(destField, byrefInfo, false,
1832 "dest-object");
Mike Stumpee2a5ee2009-03-06 02:29:21 +00001833
John McCallf9b056b2011-03-31 08:03:29 +00001834 // src->x
John McCall7f416cc2015-09-08 08:05:57 +00001835 Address srcField = CGF.GetAddrOfLocalVar(&src);
1836 srcField = Address(CGF.Builder.CreateLoad(srcField),
1837 byrefInfo.ByrefAlignment);
John McCallf9b056b2011-03-31 08:03:29 +00001838 srcField = CGF.Builder.CreateBitCast(srcField, byrefPtrType);
John McCall7f416cc2015-09-08 08:05:57 +00001839 srcField = CGF.emitBlockByrefAddress(srcField, byrefInfo, false,
1840 "src-object");
John McCallf9b056b2011-03-31 08:03:29 +00001841
John McCall7f416cc2015-09-08 08:05:57 +00001842 generator.emitCopy(CGF, destField, srcField);
John McCallf9b056b2011-03-31 08:03:29 +00001843 }
1844
1845 CGF.FinishFunction();
1846
1847 return llvm::ConstantExpr::getBitCast(Fn, CGF.Int8PtrTy);
Mike Stumpee2a5ee2009-03-06 02:29:21 +00001848}
1849
John McCallf9b056b2011-03-31 08:03:29 +00001850/// Build the copy helper for a __block variable.
1851static llvm::Constant *buildByrefCopyHelper(CodeGenModule &CGM,
John McCall7f416cc2015-09-08 08:05:57 +00001852 const BlockByrefInfo &byrefInfo,
1853 BlockByrefHelpers &generator) {
John McCallf9b056b2011-03-31 08:03:29 +00001854 CodeGenFunction CGF(CGM);
John McCall7f416cc2015-09-08 08:05:57 +00001855 return generateByrefCopyHelper(CGF, byrefInfo, generator);
John McCallf9b056b2011-03-31 08:03:29 +00001856}
1857
1858/// Generate code for a __block variable's dispose helper.
1859static llvm::Constant *
1860generateByrefDisposeHelper(CodeGenFunction &CGF,
John McCall7f416cc2015-09-08 08:05:57 +00001861 const BlockByrefInfo &byrefInfo,
1862 BlockByrefHelpers &generator) {
John McCallf9b056b2011-03-31 08:03:29 +00001863 ASTContext &Context = CGF.getContext();
1864 QualType R = Context.VoidTy;
Mike Stumpee2a5ee2009-03-06 02:29:21 +00001865
John McCalla738c252011-03-09 04:27:21 +00001866 FunctionArgList args;
Craig Topper8a13c412014-05-21 05:09:00 +00001867 ImplicitParamDecl src(CGF.getContext(), nullptr, SourceLocation(), nullptr,
Richard Smith053f6c62014-05-16 23:01:30 +00001868 Context.VoidPtrTy);
John McCalla738c252011-03-09 04:27:21 +00001869 args.push_back(&src);
Mike Stump11289f42009-09-09 15:08:12 +00001870
John McCallc56a8b32016-03-11 04:30:31 +00001871 const CGFunctionInfo &FI =
1872 CGF.CGM.getTypes().arrangeBuiltinFunctionDeclaration(R, args);
Mike Stumpee2a5ee2009-03-06 02:29:21 +00001873
John McCall7f416cc2015-09-08 08:05:57 +00001874 llvm::FunctionType *LTy = CGF.CGM.getTypes().GetFunctionType(FI);
Mike Stumpee2a5ee2009-03-06 02:29:21 +00001875
Mike Stumpcbc2bca2009-06-05 23:26:36 +00001876 // FIXME: We'd like to put these into a mergable by content, with
1877 // internal linkage.
Mike Stumpee2a5ee2009-03-06 02:29:21 +00001878 llvm::Function *Fn =
1879 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
Fariborz Jahanian50198092010-12-02 17:02:11 +00001880 "__Block_byref_object_dispose_",
John McCallf9b056b2011-03-31 08:03:29 +00001881 &CGF.CGM.getModule());
Mike Stumpee2a5ee2009-03-06 02:29:21 +00001882
1883 IdentifierInfo *II
John McCallf9b056b2011-03-31 08:03:29 +00001884 = &Context.Idents.get("__Block_byref_object_dispose_");
Mike Stumpee2a5ee2009-03-06 02:29:21 +00001885
John McCallf9b056b2011-03-31 08:03:29 +00001886 FunctionDecl *FD = FunctionDecl::Create(Context,
1887 Context.getTranslationUnitDecl(),
Abramo Bagnaradff19302011-03-08 08:55:46 +00001888 SourceLocation(),
Craig Topper8a13c412014-05-21 05:09:00 +00001889 SourceLocation(), II, R, nullptr,
John McCall8e7d6562010-08-26 03:08:43 +00001890 SC_Static,
Eric Christopher0b1aef22012-04-12 02:16:49 +00001891 false, false);
Akira Hatanakaaec6b2c2015-10-08 20:26:34 +00001892
1893 CGF.CGM.SetInternalFunctionAttributes(nullptr, Fn, FI);
1894
Adrian Prantl22e66b42014-04-11 01:13:04 +00001895 CGF.StartFunction(FD, R, Fn, FI, args);
Mike Stumpfbe25dd2009-03-06 04:53:30 +00001896
John McCall7f416cc2015-09-08 08:05:57 +00001897 if (generator.needsDispose()) {
1898 Address addr = CGF.GetAddrOfLocalVar(&src);
1899 addr = Address(CGF.Builder.CreateLoad(addr), byrefInfo.ByrefAlignment);
1900 auto byrefPtrType = byrefInfo.Type->getPointerTo(0);
1901 addr = CGF.Builder.CreateBitCast(addr, byrefPtrType);
1902 addr = CGF.emitBlockByrefAddress(addr, byrefInfo, false, "object");
John McCallad7c5c12011-02-08 08:22:06 +00001903
John McCall7f416cc2015-09-08 08:05:57 +00001904 generator.emitDispose(CGF, addr);
Fariborz Jahanian50198092010-12-02 17:02:11 +00001905 }
Mike Stumpee2a5ee2009-03-06 02:29:21 +00001906
John McCallf9b056b2011-03-31 08:03:29 +00001907 CGF.FinishFunction();
John McCallad7c5c12011-02-08 08:22:06 +00001908
John McCallf9b056b2011-03-31 08:03:29 +00001909 return llvm::ConstantExpr::getBitCast(Fn, CGF.Int8PtrTy);
Mike Stumpee2a5ee2009-03-06 02:29:21 +00001910}
1911
John McCallf9b056b2011-03-31 08:03:29 +00001912/// Build the dispose helper for a __block variable.
1913static llvm::Constant *buildByrefDisposeHelper(CodeGenModule &CGM,
John McCall7f416cc2015-09-08 08:05:57 +00001914 const BlockByrefInfo &byrefInfo,
1915 BlockByrefHelpers &generator) {
John McCallf9b056b2011-03-31 08:03:29 +00001916 CodeGenFunction CGF(CGM);
John McCall7f416cc2015-09-08 08:05:57 +00001917 return generateByrefDisposeHelper(CGF, byrefInfo, generator);
Mike Stumpee2a5ee2009-03-06 02:29:21 +00001918}
1919
John McCallf593b102013-01-22 03:56:22 +00001920/// Lazily build the copy and dispose helpers for a __block variable
1921/// with the given information.
David Blaikie92551612015-08-13 23:53:09 +00001922template <class T>
John McCall7f416cc2015-09-08 08:05:57 +00001923static T *buildByrefHelpers(CodeGenModule &CGM, const BlockByrefInfo &byrefInfo,
1924 T &&generator) {
John McCallf9b056b2011-03-31 08:03:29 +00001925 llvm::FoldingSetNodeID id;
John McCall7f416cc2015-09-08 08:05:57 +00001926 generator.Profile(id);
John McCallf9b056b2011-03-31 08:03:29 +00001927
1928 void *insertPos;
John McCall7f416cc2015-09-08 08:05:57 +00001929 BlockByrefHelpers *node
John McCallf9b056b2011-03-31 08:03:29 +00001930 = CGM.ByrefHelpersCache.FindNodeOrInsertPos(id, insertPos);
1931 if (node) return static_cast<T*>(node);
1932
John McCall7f416cc2015-09-08 08:05:57 +00001933 generator.CopyHelper = buildByrefCopyHelper(CGM, byrefInfo, generator);
1934 generator.DisposeHelper = buildByrefDisposeHelper(CGM, byrefInfo, generator);
John McCallf9b056b2011-03-31 08:03:29 +00001935
John McCall7f416cc2015-09-08 08:05:57 +00001936 T *copy = new (CGM.getContext()) T(std::move(generator));
John McCallf9b056b2011-03-31 08:03:29 +00001937 CGM.ByrefHelpersCache.InsertNode(copy, insertPos);
1938 return copy;
1939}
1940
John McCallf593b102013-01-22 03:56:22 +00001941/// Build the copy and dispose helpers for the given __block variable
1942/// emission. Places the helpers in the global cache. Returns null
1943/// if no helpers are required.
John McCall7f416cc2015-09-08 08:05:57 +00001944BlockByrefHelpers *
Chris Lattner2192fe52011-07-18 04:24:23 +00001945CodeGenFunction::buildByrefHelpers(llvm::StructType &byrefType,
John McCallf9b056b2011-03-31 08:03:29 +00001946 const AutoVarEmission &emission) {
1947 const VarDecl &var = *emission.Variable;
1948 QualType type = var.getType();
1949
John McCall7f416cc2015-09-08 08:05:57 +00001950 auto &byrefInfo = getBlockByrefInfo(&var);
1951
1952 // The alignment we care about for the purposes of uniquing byref
1953 // helpers is the alignment of the actual byref value field.
1954 CharUnits valueAlignment =
1955 byrefInfo.ByrefAlignment.alignmentAtOffset(byrefInfo.FieldOffset);
John McCallf593b102013-01-22 03:56:22 +00001956
John McCallf9b056b2011-03-31 08:03:29 +00001957 if (const CXXRecordDecl *record = type->getAsCXXRecordDecl()) {
1958 const Expr *copyExpr = CGM.getContext().getBlockVarCopyInits(&var);
Craig Topper8a13c412014-05-21 05:09:00 +00001959 if (!copyExpr && record->hasTrivialDestructor()) return nullptr;
John McCallf9b056b2011-03-31 08:03:29 +00001960
David Blaikie92551612015-08-13 23:53:09 +00001961 return ::buildByrefHelpers(
John McCall7f416cc2015-09-08 08:05:57 +00001962 CGM, byrefInfo, CXXByrefHelpers(valueAlignment, type, copyExpr));
John McCallf9b056b2011-03-31 08:03:29 +00001963 }
1964
John McCall31168b02011-06-15 23:02:42 +00001965 // Otherwise, if we don't have a retainable type, there's nothing to do.
1966 // that the runtime does extra copies.
Craig Topper8a13c412014-05-21 05:09:00 +00001967 if (!type->isObjCRetainableType()) return nullptr;
John McCall31168b02011-06-15 23:02:42 +00001968
1969 Qualifiers qs = type.getQualifiers();
1970
1971 // If we have lifetime, that dominates.
1972 if (Qualifiers::ObjCLifetime lifetime = qs.getObjCLifetime()) {
John McCall31168b02011-06-15 23:02:42 +00001973 switch (lifetime) {
1974 case Qualifiers::OCL_None: llvm_unreachable("impossible");
1975
1976 // These are just bits as far as the runtime is concerned.
1977 case Qualifiers::OCL_ExplicitNone:
1978 case Qualifiers::OCL_Autoreleasing:
Craig Topper8a13c412014-05-21 05:09:00 +00001979 return nullptr;
John McCall31168b02011-06-15 23:02:42 +00001980
1981 // Tell the runtime that this is ARC __weak, called by the
1982 // byref routines.
David Blaikie92551612015-08-13 23:53:09 +00001983 case Qualifiers::OCL_Weak:
John McCall7f416cc2015-09-08 08:05:57 +00001984 return ::buildByrefHelpers(CGM, byrefInfo,
1985 ARCWeakByrefHelpers(valueAlignment));
John McCall31168b02011-06-15 23:02:42 +00001986
1987 // ARC __strong __block variables need to be retained.
1988 case Qualifiers::OCL_Strong:
John McCall3a237aa2011-11-09 03:17:26 +00001989 // Block pointers need to be copied, and there's no direct
1990 // transfer possible.
John McCall31168b02011-06-15 23:02:42 +00001991 if (type->isBlockPointerType()) {
John McCall7f416cc2015-09-08 08:05:57 +00001992 return ::buildByrefHelpers(CGM, byrefInfo,
1993 ARCStrongBlockByrefHelpers(valueAlignment));
John McCall31168b02011-06-15 23:02:42 +00001994
1995 // Otherwise, we transfer ownership of the retain from the stack
1996 // to the heap.
1997 } else {
John McCall7f416cc2015-09-08 08:05:57 +00001998 return ::buildByrefHelpers(CGM, byrefInfo,
1999 ARCStrongByrefHelpers(valueAlignment));
John McCall31168b02011-06-15 23:02:42 +00002000 }
2001 }
2002 llvm_unreachable("fell out of lifetime switch!");
2003 }
2004
John McCallf9b056b2011-03-31 08:03:29 +00002005 BlockFieldFlags flags;
2006 if (type->isBlockPointerType()) {
2007 flags |= BLOCK_FIELD_IS_BLOCK;
2008 } else if (CGM.getContext().isObjCNSObjectType(type) ||
2009 type->isObjCObjectPointerType()) {
2010 flags |= BLOCK_FIELD_IS_OBJECT;
2011 } else {
Craig Topper8a13c412014-05-21 05:09:00 +00002012 return nullptr;
John McCallf9b056b2011-03-31 08:03:29 +00002013 }
2014
2015 if (type.isObjCGCWeak())
2016 flags |= BLOCK_FIELD_IS_WEAK;
2017
John McCall7f416cc2015-09-08 08:05:57 +00002018 return ::buildByrefHelpers(CGM, byrefInfo,
2019 ObjectByrefHelpers(valueAlignment, flags));
Mike Stumpee2a5ee2009-03-06 02:29:21 +00002020}
2021
John McCall7f416cc2015-09-08 08:05:57 +00002022Address CodeGenFunction::emitBlockByrefAddress(Address baseAddr,
2023 const VarDecl *var,
2024 bool followForward) {
2025 auto &info = getBlockByrefInfo(var);
2026 return emitBlockByrefAddress(baseAddr, info, followForward, var->getName());
John McCall73064872011-03-31 01:59:53 +00002027}
2028
John McCall7f416cc2015-09-08 08:05:57 +00002029Address CodeGenFunction::emitBlockByrefAddress(Address baseAddr,
2030 const BlockByrefInfo &info,
2031 bool followForward,
2032 const llvm::Twine &name) {
2033 // Chase the forwarding address if requested.
2034 if (followForward) {
2035 Address forwardingAddr =
2036 Builder.CreateStructGEP(baseAddr, 1, getPointerSize(), "forwarding");
2037 baseAddr = Address(Builder.CreateLoad(forwardingAddr), info.ByrefAlignment);
2038 }
2039
2040 return Builder.CreateStructGEP(baseAddr, info.FieldIndex,
2041 info.FieldOffset, name);
John McCall73064872011-03-31 01:59:53 +00002042}
2043
John McCall7f416cc2015-09-08 08:05:57 +00002044/// BuildByrefInfo - This routine changes a __block variable declared as T x
John McCall73064872011-03-31 01:59:53 +00002045/// into:
2046///
2047/// struct {
2048/// void *__isa;
2049/// void *__forwarding;
2050/// int32_t __flags;
2051/// int32_t __size;
2052/// void *__copy_helper; // only if needed
2053/// void *__destroy_helper; // only if needed
Fariborz Jahaniana9d44642012-11-14 17:15:51 +00002054/// void *__byref_variable_layout;// only if needed
John McCall73064872011-03-31 01:59:53 +00002055/// char padding[X]; // only if needed
2056/// T x;
2057/// } x
2058///
John McCall7f416cc2015-09-08 08:05:57 +00002059const BlockByrefInfo &CodeGenFunction::getBlockByrefInfo(const VarDecl *D) {
2060 auto it = BlockByrefInfos.find(D);
2061 if (it != BlockByrefInfos.end())
2062 return it->second;
John McCall73064872011-03-31 01:59:53 +00002063
John McCall7f416cc2015-09-08 08:05:57 +00002064 llvm::StructType *byrefType =
Chris Lattner5ec04a52011-08-12 17:43:31 +00002065 llvm::StructType::create(getLLVMContext(),
2066 "struct.__block_byref_" + D->getNameAsString());
John McCall73064872011-03-31 01:59:53 +00002067
John McCall7f416cc2015-09-08 08:05:57 +00002068 QualType Ty = D->getType();
2069
2070 CharUnits size;
2071 SmallVector<llvm::Type *, 8> types;
2072
John McCall73064872011-03-31 01:59:53 +00002073 // void *__isa;
John McCall9dc0db22011-05-15 01:53:33 +00002074 types.push_back(Int8PtrTy);
John McCall7f416cc2015-09-08 08:05:57 +00002075 size += getPointerSize();
John McCall73064872011-03-31 01:59:53 +00002076
2077 // void *__forwarding;
John McCall7f416cc2015-09-08 08:05:57 +00002078 types.push_back(llvm::PointerType::getUnqual(byrefType));
2079 size += getPointerSize();
John McCall73064872011-03-31 01:59:53 +00002080
2081 // int32_t __flags;
John McCall9dc0db22011-05-15 01:53:33 +00002082 types.push_back(Int32Ty);
John McCall7f416cc2015-09-08 08:05:57 +00002083 size += CharUnits::fromQuantity(4);
John McCall73064872011-03-31 01:59:53 +00002084
2085 // int32_t __size;
John McCall9dc0db22011-05-15 01:53:33 +00002086 types.push_back(Int32Ty);
John McCall7f416cc2015-09-08 08:05:57 +00002087 size += CharUnits::fromQuantity(4);
2088
Fariborz Jahanian998f0a32012-11-28 23:12:17 +00002089 // Note that this must match *exactly* the logic in buildByrefHelpers.
John McCall7f416cc2015-09-08 08:05:57 +00002090 bool hasCopyAndDispose = getContext().BlockRequiresCopying(Ty, D);
2091 if (hasCopyAndDispose) {
John McCall73064872011-03-31 01:59:53 +00002092 /// void *__copy_helper;
John McCall9dc0db22011-05-15 01:53:33 +00002093 types.push_back(Int8PtrTy);
John McCall7f416cc2015-09-08 08:05:57 +00002094 size += getPointerSize();
John McCall73064872011-03-31 01:59:53 +00002095
2096 /// void *__destroy_helper;
John McCall9dc0db22011-05-15 01:53:33 +00002097 types.push_back(Int8PtrTy);
John McCall7f416cc2015-09-08 08:05:57 +00002098 size += getPointerSize();
John McCall73064872011-03-31 01:59:53 +00002099 }
John McCall7f416cc2015-09-08 08:05:57 +00002100
Fariborz Jahaniana9d44642012-11-14 17:15:51 +00002101 bool HasByrefExtendedLayout = false;
2102 Qualifiers::ObjCLifetime Lifetime;
2103 if (getContext().getByrefLifetime(Ty, Lifetime, HasByrefExtendedLayout) &&
John McCall7f416cc2015-09-08 08:05:57 +00002104 HasByrefExtendedLayout) {
Fariborz Jahaniana9d44642012-11-14 17:15:51 +00002105 /// void *__byref_variable_layout;
2106 types.push_back(Int8PtrTy);
John McCall7f416cc2015-09-08 08:05:57 +00002107 size += CharUnits::fromQuantity(PointerSizeInBytes);
John McCall73064872011-03-31 01:59:53 +00002108 }
2109
2110 // T x;
John McCall7f416cc2015-09-08 08:05:57 +00002111 llvm::Type *varTy = ConvertTypeForMem(Ty);
2112
2113 bool packed = false;
2114 CharUnits varAlign = getContext().getDeclAlign(D);
Rui Ueyama83aa9792016-01-14 21:00:27 +00002115 CharUnits varOffset = size.alignTo(varAlign);
John McCall7f416cc2015-09-08 08:05:57 +00002116
2117 // We may have to insert padding.
2118 if (varOffset != size) {
2119 llvm::Type *paddingTy =
2120 llvm::ArrayType::get(Int8Ty, (varOffset - size).getQuantity());
2121
2122 types.push_back(paddingTy);
2123 size = varOffset;
2124
2125 // Conversely, we might have to prevent LLVM from inserting padding.
2126 } else if (CGM.getDataLayout().getABITypeAlignment(varTy)
2127 > varAlign.getQuantity()) {
2128 packed = true;
2129 }
2130 types.push_back(varTy);
2131
2132 byrefType->setBody(types, packed);
2133
2134 BlockByrefInfo info;
2135 info.Type = byrefType;
2136 info.FieldIndex = types.size() - 1;
2137 info.FieldOffset = varOffset;
2138 info.ByrefAlignment = std::max(varAlign, getPointerAlign());
2139
2140 auto pair = BlockByrefInfos.insert({D, info});
2141 assert(pair.second && "info was inserted recursively?");
2142 return pair.first->second;
John McCall73064872011-03-31 01:59:53 +00002143}
2144
2145/// Initialize the structural components of a __block variable, i.e.
2146/// everything but the actual object.
2147void CodeGenFunction::emitByrefStructureInit(const AutoVarEmission &emission) {
John McCallf9b056b2011-03-31 08:03:29 +00002148 // Find the address of the local.
John McCall7f416cc2015-09-08 08:05:57 +00002149 Address addr = emission.Addr;
John McCall73064872011-03-31 01:59:53 +00002150
John McCallf9b056b2011-03-31 08:03:29 +00002151 // That's an alloca of the byref structure type.
Chris Lattner2192fe52011-07-18 04:24:23 +00002152 llvm::StructType *byrefType = cast<llvm::StructType>(
John McCall7f416cc2015-09-08 08:05:57 +00002153 cast<llvm::PointerType>(addr.getPointer()->getType())->getElementType());
2154
2155 unsigned nextHeaderIndex = 0;
2156 CharUnits nextHeaderOffset;
2157 auto storeHeaderField = [&](llvm::Value *value, CharUnits fieldSize,
2158 const Twine &name) {
2159 auto fieldAddr = Builder.CreateStructGEP(addr, nextHeaderIndex,
2160 nextHeaderOffset, name);
2161 Builder.CreateStore(value, fieldAddr);
2162
2163 nextHeaderIndex++;
2164 nextHeaderOffset += fieldSize;
2165 };
John McCallf9b056b2011-03-31 08:03:29 +00002166
2167 // Build the byref helpers if necessary. This is null if we don't need any.
John McCall7f416cc2015-09-08 08:05:57 +00002168 BlockByrefHelpers *helpers = buildByrefHelpers(*byrefType, emission);
John McCall73064872011-03-31 01:59:53 +00002169
2170 const VarDecl &D = *emission.Variable;
2171 QualType type = D.getType();
2172
Fariborz Jahaniana9d44642012-11-14 17:15:51 +00002173 bool HasByrefExtendedLayout;
2174 Qualifiers::ObjCLifetime ByrefLifetime;
2175 bool ByRefHasLifetime =
2176 getContext().getByrefLifetime(type, ByrefLifetime, HasByrefExtendedLayout);
John McCall7f416cc2015-09-08 08:05:57 +00002177
John McCallf9b056b2011-03-31 08:03:29 +00002178 llvm::Value *V;
John McCall73064872011-03-31 01:59:53 +00002179
2180 // Initialize the 'isa', which is just 0 or 1.
2181 int isa = 0;
John McCallf9b056b2011-03-31 08:03:29 +00002182 if (type.isObjCGCWeak())
John McCall73064872011-03-31 01:59:53 +00002183 isa = 1;
2184 V = Builder.CreateIntToPtr(Builder.getInt32(isa), Int8PtrTy, "isa");
John McCall7f416cc2015-09-08 08:05:57 +00002185 storeHeaderField(V, getPointerSize(), "byref.isa");
John McCall73064872011-03-31 01:59:53 +00002186
2187 // Store the address of the variable into its own forwarding pointer.
John McCall7f416cc2015-09-08 08:05:57 +00002188 storeHeaderField(addr.getPointer(), getPointerSize(), "byref.forwarding");
John McCall73064872011-03-31 01:59:53 +00002189
2190 // Blocks ABI:
2191 // c) the flags field is set to either 0 if no helper functions are
Fariborz Jahaniana9d44642012-11-14 17:15:51 +00002192 // needed or BLOCK_BYREF_HAS_COPY_DISPOSE if they are,
John McCall73064872011-03-31 01:59:53 +00002193 BlockFlags flags;
Fariborz Jahaniana9d44642012-11-14 17:15:51 +00002194 if (helpers) flags |= BLOCK_BYREF_HAS_COPY_DISPOSE;
2195 if (ByRefHasLifetime) {
2196 if (HasByrefExtendedLayout) flags |= BLOCK_BYREF_LAYOUT_EXTENDED;
2197 else switch (ByrefLifetime) {
2198 case Qualifiers::OCL_Strong:
2199 flags |= BLOCK_BYREF_LAYOUT_STRONG;
2200 break;
2201 case Qualifiers::OCL_Weak:
2202 flags |= BLOCK_BYREF_LAYOUT_WEAK;
2203 break;
2204 case Qualifiers::OCL_ExplicitNone:
2205 flags |= BLOCK_BYREF_LAYOUT_UNRETAINED;
2206 break;
2207 case Qualifiers::OCL_None:
2208 if (!type->isObjCObjectPointerType() && !type->isBlockPointerType())
2209 flags |= BLOCK_BYREF_LAYOUT_NON_OBJECT;
2210 break;
2211 default:
2212 break;
2213 }
2214 if (CGM.getLangOpts().ObjCGCBitmapPrint) {
2215 printf("\n Inline flag for BYREF variable layout (%d):", flags.getBitMask());
2216 if (flags & BLOCK_BYREF_HAS_COPY_DISPOSE)
2217 printf(" BLOCK_BYREF_HAS_COPY_DISPOSE");
2218 if (flags & BLOCK_BYREF_LAYOUT_MASK) {
2219 BlockFlags ThisFlag(flags.getBitMask() & BLOCK_BYREF_LAYOUT_MASK);
2220 if (ThisFlag == BLOCK_BYREF_LAYOUT_EXTENDED)
2221 printf(" BLOCK_BYREF_LAYOUT_EXTENDED");
2222 if (ThisFlag == BLOCK_BYREF_LAYOUT_STRONG)
2223 printf(" BLOCK_BYREF_LAYOUT_STRONG");
2224 if (ThisFlag == BLOCK_BYREF_LAYOUT_WEAK)
2225 printf(" BLOCK_BYREF_LAYOUT_WEAK");
2226 if (ThisFlag == BLOCK_BYREF_LAYOUT_UNRETAINED)
2227 printf(" BLOCK_BYREF_LAYOUT_UNRETAINED");
2228 if (ThisFlag == BLOCK_BYREF_LAYOUT_NON_OBJECT)
2229 printf(" BLOCK_BYREF_LAYOUT_NON_OBJECT");
2230 }
2231 printf("\n");
2232 }
2233 }
John McCall7f416cc2015-09-08 08:05:57 +00002234 storeHeaderField(llvm::ConstantInt::get(IntTy, flags.getBitMask()),
2235 getIntSize(), "byref.flags");
John McCall73064872011-03-31 01:59:53 +00002236
John McCallf9b056b2011-03-31 08:03:29 +00002237 CharUnits byrefSize = CGM.GetTargetTypeStoreSize(byrefType);
2238 V = llvm::ConstantInt::get(IntTy, byrefSize.getQuantity());
John McCall7f416cc2015-09-08 08:05:57 +00002239 storeHeaderField(V, getIntSize(), "byref.size");
John McCall73064872011-03-31 01:59:53 +00002240
John McCallf9b056b2011-03-31 08:03:29 +00002241 if (helpers) {
John McCall7f416cc2015-09-08 08:05:57 +00002242 storeHeaderField(helpers->CopyHelper, getPointerSize(),
2243 "byref.copyHelper");
2244 storeHeaderField(helpers->DisposeHelper, getPointerSize(),
2245 "byref.disposeHelper");
John McCall73064872011-03-31 01:59:53 +00002246 }
John McCall7f416cc2015-09-08 08:05:57 +00002247
Fariborz Jahaniana9d44642012-11-14 17:15:51 +00002248 if (ByRefHasLifetime && HasByrefExtendedLayout) {
John McCall7f416cc2015-09-08 08:05:57 +00002249 auto layoutInfo = CGM.getObjCRuntime().BuildByrefLayout(CGM, type);
2250 storeHeaderField(layoutInfo, getPointerSize(), "byref.layout");
Fariborz Jahaniana9d44642012-11-14 17:15:51 +00002251 }
John McCall73064872011-03-31 01:59:53 +00002252}
2253
John McCallad7c5c12011-02-08 08:22:06 +00002254void CodeGenFunction::BuildBlockRelease(llvm::Value *V, BlockFieldFlags flags) {
Daniel Dunbar900546d2010-07-16 00:00:15 +00002255 llvm::Value *F = CGM.getBlockObjectDispose();
John McCall882987f2013-02-28 19:01:20 +00002256 llvm::Value *args[] = {
2257 Builder.CreateBitCast(V, Int8PtrTy),
2258 llvm::ConstantInt::get(Int32Ty, flags.getBitMask())
2259 };
2260 EmitNounwindRuntimeCall(F, args); // FIXME: throwing destructors?
Mike Stump626aecc2009-03-05 01:23:13 +00002261}
John McCall73064872011-03-31 01:59:53 +00002262
2263namespace {
John McCall7f416cc2015-09-08 08:05:57 +00002264 /// Release a __block variable.
David Blaikie7e70d682015-08-18 22:40:54 +00002265 struct CallBlockRelease final : EHScopeStack::Cleanup {
John McCall73064872011-03-31 01:59:53 +00002266 llvm::Value *Addr;
2267 CallBlockRelease(llvm::Value *Addr) : Addr(Addr) {}
2268
Craig Topper4f12f102014-03-12 06:41:41 +00002269 void Emit(CodeGenFunction &CGF, Flags flags) override {
John McCall31168b02011-06-15 23:02:42 +00002270 // Should we be passing FIELD_IS_WEAK here?
John McCall73064872011-03-31 01:59:53 +00002271 CGF.BuildBlockRelease(Addr, BLOCK_FIELD_IS_BYREF);
2272 }
2273 };
Hans Wennborgdcfba332015-10-06 23:40:43 +00002274} // end anonymous namespace
John McCall73064872011-03-31 01:59:53 +00002275
2276/// Enter a cleanup to destroy a __block variable. Note that this
2277/// cleanup should be a no-op if the variable hasn't left the stack
2278/// yet; if a cleanup is required for the variable itself, that needs
2279/// to be done externally.
2280void CodeGenFunction::enterByrefCleanup(const AutoVarEmission &emission) {
2281 // We don't enter this cleanup if we're in pure-GC mode.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002282 if (CGM.getLangOpts().getGC() == LangOptions::GCOnly)
John McCall73064872011-03-31 01:59:53 +00002283 return;
2284
John McCall7f416cc2015-09-08 08:05:57 +00002285 EHStack.pushCleanup<CallBlockRelease>(NormalAndEHCleanup,
2286 emission.Addr.getPointer());
John McCall73064872011-03-31 01:59:53 +00002287}
John McCall7959fee2011-09-09 20:41:01 +00002288
2289/// Adjust the declaration of something from the blocks API.
2290static void configureBlocksRuntimeObject(CodeGenModule &CGM,
2291 llvm::Constant *C) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00002292 if (!CGM.getLangOpts().BlocksRuntimeOptional) return;
John McCall7959fee2011-09-09 20:41:01 +00002293
Rafael Espindola2ae250c2014-05-09 00:08:36 +00002294 auto *GV = cast<llvm::GlobalValue>(C->stripPointerCasts());
Rafael Espindolac47b0a12014-05-08 13:07:37 +00002295 if (GV->isDeclaration() && GV->hasExternalLinkage())
John McCall7959fee2011-09-09 20:41:01 +00002296 GV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
2297}
2298
2299llvm::Constant *CodeGenModule::getBlockObjectDispose() {
2300 if (BlockObjectDispose)
2301 return BlockObjectDispose;
2302
2303 llvm::Type *args[] = { Int8PtrTy, Int32Ty };
2304 llvm::FunctionType *fty
2305 = llvm::FunctionType::get(VoidTy, args, false);
2306 BlockObjectDispose = CreateRuntimeFunction(fty, "_Block_object_dispose");
2307 configureBlocksRuntimeObject(*this, BlockObjectDispose);
2308 return BlockObjectDispose;
2309}
2310
2311llvm::Constant *CodeGenModule::getBlockObjectAssign() {
2312 if (BlockObjectAssign)
2313 return BlockObjectAssign;
2314
2315 llvm::Type *args[] = { Int8PtrTy, Int8PtrTy, Int32Ty };
2316 llvm::FunctionType *fty
2317 = llvm::FunctionType::get(VoidTy, args, false);
2318 BlockObjectAssign = CreateRuntimeFunction(fty, "_Block_object_assign");
2319 configureBlocksRuntimeObject(*this, BlockObjectAssign);
2320 return BlockObjectAssign;
2321}
2322
2323llvm::Constant *CodeGenModule::getNSConcreteGlobalBlock() {
2324 if (NSConcreteGlobalBlock)
2325 return NSConcreteGlobalBlock;
2326
2327 NSConcreteGlobalBlock = GetOrCreateLLVMGlobal("_NSConcreteGlobalBlock",
Craig Topper8a13c412014-05-21 05:09:00 +00002328 Int8PtrTy->getPointerTo(),
2329 nullptr);
John McCall7959fee2011-09-09 20:41:01 +00002330 configureBlocksRuntimeObject(*this, NSConcreteGlobalBlock);
2331 return NSConcreteGlobalBlock;
2332}
2333
2334llvm::Constant *CodeGenModule::getNSConcreteStackBlock() {
2335 if (NSConcreteStackBlock)
2336 return NSConcreteStackBlock;
2337
2338 NSConcreteStackBlock = GetOrCreateLLVMGlobal("_NSConcreteStackBlock",
Craig Topper8a13c412014-05-21 05:09:00 +00002339 Int8PtrTy->getPointerTo(),
2340 nullptr);
John McCall7959fee2011-09-09 20:41:01 +00002341 configureBlocksRuntimeObject(*this, NSConcreteStackBlock);
2342 return NSConcreteStackBlock;
2343}