blob: 5a41f361d9acfeeaca9c61dd1efdb95abee93560 [file] [log] [blame]
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001//===--- CGBlocks.cpp - Emit LLVM Code for declarations ---------*- C++ -*-===//
Anders Carlssonacfde802009-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 McCalld16c2cf2011-02-08 08:22:06 +000014#include "CGBlocks.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000015#include "CGDebugInfo.h"
16#include "CGObjCRuntime.h"
17#include "CodeGenFunction.h"
18#include "CodeGenModule.h"
Mike Stump6cc88f72009-03-20 21:53:12 +000019#include "clang/AST/DeclObjC.h"
Benjamin Kramer6876fe62010-03-31 15:04:05 +000020#include "llvm/ADT/SmallSet.h"
Stephen Hines651f13c2014-04-23 16:59:28 -070021#include "llvm/IR/CallSite.h"
Chandler Carruth3b844ba2013-01-02 11:45:17 +000022#include "llvm/IR/DataLayout.h"
23#include "llvm/IR/Module.h"
Anders Carlssonacfde802009-02-12 00:39:25 +000024#include <algorithm>
Fariborz Jahanian7d4b9fa2012-11-14 17:43:08 +000025#include <cstdio>
Torok Edwinf42e4a62009-08-24 13:25:12 +000026
Anders Carlssonacfde802009-02-12 00:39:25 +000027using namespace clang;
28using namespace CodeGen;
29
John McCall1a343eb2011-11-10 08:15:53 +000030CGBlockInfo::CGBlockInfo(const BlockDecl *block, StringRef name)
31 : Name(name), CXXThisIndex(0), CanBeGlobal(false), NeedsCopyDispose(false),
Fariborz Jahanianf22ae652012-11-01 18:32:55 +000032 HasCXXObject(false), UsesStret(false), HasCapturedVariableLayout(false),
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -080033 LocalAddress(Address::invalid()), StructureType(nullptr), Block(block),
Stephen Hines6bcf27b2014-05-29 04:14:42 -070034 DominatingIP(nullptr) {
35
John McCall1a343eb2011-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 McCallee504292010-05-21 04:11:14 +000040}
41
John McCallf0c11f72011-03-31 08:03:29 +000042// Anchor the vtable to this translation unit.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -080043BlockByrefHelpers::~BlockByrefHelpers() {}
John McCallf0c11f72011-03-31 08:03:29 +000044
John McCall6b5a61b2011-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 McCallee504292010-05-21 04:11:14 +000049
John McCall6b5a61b2011-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
Stephen Hines651f13c2014-04-23 16:59:28 -070056/// Build the helper function to dispose of a block.
John McCall6b5a61b2011-02-07 10:33:21 +000057static llvm::Constant *buildDisposeHelper(CodeGenModule &CGM,
58 const CGBlockInfo &blockInfo) {
59 return CodeGenFunction(CGM).GenerateDestroyHelperFunction(blockInfo);
60}
61
Fariborz Jahanianaf879c02012-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 Gribenko41487f32013-05-08 23:09:44 +000066/// \code
Fariborz Jahanianaf879c02012-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 Gribenko41487f32013-05-08 23:09:44 +000072/// void *block_method_encoding_address; // @encode for block literal signature.
Fariborz Jahanianaf879c02012-10-25 18:06:53 +000073/// void *block_layout_info; // encoding of captured block variables.
74/// };
Dmitri Gribenko41487f32013-05-08 23:09:44 +000075/// \endcode
John McCall6b5a61b2011-02-07 10:33:21 +000076static llvm::Constant *buildBlockDescriptor(CodeGenModule &CGM,
77 const CGBlockInfo &blockInfo) {
78 ASTContext &C = CGM.getContext();
79
Chris Lattner2acc6e32011-07-18 04:24:23 +000080 llvm::Type *ulong = CGM.getTypes().ConvertType(C.UnsignedLongTy);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -080081 llvm::Type *i8p = nullptr;
Stephen Hines176edba2014-12-01 14:53:08 -080082 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 McCall6b5a61b2011-02-07 10:33:21 +000088
Chris Lattner5f9e2722011-07-23 10:55:15 +000089 SmallVector<llvm::Constant*, 6> elements;
Mike Stumpe5fee252009-02-13 16:19:19 +000090
91 // reserved
John McCall6b5a61b2011-02-07 10:33:21 +000092 elements.push_back(llvm::ConstantInt::get(ulong, 0));
Mike Stumpe5fee252009-02-13 16:19:19 +000093
94 // Size
Mike Stumpd6840002009-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 McCall6b5a61b2011-02-07 10:33:21 +000098 elements.push_back(llvm::ConstantInt::get(ulong,
99 blockInfo.BlockSize.getQuantity()));
Mike Stumpe5fee252009-02-13 16:19:19 +0000100
John McCall6b5a61b2011-02-07 10:33:21 +0000101 // Optional copy/dispose helpers.
102 if (blockInfo.NeedsCopyDispose) {
Mike Stumpe5fee252009-02-13 16:19:19 +0000103 // copy_func_helper_decl
John McCall6b5a61b2011-02-07 10:33:21 +0000104 elements.push_back(buildCopyHelper(CGM, blockInfo));
Mike Stumpe5fee252009-02-13 16:19:19 +0000105
106 // destroy_func_decl
John McCall6b5a61b2011-02-07 10:33:21 +0000107 elements.push_back(buildDisposeHelper(CGM, blockInfo));
Mike Stumpe5fee252009-02-13 16:19:19 +0000108 }
109
John McCall6b5a61b2011-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(
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800114 CGM.GetAddrOfConstantCString(typeAtEncoding).getPointer(), i8p));
Blaine Garst2a7eb282010-02-23 21:51:17 +0000115
John McCall6b5a61b2011-02-07 10:33:21 +0000116 // GC layout.
Fariborz Jahanianc46b4352012-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 McCall6b5a61b2011-02-07 10:33:21 +0000123 else
124 elements.push_back(llvm::Constant::getNullValue(i8p));
Blaine Garst2a7eb282010-02-23 21:51:17 +0000125
Chris Lattnerc5cbb902011-06-20 04:01:35 +0000126 llvm::Constant *init = llvm::ConstantStruct::getAnon(elements);
Mike Stumpe5fee252009-02-13 16:19:19 +0000127
John McCall6b5a61b2011-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 Stumpe5fee252009-02-13 16:19:19 +0000132
John McCall6b5a61b2011-02-07 10:33:21 +0000133 return llvm::ConstantExpr::getBitCast(global, CGM.getBlockDescriptorType());
Anders Carlsson4de9fce2009-03-01 01:09:12 +0000134}
135
John McCall6b5a61b2011-02-07 10:33:21 +0000136/*
137 Purely notional variadic template describing the layout of a block.
Anders Carlsson4de9fce2009-03-01 01:09:12 +0000138
John McCall6b5a61b2011-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 Stump00470a12009-03-05 08:32:30 +0000150
John McCall6b5a61b2011-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 Chisnall5e530af2009-11-17 19:33:30 +0000171
John McCall6b5a61b2011-02-07 10:33:21 +0000172 /// Reserved; should be zero-initialized.
173 int reserved;
David Chisnall5e530af2009-11-17 19:33:30 +0000174
John McCall6b5a61b2011-02-07 10:33:21 +0000175 /// Function pointer generated from block literal.
176 _ResultType (*invoke)(Block_literal *, _ParamTypes...);
Mike Stumpe5fee252009-02-13 16:19:19 +0000177
John McCall6b5a61b2011-02-07 10:33:21 +0000178 /// Block description metadata generated from block literal.
179 struct Block_descriptor *block_descriptor;
John McCall711c52b2011-01-05 12:14:39 +0000180
John McCall6b5a61b2011-02-07 10:33:21 +0000181 /// Captured values follow.
182 _CapturesTypes captures...;
183 };
184 */
David Chisnall5e530af2009-11-17 19:33:30 +0000185
John McCall6b5a61b2011-02-07 10:33:21 +0000186/// The number of fields in a block header.
187const unsigned BlockHeaderSize = 5;
Mike Stump00470a12009-03-05 08:32:30 +0000188
John McCall6b5a61b2011-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 Jahanian90a2d392013-01-17 00:25:06 +0000194 Qualifiers::ObjCLifetime Lifetime;
John McCall6b5a61b2011-02-07 10:33:21 +0000195 const BlockDecl::Capture *Capture; // null for 'this'
Jay Foadef6de3d2011-07-11 09:56:20 +0000196 llvm::Type *Type;
Mike Stumpe5fee252009-02-13 16:19:19 +0000197
John McCall6b5a61b2011-02-07 10:33:21 +0000198 BlockLayoutChunk(CharUnits align, CharUnits size,
Fariborz Jahanian90a2d392013-01-17 00:25:06 +0000199 Qualifiers::ObjCLifetime lifetime,
John McCall6b5a61b2011-02-07 10:33:21 +0000200 const BlockDecl::Capture *capture,
Jay Foadef6de3d2011-07-11 09:56:20 +0000201 llvm::Type *type)
Fariborz Jahanian90a2d392013-01-17 00:25:06 +0000202 : Alignment(align), Size(size), Lifetime(lifetime),
203 Capture(capture), Type(type) {}
Mike Stumpe5fee252009-02-13 16:19:19 +0000204
John McCall6b5a61b2011-02-07 10:33:21 +0000205 /// Tell the block info that this chunk has the given field index.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800206 void setIndex(CGBlockInfo &info, unsigned index, CharUnits offset) {
207 if (!Capture) {
John McCall6b5a61b2011-02-07 10:33:21 +0000208 info.CXXThisIndex = index;
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800209 info.CXXThisOffset = offset;
210 } else {
211 info.Captures.insert({Capture->getVariable(),
212 CGBlockInfo::Capture::makeIndex(index, offset)});
213 }
John McCallea1471e2010-05-20 01:18:31 +0000214 }
John McCall6b5a61b2011-02-07 10:33:21 +0000215 };
Mike Stumpcf62d392009-03-06 18:42:23 +0000216
Fariborz Jahanian90a2d392013-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 McCall6b5a61b2011-02-07 10:33:21 +0000219 bool operator<(const BlockLayoutChunk &left, const BlockLayoutChunk &right) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800220 if (left.Alignment != right.Alignment)
221 return left.Alignment > right.Alignment;
222
223 auto getPrefOrder = [](const BlockLayoutChunk &chunk) {
224 if (chunk.Capture && chunk.Capture->isByRef())
225 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 McCall6b5a61b2011-02-07 10:33:21 +0000234 }
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800235} // end anonymous namespace
John McCall6b5a61b2011-02-07 10:33:21 +0000236
John McCall461c9c12011-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
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700245 const auto *record = cast<CXXRecordDecl>(recordType->getDecl());
John McCall461c9c12011-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 Smith426391c2012-11-16 00:53:38 +0000249 if (record->hasNonTrivialCopyConstructor()) return false;
John McCall461c9c12011-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 Gregor2bb11012011-05-13 01:05:07 +0000253 return !record->hasMutableFields();
John McCall461c9c12011-02-08 03:07:00 +0000254}
255
John McCall6b5a61b2011-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 Smith2d6a5672012-01-14 04:30:29 +0000263 CodeGenFunction *CGF,
John McCall6b5a61b2011-02-07 10:33:21 +0000264 const VarDecl *var) {
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700265 // 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;
269
John McCall6b5a61b2011-02-07 10:33:21 +0000270 QualType type = var->getType();
271
272 // We can only do this if the variable is const.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700273 if (!type.isConstQualified()) return nullptr;
John McCall6b5a61b2011-02-07 10:33:21 +0000274
John McCall461c9c12011-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 Blaikie4e4d0842012-03-11 07:00:24 +0000280 if (CGM.getLangOpts().CPlusPlus && !isSafeForCXXConstantCapture(type))
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700281 return nullptr;
John McCall6b5a61b2011-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();
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700287 if (!init) return nullptr;
John McCall6b5a61b2011-02-07 10:33:21 +0000288
Richard Smith2d6a5672012-01-14 04:30:29 +0000289 return CGM.EmitConstantInit(*var, CGF);
John McCall6b5a61b2011-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 Lattner5f9e2722011-07-23 10:55:15 +0000299 SmallVectorImpl<llvm::Type*> &elementTypes) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800300 // 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 McCall6b5a61b2011-02-07 10:33:21 +0000305
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800306 info.BlockAlign = CGM.getPointerAlign();
307 info.BlockSize = 3 * CGM.getPointerSize() + 2 * CGM.getIntSize();
John McCall6b5a61b2011-02-07 10:33:21 +0000308
309 assert(elementTypes.empty());
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800310 elementTypes.push_back(CGM.VoidPtrTy);
311 elementTypes.push_back(CGM.IntTy);
312 elementTypes.push_back(CGM.IntTy);
313 elementTypes.push_back(CGM.VoidPtrTy);
John McCall6b5a61b2011-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 Smith2d6a5672012-01-14 04:30:29 +0000321static void computeBlockInfo(CodeGenModule &CGM, CodeGenFunction *CGF,
322 CGBlockInfo &info) {
John McCall6b5a61b2011-02-07 10:33:21 +0000323 ASTContext &C = CGM.getContext();
324 const BlockDecl *block = info.getBlockDecl();
325
Chris Lattner5f9e2722011-07-23 10:55:15 +0000326 SmallVector<llvm::Type*, 8> elementTypes;
John McCall6b5a61b2011-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 Stumpe5fee252009-02-13 16:19:19 +0000334 }
Fariborz Jahanianf22ae652012-11-01 18:32:55 +0000335 else if (C.getLangOpts().ObjC1 &&
336 CGM.getLangOpts().getGC() == LangOptions::NonGC)
337 info.HasCapturedVariableLayout = true;
338
John McCall6b5a61b2011-02-07 10:33:21 +0000339 // Collect the layout chunks.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000340 SmallVector<BlockLayoutChunk, 16> layout;
John McCall6b5a61b2011-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 Friedmanc1b8d092013-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 McCall6b5a61b2011-02-07 10:33:21 +0000351
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800352 // Theoretically, this could be in a different address space, so
353 // don't assume standard pointer size/align.
Jay Foadef6de3d2011-07-11 09:56:20 +0000354 llvm::Type *llvmType = CGM.getTypes().ConvertType(thisType);
John McCall6b5a61b2011-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 Jahanian90a2d392013-01-17 00:25:06 +0000359 layout.push_back(BlockLayoutChunk(tinfo.second, tinfo.first,
360 Qualifiers::OCL_None,
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700361 nullptr, llvmType));
John McCall6b5a61b2011-02-07 10:33:21 +0000362 }
363
364 // Next, all the block captures.
Stephen Hines651f13c2014-04-23 16:59:28 -0700365 for (const auto &CI : block->captures()) {
366 const VarDecl *variable = CI.getVariable();
John McCall6b5a61b2011-02-07 10:33:21 +0000367
Stephen Hines651f13c2014-04-23 16:59:28 -0700368 if (CI.isByRef()) {
John McCall6b5a61b2011-02-07 10:33:21 +0000369 // We have to copy/dispose of the __block reference.
370 info.NeedsCopyDispose = true;
371
John McCall6b5a61b2011-02-07 10:33:21 +0000372 // Just use void* instead of a pointer to the byref type.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800373 CharUnits align = CGM.getPointerAlign();
374 maxFieldAlign = std::max(maxFieldAlign, align);
John McCall6b5a61b2011-02-07 10:33:21 +0000375
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800376 layout.push_back(BlockLayoutChunk(align, CGM.getPointerSize(),
377 Qualifiers::OCL_None, &CI,
378 CGM.VoidPtrTy));
John McCall6b5a61b2011-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 Smith2d6a5672012-01-14 04:30:29 +0000384 if (llvm::Constant *constant = tryCaptureAsConstant(CGM, CGF, variable)) {
John McCall6b5a61b2011-02-07 10:33:21 +0000385 info.Captures[variable] = CGBlockInfo::Capture::makeConstant(constant);
386 continue;
387 }
388
John McCallf85e1932011-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 Jahanian90a2d392013-01-17 00:25:06 +0000391 Qualifiers::ObjCLifetime lifetime =
392 variable->getType().getObjCLifetime();
393 if (lifetime) {
John McCallf85e1932011-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 McCall6b5a61b2011-02-07 10:33:21 +0000399
John McCallf85e1932011-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()) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800407 // 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 McCall6b5a61b2011-02-07 10:33:21 +0000416
417 // So do types that require non-trivial copy construction.
Stephen Hines651f13c2014-04-23 16:59:28 -0700418 } else if (CI.hasCopyExpr()) {
John McCall6b5a61b2011-02-07 10:33:21 +0000419 info.NeedsCopyDispose = true;
420 info.HasCXXObject = true;
421
422 // And so do types with destructors.
David Blaikie4e4d0842012-03-11 07:00:24 +0000423 } else if (CGM.getLangOpts().CPlusPlus) {
John McCall6b5a61b2011-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 Jahanianc637d732011-11-02 22:53:43 +0000433 QualType VT = variable->getType();
Fariborz Jahaniand8c45512011-10-31 23:44:33 +0000434 CharUnits size = C.getTypeSizeInChars(VT);
Fariborz Jahanianc637d732011-11-02 22:53:43 +0000435 CharUnits align = C.getDeclAlign(variable);
Fariborz Jahaniand8c45512011-10-31 23:44:33 +0000436
John McCall6b5a61b2011-02-07 10:33:21 +0000437 maxFieldAlign = std::max(maxFieldAlign, align);
438
Jay Foadef6de3d2011-07-11 09:56:20 +0000439 llvm::Type *llvmType =
Fariborz Jahaniand8c45512011-10-31 23:44:33 +0000440 CGM.getTypes().ConvertTypeForMem(VT);
441
Stephen Hines651f13c2014-04-23 16:59:28 -0700442 layout.push_back(BlockLayoutChunk(align, size, lifetime, &CI, llvmType));
John McCall6b5a61b2011-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 Jahanianff685c52012-12-04 17:20:57 +0000457
458 // Needed for blocks layout info.
459 info.BlockHeaderForcedGapOffset = info.BlockSize;
460 info.BlockHeaderForcedGapSize = CharUnits::Zero();
461
John McCall6b5a61b2011-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 Lattner5f9e2722011-07-23 10:55:15 +0000481 SmallVectorImpl<BlockLayoutChunk>::iterator
John McCall6b5a61b2011-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 Lattner5f9e2722011-07-23 10:55:15 +0000492 SmallVectorImpl<BlockLayoutChunk>::iterator first = li;
John McCall6b5a61b2011-02-07 10:33:21 +0000493 for (; li != le; ++li) {
494 assert(endAlign >= li->Alignment);
495
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800496 li->setIndex(info, elementTypes.size(), blockSize);
John McCall6b5a61b2011-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 Jahanianff685c52012-12-04 17:20:57 +0000502 if (endAlign >= maxFieldAlign) {
John McCall6b5a61b2011-02-07 10:33:21 +0000503 break;
Fariborz Jahanianff685c52012-12-04 17:20:57 +0000504 }
John McCall6b5a61b2011-02-07 10:33:21 +0000505 }
John McCall6b5a61b2011-02-07 10:33:21 +0000506 // Don't re-append everything we just appended.
507 layout.erase(first, li);
508 }
509 }
510
John McCall6ea48412012-04-26 21:14:42 +0000511 assert(endAlign == getLowBit(blockSize));
Fariborz Jahanianff685c52012-12-04 17:20:57 +0000512
John McCall6b5a61b2011-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) {
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700516 CharUnits newBlockSize = blockSize.alignTo(maxFieldAlign);
John McCall6ea48412012-04-26 21:14:42 +0000517 CharUnits padding = newBlockSize - blockSize;
John McCall6b5a61b2011-02-07 10:33:21 +0000518
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800519 // 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 McCall5936e332011-02-15 09:22:45 +0000525 elementTypes.push_back(llvm::ArrayType::get(CGM.Int8Ty,
526 padding.getQuantity()));
John McCall6ea48412012-04-26 21:14:42 +0000527 blockSize = newBlockSize;
John McCall6c803f72012-05-01 20:28:00 +0000528 endAlign = getLowBit(blockSize); // might be > maxFieldAlign
John McCall6b5a61b2011-02-07 10:33:21 +0000529 }
530
John McCall6c803f72012-05-01 20:28:00 +0000531 assert(endAlign >= maxFieldAlign);
John McCall6ea48412012-04-26 21:14:42 +0000532 assert(endAlign == getLowBit(blockSize));
John McCall6b5a61b2011-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 Lattner5f9e2722011-07-23 10:55:15 +0000536 for (SmallVectorImpl<BlockLayoutChunk>::iterator
John McCall6b5a61b2011-02-07 10:33:21 +0000537 li = layout.begin(), le = layout.end(); li != le; ++li) {
Stephen Hines176edba2014-12-01 14:53:08 -0800538 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 McCall6b5a61b2011-02-07 10:33:21 +0000548 assert(endAlign >= li->Alignment);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800549 li->setIndex(info, elementTypes.size(), blockSize);
John McCall6b5a61b2011-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 McCall1a343eb2011-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 McCall38baeab2012-04-13 18:44:05 +0000563 assert(CGF.HaveInsertPoint());
564
John McCall1a343eb2011-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 Smith2d6a5672012-01-14 04:30:29 +0000573 computeBlockInfo(CGF.CGM, &CGF, blockInfo);
John McCall1a343eb2011-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.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800579 blockInfo.LocalAddress = CGF.CreateTempAlloca(blockInfo.StructureType,
580 blockInfo.BlockAlign, "block");
John McCall1a343eb2011-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.
Stephen Hines651f13c2014-04-23 16:59:28 -0700587 for (const auto &CI : block->captures()) {
John McCall1a343eb2011-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.
Stephen Hines651f13c2014-04-23 16:59:28 -0700590 if (CI.isByRef()) continue;
John McCall1a343eb2011-11-10 08:15:53 +0000591
592 // Ignore variables that are constant-captured.
Stephen Hines651f13c2014-04-23 16:59:28 -0700593 const VarDecl *variable = CI.getVariable();
John McCall1a343eb2011-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 Collingbourne516bbd42012-01-26 03:33:36 +0000607 destroyer = CodeGenFunction::destroyARCStrongImprecise;
John McCall1a343eb2011-11-10 08:15:53 +0000608 } else {
Peter Collingbourne516bbd42012-01-26 03:33:36 +0000609 destroyer = CGF.getDestroyer(dtorKind);
John McCall1a343eb2011-11-10 08:15:53 +0000610 }
611
612 // GEP down to the address.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800613 Address addr = CGF.Builder.CreateStructGEP(blockInfo.LocalAddress,
614 capture.getIndex(),
615 capture.getOffset());
John McCall1a343eb2011-11-10 08:15:53 +0000616
John McCall6f103ba2011-11-10 10:43:54 +0000617 // We can use that GEP as the dominating IP.
618 if (!blockInfo.DominatingIP)
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800619 blockInfo.DominatingIP = cast<llvm::Instruction>(addr.getPointer());
John McCall6f103ba2011-11-10 10:43:54 +0000620
John McCall1a343eb2011-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 Collingbourne516bbd42012-01-26 03:33:36 +0000627 destroyer, useArrayEHCleanup);
John McCall1a343eb2011-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;
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700670 } while (head != nullptr);
John McCall1a343eb2011-11-10 08:15:53 +0000671}
672
John McCall6b5a61b2011-02-07 10:33:21 +0000673/// Emit a block literal expression in the current function.
674llvm::Value *CodeGenFunction::EmitBlockLiteral(const BlockExpr *blockExpr) {
John McCall1a343eb2011-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 Smith2d6a5672012-01-14 04:30:29 +0000679 computeBlockInfo(CGM, this, blockInfo);
John McCall1a343eb2011-11-10 08:15:53 +0000680 blockInfo.BlockExpression = blockExpr;
681 return EmitBlockLiteral(blockInfo);
682 }
John McCall6b5a61b2011-02-07 10:33:21 +0000683
John McCall1a343eb2011-11-10 08:15:53 +0000684 // Find the block info for this block and take ownership of it.
Stephen Hines651f13c2014-04-23 16:59:28 -0700685 std::unique_ptr<CGBlockInfo> blockInfo;
John McCall1a343eb2011-11-10 08:15:53 +0000686 blockInfo.reset(findAndRemoveBlockInfo(&FirstBlockInfo,
687 blockExpr->getBlockDecl()));
John McCall6b5a61b2011-02-07 10:33:21 +0000688
John McCall1a343eb2011-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 Friedman23f02672012-03-01 04:01:32 +0000695 bool isLambdaConv = blockInfo.getBlockDecl()->isConversionFromLambda();
John McCall6b5a61b2011-02-07 10:33:21 +0000696 llvm::Constant *blockFn
Fariborz Jahanian4904bf42012-06-26 16:06:38 +0000697 = CodeGenFunction(CGM, true).GenerateBlockFunction(CurGD, blockInfo,
John McCallf5ebf9b2013-05-03 07:33:41 +0000698 LocalDeclMap,
699 isLambdaConv);
John McCall5936e332011-02-15 09:22:45 +0000700 blockFn = llvm::ConstantExpr::getBitCast(blockFn, VoidPtrTy);
John McCall6b5a61b2011-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 McCall5936e332011-02-15 09:22:45 +0000709 isa = llvm::ConstantExpr::getBitCast(isa, VoidPtrTy);
John McCall6b5a61b2011-02-07 10:33:21 +0000710
711 // Build the block descriptor.
712 llvm::Constant *descriptor = buildBlockDescriptor(CGM, blockInfo);
713
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800714 Address blockAddr = blockInfo.LocalAddress;
715 assert(blockAddr.isValid() && "block has no address!");
John McCall6b5a61b2011-02-07 10:33:21 +0000716
717 // Compute the initial on-stack block flags.
John McCalld16c2cf2011-02-08 08:22:06 +0000718 BlockFlags flags = BLOCK_HAS_SIGNATURE;
Fariborz Jahanianf22ae652012-11-01 18:32:55 +0000719 if (blockInfo.HasCapturedVariableLayout) flags |= BLOCK_HAS_EXTENDED_LAYOUT;
John McCall6b5a61b2011-02-07 10:33:21 +0000720 if (blockInfo.NeedsCopyDispose) flags |= BLOCK_HAS_COPY_DISPOSE;
721 if (blockInfo.HasCXXObject) flags |= BLOCK_HAS_CXX_OBJ;
John McCall64cd2322011-03-09 08:39:33 +0000722 if (blockInfo.UsesStret) flags |= BLOCK_USE_STRET;
John McCall6b5a61b2011-02-07 10:33:21 +0000723
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800724 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 McCall6b5a61b2011-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()) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800760 Address addr = projectField(blockInfo.CXXThisIndex, blockInfo.CXXThisOffset,
761 "block.captured-this.addr");
John McCall6b5a61b2011-02-07 10:33:21 +0000762 Builder.CreateStore(LoadCXXThis(), addr);
763 }
764
765 // Next, captured variables.
Stephen Hines651f13c2014-04-23 16:59:28 -0700766 for (const auto &CI : blockDecl->captures()) {
767 const VarDecl *variable = CI.getVariable();
John McCall6b5a61b2011-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**.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800777 Address blockField =
778 projectField(capture.getIndex(), capture.getOffset(), "block.captured");
John McCall6b5a61b2011-02-07 10:33:21 +0000779
780 // Compute the address of the thing we're going to move into the
781 // block literal.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800782 Address src = Address::invalid();
John McCall6b5a61b2011-02-07 10:33:21 +0000783
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700784 if (blockDecl->isConversionFromLambda()) {
Eli Friedman64bee652012-02-25 02:48:22 +0000785 // The lambda capture in a lambda's conversion-to-block-pointer is
Eli Friedman23f02672012-03-01 04:01:32 +0000786 // special; we'll simply emit it directly.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800787 src = Address::invalid();
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700788 } else if (CI.isByRef()) {
789 if (BlockInfo && CI.isNested()) {
790 // We need to use the capture from the enclosing block.
791 const CGBlockInfo::Capture &enclosingCapture =
792 BlockInfo->getCapture(variable);
793
794 // This is a [[type]]*, except that a byref entry wil just be an i8**.
795 src = Builder.CreateStructGEP(LoadBlockStruct(),
796 enclosingCapture.getIndex(),
797 enclosingCapture.getOffset(),
798 "block.capture.addr");
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800799 } else {
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700800 auto I = LocalDeclMap.find(variable);
801 assert(I != LocalDeclMap.end());
802 src = I->second;
John McCall0353a7b2013-03-04 06:32:36 +0000803 }
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700804 } else {
805 DeclRefExpr declRef(const_cast<VarDecl *>(variable),
806 /*RefersToEnclosingVariableOrCapture*/ CI.isNested(),
807 type.getNonReferenceType(), VK_LValue,
808 SourceLocation());
809 src = EmitDeclRefLValue(&declRef).getAddress();
810 };
John McCall6b5a61b2011-02-07 10:33:21 +0000811
812 // For byrefs, we just write the pointer to the byref struct into
813 // the block field. There's no need to chase the forwarding
814 // pointer at this point, since we're building something that will
815 // live a shorter life than the stack byref anyway.
Stephen Hines651f13c2014-04-23 16:59:28 -0700816 if (CI.isByRef()) {
John McCall5936e332011-02-15 09:22:45 +0000817 // Get a void* that points to the byref struct.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800818 llvm::Value *byrefPointer;
Stephen Hines651f13c2014-04-23 16:59:28 -0700819 if (CI.isNested())
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800820 byrefPointer = Builder.CreateLoad(src, "byref.capture");
John McCall6b5a61b2011-02-07 10:33:21 +0000821 else
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800822 byrefPointer = Builder.CreateBitCast(src.getPointer(), VoidPtrTy);
John McCall6b5a61b2011-02-07 10:33:21 +0000823
John McCall5936e332011-02-15 09:22:45 +0000824 // Write that void* into the capture field.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800825 Builder.CreateStore(byrefPointer, blockField);
John McCall6b5a61b2011-02-07 10:33:21 +0000826
827 // If we have a copy constructor, evaluate that into the block field.
Stephen Hines651f13c2014-04-23 16:59:28 -0700828 } else if (const Expr *copyExpr = CI.getCopyExpr()) {
Eli Friedman23f02672012-03-01 04:01:32 +0000829 if (blockDecl->isConversionFromLambda()) {
830 // If we have a lambda conversion, emit the expression
831 // directly into the block instead.
Eli Friedman23f02672012-03-01 04:01:32 +0000832 AggValueSlot Slot =
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800833 AggValueSlot::forAddr(blockField, Qualifiers(),
Eli Friedman23f02672012-03-01 04:01:32 +0000834 AggValueSlot::IsDestructed,
835 AggValueSlot::DoesNotNeedGCBarriers,
Chad Rosier649b4a12012-03-29 17:37:10 +0000836 AggValueSlot::IsNotAliased);
Eli Friedman23f02672012-03-01 04:01:32 +0000837 EmitAggExpr(copyExpr, Slot);
838 } else {
839 EmitSynthesizedCXXCopyCtor(blockField, src, copyExpr);
840 }
John McCall6b5a61b2011-02-07 10:33:21 +0000841
842 // If it's a reference variable, copy the reference into the block field.
Fariborz Jahanianc637d732011-11-02 22:53:43 +0000843 } else if (type->isReferenceType()) {
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700844 Builder.CreateStore(src.getPointer(), blockField);
John McCall4b9bcd62013-04-08 23:27:49 +0000845
846 // If this is an ARC __strong block-pointer variable, don't do a
847 // block copy.
848 //
849 // TODO: this can be generalized into the normal initialization logic:
850 // we should never need to do a block-copy when initializing a local
851 // variable, because the local variable's lifetime should be strictly
852 // contained within the stack block's.
853 } else if (type.getObjCLifetime() == Qualifiers::OCL_Strong &&
854 type->isBlockPointerType()) {
855 // Load the block and do a simple retain.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800856 llvm::Value *value = Builder.CreateLoad(src, "block.captured_block");
John McCall4b9bcd62013-04-08 23:27:49 +0000857 value = EmitARCRetainNonBlock(value);
858
859 // Do a primitive store to the block field.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800860 Builder.CreateStore(value, blockField);
John McCall6b5a61b2011-02-07 10:33:21 +0000861
862 // Otherwise, fake up a POD copy into the block field.
863 } else {
John McCallf85e1932011-06-15 23:02:42 +0000864 // Fake up a new variable so that EmitScalarInit doesn't think
865 // we're referring to the variable in its own initializer.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700866 ImplicitParamDecl blockFieldPseudoVar(getContext(), /*DC*/ nullptr,
867 SourceLocation(), /*name*/ nullptr,
868 type);
John McCallf85e1932011-06-15 23:02:42 +0000869
John McCallbb699b02011-02-07 18:37:40 +0000870 // We use one of these or the other depending on whether the
871 // reference is nested.
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700872 DeclRefExpr declRef(const_cast<VarDecl *>(variable),
873 /*RefersToEnclosingVariableOrCapture*/ CI.isNested(),
874 type, VK_LValue, SourceLocation());
John McCallbb699b02011-02-07 18:37:40 +0000875
Fariborz Jahanianc637d732011-11-02 22:53:43 +0000876 ImplicitCastExpr l2r(ImplicitCastExpr::OnStack, type, CK_LValueToRValue,
John McCallf4b88a42012-03-10 09:33:50 +0000877 &declRef, VK_RValue);
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700878 // FIXME: Pass a specific location for the expr init so that the store is
879 // attributed to a reasonable location - otherwise it may be attributed to
880 // locations of subexpressions in the initialization.
John McCalla07398e2011-06-16 04:16:24 +0000881 EmitExprAsInit(&l2r, &blockFieldPseudoVar,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800882 MakeAddrLValue(blockField, type, AlignmentSource::Decl),
John McCalldf045202011-03-08 09:38:48 +0000883 /*captured by init*/ false);
John McCall6b5a61b2011-02-07 10:33:21 +0000884 }
885
John McCall1a343eb2011-11-10 08:15:53 +0000886 // Activate the cleanup if layout pushed one.
Stephen Hines651f13c2014-04-23 16:59:28 -0700887 if (!CI.isByRef()) {
John McCall1a343eb2011-11-10 08:15:53 +0000888 EHScopeStack::stable_iterator cleanup = capture.getCleanup();
889 if (cleanup.isValid())
John McCall6f103ba2011-11-10 10:43:54 +0000890 ActivateCleanupBlock(cleanup, blockInfo.DominatingIP);
John McCallf85e1932011-06-15 23:02:42 +0000891 }
John McCall6b5a61b2011-02-07 10:33:21 +0000892 }
893
894 // Cast to the converted block-pointer type, which happens (somewhat
895 // unfortunately) to be a pointer to function type.
896 llvm::Value *result =
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800897 Builder.CreateBitCast(blockAddr.getPointer(),
John McCall6b5a61b2011-02-07 10:33:21 +0000898 ConvertType(blockInfo.getBlockExpr()->getType()));
John McCall711c52b2011-01-05 12:14:39 +0000899
John McCall6b5a61b2011-02-07 10:33:21 +0000900 return result;
Mike Stumpe5fee252009-02-13 16:19:19 +0000901}
902
903
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000904llvm::Type *CodeGenModule::getBlockDescriptorType() {
Mike Stumpab695142009-02-13 15:16:56 +0000905 if (BlockDescriptorType)
906 return BlockDescriptorType;
907
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000908 llvm::Type *UnsignedLongTy =
Mike Stumpab695142009-02-13 15:16:56 +0000909 getTypes().ConvertType(getContext().UnsignedLongTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000910
Mike Stumpab695142009-02-13 15:16:56 +0000911 // struct __block_descriptor {
912 // unsigned long reserved;
913 // unsigned long block_size;
Blaine Garst2a7eb282010-02-23 21:51:17 +0000914 //
915 // // later, the following will be added
916 //
917 // struct {
918 // void (*copyHelper)();
919 // void (*copyHelper)();
920 // } helpers; // !!! optional
921 //
922 // const char *signature; // the block signature
923 // const char *layout; // reserved
Mike Stumpab695142009-02-13 15:16:56 +0000924 // };
Chris Lattner7650d952011-06-18 22:49:11 +0000925 BlockDescriptorType =
Chris Lattnerc1c20112011-08-12 17:43:31 +0000926 llvm::StructType::create("struct.__block_descriptor",
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700927 UnsignedLongTy, UnsignedLongTy, nullptr);
Mike Stumpab695142009-02-13 15:16:56 +0000928
John McCall6b5a61b2011-02-07 10:33:21 +0000929 // Now form a pointer to that.
930 BlockDescriptorType = llvm::PointerType::getUnqual(BlockDescriptorType);
Mike Stumpab695142009-02-13 15:16:56 +0000931 return BlockDescriptorType;
Anders Carlssonacfde802009-02-12 00:39:25 +0000932}
933
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000934llvm::Type *CodeGenModule::getGenericBlockLiteralType() {
Mike Stump9b8a7972009-02-13 15:25:34 +0000935 if (GenericBlockLiteralType)
936 return GenericBlockLiteralType;
937
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000938 llvm::Type *BlockDescPtrTy = getBlockDescriptorType();
Mike Stumpa5448542009-02-13 15:32:32 +0000939
Mike Stump9b8a7972009-02-13 15:25:34 +0000940 // struct __block_literal_generic {
Mike Stumpbd65cac2009-02-19 01:01:04 +0000941 // void *__isa;
942 // int __flags;
943 // int __reserved;
944 // void (*__invoke)(void *);
945 // struct __block_descriptor *__descriptor;
Mike Stump9b8a7972009-02-13 15:25:34 +0000946 // };
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000947 GenericBlockLiteralType =
Chris Lattnerc1c20112011-08-12 17:43:31 +0000948 llvm::StructType::create("struct.__block_literal_generic",
949 VoidPtrTy, IntTy, IntTy, VoidPtrTy,
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700950 BlockDescPtrTy, nullptr);
Mike Stumpa5448542009-02-13 15:32:32 +0000951
Mike Stump9b8a7972009-02-13 15:25:34 +0000952 return GenericBlockLiteralType;
Anders Carlssonacfde802009-02-12 00:39:25 +0000953}
954
Nick Lewycky4ee7dc22013-10-02 02:29:49 +0000955RValue CodeGenFunction::EmitBlockCallExpr(const CallExpr *E,
Anders Carlssona1736c02009-12-24 21:13:40 +0000956 ReturnValueSlot ReturnValue) {
Mike Stumpa5448542009-02-13 15:32:32 +0000957 const BlockPointerType *BPT =
Ted Kremenek6217b802009-07-29 21:53:49 +0000958 E->getCallee()->getType()->getAs<BlockPointerType>();
Mike Stumpa5448542009-02-13 15:32:32 +0000959
Anders Carlssonacfde802009-02-12 00:39:25 +0000960 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
961
962 // Get a pointer to the generic block literal.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000963 llvm::Type *BlockLiteralTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +0000964 llvm::PointerType::getUnqual(CGM.getGenericBlockLiteralType());
Anders Carlssonacfde802009-02-12 00:39:25 +0000965
966 // Bitcast the callee to a block literal.
Mike Stumpa5448542009-02-13 15:32:32 +0000967 llvm::Value *BlockLiteral =
Anders Carlssonacfde802009-02-12 00:39:25 +0000968 Builder.CreateBitCast(Callee, BlockLiteralTy, "block.literal");
969
970 // Get the function pointer from the literal.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800971 llvm::Value *FuncPtr =
972 Builder.CreateStructGEP(CGM.getGenericBlockLiteralType(), BlockLiteral, 3);
Anders Carlssonacfde802009-02-12 00:39:25 +0000973
Benjamin Kramer578faa82011-09-27 21:06:10 +0000974 BlockLiteral = Builder.CreateBitCast(BlockLiteral, VoidPtrTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000975
Anders Carlssonacfde802009-02-12 00:39:25 +0000976 // Add the block literal.
Anders Carlssonacfde802009-02-12 00:39:25 +0000977 CallArgList Args;
John McCall0774cb82011-05-15 01:53:33 +0000978 Args.add(RValue::get(BlockLiteral), getContext().VoidPtrTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000979
Anders Carlsson782f3972009-04-08 23:13:16 +0000980 QualType FnType = BPT->getPointeeType();
981
Anders Carlssonacfde802009-02-12 00:39:25 +0000982 // And the rest of the arguments.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800983 EmitCallArgs(Args, FnType->getAs<FunctionProtoType>(), E->arguments());
Mike Stumpa5448542009-02-13 15:32:32 +0000984
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000985 // Load the function.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800986 llvm::Value *Func = Builder.CreateAlignedLoad(FuncPtr, getPointerAlign());
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000987
John McCall64cd2322011-03-09 08:39:33 +0000988 const FunctionType *FuncTy = FnType->castAs<FunctionType>();
John McCallde5d3c72012-02-17 03:33:10 +0000989 const CGFunctionInfo &FnInfo =
John McCalle56bb362012-12-07 07:03:17 +0000990 CGM.getTypes().arrangeBlockFunctionCall(Args, FuncTy);
Mike Stump1eb44332009-09-09 15:08:12 +0000991
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000992 // Cast the function pointer to the right type.
John McCallde5d3c72012-02-17 03:33:10 +0000993 llvm::Type *BlockFTy = CGM.getTypes().GetFunctionType(FnInfo);
Mike Stump1eb44332009-09-09 15:08:12 +0000994
Chris Lattner2acc6e32011-07-18 04:24:23 +0000995 llvm::Type *BlockFTyPtr = llvm::PointerType::getUnqual(BlockFTy);
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000996 Func = Builder.CreateBitCast(Func, BlockFTyPtr);
Mike Stump1eb44332009-09-09 15:08:12 +0000997
Anders Carlssonacfde802009-02-12 00:39:25 +0000998 // And call the block.
Anders Carlssona1736c02009-12-24 21:13:40 +0000999 return EmitCall(FnInfo, Func, ReturnValue, Args);
Anders Carlssonacfde802009-02-12 00:39:25 +00001000}
Anders Carlssond5cab542009-02-12 17:55:02 +00001001
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001002Address CodeGenFunction::GetAddrOfBlockDecl(const VarDecl *variable,
1003 bool isByRef) {
John McCall6b5a61b2011-02-07 10:33:21 +00001004 assert(BlockInfo && "evaluating block ref without block information?");
1005 const CGBlockInfo::Capture &capture = BlockInfo->getCapture(variable);
John McCallea1471e2010-05-20 01:18:31 +00001006
John McCall6b5a61b2011-02-07 10:33:21 +00001007 // Handle constant captures.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001008 if (capture.isConstant()) return LocalDeclMap.find(variable)->second;
John McCallea1471e2010-05-20 01:18:31 +00001009
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001010 Address addr =
1011 Builder.CreateStructGEP(LoadBlockStruct(), capture.getIndex(),
1012 capture.getOffset(), "block.capture.addr");
John McCallea1471e2010-05-20 01:18:31 +00001013
John McCall6b5a61b2011-02-07 10:33:21 +00001014 if (isByRef) {
1015 // addr should be a void** right now. Load, then cast the result
1016 // to byref*.
Mike Stumpdab514f2009-03-04 03:23:46 +00001017
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001018 auto &byrefInfo = getBlockByrefInfo(variable);
1019 addr = Address(Builder.CreateLoad(addr), byrefInfo.ByrefAlignment);
Mike Stumpea26cb52009-10-21 03:49:08 +00001020
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001021 auto byrefPointerType = llvm::PointerType::get(byrefInfo.Type, 0);
1022 addr = Builder.CreateBitCast(addr, byrefPointerType, "byref.addr");
Mike Stumpea26cb52009-10-21 03:49:08 +00001023
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001024 addr = emitBlockByrefAddress(addr, byrefInfo, /*follow*/ true,
1025 variable->getName());
John McCallea1471e2010-05-20 01:18:31 +00001026 }
1027
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001028 if (auto refType = variable->getType()->getAs<ReferenceType>()) {
1029 addr = EmitLoadOfReference(addr, refType);
1030 }
Mike Stumpea26cb52009-10-21 03:49:08 +00001031
John McCall6b5a61b2011-02-07 10:33:21 +00001032 return addr;
Mike Stumpdab514f2009-03-04 03:23:46 +00001033}
1034
Mike Stump67a64482009-02-14 22:16:35 +00001035llvm::Constant *
John McCalld16c2cf2011-02-08 08:22:06 +00001036CodeGenModule::GetAddrOfGlobalBlock(const BlockExpr *blockExpr,
John McCall5936e332011-02-15 09:22:45 +00001037 const char *name) {
John McCall1a343eb2011-11-10 08:15:53 +00001038 CGBlockInfo blockInfo(blockExpr->getBlockDecl(), name);
1039 blockInfo.BlockExpression = blockExpr;
Mike Stumpa5448542009-02-13 15:32:32 +00001040
John McCall6b5a61b2011-02-07 10:33:21 +00001041 // Compute information about the layout, etc., of this block.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001042 computeBlockInfo(*this, nullptr, blockInfo);
Mike Stumpa5448542009-02-13 15:32:32 +00001043
John McCall6b5a61b2011-02-07 10:33:21 +00001044 // Using that metadata, generate the actual block function.
1045 llvm::Constant *blockFn;
1046 {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001047 CodeGenFunction::DeclMapTy LocalDeclMap;
John McCalld16c2cf2011-02-08 08:22:06 +00001048 blockFn = CodeGenFunction(*this).GenerateBlockFunction(GlobalDecl(),
1049 blockInfo,
John McCallf5ebf9b2013-05-03 07:33:41 +00001050 LocalDeclMap,
Eli Friedman64bee652012-02-25 02:48:22 +00001051 false);
John McCall6b5a61b2011-02-07 10:33:21 +00001052 }
John McCall5936e332011-02-15 09:22:45 +00001053 blockFn = llvm::ConstantExpr::getBitCast(blockFn, VoidPtrTy);
Mike Stumpa5448542009-02-13 15:32:32 +00001054
John McCalld16c2cf2011-02-08 08:22:06 +00001055 return buildGlobalBlock(*this, blockInfo, blockFn);
Anders Carlssond5cab542009-02-12 17:55:02 +00001056}
1057
John McCall6b5a61b2011-02-07 10:33:21 +00001058static llvm::Constant *buildGlobalBlock(CodeGenModule &CGM,
1059 const CGBlockInfo &blockInfo,
1060 llvm::Constant *blockFn) {
1061 assert(blockInfo.CanBeGlobal);
1062
1063 // Generate the constants for the block literal initializer.
1064 llvm::Constant *fields[BlockHeaderSize];
1065
1066 // isa
1067 fields[0] = CGM.getNSConcreteGlobalBlock();
1068
1069 // __flags
John McCall64cd2322011-03-09 08:39:33 +00001070 BlockFlags flags = BLOCK_IS_GLOBAL | BLOCK_HAS_SIGNATURE;
1071 if (blockInfo.UsesStret) flags |= BLOCK_USE_STRET;
1072
John McCall5936e332011-02-15 09:22:45 +00001073 fields[1] = llvm::ConstantInt::get(CGM.IntTy, flags.getBitMask());
John McCall6b5a61b2011-02-07 10:33:21 +00001074
1075 // Reserved
John McCall5936e332011-02-15 09:22:45 +00001076 fields[2] = llvm::Constant::getNullValue(CGM.IntTy);
John McCall6b5a61b2011-02-07 10:33:21 +00001077
1078 // Function
1079 fields[3] = blockFn;
1080
1081 // Descriptor
1082 fields[4] = buildBlockDescriptor(CGM, blockInfo);
1083
Chris Lattnerc5cbb902011-06-20 04:01:35 +00001084 llvm::Constant *init = llvm::ConstantStruct::getAnon(fields);
John McCall6b5a61b2011-02-07 10:33:21 +00001085
1086 llvm::GlobalVariable *literal =
1087 new llvm::GlobalVariable(CGM.getModule(),
1088 init->getType(),
1089 /*constant*/ true,
1090 llvm::GlobalVariable::InternalLinkage,
1091 init,
1092 "__block_literal_global");
1093 literal->setAlignment(blockInfo.BlockAlign.getQuantity());
1094
1095 // Return a constant of the appropriately-casted type.
Chris Lattner2acc6e32011-07-18 04:24:23 +00001096 llvm::Type *requiredType =
John McCall6b5a61b2011-02-07 10:33:21 +00001097 CGM.getTypes().ConvertType(blockInfo.getBlockExpr()->getType());
1098 return llvm::ConstantExpr::getBitCast(literal, requiredType);
Mike Stump4e7a1f72009-02-21 20:00:35 +00001099}
1100
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001101void CodeGenFunction::setBlockContextParameter(const ImplicitParamDecl *D,
1102 unsigned argNum,
1103 llvm::Value *arg) {
1104 assert(BlockInfo && "not emitting prologue of block invocation function?!");
1105
1106 llvm::Value *localAddr = nullptr;
1107 if (CGM.getCodeGenOpts().OptimizationLevel == 0) {
1108 // Allocate a stack slot to let the debug info survive the RA.
1109 Address alloc = CreateMemTemp(D->getType(), D->getName() + ".addr");
1110 Builder.CreateStore(arg, alloc);
1111 localAddr = Builder.CreateLoad(alloc);
1112 }
1113
1114 if (CGDebugInfo *DI = getDebugInfo()) {
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001115 if (CGM.getCodeGenOpts().getDebugInfo() >=
1116 codegenoptions::LimitedDebugInfo) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001117 DI->setLocation(D->getLocation());
1118 DI->EmitDeclareOfBlockLiteralArgVariable(*BlockInfo, arg, argNum,
1119 localAddr, Builder);
1120 }
1121 }
1122
1123 SourceLocation StartLoc = BlockInfo->getBlockExpr()->getBody()->getLocStart();
1124 ApplyDebugLocation Scope(*this, StartLoc);
1125
1126 // Instead of messing around with LocalDeclMap, just set the value
1127 // directly as BlockPointer.
1128 BlockPointer = Builder.CreateBitCast(arg,
1129 BlockInfo->StructureType->getPointerTo(),
1130 "block");
1131}
1132
1133Address CodeGenFunction::LoadBlockStruct() {
1134 assert(BlockInfo && "not in a block invocation function!");
1135 assert(BlockPointer && "no block pointer set!");
1136 return Address(BlockPointer, BlockInfo->BlockAlign);
1137}
1138
Mike Stump00470a12009-03-05 08:32:30 +00001139llvm::Function *
John McCall6b5a61b2011-02-07 10:33:21 +00001140CodeGenFunction::GenerateBlockFunction(GlobalDecl GD,
1141 const CGBlockInfo &blockInfo,
Eli Friedman64bee652012-02-25 02:48:22 +00001142 const DeclMapTy &ldm,
1143 bool IsLambdaConversionToBlock) {
John McCall6b5a61b2011-02-07 10:33:21 +00001144 const BlockDecl *blockDecl = blockInfo.getBlockDecl();
Devang Patel963dfbd2009-04-15 21:51:44 +00001145
Fariborz Jahanian4904bf42012-06-26 16:06:38 +00001146 CurGD = GD;
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001147
1148 CurEHLocation = blockInfo.getBlockExpr()->getLocEnd();
Fariborz Jahanian4904bf42012-06-26 16:06:38 +00001149
John McCall6b5a61b2011-02-07 10:33:21 +00001150 BlockInfo = &blockInfo;
Mike Stump1eb44332009-09-09 15:08:12 +00001151
Mike Stump7f28a9c2009-03-13 23:34:28 +00001152 // Arrange for local static and local extern declarations to appear
John McCall6b5a61b2011-02-07 10:33:21 +00001153 // to be local to this function as well, in case they're directly
1154 // referenced in a block.
1155 for (DeclMapTy::const_iterator i = ldm.begin(), e = ldm.end(); i != e; ++i) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001156 const auto *var = dyn_cast<VarDecl>(i->first);
John McCall6b5a61b2011-02-07 10:33:21 +00001157 if (var && !var->hasLocalStorage())
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001158 setAddrOfLocalVar(var, i->second);
Mike Stump7f28a9c2009-03-13 23:34:28 +00001159 }
1160
John McCall6b5a61b2011-02-07 10:33:21 +00001161 // Begin building the function declaration.
Eli Friedman48f91222009-03-28 03:24:54 +00001162
John McCall6b5a61b2011-02-07 10:33:21 +00001163 // Build the argument list.
1164 FunctionArgList args;
Mike Stumpa5448542009-02-13 15:32:32 +00001165
John McCall6b5a61b2011-02-07 10:33:21 +00001166 // The first argument is the block pointer. Just take it as a void*
1167 // and cast it later.
1168 QualType selfTy = getContext().VoidPtrTy;
Mike Stumpea26cb52009-10-21 03:49:08 +00001169 IdentifierInfo *II = &CGM.getContext().Idents.get(".block_descriptor");
Mike Stumpadaaad32009-10-20 02:12:22 +00001170
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001171 ImplicitParamDecl selfDecl(getContext(), const_cast<BlockDecl*>(blockDecl),
John McCall8178df32011-02-22 22:38:33 +00001172 SourceLocation(), II, selfTy);
John McCalld26bc762011-03-09 04:27:21 +00001173 args.push_back(&selfDecl);
Mike Stumpea26cb52009-10-21 03:49:08 +00001174
John McCall6b5a61b2011-02-07 10:33:21 +00001175 // Now add the rest of the parameters.
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001176 args.append(blockDecl->param_begin(), blockDecl->param_end());
John McCallea1471e2010-05-20 01:18:31 +00001177
John McCall6b5a61b2011-02-07 10:33:21 +00001178 // Create the function declaration.
John McCallde5d3c72012-02-17 03:33:10 +00001179 const FunctionProtoType *fnType = blockInfo.getBlockExpr()->getFunctionType();
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001180 const CGFunctionInfo &fnInfo =
1181 CGM.getTypes().arrangeBlockFunctionDeclaration(fnType, args);
Stephen Hines651f13c2014-04-23 16:59:28 -07001182 if (CGM.ReturnSlotInterferesWithArgs(fnInfo))
John McCall64cd2322011-03-09 08:39:33 +00001183 blockInfo.UsesStret = true;
1184
John McCallde5d3c72012-02-17 03:33:10 +00001185 llvm::FunctionType *fnLLVMType = CGM.getTypes().GetFunctionType(fnInfo);
Mike Stumpa5448542009-02-13 15:32:32 +00001186
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001187 StringRef name = CGM.getBlockMangledName(GD, blockDecl);
1188 llvm::Function *fn = llvm::Function::Create(
1189 fnLLVMType, llvm::GlobalValue::InternalLinkage, name, &CGM.getModule());
John McCall6b5a61b2011-02-07 10:33:21 +00001190 CGM.SetInternalFunctionAttributes(blockDecl, fn, fnInfo);
Mike Stumpa5448542009-02-13 15:32:32 +00001191
John McCall6b5a61b2011-02-07 10:33:21 +00001192 // Begin generating the function.
Stephen Hines651f13c2014-04-23 16:59:28 -07001193 StartFunction(blockDecl, fnType->getReturnType(), fn, fnInfo, args,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001194 blockDecl->getLocation(),
Devang Patel3f4cb252011-03-25 21:26:13 +00001195 blockInfo.getBlockExpr()->getBody()->getLocStart());
Mike Stumpa5448542009-02-13 15:32:32 +00001196
John McCall8178df32011-02-22 22:38:33 +00001197 // Okay. Undo some of what StartFunction did.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001198
Adrian Prantl9b97adf2013-03-29 19:20:35 +00001199 // At -O0 we generate an explicit alloca for the BlockPointer, so the RA
1200 // won't delete the dbg.declare intrinsics for captured variables.
1201 llvm::Value *BlockPointerDbgLoc = BlockPointer;
1202 if (CGM.getCodeGenOpts().OptimizationLevel == 0) {
1203 // Allocate a stack slot for it, so we can point the debugger to it
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001204 Address Alloca = CreateTempAlloca(BlockPointer->getType(),
1205 getPointerAlign(),
1206 "block.addr");
Adrian Prantl79591942013-04-02 01:00:48 +00001207 // Set the DebugLocation to empty, so the store is recognized as a
1208 // frame setup instruction by llvm::DwarfDebug::beginFunction().
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001209 auto NL = ApplyDebugLocation::CreateEmpty(*this);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001210 Builder.CreateStore(BlockPointer, Alloca);
1211 BlockPointerDbgLoc = Alloca.getPointer();
Adrian Prantl9b97adf2013-03-29 19:20:35 +00001212 }
Anders Carlssond5cab542009-02-12 17:55:02 +00001213
John McCallea1471e2010-05-20 01:18:31 +00001214 // If we have a C++ 'this' reference, go ahead and force it into
1215 // existence now.
John McCall6b5a61b2011-02-07 10:33:21 +00001216 if (blockDecl->capturesCXXThis()) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001217 Address addr =
1218 Builder.CreateStructGEP(LoadBlockStruct(), blockInfo.CXXThisIndex,
1219 blockInfo.CXXThisOffset, "block.captured-this");
John McCall6b5a61b2011-02-07 10:33:21 +00001220 CXXThisValue = Builder.CreateLoad(addr, "this");
John McCallea1471e2010-05-20 01:18:31 +00001221 }
1222
John McCall6b5a61b2011-02-07 10:33:21 +00001223 // Also force all the constant captures.
Stephen Hines651f13c2014-04-23 16:59:28 -07001224 for (const auto &CI : blockDecl->captures()) {
1225 const VarDecl *variable = CI.getVariable();
John McCall6b5a61b2011-02-07 10:33:21 +00001226 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable);
1227 if (!capture.isConstant()) continue;
1228
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001229 CharUnits align = getContext().getDeclAlign(variable);
1230 Address alloca =
1231 CreateMemTemp(variable->getType(), align, "block.captured-const");
John McCall6b5a61b2011-02-07 10:33:21 +00001232
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001233 Builder.CreateStore(capture.getConstant(), alloca);
John McCall6b5a61b2011-02-07 10:33:21 +00001234
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001235 setAddrOfLocalVar(variable, alloca);
John McCallee504292010-05-21 04:11:14 +00001236 }
1237
John McCallf4b88a42012-03-10 09:33:50 +00001238 // Save a spot to insert the debug information for all the DeclRefExprs.
Mike Stumpb289b3f2009-10-01 22:29:41 +00001239 llvm::BasicBlock *entry = Builder.GetInsertBlock();
1240 llvm::BasicBlock::iterator entry_ptr = Builder.GetInsertPoint();
1241 --entry_ptr;
1242
Eli Friedman64bee652012-02-25 02:48:22 +00001243 if (IsLambdaConversionToBlock)
1244 EmitLambdaBlockInvokeBody();
Stephen Hines651f13c2014-04-23 16:59:28 -07001245 else {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001246 PGO.assignRegionCounters(GlobalDecl(blockDecl), fn);
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07001247 incrementProfileCounter(blockDecl->getBody());
Eli Friedman64bee652012-02-25 02:48:22 +00001248 EmitStmt(blockDecl->getBody());
Stephen Hines651f13c2014-04-23 16:59:28 -07001249 }
Mike Stumpb289b3f2009-10-01 22:29:41 +00001250
Mike Stumpde8c5c72009-10-01 00:27:30 +00001251 // Remember where we were...
1252 llvm::BasicBlock *resume = Builder.GetInsertBlock();
Mike Stumpb289b3f2009-10-01 22:29:41 +00001253
Mike Stumpde8c5c72009-10-01 00:27:30 +00001254 // Go back to the entry.
Mike Stumpb289b3f2009-10-01 22:29:41 +00001255 ++entry_ptr;
1256 Builder.SetInsertPoint(entry, entry_ptr);
1257
John McCallf4b88a42012-03-10 09:33:50 +00001258 // Emit debug information for all the DeclRefExprs.
John McCall6b5a61b2011-02-07 10:33:21 +00001259 // FIXME: also for 'this'
Mike Stumpb1a6e682009-09-30 02:43:10 +00001260 if (CGDebugInfo *DI = getDebugInfo()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001261 for (const auto &CI : blockDecl->captures()) {
1262 const VarDecl *variable = CI.getVariable();
Eric Christopher73fb3502011-10-13 21:45:18 +00001263 DI->EmitLocation(Builder, variable->getLocation());
John McCall6b5a61b2011-02-07 10:33:21 +00001264
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001265 if (CGM.getCodeGenOpts().getDebugInfo() >=
1266 codegenoptions::LimitedDebugInfo) {
Alexey Samsonovfd00eec2012-05-04 07:39:27 +00001267 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable);
1268 if (capture.isConstant()) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001269 auto addr = LocalDeclMap.find(variable)->second;
1270 DI->EmitDeclareOfAutoVariable(variable, addr.getPointer(),
Alexey Samsonovfd00eec2012-05-04 07:39:27 +00001271 Builder);
1272 continue;
1273 }
John McCall6b5a61b2011-02-07 10:33:21 +00001274
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001275 DI->EmitDeclareOfBlockDeclRefVariable(
1276 variable, BlockPointerDbgLoc, Builder, blockInfo,
1277 entry_ptr == entry->end() ? nullptr : &*entry_ptr);
Alexey Samsonovfd00eec2012-05-04 07:39:27 +00001278 }
Mike Stumpb1a6e682009-09-30 02:43:10 +00001279 }
Manman Ren3c7a0e12013-01-04 18:51:35 +00001280 // Recover location if it was changed in the above loop.
1281 DI->EmitLocation(Builder,
Adrian Prantld83cdd62013-04-08 20:52:12 +00001282 cast<CompoundStmt>(blockDecl->getBody())->getRBracLoc());
Mike Stumpb1a6e682009-09-30 02:43:10 +00001283 }
John McCall6b5a61b2011-02-07 10:33:21 +00001284
Mike Stumpde8c5c72009-10-01 00:27:30 +00001285 // And resume where we left off.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001286 if (resume == nullptr)
Mike Stumpde8c5c72009-10-01 00:27:30 +00001287 Builder.ClearInsertionPoint();
1288 else
1289 Builder.SetInsertPoint(resume);
Mike Stumpb1a6e682009-09-30 02:43:10 +00001290
John McCall6b5a61b2011-02-07 10:33:21 +00001291 FinishFunction(cast<CompoundStmt>(blockDecl->getBody())->getRBracLoc());
Anders Carlssond5cab542009-02-12 17:55:02 +00001292
John McCall6b5a61b2011-02-07 10:33:21 +00001293 return fn;
Anders Carlssond5cab542009-02-12 17:55:02 +00001294}
Mike Stumpa99038c2009-02-28 09:07:16 +00001295
John McCall6b5a61b2011-02-07 10:33:21 +00001296/*
1297 notes.push_back(HelperInfo());
1298 HelperInfo &note = notes.back();
1299 note.index = capture.getIndex();
1300 note.RequiresCopying = (ci->hasCopyExpr() || BlockRequiresCopying(type));
1301 note.cxxbar_import = ci->getCopyExpr();
Mike Stumpa99038c2009-02-28 09:07:16 +00001302
John McCall6b5a61b2011-02-07 10:33:21 +00001303 if (ci->isByRef()) {
1304 note.flag = BLOCK_FIELD_IS_BYREF;
1305 if (type.isObjCGCWeak())
1306 note.flag |= BLOCK_FIELD_IS_WEAK;
1307 } else if (type->isBlockPointerType()) {
1308 note.flag = BLOCK_FIELD_IS_BLOCK;
1309 } else {
1310 note.flag = BLOCK_FIELD_IS_OBJECT;
1311 }
1312 */
Mike Stumpa99038c2009-02-28 09:07:16 +00001313
John McCallb62faef2013-01-22 03:56:22 +00001314/// Generate the copy-helper function for a block closure object:
1315/// static void block_copy_helper(block_t *dst, block_t *src);
1316/// The runtime will have previously initialized 'dst' by doing a
1317/// bit-copy of 'src'.
1318///
1319/// Note that this copies an entire block closure object to the heap;
1320/// it should not be confused with a 'byref copy helper', which moves
1321/// the contents of an individual __block variable to the heap.
John McCall6b5a61b2011-02-07 10:33:21 +00001322llvm::Constant *
John McCalld16c2cf2011-02-08 08:22:06 +00001323CodeGenFunction::GenerateCopyHelperFunction(const CGBlockInfo &blockInfo) {
John McCall6b5a61b2011-02-07 10:33:21 +00001324 ASTContext &C = getContext();
1325
1326 FunctionArgList args;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001327 ImplicitParamDecl dstDecl(getContext(), nullptr, SourceLocation(), nullptr,
1328 C.VoidPtrTy);
John McCalld26bc762011-03-09 04:27:21 +00001329 args.push_back(&dstDecl);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001330 ImplicitParamDecl srcDecl(getContext(), nullptr, SourceLocation(), nullptr,
1331 C.VoidPtrTy);
John McCalld26bc762011-03-09 04:27:21 +00001332 args.push_back(&srcDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00001333
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001334 const CGFunctionInfo &FI =
1335 CGM.getTypes().arrangeBuiltinFunctionDeclaration(C.VoidTy, args);
Mike Stumpa4f668f2009-03-06 01:33:24 +00001336
John McCall6b5a61b2011-02-07 10:33:21 +00001337 // FIXME: it would be nice if these were mergeable with things with
1338 // identical semantics.
John McCallde5d3c72012-02-17 03:33:10 +00001339 llvm::FunctionType *LTy = CGM.getTypes().GetFunctionType(FI);
Mike Stumpa4f668f2009-03-06 01:33:24 +00001340
1341 llvm::Function *Fn =
1342 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
Benjamin Kramer3cf7c5d2010-01-22 13:59:13 +00001343 "__copy_helper_block_", &CGM.getModule());
Mike Stumpa4f668f2009-03-06 01:33:24 +00001344
1345 IdentifierInfo *II
1346 = &CGM.getContext().Idents.get("__copy_helper_block_");
1347
John McCall6b5a61b2011-02-07 10:33:21 +00001348 FunctionDecl *FD = FunctionDecl::Create(C,
1349 C.getTranslationUnitDecl(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001350 SourceLocation(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001351 SourceLocation(), II, C.VoidTy,
1352 nullptr, SC_Static,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001353 false,
Eric Christophere5bbebb2012-04-12 00:35:04 +00001354 false);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001355
1356 CGM.SetInternalFunctionAttributes(nullptr, Fn, FI);
1357
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001358 auto NL = ApplyDebugLocation::CreateEmpty(*this);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001359 StartFunction(FD, C.VoidTy, Fn, FI, args);
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001360 // Create a scope with an artificial location for the body of this function.
1361 auto AL = ApplyDebugLocation::CreateArtificial(*this);
Chris Lattner2acc6e32011-07-18 04:24:23 +00001362 llvm::Type *structPtrTy = blockInfo.StructureType->getPointerTo();
Mike Stump08920992009-03-07 02:35:30 +00001363
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001364 Address src = GetAddrOfLocalVar(&srcDecl);
1365 src = Address(Builder.CreateLoad(src), blockInfo.BlockAlign);
John McCalld16c2cf2011-02-08 08:22:06 +00001366 src = Builder.CreateBitCast(src, structPtrTy, "block.source");
Mike Stump08920992009-03-07 02:35:30 +00001367
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001368 Address dst = GetAddrOfLocalVar(&dstDecl);
1369 dst = Address(Builder.CreateLoad(dst), blockInfo.BlockAlign);
John McCalld16c2cf2011-02-08 08:22:06 +00001370 dst = Builder.CreateBitCast(dst, structPtrTy, "block.dest");
Mike Stump08920992009-03-07 02:35:30 +00001371
John McCall6b5a61b2011-02-07 10:33:21 +00001372 const BlockDecl *blockDecl = blockInfo.getBlockDecl();
Mike Stump08920992009-03-07 02:35:30 +00001373
Stephen Hines651f13c2014-04-23 16:59:28 -07001374 for (const auto &CI : blockDecl->captures()) {
1375 const VarDecl *variable = CI.getVariable();
John McCall6b5a61b2011-02-07 10:33:21 +00001376 QualType type = variable->getType();
Mike Stump08920992009-03-07 02:35:30 +00001377
John McCall6b5a61b2011-02-07 10:33:21 +00001378 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable);
1379 if (capture.isConstant()) continue;
1380
Stephen Hines651f13c2014-04-23 16:59:28 -07001381 const Expr *copyExpr = CI.getCopyExpr();
John McCallf85e1932011-06-15 23:02:42 +00001382 BlockFieldFlags flags;
1383
John McCall015f33b2012-10-17 02:28:37 +00001384 bool useARCWeakCopy = false;
1385 bool useARCStrongCopy = false;
John McCall6b5a61b2011-02-07 10:33:21 +00001386
1387 if (copyExpr) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001388 assert(!CI.isByRef());
John McCall6b5a61b2011-02-07 10:33:21 +00001389 // don't bother computing flags
John McCallf85e1932011-06-15 23:02:42 +00001390
Stephen Hines651f13c2014-04-23 16:59:28 -07001391 } else if (CI.isByRef()) {
John McCall6b5a61b2011-02-07 10:33:21 +00001392 flags = BLOCK_FIELD_IS_BYREF;
John McCallf85e1932011-06-15 23:02:42 +00001393 if (type.isObjCGCWeak())
1394 flags |= BLOCK_FIELD_IS_WEAK;
John McCall6b5a61b2011-02-07 10:33:21 +00001395
John McCallf85e1932011-06-15 23:02:42 +00001396 } else if (type->isObjCRetainableType()) {
1397 flags = BLOCK_FIELD_IS_OBJECT;
John McCall015f33b2012-10-17 02:28:37 +00001398 bool isBlockPointer = type->isBlockPointerType();
1399 if (isBlockPointer)
John McCallf85e1932011-06-15 23:02:42 +00001400 flags = BLOCK_FIELD_IS_BLOCK;
1401
1402 // Special rules for ARC captures:
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001403 Qualifiers qs = type.getQualifiers();
John McCallf85e1932011-06-15 23:02:42 +00001404
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001405 // We need to register __weak direct captures with the runtime.
1406 if (qs.getObjCLifetime() == Qualifiers::OCL_Weak) {
1407 useARCWeakCopy = true;
John McCallf85e1932011-06-15 23:02:42 +00001408
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001409 // We need to retain the copied value for __strong direct captures.
1410 } else if (qs.getObjCLifetime() == Qualifiers::OCL_Strong) {
1411 // If it's a block pointer, we have to copy the block and
1412 // assign that to the destination pointer, so we might as
1413 // well use _Block_object_assign. Otherwise we can avoid that.
1414 if (!isBlockPointer)
1415 useARCStrongCopy = true;
John McCall015f33b2012-10-17 02:28:37 +00001416
1417 // Non-ARC captures of retainable pointers are strong and
1418 // therefore require a call to _Block_object_assign.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001419 } else if (!qs.getObjCLifetime() && !getLangOpts().ObjCAutoRefCount) {
John McCall015f33b2012-10-17 02:28:37 +00001420 // fall through
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001421
1422 // Otherwise the memcpy is fine.
1423 } else {
1424 continue;
John McCallf85e1932011-06-15 23:02:42 +00001425 }
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001426
1427 // For all other types, the memcpy is fine.
John McCallf85e1932011-06-15 23:02:42 +00001428 } else {
1429 continue;
1430 }
John McCall6b5a61b2011-02-07 10:33:21 +00001431
1432 unsigned index = capture.getIndex();
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001433 Address srcField = Builder.CreateStructGEP(src, index, capture.getOffset());
1434 Address dstField = Builder.CreateStructGEP(dst, index, capture.getOffset());
John McCall6b5a61b2011-02-07 10:33:21 +00001435
1436 // If there's an explicit copy expression, we do that.
1437 if (copyExpr) {
John McCalld16c2cf2011-02-08 08:22:06 +00001438 EmitSynthesizedCXXCopyCtor(dstField, srcField, copyExpr);
John McCall015f33b2012-10-17 02:28:37 +00001439 } else if (useARCWeakCopy) {
John McCallf85e1932011-06-15 23:02:42 +00001440 EmitARCCopyWeak(dstField, srcField);
John McCall6b5a61b2011-02-07 10:33:21 +00001441 } else {
1442 llvm::Value *srcValue = Builder.CreateLoad(srcField, "blockcopy.src");
John McCall015f33b2012-10-17 02:28:37 +00001443 if (useARCStrongCopy) {
1444 // At -O0, store null into the destination field (so that the
1445 // storeStrong doesn't over-release) and then call storeStrong.
1446 // This is a workaround to not having an initStrong call.
1447 if (CGM.getCodeGenOpts().OptimizationLevel == 0) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001448 auto *ty = cast<llvm::PointerType>(srcValue->getType());
John McCall015f33b2012-10-17 02:28:37 +00001449 llvm::Value *null = llvm::ConstantPointerNull::get(ty);
1450 Builder.CreateStore(null, dstField);
1451 EmitARCStoreStrongCall(dstField, srcValue, true);
1452
1453 // With optimization enabled, take advantage of the fact that
1454 // the blocks runtime guarantees a memcpy of the block data, and
1455 // just emit a retain of the src field.
1456 } else {
1457 EmitARCRetainNonBlock(srcValue);
1458
1459 // We don't need this anymore, so kill it. It's not quite
1460 // worth the annoyance to avoid creating it in the first place.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001461 cast<llvm::Instruction>(dstField.getPointer())->eraseFromParent();
John McCall015f33b2012-10-17 02:28:37 +00001462 }
1463 } else {
1464 srcValue = Builder.CreateBitCast(srcValue, VoidPtrTy);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001465 llvm::Value *dstAddr =
1466 Builder.CreateBitCast(dstField.getPointer(), VoidPtrTy);
John McCallbd7370a2013-02-28 19:01:20 +00001467 llvm::Value *args[] = {
1468 dstAddr, srcValue, llvm::ConstantInt::get(Int32Ty, flags.getBitMask())
1469 };
1470
1471 bool copyCanThrow = false;
Stephen Hines651f13c2014-04-23 16:59:28 -07001472 if (CI.isByRef() && variable->getType()->getAsCXXRecordDecl()) {
John McCallbd7370a2013-02-28 19:01:20 +00001473 const Expr *copyExpr =
1474 CGM.getContext().getBlockVarCopyInits(variable);
1475 if (copyExpr) {
1476 copyCanThrow = true; // FIXME: reuse the noexcept logic
1477 }
1478 }
1479
1480 if (copyCanThrow) {
1481 EmitRuntimeCallOrInvoke(CGM.getBlockObjectAssign(), args);
1482 } else {
1483 EmitNounwindRuntimeCall(CGM.getBlockObjectAssign(), args);
1484 }
John McCall015f33b2012-10-17 02:28:37 +00001485 }
Mike Stump08920992009-03-07 02:35:30 +00001486 }
1487 }
1488
John McCalld16c2cf2011-02-08 08:22:06 +00001489 FinishFunction();
Mike Stumpa4f668f2009-03-06 01:33:24 +00001490
John McCall5936e332011-02-15 09:22:45 +00001491 return llvm::ConstantExpr::getBitCast(Fn, VoidPtrTy);
Mike Stumpdab514f2009-03-04 03:23:46 +00001492}
1493
John McCallb62faef2013-01-22 03:56:22 +00001494/// Generate the destroy-helper function for a block closure object:
1495/// static void block_destroy_helper(block_t *theBlock);
1496///
1497/// Note that this destroys a heap-allocated block closure object;
1498/// it should not be confused with a 'byref destroy helper', which
1499/// destroys the heap-allocated contents of an individual __block
1500/// variable.
John McCall6b5a61b2011-02-07 10:33:21 +00001501llvm::Constant *
John McCalld16c2cf2011-02-08 08:22:06 +00001502CodeGenFunction::GenerateDestroyHelperFunction(const CGBlockInfo &blockInfo) {
John McCall6b5a61b2011-02-07 10:33:21 +00001503 ASTContext &C = getContext();
Mike Stumpa4f668f2009-03-06 01:33:24 +00001504
John McCall6b5a61b2011-02-07 10:33:21 +00001505 FunctionArgList args;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001506 ImplicitParamDecl srcDecl(getContext(), nullptr, SourceLocation(), nullptr,
1507 C.VoidPtrTy);
John McCalld26bc762011-03-09 04:27:21 +00001508 args.push_back(&srcDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00001509
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001510 const CGFunctionInfo &FI =
1511 CGM.getTypes().arrangeBuiltinFunctionDeclaration(C.VoidTy, args);
Mike Stumpa4f668f2009-03-06 01:33:24 +00001512
Mike Stump3899a7f2009-06-05 23:26:36 +00001513 // FIXME: We'd like to put these into a mergable by content, with
1514 // internal linkage.
John McCallde5d3c72012-02-17 03:33:10 +00001515 llvm::FunctionType *LTy = CGM.getTypes().GetFunctionType(FI);
Mike Stumpa4f668f2009-03-06 01:33:24 +00001516
1517 llvm::Function *Fn =
1518 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
Benjamin Kramer3cf7c5d2010-01-22 13:59:13 +00001519 "__destroy_helper_block_", &CGM.getModule());
Mike Stumpa4f668f2009-03-06 01:33:24 +00001520
1521 IdentifierInfo *II
1522 = &CGM.getContext().Idents.get("__destroy_helper_block_");
1523
John McCall6b5a61b2011-02-07 10:33:21 +00001524 FunctionDecl *FD = FunctionDecl::Create(C, C.getTranslationUnitDecl(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001525 SourceLocation(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001526 SourceLocation(), II, C.VoidTy,
1527 nullptr, SC_Static,
Eric Christophere5bbebb2012-04-12 00:35:04 +00001528 false, false);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001529
1530 CGM.SetInternalFunctionAttributes(nullptr, Fn, FI);
1531
Adrian Prantlb6cdc962013-07-24 20:34:39 +00001532 // Create a scope with an artificial location for the body of this function.
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001533 auto NL = ApplyDebugLocation::CreateEmpty(*this);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001534 StartFunction(FD, C.VoidTy, Fn, FI, args);
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001535 auto AL = ApplyDebugLocation::CreateArtificial(*this);
Mike Stump1edf6b62009-03-07 02:53:18 +00001536
Chris Lattner2acc6e32011-07-18 04:24:23 +00001537 llvm::Type *structPtrTy = blockInfo.StructureType->getPointerTo();
Mike Stump1edf6b62009-03-07 02:53:18 +00001538
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001539 Address src = GetAddrOfLocalVar(&srcDecl);
1540 src = Address(Builder.CreateLoad(src), blockInfo.BlockAlign);
John McCalld16c2cf2011-02-08 08:22:06 +00001541 src = Builder.CreateBitCast(src, structPtrTy, "block");
Mike Stump1edf6b62009-03-07 02:53:18 +00001542
John McCall6b5a61b2011-02-07 10:33:21 +00001543 const BlockDecl *blockDecl = blockInfo.getBlockDecl();
1544
John McCalld16c2cf2011-02-08 08:22:06 +00001545 CodeGenFunction::RunCleanupsScope cleanups(*this);
John McCall6b5a61b2011-02-07 10:33:21 +00001546
Stephen Hines651f13c2014-04-23 16:59:28 -07001547 for (const auto &CI : blockDecl->captures()) {
1548 const VarDecl *variable = CI.getVariable();
John McCall6b5a61b2011-02-07 10:33:21 +00001549 QualType type = variable->getType();
1550
1551 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable);
1552 if (capture.isConstant()) continue;
1553
John McCalld16c2cf2011-02-08 08:22:06 +00001554 BlockFieldFlags flags;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001555 const CXXDestructorDecl *dtor = nullptr;
John McCall6b5a61b2011-02-07 10:33:21 +00001556
John McCall015f33b2012-10-17 02:28:37 +00001557 bool useARCWeakDestroy = false;
1558 bool useARCStrongDestroy = false;
John McCallf85e1932011-06-15 23:02:42 +00001559
Stephen Hines651f13c2014-04-23 16:59:28 -07001560 if (CI.isByRef()) {
John McCall6b5a61b2011-02-07 10:33:21 +00001561 flags = BLOCK_FIELD_IS_BYREF;
John McCallf85e1932011-06-15 23:02:42 +00001562 if (type.isObjCGCWeak())
1563 flags |= BLOCK_FIELD_IS_WEAK;
1564 } else if (const CXXRecordDecl *record = type->getAsCXXRecordDecl()) {
1565 if (record->hasTrivialDestructor())
1566 continue;
1567 dtor = record->getDestructor();
1568 } else if (type->isObjCRetainableType()) {
John McCall6b5a61b2011-02-07 10:33:21 +00001569 flags = BLOCK_FIELD_IS_OBJECT;
John McCallf85e1932011-06-15 23:02:42 +00001570 if (type->isBlockPointerType())
1571 flags = BLOCK_FIELD_IS_BLOCK;
John McCall6b5a61b2011-02-07 10:33:21 +00001572
John McCallf85e1932011-06-15 23:02:42 +00001573 // Special rules for ARC captures.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001574 Qualifiers qs = type.getQualifiers();
John McCallf85e1932011-06-15 23:02:42 +00001575
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001576 // Use objc_storeStrong for __strong direct captures; the
1577 // dynamic tools really like it when we do this.
1578 if (qs.getObjCLifetime() == Qualifiers::OCL_Strong) {
1579 useARCStrongDestroy = true;
John McCallf85e1932011-06-15 23:02:42 +00001580
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001581 // Support __weak direct captures.
1582 } else if (qs.getObjCLifetime() == Qualifiers::OCL_Weak) {
1583 useARCWeakDestroy = true;
John McCall015f33b2012-10-17 02:28:37 +00001584
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001585 // Non-ARC captures are strong, and we need to use _Block_object_dispose.
1586 } else if (!qs.hasObjCLifetime() && !getLangOpts().ObjCAutoRefCount) {
1587 // fall through
1588
1589 // Otherwise, we have nothing to do.
1590 } else {
1591 continue;
John McCallf85e1932011-06-15 23:02:42 +00001592 }
1593 } else {
1594 continue;
1595 }
John McCall6b5a61b2011-02-07 10:33:21 +00001596
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001597 Address srcField =
1598 Builder.CreateStructGEP(src, capture.getIndex(), capture.getOffset());
John McCall6b5a61b2011-02-07 10:33:21 +00001599
1600 // If there's an explicit copy expression, we do that.
1601 if (dtor) {
John McCalld16c2cf2011-02-08 08:22:06 +00001602 PushDestructorCleanup(dtor, srcField);
John McCall6b5a61b2011-02-07 10:33:21 +00001603
John McCallf85e1932011-06-15 23:02:42 +00001604 // If this is a __weak capture, emit the release directly.
John McCall015f33b2012-10-17 02:28:37 +00001605 } else if (useARCWeakDestroy) {
John McCallf85e1932011-06-15 23:02:42 +00001606 EmitARCDestroyWeak(srcField);
1607
John McCall015f33b2012-10-17 02:28:37 +00001608 // Destroy strong objects with a call if requested.
1609 } else if (useARCStrongDestroy) {
John McCall5b07e802013-03-13 03:10:54 +00001610 EmitARCDestroyStrong(srcField, ARCImpreciseLifetime);
John McCall015f33b2012-10-17 02:28:37 +00001611
John McCall6b5a61b2011-02-07 10:33:21 +00001612 // Otherwise we call _Block_object_dispose. It wouldn't be too
1613 // hard to just emit this as a cleanup if we wanted to make sure
1614 // that things were done in reverse.
1615 } else {
1616 llvm::Value *value = Builder.CreateLoad(srcField);
John McCall5936e332011-02-15 09:22:45 +00001617 value = Builder.CreateBitCast(value, VoidPtrTy);
John McCall6b5a61b2011-02-07 10:33:21 +00001618 BuildBlockRelease(value, flags);
1619 }
Mike Stump1edf6b62009-03-07 02:53:18 +00001620 }
1621
John McCall6b5a61b2011-02-07 10:33:21 +00001622 cleanups.ForceCleanup();
1623
John McCalld16c2cf2011-02-08 08:22:06 +00001624 FinishFunction();
Mike Stumpa4f668f2009-03-06 01:33:24 +00001625
John McCall5936e332011-02-15 09:22:45 +00001626 return llvm::ConstantExpr::getBitCast(Fn, VoidPtrTy);
Mike Stumpa4f668f2009-03-06 01:33:24 +00001627}
1628
John McCallf0c11f72011-03-31 08:03:29 +00001629namespace {
1630
1631/// Emits the copy/dispose helper functions for a __block object of id type.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001632class ObjectByrefHelpers final : public BlockByrefHelpers {
John McCallf0c11f72011-03-31 08:03:29 +00001633 BlockFieldFlags Flags;
1634
1635public:
1636 ObjectByrefHelpers(CharUnits alignment, BlockFieldFlags flags)
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001637 : BlockByrefHelpers(alignment), Flags(flags) {}
John McCallf0c11f72011-03-31 08:03:29 +00001638
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001639 void emitCopy(CodeGenFunction &CGF, Address destField,
1640 Address srcField) override {
John McCallf0c11f72011-03-31 08:03:29 +00001641 destField = CGF.Builder.CreateBitCast(destField, CGF.VoidPtrTy);
1642
1643 srcField = CGF.Builder.CreateBitCast(srcField, CGF.VoidPtrPtrTy);
1644 llvm::Value *srcValue = CGF.Builder.CreateLoad(srcField);
1645
1646 unsigned flags = (Flags | BLOCK_BYREF_CALLER).getBitMask();
1647
1648 llvm::Value *flagsVal = llvm::ConstantInt::get(CGF.Int32Ty, flags);
1649 llvm::Value *fn = CGF.CGM.getBlockObjectAssign();
John McCallbd7370a2013-02-28 19:01:20 +00001650
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001651 llvm::Value *args[] = { destField.getPointer(), srcValue, flagsVal };
John McCallbd7370a2013-02-28 19:01:20 +00001652 CGF.EmitNounwindRuntimeCall(fn, args);
John McCallf0c11f72011-03-31 08:03:29 +00001653 }
1654
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001655 void emitDispose(CodeGenFunction &CGF, Address field) override {
John McCallf0c11f72011-03-31 08:03:29 +00001656 field = CGF.Builder.CreateBitCast(field, CGF.Int8PtrTy->getPointerTo(0));
1657 llvm::Value *value = CGF.Builder.CreateLoad(field);
1658
1659 CGF.BuildBlockRelease(value, Flags | BLOCK_BYREF_CALLER);
1660 }
1661
Stephen Hines651f13c2014-04-23 16:59:28 -07001662 void profileImpl(llvm::FoldingSetNodeID &id) const override {
John McCallf0c11f72011-03-31 08:03:29 +00001663 id.AddInteger(Flags.getBitMask());
1664 }
1665};
1666
John McCallf85e1932011-06-15 23:02:42 +00001667/// Emits the copy/dispose helpers for an ARC __block __weak variable.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001668class ARCWeakByrefHelpers final : public BlockByrefHelpers {
John McCallf85e1932011-06-15 23:02:42 +00001669public:
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001670 ARCWeakByrefHelpers(CharUnits alignment) : BlockByrefHelpers(alignment) {}
John McCallf85e1932011-06-15 23:02:42 +00001671
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001672 void emitCopy(CodeGenFunction &CGF, Address destField,
1673 Address srcField) override {
John McCallf85e1932011-06-15 23:02:42 +00001674 CGF.EmitARCMoveWeak(destField, srcField);
1675 }
1676
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001677 void emitDispose(CodeGenFunction &CGF, Address field) override {
John McCallf85e1932011-06-15 23:02:42 +00001678 CGF.EmitARCDestroyWeak(field);
1679 }
1680
Stephen Hines651f13c2014-04-23 16:59:28 -07001681 void profileImpl(llvm::FoldingSetNodeID &id) const override {
John McCallf85e1932011-06-15 23:02:42 +00001682 // 0 is distinguishable from all pointers and byref flags
1683 id.AddInteger(0);
1684 }
1685};
1686
1687/// Emits the copy/dispose helpers for an ARC __block __strong variable
1688/// that's not of block-pointer type.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001689class ARCStrongByrefHelpers final : public BlockByrefHelpers {
John McCallf85e1932011-06-15 23:02:42 +00001690public:
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001691 ARCStrongByrefHelpers(CharUnits alignment) : BlockByrefHelpers(alignment) {}
John McCallf85e1932011-06-15 23:02:42 +00001692
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001693 void emitCopy(CodeGenFunction &CGF, Address destField,
1694 Address srcField) override {
John McCallf85e1932011-06-15 23:02:42 +00001695 // Do a "move" by copying the value and then zeroing out the old
1696 // variable.
1697
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001698 llvm::Value *value = CGF.Builder.CreateLoad(srcField);
John McCalla59e4b72011-11-09 03:17:26 +00001699
John McCallf85e1932011-06-15 23:02:42 +00001700 llvm::Value *null =
1701 llvm::ConstantPointerNull::get(cast<llvm::PointerType>(value->getType()));
John McCalla59e4b72011-11-09 03:17:26 +00001702
Fariborz Jahanian7a77f192013-01-04 23:32:24 +00001703 if (CGF.CGM.getCodeGenOpts().OptimizationLevel == 0) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001704 CGF.Builder.CreateStore(null, destField);
Fariborz Jahanian7a77f192013-01-04 23:32:24 +00001705 CGF.EmitARCStoreStrongCall(destField, value, /*ignored*/ true);
1706 CGF.EmitARCStoreStrongCall(srcField, null, /*ignored*/ true);
1707 return;
1708 }
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001709 CGF.Builder.CreateStore(value, destField);
1710 CGF.Builder.CreateStore(null, srcField);
John McCallf85e1932011-06-15 23:02:42 +00001711 }
1712
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001713 void emitDispose(CodeGenFunction &CGF, Address field) override {
John McCall5b07e802013-03-13 03:10:54 +00001714 CGF.EmitARCDestroyStrong(field, ARCImpreciseLifetime);
John McCallf85e1932011-06-15 23:02:42 +00001715 }
1716
Stephen Hines651f13c2014-04-23 16:59:28 -07001717 void profileImpl(llvm::FoldingSetNodeID &id) const override {
John McCallf85e1932011-06-15 23:02:42 +00001718 // 1 is distinguishable from all pointers and byref flags
1719 id.AddInteger(1);
1720 }
1721};
1722
John McCalla59e4b72011-11-09 03:17:26 +00001723/// Emits the copy/dispose helpers for an ARC __block __strong
1724/// variable that's of block-pointer type.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001725class ARCStrongBlockByrefHelpers final : public BlockByrefHelpers {
John McCalla59e4b72011-11-09 03:17:26 +00001726public:
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001727 ARCStrongBlockByrefHelpers(CharUnits alignment)
1728 : BlockByrefHelpers(alignment) {}
John McCalla59e4b72011-11-09 03:17:26 +00001729
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001730 void emitCopy(CodeGenFunction &CGF, Address destField,
1731 Address srcField) override {
John McCalla59e4b72011-11-09 03:17:26 +00001732 // Do the copy with objc_retainBlock; that's all that
1733 // _Block_object_assign would do anyway, and we'd have to pass the
1734 // right arguments to make sure it doesn't get no-op'ed.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001735 llvm::Value *oldValue = CGF.Builder.CreateLoad(srcField);
John McCalla59e4b72011-11-09 03:17:26 +00001736 llvm::Value *copy = CGF.EmitARCRetainBlock(oldValue, /*mandatory*/ true);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001737 CGF.Builder.CreateStore(copy, destField);
John McCalla59e4b72011-11-09 03:17:26 +00001738 }
1739
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001740 void emitDispose(CodeGenFunction &CGF, Address field) override {
John McCall5b07e802013-03-13 03:10:54 +00001741 CGF.EmitARCDestroyStrong(field, ARCImpreciseLifetime);
John McCalla59e4b72011-11-09 03:17:26 +00001742 }
1743
Stephen Hines651f13c2014-04-23 16:59:28 -07001744 void profileImpl(llvm::FoldingSetNodeID &id) const override {
John McCalla59e4b72011-11-09 03:17:26 +00001745 // 2 is distinguishable from all pointers and byref flags
1746 id.AddInteger(2);
1747 }
1748};
1749
John McCallf0c11f72011-03-31 08:03:29 +00001750/// Emits the copy/dispose helpers for a __block variable with a
1751/// nontrivial copy constructor or destructor.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001752class CXXByrefHelpers final : public BlockByrefHelpers {
John McCallf0c11f72011-03-31 08:03:29 +00001753 QualType VarType;
1754 const Expr *CopyExpr;
1755
1756public:
1757 CXXByrefHelpers(CharUnits alignment, QualType type,
1758 const Expr *copyExpr)
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001759 : BlockByrefHelpers(alignment), VarType(type), CopyExpr(copyExpr) {}
John McCallf0c11f72011-03-31 08:03:29 +00001760
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001761 bool needsCopy() const override { return CopyExpr != nullptr; }
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001762 void emitCopy(CodeGenFunction &CGF, Address destField,
1763 Address srcField) override {
John McCallf0c11f72011-03-31 08:03:29 +00001764 if (!CopyExpr) return;
1765 CGF.EmitSynthesizedCXXCopyCtor(destField, srcField, CopyExpr);
1766 }
1767
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001768 void emitDispose(CodeGenFunction &CGF, Address field) override {
John McCallf0c11f72011-03-31 08:03:29 +00001769 EHScopeStack::stable_iterator cleanupDepth = CGF.EHStack.stable_begin();
1770 CGF.PushDestructorCleanup(VarType, field);
1771 CGF.PopCleanupBlocks(cleanupDepth);
1772 }
1773
Stephen Hines651f13c2014-04-23 16:59:28 -07001774 void profileImpl(llvm::FoldingSetNodeID &id) const override {
John McCallf0c11f72011-03-31 08:03:29 +00001775 id.AddPointer(VarType.getCanonicalType().getAsOpaquePtr());
1776 }
1777};
1778} // end anonymous namespace
1779
1780static llvm::Constant *
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001781generateByrefCopyHelper(CodeGenFunction &CGF, const BlockByrefInfo &byrefInfo,
1782 BlockByrefHelpers &generator) {
John McCallf0c11f72011-03-31 08:03:29 +00001783 ASTContext &Context = CGF.getContext();
1784
1785 QualType R = Context.VoidTy;
Mike Stump45031c02009-03-06 02:29:21 +00001786
John McCalld26bc762011-03-09 04:27:21 +00001787 FunctionArgList args;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001788 ImplicitParamDecl dst(CGF.getContext(), nullptr, SourceLocation(), nullptr,
1789 Context.VoidPtrTy);
John McCalld26bc762011-03-09 04:27:21 +00001790 args.push_back(&dst);
Mike Stumpee094222009-03-06 06:12:24 +00001791
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001792 ImplicitParamDecl src(CGF.getContext(), nullptr, SourceLocation(), nullptr,
1793 Context.VoidPtrTy);
John McCalld26bc762011-03-09 04:27:21 +00001794 args.push_back(&src);
Mike Stump1eb44332009-09-09 15:08:12 +00001795
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001796 const CGFunctionInfo &FI =
1797 CGF.CGM.getTypes().arrangeBuiltinFunctionDeclaration(R, args);
Mike Stump45031c02009-03-06 02:29:21 +00001798
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001799 llvm::FunctionType *LTy = CGF.CGM.getTypes().GetFunctionType(FI);
Mike Stump45031c02009-03-06 02:29:21 +00001800
Mike Stump3899a7f2009-06-05 23:26:36 +00001801 // FIXME: We'd like to put these into a mergable by content, with
1802 // internal linkage.
Mike Stump45031c02009-03-06 02:29:21 +00001803 llvm::Function *Fn =
1804 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
John McCallf0c11f72011-03-31 08:03:29 +00001805 "__Block_byref_object_copy_", &CGF.CGM.getModule());
Mike Stump45031c02009-03-06 02:29:21 +00001806
1807 IdentifierInfo *II
John McCallf0c11f72011-03-31 08:03:29 +00001808 = &Context.Idents.get("__Block_byref_object_copy_");
Mike Stump45031c02009-03-06 02:29:21 +00001809
John McCallf0c11f72011-03-31 08:03:29 +00001810 FunctionDecl *FD = FunctionDecl::Create(Context,
1811 Context.getTranslationUnitDecl(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001812 SourceLocation(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001813 SourceLocation(), II, R, nullptr,
John McCalld931b082010-08-26 03:08:43 +00001814 SC_Static,
Eric Christopherb92bd4b2012-04-12 02:16:49 +00001815 false, false);
John McCallf85e1932011-06-15 23:02:42 +00001816
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001817 CGF.CGM.SetInternalFunctionAttributes(nullptr, Fn, FI);
1818
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001819 CGF.StartFunction(FD, R, Fn, FI, args);
Mike Stumpee094222009-03-06 06:12:24 +00001820
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001821 if (generator.needsCopy()) {
1822 llvm::Type *byrefPtrType = byrefInfo.Type->getPointerTo(0);
Mike Stumpee094222009-03-06 06:12:24 +00001823
John McCallf0c11f72011-03-31 08:03:29 +00001824 // dst->x
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001825 Address destField = CGF.GetAddrOfLocalVar(&dst);
1826 destField = Address(CGF.Builder.CreateLoad(destField),
1827 byrefInfo.ByrefAlignment);
John McCallf0c11f72011-03-31 08:03:29 +00001828 destField = CGF.Builder.CreateBitCast(destField, byrefPtrType);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001829 destField = CGF.emitBlockByrefAddress(destField, byrefInfo, false,
1830 "dest-object");
Mike Stump45031c02009-03-06 02:29:21 +00001831
John McCallf0c11f72011-03-31 08:03:29 +00001832 // src->x
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001833 Address srcField = CGF.GetAddrOfLocalVar(&src);
1834 srcField = Address(CGF.Builder.CreateLoad(srcField),
1835 byrefInfo.ByrefAlignment);
John McCallf0c11f72011-03-31 08:03:29 +00001836 srcField = CGF.Builder.CreateBitCast(srcField, byrefPtrType);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001837 srcField = CGF.emitBlockByrefAddress(srcField, byrefInfo, false,
1838 "src-object");
John McCallf0c11f72011-03-31 08:03:29 +00001839
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001840 generator.emitCopy(CGF, destField, srcField);
John McCallf0c11f72011-03-31 08:03:29 +00001841 }
1842
1843 CGF.FinishFunction();
1844
1845 return llvm::ConstantExpr::getBitCast(Fn, CGF.Int8PtrTy);
Mike Stump45031c02009-03-06 02:29:21 +00001846}
1847
John McCallf0c11f72011-03-31 08:03:29 +00001848/// Build the copy helper for a __block variable.
1849static llvm::Constant *buildByrefCopyHelper(CodeGenModule &CGM,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001850 const BlockByrefInfo &byrefInfo,
1851 BlockByrefHelpers &generator) {
John McCallf0c11f72011-03-31 08:03:29 +00001852 CodeGenFunction CGF(CGM);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001853 return generateByrefCopyHelper(CGF, byrefInfo, generator);
John McCallf0c11f72011-03-31 08:03:29 +00001854}
1855
1856/// Generate code for a __block variable's dispose helper.
1857static llvm::Constant *
1858generateByrefDisposeHelper(CodeGenFunction &CGF,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001859 const BlockByrefInfo &byrefInfo,
1860 BlockByrefHelpers &generator) {
John McCallf0c11f72011-03-31 08:03:29 +00001861 ASTContext &Context = CGF.getContext();
1862 QualType R = Context.VoidTy;
Mike Stump45031c02009-03-06 02:29:21 +00001863
John McCalld26bc762011-03-09 04:27:21 +00001864 FunctionArgList args;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001865 ImplicitParamDecl src(CGF.getContext(), nullptr, SourceLocation(), nullptr,
1866 Context.VoidPtrTy);
John McCalld26bc762011-03-09 04:27:21 +00001867 args.push_back(&src);
Mike Stump1eb44332009-09-09 15:08:12 +00001868
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001869 const CGFunctionInfo &FI =
1870 CGF.CGM.getTypes().arrangeBuiltinFunctionDeclaration(R, args);
Mike Stump45031c02009-03-06 02:29:21 +00001871
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001872 llvm::FunctionType *LTy = CGF.CGM.getTypes().GetFunctionType(FI);
Mike Stump45031c02009-03-06 02:29:21 +00001873
Mike Stump3899a7f2009-06-05 23:26:36 +00001874 // FIXME: We'd like to put these into a mergable by content, with
1875 // internal linkage.
Mike Stump45031c02009-03-06 02:29:21 +00001876 llvm::Function *Fn =
1877 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
Fariborz Jahanian830937b2010-12-02 17:02:11 +00001878 "__Block_byref_object_dispose_",
John McCallf0c11f72011-03-31 08:03:29 +00001879 &CGF.CGM.getModule());
Mike Stump45031c02009-03-06 02:29:21 +00001880
1881 IdentifierInfo *II
John McCallf0c11f72011-03-31 08:03:29 +00001882 = &Context.Idents.get("__Block_byref_object_dispose_");
Mike Stump45031c02009-03-06 02:29:21 +00001883
John McCallf0c11f72011-03-31 08:03:29 +00001884 FunctionDecl *FD = FunctionDecl::Create(Context,
1885 Context.getTranslationUnitDecl(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001886 SourceLocation(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001887 SourceLocation(), II, R, nullptr,
John McCalld931b082010-08-26 03:08:43 +00001888 SC_Static,
Eric Christopherb92bd4b2012-04-12 02:16:49 +00001889 false, false);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001890
1891 CGF.CGM.SetInternalFunctionAttributes(nullptr, Fn, FI);
1892
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001893 CGF.StartFunction(FD, R, Fn, FI, args);
Mike Stump1851b682009-03-06 04:53:30 +00001894
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001895 if (generator.needsDispose()) {
1896 Address addr = CGF.GetAddrOfLocalVar(&src);
1897 addr = Address(CGF.Builder.CreateLoad(addr), byrefInfo.ByrefAlignment);
1898 auto byrefPtrType = byrefInfo.Type->getPointerTo(0);
1899 addr = CGF.Builder.CreateBitCast(addr, byrefPtrType);
1900 addr = CGF.emitBlockByrefAddress(addr, byrefInfo, false, "object");
John McCalld16c2cf2011-02-08 08:22:06 +00001901
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001902 generator.emitDispose(CGF, addr);
Fariborz Jahanian830937b2010-12-02 17:02:11 +00001903 }
Mike Stump45031c02009-03-06 02:29:21 +00001904
John McCallf0c11f72011-03-31 08:03:29 +00001905 CGF.FinishFunction();
John McCalld16c2cf2011-02-08 08:22:06 +00001906
John McCallf0c11f72011-03-31 08:03:29 +00001907 return llvm::ConstantExpr::getBitCast(Fn, CGF.Int8PtrTy);
Mike Stump45031c02009-03-06 02:29:21 +00001908}
1909
John McCallf0c11f72011-03-31 08:03:29 +00001910/// Build the dispose helper for a __block variable.
1911static llvm::Constant *buildByrefDisposeHelper(CodeGenModule &CGM,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001912 const BlockByrefInfo &byrefInfo,
1913 BlockByrefHelpers &generator) {
John McCallf0c11f72011-03-31 08:03:29 +00001914 CodeGenFunction CGF(CGM);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001915 return generateByrefDisposeHelper(CGF, byrefInfo, generator);
Mike Stump45031c02009-03-06 02:29:21 +00001916}
1917
John McCallb62faef2013-01-22 03:56:22 +00001918/// Lazily build the copy and dispose helpers for a __block variable
1919/// with the given information.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001920template <class T>
1921static T *buildByrefHelpers(CodeGenModule &CGM, const BlockByrefInfo &byrefInfo,
1922 T &&generator) {
John McCallf0c11f72011-03-31 08:03:29 +00001923 llvm::FoldingSetNodeID id;
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001924 generator.Profile(id);
John McCallf0c11f72011-03-31 08:03:29 +00001925
1926 void *insertPos;
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001927 BlockByrefHelpers *node
John McCallf0c11f72011-03-31 08:03:29 +00001928 = CGM.ByrefHelpersCache.FindNodeOrInsertPos(id, insertPos);
1929 if (node) return static_cast<T*>(node);
1930
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001931 generator.CopyHelper = buildByrefCopyHelper(CGM, byrefInfo, generator);
1932 generator.DisposeHelper = buildByrefDisposeHelper(CGM, byrefInfo, generator);
John McCallf0c11f72011-03-31 08:03:29 +00001933
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001934 T *copy = new (CGM.getContext()) T(std::move(generator));
John McCallf0c11f72011-03-31 08:03:29 +00001935 CGM.ByrefHelpersCache.InsertNode(copy, insertPos);
1936 return copy;
1937}
1938
John McCallb62faef2013-01-22 03:56:22 +00001939/// Build the copy and dispose helpers for the given __block variable
1940/// emission. Places the helpers in the global cache. Returns null
1941/// if no helpers are required.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001942BlockByrefHelpers *
Chris Lattner2acc6e32011-07-18 04:24:23 +00001943CodeGenFunction::buildByrefHelpers(llvm::StructType &byrefType,
John McCallf0c11f72011-03-31 08:03:29 +00001944 const AutoVarEmission &emission) {
1945 const VarDecl &var = *emission.Variable;
1946 QualType type = var.getType();
1947
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001948 auto &byrefInfo = getBlockByrefInfo(&var);
1949
1950 // The alignment we care about for the purposes of uniquing byref
1951 // helpers is the alignment of the actual byref value field.
1952 CharUnits valueAlignment =
1953 byrefInfo.ByrefAlignment.alignmentAtOffset(byrefInfo.FieldOffset);
John McCallb62faef2013-01-22 03:56:22 +00001954
John McCallf0c11f72011-03-31 08:03:29 +00001955 if (const CXXRecordDecl *record = type->getAsCXXRecordDecl()) {
1956 const Expr *copyExpr = CGM.getContext().getBlockVarCopyInits(&var);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001957 if (!copyExpr && record->hasTrivialDestructor()) return nullptr;
John McCallf0c11f72011-03-31 08:03:29 +00001958
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001959 return ::buildByrefHelpers(
1960 CGM, byrefInfo, CXXByrefHelpers(valueAlignment, type, copyExpr));
John McCallf0c11f72011-03-31 08:03:29 +00001961 }
1962
John McCallf85e1932011-06-15 23:02:42 +00001963 // Otherwise, if we don't have a retainable type, there's nothing to do.
1964 // that the runtime does extra copies.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001965 if (!type->isObjCRetainableType()) return nullptr;
John McCallf85e1932011-06-15 23:02:42 +00001966
1967 Qualifiers qs = type.getQualifiers();
1968
1969 // If we have lifetime, that dominates.
1970 if (Qualifiers::ObjCLifetime lifetime = qs.getObjCLifetime()) {
John McCallf85e1932011-06-15 23:02:42 +00001971 switch (lifetime) {
1972 case Qualifiers::OCL_None: llvm_unreachable("impossible");
1973
1974 // These are just bits as far as the runtime is concerned.
1975 case Qualifiers::OCL_ExplicitNone:
1976 case Qualifiers::OCL_Autoreleasing:
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001977 return nullptr;
John McCallf85e1932011-06-15 23:02:42 +00001978
1979 // Tell the runtime that this is ARC __weak, called by the
1980 // byref routines.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001981 case Qualifiers::OCL_Weak:
1982 return ::buildByrefHelpers(CGM, byrefInfo,
1983 ARCWeakByrefHelpers(valueAlignment));
John McCallf85e1932011-06-15 23:02:42 +00001984
1985 // ARC __strong __block variables need to be retained.
1986 case Qualifiers::OCL_Strong:
John McCalla59e4b72011-11-09 03:17:26 +00001987 // Block pointers need to be copied, and there's no direct
1988 // transfer possible.
John McCallf85e1932011-06-15 23:02:42 +00001989 if (type->isBlockPointerType()) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001990 return ::buildByrefHelpers(CGM, byrefInfo,
1991 ARCStrongBlockByrefHelpers(valueAlignment));
John McCallf85e1932011-06-15 23:02:42 +00001992
1993 // Otherwise, we transfer ownership of the retain from the stack
1994 // to the heap.
1995 } else {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001996 return ::buildByrefHelpers(CGM, byrefInfo,
1997 ARCStrongByrefHelpers(valueAlignment));
John McCallf85e1932011-06-15 23:02:42 +00001998 }
1999 }
2000 llvm_unreachable("fell out of lifetime switch!");
2001 }
2002
John McCallf0c11f72011-03-31 08:03:29 +00002003 BlockFieldFlags flags;
2004 if (type->isBlockPointerType()) {
2005 flags |= BLOCK_FIELD_IS_BLOCK;
2006 } else if (CGM.getContext().isObjCNSObjectType(type) ||
2007 type->isObjCObjectPointerType()) {
2008 flags |= BLOCK_FIELD_IS_OBJECT;
2009 } else {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002010 return nullptr;
John McCallf0c11f72011-03-31 08:03:29 +00002011 }
2012
2013 if (type.isObjCGCWeak())
2014 flags |= BLOCK_FIELD_IS_WEAK;
2015
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002016 return ::buildByrefHelpers(CGM, byrefInfo,
2017 ObjectByrefHelpers(valueAlignment, flags));
Mike Stump45031c02009-03-06 02:29:21 +00002018}
2019
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002020Address CodeGenFunction::emitBlockByrefAddress(Address baseAddr,
2021 const VarDecl *var,
2022 bool followForward) {
2023 auto &info = getBlockByrefInfo(var);
2024 return emitBlockByrefAddress(baseAddr, info, followForward, var->getName());
John McCall5af02db2011-03-31 01:59:53 +00002025}
2026
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002027Address CodeGenFunction::emitBlockByrefAddress(Address baseAddr,
2028 const BlockByrefInfo &info,
2029 bool followForward,
2030 const llvm::Twine &name) {
2031 // Chase the forwarding address if requested.
2032 if (followForward) {
2033 Address forwardingAddr =
2034 Builder.CreateStructGEP(baseAddr, 1, getPointerSize(), "forwarding");
2035 baseAddr = Address(Builder.CreateLoad(forwardingAddr), info.ByrefAlignment);
2036 }
2037
2038 return Builder.CreateStructGEP(baseAddr, info.FieldIndex,
2039 info.FieldOffset, name);
John McCall5af02db2011-03-31 01:59:53 +00002040}
2041
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002042/// BuildByrefInfo - This routine changes a __block variable declared as T x
John McCall5af02db2011-03-31 01:59:53 +00002043/// into:
2044///
2045/// struct {
2046/// void *__isa;
2047/// void *__forwarding;
2048/// int32_t __flags;
2049/// int32_t __size;
2050/// void *__copy_helper; // only if needed
2051/// void *__destroy_helper; // only if needed
Fariborz Jahanian3ca23d72012-11-14 17:15:51 +00002052/// void *__byref_variable_layout;// only if needed
John McCall5af02db2011-03-31 01:59:53 +00002053/// char padding[X]; // only if needed
2054/// T x;
2055/// } x
2056///
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002057const BlockByrefInfo &CodeGenFunction::getBlockByrefInfo(const VarDecl *D) {
2058 auto it = BlockByrefInfos.find(D);
2059 if (it != BlockByrefInfos.end())
2060 return it->second;
John McCall5af02db2011-03-31 01:59:53 +00002061
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002062 llvm::StructType *byrefType =
Chris Lattnerc1c20112011-08-12 17:43:31 +00002063 llvm::StructType::create(getLLVMContext(),
2064 "struct.__block_byref_" + D->getNameAsString());
John McCall5af02db2011-03-31 01:59:53 +00002065
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002066 QualType Ty = D->getType();
2067
2068 CharUnits size;
2069 SmallVector<llvm::Type *, 8> types;
2070
John McCall5af02db2011-03-31 01:59:53 +00002071 // void *__isa;
John McCall0774cb82011-05-15 01:53:33 +00002072 types.push_back(Int8PtrTy);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002073 size += getPointerSize();
John McCall5af02db2011-03-31 01:59:53 +00002074
2075 // void *__forwarding;
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002076 types.push_back(llvm::PointerType::getUnqual(byrefType));
2077 size += getPointerSize();
John McCall5af02db2011-03-31 01:59:53 +00002078
2079 // int32_t __flags;
John McCall0774cb82011-05-15 01:53:33 +00002080 types.push_back(Int32Ty);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002081 size += CharUnits::fromQuantity(4);
John McCall5af02db2011-03-31 01:59:53 +00002082
2083 // int32_t __size;
John McCall0774cb82011-05-15 01:53:33 +00002084 types.push_back(Int32Ty);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002085 size += CharUnits::fromQuantity(4);
2086
Fariborz Jahanianb15c8982012-11-28 23:12:17 +00002087 // Note that this must match *exactly* the logic in buildByrefHelpers.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002088 bool hasCopyAndDispose = getContext().BlockRequiresCopying(Ty, D);
2089 if (hasCopyAndDispose) {
John McCall5af02db2011-03-31 01:59:53 +00002090 /// void *__copy_helper;
John McCall0774cb82011-05-15 01:53:33 +00002091 types.push_back(Int8PtrTy);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002092 size += getPointerSize();
John McCall5af02db2011-03-31 01:59:53 +00002093
2094 /// void *__destroy_helper;
John McCall0774cb82011-05-15 01:53:33 +00002095 types.push_back(Int8PtrTy);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002096 size += getPointerSize();
John McCall5af02db2011-03-31 01:59:53 +00002097 }
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002098
Fariborz Jahanian3ca23d72012-11-14 17:15:51 +00002099 bool HasByrefExtendedLayout = false;
2100 Qualifiers::ObjCLifetime Lifetime;
2101 if (getContext().getByrefLifetime(Ty, Lifetime, HasByrefExtendedLayout) &&
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002102 HasByrefExtendedLayout) {
Fariborz Jahanian3ca23d72012-11-14 17:15:51 +00002103 /// void *__byref_variable_layout;
2104 types.push_back(Int8PtrTy);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002105 size += CharUnits::fromQuantity(PointerSizeInBytes);
John McCall5af02db2011-03-31 01:59:53 +00002106 }
2107
2108 // T x;
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002109 llvm::Type *varTy = ConvertTypeForMem(Ty);
2110
2111 bool packed = false;
2112 CharUnits varAlign = getContext().getDeclAlign(D);
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07002113 CharUnits varOffset = size.alignTo(varAlign);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002114
2115 // We may have to insert padding.
2116 if (varOffset != size) {
2117 llvm::Type *paddingTy =
2118 llvm::ArrayType::get(Int8Ty, (varOffset - size).getQuantity());
2119
2120 types.push_back(paddingTy);
2121 size = varOffset;
2122
2123 // Conversely, we might have to prevent LLVM from inserting padding.
2124 } else if (CGM.getDataLayout().getABITypeAlignment(varTy)
2125 > varAlign.getQuantity()) {
2126 packed = true;
2127 }
2128 types.push_back(varTy);
2129
2130 byrefType->setBody(types, packed);
2131
2132 BlockByrefInfo info;
2133 info.Type = byrefType;
2134 info.FieldIndex = types.size() - 1;
2135 info.FieldOffset = varOffset;
2136 info.ByrefAlignment = std::max(varAlign, getPointerAlign());
2137
2138 auto pair = BlockByrefInfos.insert({D, info});
2139 assert(pair.second && "info was inserted recursively?");
2140 return pair.first->second;
John McCall5af02db2011-03-31 01:59:53 +00002141}
2142
2143/// Initialize the structural components of a __block variable, i.e.
2144/// everything but the actual object.
2145void CodeGenFunction::emitByrefStructureInit(const AutoVarEmission &emission) {
John McCallf0c11f72011-03-31 08:03:29 +00002146 // Find the address of the local.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002147 Address addr = emission.Addr;
John McCall5af02db2011-03-31 01:59:53 +00002148
John McCallf0c11f72011-03-31 08:03:29 +00002149 // That's an alloca of the byref structure type.
Chris Lattner2acc6e32011-07-18 04:24:23 +00002150 llvm::StructType *byrefType = cast<llvm::StructType>(
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002151 cast<llvm::PointerType>(addr.getPointer()->getType())->getElementType());
2152
2153 unsigned nextHeaderIndex = 0;
2154 CharUnits nextHeaderOffset;
2155 auto storeHeaderField = [&](llvm::Value *value, CharUnits fieldSize,
2156 const Twine &name) {
2157 auto fieldAddr = Builder.CreateStructGEP(addr, nextHeaderIndex,
2158 nextHeaderOffset, name);
2159 Builder.CreateStore(value, fieldAddr);
2160
2161 nextHeaderIndex++;
2162 nextHeaderOffset += fieldSize;
2163 };
John McCallf0c11f72011-03-31 08:03:29 +00002164
2165 // Build the byref helpers if necessary. This is null if we don't need any.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002166 BlockByrefHelpers *helpers = buildByrefHelpers(*byrefType, emission);
John McCall5af02db2011-03-31 01:59:53 +00002167
2168 const VarDecl &D = *emission.Variable;
2169 QualType type = D.getType();
2170
Fariborz Jahanian3ca23d72012-11-14 17:15:51 +00002171 bool HasByrefExtendedLayout;
2172 Qualifiers::ObjCLifetime ByrefLifetime;
2173 bool ByRefHasLifetime =
2174 getContext().getByrefLifetime(type, ByrefLifetime, HasByrefExtendedLayout);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002175
John McCallf0c11f72011-03-31 08:03:29 +00002176 llvm::Value *V;
John McCall5af02db2011-03-31 01:59:53 +00002177
2178 // Initialize the 'isa', which is just 0 or 1.
2179 int isa = 0;
John McCallf0c11f72011-03-31 08:03:29 +00002180 if (type.isObjCGCWeak())
John McCall5af02db2011-03-31 01:59:53 +00002181 isa = 1;
2182 V = Builder.CreateIntToPtr(Builder.getInt32(isa), Int8PtrTy, "isa");
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002183 storeHeaderField(V, getPointerSize(), "byref.isa");
John McCall5af02db2011-03-31 01:59:53 +00002184
2185 // Store the address of the variable into its own forwarding pointer.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002186 storeHeaderField(addr.getPointer(), getPointerSize(), "byref.forwarding");
John McCall5af02db2011-03-31 01:59:53 +00002187
2188 // Blocks ABI:
2189 // c) the flags field is set to either 0 if no helper functions are
Fariborz Jahanian3ca23d72012-11-14 17:15:51 +00002190 // needed or BLOCK_BYREF_HAS_COPY_DISPOSE if they are,
John McCall5af02db2011-03-31 01:59:53 +00002191 BlockFlags flags;
Fariborz Jahanian3ca23d72012-11-14 17:15:51 +00002192 if (helpers) flags |= BLOCK_BYREF_HAS_COPY_DISPOSE;
2193 if (ByRefHasLifetime) {
2194 if (HasByrefExtendedLayout) flags |= BLOCK_BYREF_LAYOUT_EXTENDED;
2195 else switch (ByrefLifetime) {
2196 case Qualifiers::OCL_Strong:
2197 flags |= BLOCK_BYREF_LAYOUT_STRONG;
2198 break;
2199 case Qualifiers::OCL_Weak:
2200 flags |= BLOCK_BYREF_LAYOUT_WEAK;
2201 break;
2202 case Qualifiers::OCL_ExplicitNone:
2203 flags |= BLOCK_BYREF_LAYOUT_UNRETAINED;
2204 break;
2205 case Qualifiers::OCL_None:
2206 if (!type->isObjCObjectPointerType() && !type->isBlockPointerType())
2207 flags |= BLOCK_BYREF_LAYOUT_NON_OBJECT;
2208 break;
2209 default:
2210 break;
2211 }
2212 if (CGM.getLangOpts().ObjCGCBitmapPrint) {
2213 printf("\n Inline flag for BYREF variable layout (%d):", flags.getBitMask());
2214 if (flags & BLOCK_BYREF_HAS_COPY_DISPOSE)
2215 printf(" BLOCK_BYREF_HAS_COPY_DISPOSE");
2216 if (flags & BLOCK_BYREF_LAYOUT_MASK) {
2217 BlockFlags ThisFlag(flags.getBitMask() & BLOCK_BYREF_LAYOUT_MASK);
2218 if (ThisFlag == BLOCK_BYREF_LAYOUT_EXTENDED)
2219 printf(" BLOCK_BYREF_LAYOUT_EXTENDED");
2220 if (ThisFlag == BLOCK_BYREF_LAYOUT_STRONG)
2221 printf(" BLOCK_BYREF_LAYOUT_STRONG");
2222 if (ThisFlag == BLOCK_BYREF_LAYOUT_WEAK)
2223 printf(" BLOCK_BYREF_LAYOUT_WEAK");
2224 if (ThisFlag == BLOCK_BYREF_LAYOUT_UNRETAINED)
2225 printf(" BLOCK_BYREF_LAYOUT_UNRETAINED");
2226 if (ThisFlag == BLOCK_BYREF_LAYOUT_NON_OBJECT)
2227 printf(" BLOCK_BYREF_LAYOUT_NON_OBJECT");
2228 }
2229 printf("\n");
2230 }
2231 }
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002232 storeHeaderField(llvm::ConstantInt::get(IntTy, flags.getBitMask()),
2233 getIntSize(), "byref.flags");
John McCall5af02db2011-03-31 01:59:53 +00002234
John McCallf0c11f72011-03-31 08:03:29 +00002235 CharUnits byrefSize = CGM.GetTargetTypeStoreSize(byrefType);
2236 V = llvm::ConstantInt::get(IntTy, byrefSize.getQuantity());
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002237 storeHeaderField(V, getIntSize(), "byref.size");
John McCall5af02db2011-03-31 01:59:53 +00002238
John McCallf0c11f72011-03-31 08:03:29 +00002239 if (helpers) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002240 storeHeaderField(helpers->CopyHelper, getPointerSize(),
2241 "byref.copyHelper");
2242 storeHeaderField(helpers->DisposeHelper, getPointerSize(),
2243 "byref.disposeHelper");
John McCall5af02db2011-03-31 01:59:53 +00002244 }
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002245
Fariborz Jahanian3ca23d72012-11-14 17:15:51 +00002246 if (ByRefHasLifetime && HasByrefExtendedLayout) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002247 auto layoutInfo = CGM.getObjCRuntime().BuildByrefLayout(CGM, type);
2248 storeHeaderField(layoutInfo, getPointerSize(), "byref.layout");
Fariborz Jahanian3ca23d72012-11-14 17:15:51 +00002249 }
John McCall5af02db2011-03-31 01:59:53 +00002250}
2251
John McCalld16c2cf2011-02-08 08:22:06 +00002252void CodeGenFunction::BuildBlockRelease(llvm::Value *V, BlockFieldFlags flags) {
Daniel Dunbar673431a2010-07-16 00:00:15 +00002253 llvm::Value *F = CGM.getBlockObjectDispose();
John McCallbd7370a2013-02-28 19:01:20 +00002254 llvm::Value *args[] = {
2255 Builder.CreateBitCast(V, Int8PtrTy),
2256 llvm::ConstantInt::get(Int32Ty, flags.getBitMask())
2257 };
2258 EmitNounwindRuntimeCall(F, args); // FIXME: throwing destructors?
Mike Stump797b6322009-03-05 01:23:13 +00002259}
John McCall5af02db2011-03-31 01:59:53 +00002260
2261namespace {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002262 /// Release a __block variable.
2263 struct CallBlockRelease final : EHScopeStack::Cleanup {
John McCall5af02db2011-03-31 01:59:53 +00002264 llvm::Value *Addr;
2265 CallBlockRelease(llvm::Value *Addr) : Addr(Addr) {}
2266
Stephen Hines651f13c2014-04-23 16:59:28 -07002267 void Emit(CodeGenFunction &CGF, Flags flags) override {
John McCallf85e1932011-06-15 23:02:42 +00002268 // Should we be passing FIELD_IS_WEAK here?
John McCall5af02db2011-03-31 01:59:53 +00002269 CGF.BuildBlockRelease(Addr, BLOCK_FIELD_IS_BYREF);
2270 }
2271 };
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002272} // end anonymous namespace
John McCall5af02db2011-03-31 01:59:53 +00002273
2274/// Enter a cleanup to destroy a __block variable. Note that this
2275/// cleanup should be a no-op if the variable hasn't left the stack
2276/// yet; if a cleanup is required for the variable itself, that needs
2277/// to be done externally.
2278void CodeGenFunction::enterByrefCleanup(const AutoVarEmission &emission) {
2279 // We don't enter this cleanup if we're in pure-GC mode.
David Blaikie4e4d0842012-03-11 07:00:24 +00002280 if (CGM.getLangOpts().getGC() == LangOptions::GCOnly)
John McCall5af02db2011-03-31 01:59:53 +00002281 return;
2282
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08002283 EHStack.pushCleanup<CallBlockRelease>(NormalAndEHCleanup,
2284 emission.Addr.getPointer());
John McCall5af02db2011-03-31 01:59:53 +00002285}
John McCall13db5cf2011-09-09 20:41:01 +00002286
2287/// Adjust the declaration of something from the blocks API.
2288static void configureBlocksRuntimeObject(CodeGenModule &CGM,
2289 llvm::Constant *C) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002290 auto *GV = cast<llvm::GlobalValue>(C->stripPointerCasts());
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07002291
2292 if (CGM.getTarget().getTriple().isOSBinFormatCOFF()) {
2293 IdentifierInfo &II = CGM.getContext().Idents.get(C->getName());
2294 TranslationUnitDecl *TUDecl = CGM.getContext().getTranslationUnitDecl();
2295 DeclContext *DC = TranslationUnitDecl::castToDeclContext(TUDecl);
2296
2297 assert((isa<llvm::Function>(C->stripPointerCasts()) ||
2298 isa<llvm::GlobalVariable>(C->stripPointerCasts())) &&
2299 "expected Function or GlobalVariable");
2300
2301 const NamedDecl *ND = nullptr;
2302 for (const auto &Result : DC->lookup(&II))
2303 if ((ND = dyn_cast<FunctionDecl>(Result)) ||
2304 (ND = dyn_cast<VarDecl>(Result)))
2305 break;
2306
2307 // TODO: support static blocks runtime
2308 if (GV->isDeclaration() && (!ND || !ND->hasAttr<DLLExportAttr>())) {
2309 GV->setDLLStorageClass(llvm::GlobalValue::DLLImportStorageClass);
2310 GV->setLinkage(llvm::GlobalValue::ExternalLinkage);
2311 } else {
2312 GV->setDLLStorageClass(llvm::GlobalValue::DLLExportStorageClass);
2313 GV->setLinkage(llvm::GlobalValue::ExternalLinkage);
2314 }
2315 }
2316
2317 if (!CGM.getLangOpts().BlocksRuntimeOptional)
2318 return;
2319
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002320 if (GV->isDeclaration() && GV->hasExternalLinkage())
John McCall13db5cf2011-09-09 20:41:01 +00002321 GV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
2322}
2323
2324llvm::Constant *CodeGenModule::getBlockObjectDispose() {
2325 if (BlockObjectDispose)
2326 return BlockObjectDispose;
2327
2328 llvm::Type *args[] = { Int8PtrTy, Int32Ty };
2329 llvm::FunctionType *fty
2330 = llvm::FunctionType::get(VoidTy, args, false);
2331 BlockObjectDispose = CreateRuntimeFunction(fty, "_Block_object_dispose");
2332 configureBlocksRuntimeObject(*this, BlockObjectDispose);
2333 return BlockObjectDispose;
2334}
2335
2336llvm::Constant *CodeGenModule::getBlockObjectAssign() {
2337 if (BlockObjectAssign)
2338 return BlockObjectAssign;
2339
2340 llvm::Type *args[] = { Int8PtrTy, Int8PtrTy, Int32Ty };
2341 llvm::FunctionType *fty
2342 = llvm::FunctionType::get(VoidTy, args, false);
2343 BlockObjectAssign = CreateRuntimeFunction(fty, "_Block_object_assign");
2344 configureBlocksRuntimeObject(*this, BlockObjectAssign);
2345 return BlockObjectAssign;
2346}
2347
2348llvm::Constant *CodeGenModule::getNSConcreteGlobalBlock() {
2349 if (NSConcreteGlobalBlock)
2350 return NSConcreteGlobalBlock;
2351
2352 NSConcreteGlobalBlock = GetOrCreateLLVMGlobal("_NSConcreteGlobalBlock",
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002353 Int8PtrTy->getPointerTo(),
2354 nullptr);
John McCall13db5cf2011-09-09 20:41:01 +00002355 configureBlocksRuntimeObject(*this, NSConcreteGlobalBlock);
2356 return NSConcreteGlobalBlock;
2357}
2358
2359llvm::Constant *CodeGenModule::getNSConcreteStackBlock() {
2360 if (NSConcreteStackBlock)
2361 return NSConcreteStackBlock;
2362
2363 NSConcreteStackBlock = GetOrCreateLLVMGlobal("_NSConcreteStackBlock",
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002364 Int8PtrTy->getPointerTo(),
2365 nullptr);
John McCall13db5cf2011-09-09 20:41:01 +00002366 configureBlocksRuntimeObject(*this, NSConcreteStackBlock);
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07002367 return NSConcreteStackBlock;
John McCall13db5cf2011-09-09 20:41:01 +00002368}