1 //===--- CGBlocks.cpp - Emit LLVM Code for declarations ---------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This contains code to emit blocks.
11 //===----------------------------------------------------------------------===//
15 #include "CGDebugInfo.h"
16 #include "CGObjCRuntime.h"
17 #include "CGOpenCLRuntime.h"
18 #include "CodeGenFunction.h"
19 #include "CodeGenModule.h"
20 #include "ConstantEmitter.h"
21 #include "TargetInfo.h"
22 #include "clang/AST/Attr.h"
23 #include "clang/AST/DeclObjC.h"
24 #include "clang/CodeGen/ConstantInitBuilder.h"
25 #include "llvm/ADT/SmallSet.h"
26 #include "llvm/IR/DataLayout.h"
27 #include "llvm/IR/Module.h"
28 #include "llvm/Support/ScopedPrinter.h"
32 using namespace clang
;
33 using namespace CodeGen
;
35 CGBlockInfo::CGBlockInfo(const BlockDecl
*block
, StringRef name
)
36 : Name(name
), CXXThisIndex(0), CanBeGlobal(false), NeedsCopyDispose(false),
37 NoEscape(false), HasCXXObject(false), UsesStret(false),
38 HasCapturedVariableLayout(false), CapturesNonExternalType(false),
39 LocalAddress(Address::invalid()), StructureType(nullptr), Block(block
) {
41 // Skip asm prefix, if any. 'name' is usually taken directly from
42 // the mangled name of the enclosing function.
43 if (!name
.empty() && name
[0] == '\01')
44 name
= name
.substr(1);
47 // Anchor the vtable to this translation unit.
48 BlockByrefHelpers::~BlockByrefHelpers() {}
50 /// Build the given block as a global block.
51 static llvm::Constant
*buildGlobalBlock(CodeGenModule
&CGM
,
52 const CGBlockInfo
&blockInfo
,
53 llvm::Constant
*blockFn
);
55 /// Build the helper function to copy a block.
56 static llvm::Constant
*buildCopyHelper(CodeGenModule
&CGM
,
57 const CGBlockInfo
&blockInfo
) {
58 return CodeGenFunction(CGM
).GenerateCopyHelperFunction(blockInfo
);
61 /// Build the helper function to dispose of a block.
62 static llvm::Constant
*buildDisposeHelper(CodeGenModule
&CGM
,
63 const CGBlockInfo
&blockInfo
) {
64 return CodeGenFunction(CGM
).GenerateDestroyHelperFunction(blockInfo
);
69 /// Represents a captured entity that requires extra operations in order for
70 /// this entity to be copied or destroyed correctly.
71 struct BlockCaptureManagedEntity
{
72 BlockCaptureEntityKind CopyKind
, DisposeKind
;
73 BlockFieldFlags CopyFlags
, DisposeFlags
;
74 const BlockDecl::Capture
*CI
;
75 const CGBlockInfo::Capture
*Capture
;
77 BlockCaptureManagedEntity(BlockCaptureEntityKind CopyType
,
78 BlockCaptureEntityKind DisposeType
,
79 BlockFieldFlags CopyFlags
,
80 BlockFieldFlags DisposeFlags
,
81 const BlockDecl::Capture
&CI
,
82 const CGBlockInfo::Capture
&Capture
)
83 : CopyKind(CopyType
), DisposeKind(DisposeType
), CopyFlags(CopyFlags
),
84 DisposeFlags(DisposeFlags
), CI(&CI
), Capture(&Capture
) {}
86 bool operator<(const BlockCaptureManagedEntity
&Other
) const {
87 return Capture
->getOffset() < Other
.Capture
->getOffset();
91 enum class CaptureStrKind
{
92 // String for the copy helper.
94 // String for the dispose helper.
96 // Merge the strings for the copy helper and dispose helper.
100 } // end anonymous namespace
102 static std::string
getBlockCaptureStr(const CGBlockInfo::Capture
&Cap
,
103 CaptureStrKind StrKind
,
104 CharUnits BlockAlignment
,
107 static std::string
getBlockDescriptorName(const CGBlockInfo
&BlockInfo
,
108 CodeGenModule
&CGM
) {
109 std::string Name
= "__block_descriptor_";
110 Name
+= llvm::to_string(BlockInfo
.BlockSize
.getQuantity()) + "_";
112 if (BlockInfo
.NeedsCopyDispose
) {
113 if (CGM
.getLangOpts().Exceptions
)
115 if (CGM
.getCodeGenOpts().ObjCAutoRefCountExceptions
)
117 Name
+= llvm::to_string(BlockInfo
.BlockAlign
.getQuantity()) + "_";
119 for (auto &Cap
: BlockInfo
.SortedCaptures
) {
120 if (Cap
.isConstantOrTrivial())
123 Name
+= llvm::to_string(Cap
.getOffset().getQuantity());
125 if (Cap
.CopyKind
== Cap
.DisposeKind
) {
126 // If CopyKind and DisposeKind are the same, merge the capture
128 assert(Cap
.CopyKind
!= BlockCaptureEntityKind::None
&&
129 "shouldn't see BlockCaptureManagedEntity that is None");
130 Name
+= getBlockCaptureStr(Cap
, CaptureStrKind::Merged
,
131 BlockInfo
.BlockAlign
, CGM
);
133 // If CopyKind and DisposeKind are not the same, which can happen when
134 // either Kind is None or the captured object is a __strong block,
135 // concatenate the copy and dispose strings.
136 Name
+= getBlockCaptureStr(Cap
, CaptureStrKind::CopyHelper
,
137 BlockInfo
.BlockAlign
, CGM
);
138 Name
+= getBlockCaptureStr(Cap
, CaptureStrKind::DisposeHelper
,
139 BlockInfo
.BlockAlign
, CGM
);
145 std::string TypeAtEncoding
=
146 CGM
.getContext().getObjCEncodingForBlock(BlockInfo
.getBlockExpr());
147 /// Replace occurrences of '@' with '\1'. '@' is reserved on ELF platforms as
148 /// a separator between symbol name and symbol version.
149 std::replace(TypeAtEncoding
.begin(), TypeAtEncoding
.end(), '@', '\1');
150 Name
+= "e" + llvm::to_string(TypeAtEncoding
.size()) + "_" + TypeAtEncoding
;
151 Name
+= "l" + CGM
.getObjCRuntime().getRCBlockLayoutStr(CGM
, BlockInfo
);
155 /// buildBlockDescriptor - Build the block descriptor meta-data for a block.
156 /// buildBlockDescriptor is accessed from 5th field of the Block_literal
157 /// meta-data and contains stationary information about the block literal.
158 /// Its definition will have 4 (or optionally 6) words.
160 /// struct Block_descriptor {
161 /// unsigned long reserved;
162 /// unsigned long size; // size of Block_literal metadata in bytes.
163 /// void *copy_func_helper_decl; // optional copy helper.
164 /// void *destroy_func_decl; // optional destructor helper.
165 /// void *block_method_encoding_address; // @encode for block literal signature.
166 /// void *block_layout_info; // encoding of captured block variables.
169 static llvm::Constant
*buildBlockDescriptor(CodeGenModule
&CGM
,
170 const CGBlockInfo
&blockInfo
) {
171 ASTContext
&C
= CGM
.getContext();
173 llvm::IntegerType
*ulong
=
174 cast
<llvm::IntegerType
>(CGM
.getTypes().ConvertType(C
.UnsignedLongTy
));
175 llvm::PointerType
*i8p
= nullptr;
176 if (CGM
.getLangOpts().OpenCL
)
178 llvm::Type::getInt8PtrTy(
179 CGM
.getLLVMContext(), C
.getTargetAddressSpace(LangAS::opencl_constant
));
183 std::string descName
;
185 // If an equivalent block descriptor global variable exists, return it.
186 if (C
.getLangOpts().ObjC
&&
187 CGM
.getLangOpts().getGC() == LangOptions::NonGC
) {
188 descName
= getBlockDescriptorName(blockInfo
, CGM
);
189 if (llvm::GlobalValue
*desc
= CGM
.getModule().getNamedValue(descName
))
190 return llvm::ConstantExpr::getBitCast(desc
,
191 CGM
.getBlockDescriptorType());
194 // If there isn't an equivalent block descriptor global variable, create a new
196 ConstantInitBuilder
builder(CGM
);
197 auto elements
= builder
.beginStruct();
200 elements
.addInt(ulong
, 0);
203 // FIXME: What is the right way to say this doesn't fit? We should give
204 // a user diagnostic in that case. Better fix would be to change the
206 elements
.addInt(ulong
, blockInfo
.BlockSize
.getQuantity());
208 // Optional copy/dispose helpers.
209 bool hasInternalHelper
= false;
210 if (blockInfo
.NeedsCopyDispose
) {
211 // copy_func_helper_decl
212 llvm::Constant
*copyHelper
= buildCopyHelper(CGM
, blockInfo
);
213 elements
.add(copyHelper
);
216 llvm::Constant
*disposeHelper
= buildDisposeHelper(CGM
, blockInfo
);
217 elements
.add(disposeHelper
);
219 if (cast
<llvm::Function
>(copyHelper
->stripPointerCasts())
220 ->hasInternalLinkage() ||
221 cast
<llvm::Function
>(disposeHelper
->stripPointerCasts())
222 ->hasInternalLinkage())
223 hasInternalHelper
= true;
226 // Signature. Mandatory ObjC-style method descriptor @encode sequence.
227 std::string typeAtEncoding
=
228 CGM
.getContext().getObjCEncodingForBlock(blockInfo
.getBlockExpr());
229 elements
.add(llvm::ConstantExpr::getBitCast(
230 CGM
.GetAddrOfConstantCString(typeAtEncoding
).getPointer(), i8p
));
233 if (C
.getLangOpts().ObjC
) {
234 if (CGM
.getLangOpts().getGC() != LangOptions::NonGC
)
235 elements
.add(CGM
.getObjCRuntime().BuildGCBlockLayout(CGM
, blockInfo
));
237 elements
.add(CGM
.getObjCRuntime().BuildRCBlockLayout(CGM
, blockInfo
));
240 elements
.addNullPointer(i8p
);
242 unsigned AddrSpace
= 0;
243 if (C
.getLangOpts().OpenCL
)
244 AddrSpace
= C
.getTargetAddressSpace(LangAS::opencl_constant
);
246 llvm::GlobalValue::LinkageTypes linkage
;
247 if (descName
.empty()) {
248 linkage
= llvm::GlobalValue::InternalLinkage
;
249 descName
= "__block_descriptor_tmp";
250 } else if (hasInternalHelper
) {
251 // If either the copy helper or the dispose helper has internal linkage,
252 // the block descriptor must have internal linkage too.
253 linkage
= llvm::GlobalValue::InternalLinkage
;
255 linkage
= llvm::GlobalValue::LinkOnceODRLinkage
;
258 llvm::GlobalVariable
*global
=
259 elements
.finishAndCreateGlobal(descName
, CGM
.getPointerAlign(),
260 /*constant*/ true, linkage
, AddrSpace
);
262 if (linkage
== llvm::GlobalValue::LinkOnceODRLinkage
) {
263 if (CGM
.supportsCOMDAT())
264 global
->setComdat(CGM
.getModule().getOrInsertComdat(descName
));
265 global
->setVisibility(llvm::GlobalValue::HiddenVisibility
);
266 global
->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global
);
269 return llvm::ConstantExpr::getBitCast(global
, CGM
.getBlockDescriptorType());
273 Purely notional variadic template describing the layout of a block.
275 template <class _ResultType, class... _ParamTypes, class... _CaptureTypes>
276 struct Block_literal {
277 /// Initialized to one of:
278 /// extern void *_NSConcreteStackBlock[];
279 /// extern void *_NSConcreteGlobalBlock[];
281 /// In theory, we could start one off malloc'ed by setting
282 /// BLOCK_NEEDS_FREE, giving it a refcount of 1, and using
284 /// extern void *_NSConcreteMallocBlock[];
285 struct objc_class *isa;
287 /// These are the flags (with corresponding bit number) that the
288 /// compiler is actually supposed to know about.
289 /// 23. BLOCK_IS_NOESCAPE - indicates that the block is non-escaping
290 /// 25. BLOCK_HAS_COPY_DISPOSE - indicates that the block
291 /// descriptor provides copy and dispose helper functions
292 /// 26. BLOCK_HAS_CXX_OBJ - indicates that there's a captured
293 /// object with a nontrivial destructor or copy constructor
294 /// 28. BLOCK_IS_GLOBAL - indicates that the block is allocated
296 /// 29. BLOCK_USE_STRET - indicates that the block function
297 /// uses stret, which objc_msgSend needs to know about
298 /// 30. BLOCK_HAS_SIGNATURE - indicates that the block has an
299 /// @encoded signature string
300 /// And we're not supposed to manipulate these:
301 /// 24. BLOCK_NEEDS_FREE - indicates that the block has been moved
302 /// to malloc'ed memory
303 /// 27. BLOCK_IS_GC - indicates that the block has been moved to
304 /// to GC-allocated memory
305 /// Additionally, the bottom 16 bits are a reference count which
306 /// should be zero on the stack.
309 /// Reserved; should be zero-initialized.
312 /// Function pointer generated from block literal.
313 _ResultType (*invoke)(Block_literal *, _ParamTypes...);
315 /// Block description metadata generated from block literal.
316 struct Block_descriptor *block_descriptor;
318 /// Captured values follow.
319 _CapturesTypes captures...;
324 /// A chunk of data that we actually have to capture in the block.
325 struct BlockLayoutChunk
{
328 const BlockDecl::Capture
*Capture
; // null for 'this'
331 BlockCaptureEntityKind CopyKind
, DisposeKind
;
332 BlockFieldFlags CopyFlags
, DisposeFlags
;
334 BlockLayoutChunk(CharUnits align
, CharUnits size
,
335 const BlockDecl::Capture
*capture
, llvm::Type
*type
,
336 QualType fieldType
, BlockCaptureEntityKind CopyKind
,
337 BlockFieldFlags CopyFlags
,
338 BlockCaptureEntityKind DisposeKind
,
339 BlockFieldFlags DisposeFlags
)
340 : Alignment(align
), Size(size
), Capture(capture
), Type(type
),
341 FieldType(fieldType
), CopyKind(CopyKind
), DisposeKind(DisposeKind
),
342 CopyFlags(CopyFlags
), DisposeFlags(DisposeFlags
) {}
344 /// Tell the block info that this chunk has the given field index.
345 void setIndex(CGBlockInfo
&info
, unsigned index
, CharUnits offset
) {
347 info
.CXXThisIndex
= index
;
348 info
.CXXThisOffset
= offset
;
350 info
.SortedCaptures
.push_back(CGBlockInfo::Capture::makeIndex(
351 index
, offset
, FieldType
, CopyKind
, CopyFlags
, DisposeKind
,
352 DisposeFlags
, Capture
));
356 bool isTrivial() const {
357 return CopyKind
== BlockCaptureEntityKind::None
&&
358 DisposeKind
== BlockCaptureEntityKind::None
;
362 /// Order by 1) all __strong together 2) next, all block together 3) next,
363 /// all byref together 4) next, all __weak together. Preserve descending
364 /// alignment in all situations.
365 bool operator<(const BlockLayoutChunk
&left
, const BlockLayoutChunk
&right
) {
366 if (left
.Alignment
!= right
.Alignment
)
367 return left
.Alignment
> right
.Alignment
;
369 auto getPrefOrder
= [](const BlockLayoutChunk
&chunk
) {
370 switch (chunk
.CopyKind
) {
371 case BlockCaptureEntityKind::ARCStrong
:
373 case BlockCaptureEntityKind::BlockObject
:
374 switch (chunk
.CopyFlags
.getBitMask()) {
375 case BLOCK_FIELD_IS_OBJECT
:
377 case BLOCK_FIELD_IS_BLOCK
:
379 case BLOCK_FIELD_IS_BYREF
:
385 case BlockCaptureEntityKind::ARCWeak
:
393 return getPrefOrder(left
) < getPrefOrder(right
);
395 } // end anonymous namespace
397 static std::pair
<BlockCaptureEntityKind
, BlockFieldFlags
>
398 computeCopyInfoForBlockCapture(const BlockDecl::Capture
&CI
, QualType T
,
399 const LangOptions
&LangOpts
);
401 static std::pair
<BlockCaptureEntityKind
, BlockFieldFlags
>
402 computeDestroyInfoForBlockCapture(const BlockDecl::Capture
&CI
, QualType T
,
403 const LangOptions
&LangOpts
);
405 static void addBlockLayout(CharUnits align
, CharUnits size
,
406 const BlockDecl::Capture
*capture
, llvm::Type
*type
,
408 SmallVectorImpl
<BlockLayoutChunk
> &Layout
,
409 CGBlockInfo
&Info
, CodeGenModule
&CGM
) {
412 Layout
.push_back(BlockLayoutChunk(
413 align
, size
, capture
, type
, fieldType
, BlockCaptureEntityKind::None
,
414 BlockFieldFlags(), BlockCaptureEntityKind::None
, BlockFieldFlags()));
418 const LangOptions
&LangOpts
= CGM
.getLangOpts();
419 BlockCaptureEntityKind CopyKind
, DisposeKind
;
420 BlockFieldFlags CopyFlags
, DisposeFlags
;
422 std::tie(CopyKind
, CopyFlags
) =
423 computeCopyInfoForBlockCapture(*capture
, fieldType
, LangOpts
);
424 std::tie(DisposeKind
, DisposeFlags
) =
425 computeDestroyInfoForBlockCapture(*capture
, fieldType
, LangOpts
);
426 Layout
.push_back(BlockLayoutChunk(align
, size
, capture
, type
, fieldType
,
427 CopyKind
, CopyFlags
, DisposeKind
,
433 if (!Layout
.back().isTrivial())
434 Info
.NeedsCopyDispose
= true;
437 /// Determines if the given type is safe for constant capture in C++.
438 static bool isSafeForCXXConstantCapture(QualType type
) {
439 const RecordType
*recordType
=
440 type
->getBaseElementTypeUnsafe()->getAs
<RecordType
>();
442 // Only records can be unsafe.
443 if (!recordType
) return true;
445 const auto *record
= cast
<CXXRecordDecl
>(recordType
->getDecl());
447 // Maintain semantics for classes with non-trivial dtors or copy ctors.
448 if (!record
->hasTrivialDestructor()) return false;
449 if (record
->hasNonTrivialCopyConstructor()) return false;
451 // Otherwise, we just have to make sure there aren't any mutable
452 // fields that might have changed since initialization.
453 return !record
->hasMutableFields();
456 /// It is illegal to modify a const object after initialization.
457 /// Therefore, if a const object has a constant initializer, we don't
458 /// actually need to keep storage for it in the block; we'll just
459 /// rematerialize it at the start of the block function. This is
460 /// acceptable because we make no promises about address stability of
461 /// captured variables.
462 static llvm::Constant
*tryCaptureAsConstant(CodeGenModule
&CGM
,
463 CodeGenFunction
*CGF
,
464 const VarDecl
*var
) {
465 // Return if this is a function parameter. We shouldn't try to
466 // rematerialize default arguments of function parameters.
467 if (isa
<ParmVarDecl
>(var
))
470 QualType type
= var
->getType();
472 // We can only do this if the variable is const.
473 if (!type
.isConstQualified()) return nullptr;
475 // Furthermore, in C++ we have to worry about mutable fields:
476 // C++ [dcl.type.cv]p4:
477 // Except that any class member declared mutable can be
478 // modified, any attempt to modify a const object during its
479 // lifetime results in undefined behavior.
480 if (CGM
.getLangOpts().CPlusPlus
&& !isSafeForCXXConstantCapture(type
))
483 // If the variable doesn't have any initializer (shouldn't this be
484 // invalid?), it's not clear what we should do. Maybe capture as
486 const Expr
*init
= var
->getInit();
487 if (!init
) return nullptr;
489 return ConstantEmitter(CGM
, CGF
).tryEmitAbstractForInitializer(*var
);
492 /// Get the low bit of a nonzero character count. This is the
493 /// alignment of the nth byte if the 0th byte is universally aligned.
494 static CharUnits
getLowBit(CharUnits v
) {
495 return CharUnits::fromQuantity(v
.getQuantity() & (~v
.getQuantity() + 1));
498 static void initializeForBlockHeader(CodeGenModule
&CGM
, CGBlockInfo
&info
,
499 SmallVectorImpl
<llvm::Type
*> &elementTypes
) {
501 assert(elementTypes
.empty());
502 if (CGM
.getLangOpts().OpenCL
) {
503 // The header is basically 'struct { int; int; generic void *;
504 // custom_fields; }'. Assert that struct is packed.
505 auto GenPtrAlign
= CharUnits::fromQuantity(
506 CGM
.getTarget().getPointerAlign(LangAS::opencl_generic
) / 8);
507 auto GenPtrSize
= CharUnits::fromQuantity(
508 CGM
.getTarget().getPointerWidth(LangAS::opencl_generic
) / 8);
509 assert(CGM
.getIntSize() <= GenPtrSize
);
510 assert(CGM
.getIntAlign() <= GenPtrAlign
);
511 assert((2 * CGM
.getIntSize()).isMultipleOf(GenPtrAlign
));
512 elementTypes
.push_back(CGM
.IntTy
); /* total size */
513 elementTypes
.push_back(CGM
.IntTy
); /* align */
514 elementTypes
.push_back(
515 CGM
.getOpenCLRuntime()
516 .getGenericVoidPointerType()); /* invoke function */
518 2 * CGM
.getIntSize().getQuantity() + GenPtrSize
.getQuantity();
519 unsigned BlockAlign
= GenPtrAlign
.getQuantity();
521 CGM
.getTargetCodeGenInfo().getTargetOpenCLBlockHelper()) {
522 for (auto *I
: Helper
->getCustomFieldTypes()) /* custom fields */ {
523 // TargetOpenCLBlockHelp needs to make sure the struct is packed.
524 // If necessary, add padding fields to the custom fields.
525 unsigned Align
= CGM
.getDataLayout().getABITypeAlign(I
).value();
526 if (BlockAlign
< Align
)
528 assert(Offset
% Align
== 0);
529 Offset
+= CGM
.getDataLayout().getTypeAllocSize(I
);
530 elementTypes
.push_back(I
);
533 info
.BlockAlign
= CharUnits::fromQuantity(BlockAlign
);
534 info
.BlockSize
= CharUnits::fromQuantity(Offset
);
536 // The header is basically 'struct { void *; int; int; void *; void *; }'.
537 // Assert that the struct is packed.
538 assert(CGM
.getIntSize() <= CGM
.getPointerSize());
539 assert(CGM
.getIntAlign() <= CGM
.getPointerAlign());
540 assert((2 * CGM
.getIntSize()).isMultipleOf(CGM
.getPointerAlign()));
541 info
.BlockAlign
= CGM
.getPointerAlign();
542 info
.BlockSize
= 3 * CGM
.getPointerSize() + 2 * CGM
.getIntSize();
543 elementTypes
.push_back(CGM
.VoidPtrTy
);
544 elementTypes
.push_back(CGM
.IntTy
);
545 elementTypes
.push_back(CGM
.IntTy
);
546 elementTypes
.push_back(CGM
.VoidPtrTy
);
547 elementTypes
.push_back(CGM
.getBlockDescriptorType());
551 static QualType
getCaptureFieldType(const CodeGenFunction
&CGF
,
552 const BlockDecl::Capture
&CI
) {
553 const VarDecl
*VD
= CI
.getVariable();
555 // If the variable is captured by an enclosing block or lambda expression,
556 // use the type of the capture field.
557 if (CGF
.BlockInfo
&& CI
.isNested())
558 return CGF
.BlockInfo
->getCapture(VD
).fieldType();
559 if (auto *FD
= CGF
.LambdaCaptureFields
.lookup(VD
))
560 return FD
->getType();
561 // If the captured variable is a non-escaping __block variable, the field
562 // type is the reference type. If the variable is a __block variable that
563 // already has a reference type, the field type is the variable's type.
564 return VD
->isNonEscapingByref() ?
565 CGF
.getContext().getLValueReferenceType(VD
->getType()) : VD
->getType();
568 /// Compute the layout of the given block. Attempts to lay the block
569 /// out with minimal space requirements.
570 static void computeBlockInfo(CodeGenModule
&CGM
, CodeGenFunction
*CGF
,
572 ASTContext
&C
= CGM
.getContext();
573 const BlockDecl
*block
= info
.getBlockDecl();
575 SmallVector
<llvm::Type
*, 8> elementTypes
;
576 initializeForBlockHeader(CGM
, info
, elementTypes
);
577 bool hasNonConstantCustomFields
= false;
578 if (auto *OpenCLHelper
=
579 CGM
.getTargetCodeGenInfo().getTargetOpenCLBlockHelper())
580 hasNonConstantCustomFields
=
581 !OpenCLHelper
->areAllCustomFieldValuesConstant(info
);
582 if (!block
->hasCaptures() && !hasNonConstantCustomFields
) {
584 llvm::StructType::get(CGM
.getLLVMContext(), elementTypes
, true);
585 info
.CanBeGlobal
= true;
588 else if (C
.getLangOpts().ObjC
&&
589 CGM
.getLangOpts().getGC() == LangOptions::NonGC
)
590 info
.HasCapturedVariableLayout
= true;
592 if (block
->doesNotEscape())
593 info
.NoEscape
= true;
595 // Collect the layout chunks.
596 SmallVector
<BlockLayoutChunk
, 16> layout
;
597 layout
.reserve(block
->capturesCXXThis() +
598 (block
->capture_end() - block
->capture_begin()));
600 CharUnits maxFieldAlign
;
603 if (block
->capturesCXXThis()) {
604 assert(CGF
&& CGF
->CurFuncDecl
&& isa
<CXXMethodDecl
>(CGF
->CurFuncDecl
) &&
605 "Can't capture 'this' outside a method");
606 QualType thisType
= cast
<CXXMethodDecl
>(CGF
->CurFuncDecl
)->getThisType();
608 // Theoretically, this could be in a different address space, so
609 // don't assume standard pointer size/align.
610 llvm::Type
*llvmType
= CGM
.getTypes().ConvertType(thisType
);
611 auto TInfo
= CGM
.getContext().getTypeInfoInChars(thisType
);
612 maxFieldAlign
= std::max(maxFieldAlign
, TInfo
.Align
);
614 addBlockLayout(TInfo
.Align
, TInfo
.Width
, nullptr, llvmType
, thisType
,
618 // Next, all the block captures.
619 for (const auto &CI
: block
->captures()) {
620 const VarDecl
*variable
= CI
.getVariable();
622 if (CI
.isEscapingByref()) {
623 // Just use void* instead of a pointer to the byref type.
624 CharUnits align
= CGM
.getPointerAlign();
625 maxFieldAlign
= std::max(maxFieldAlign
, align
);
627 // Since a __block variable cannot be captured by lambdas, its type and
628 // the capture field type should always match.
629 assert(CGF
&& getCaptureFieldType(*CGF
, CI
) == variable
->getType() &&
630 "capture type differs from the variable type");
631 addBlockLayout(align
, CGM
.getPointerSize(), &CI
, CGM
.VoidPtrTy
,
632 variable
->getType(), layout
, info
, CGM
);
636 // Otherwise, build a layout chunk with the size and alignment of
638 if (llvm::Constant
*constant
= tryCaptureAsConstant(CGM
, CGF
, variable
)) {
639 info
.SortedCaptures
.push_back(
640 CGBlockInfo::Capture::makeConstant(constant
, &CI
));
644 QualType VT
= getCaptureFieldType(*CGF
, CI
);
646 if (CGM
.getLangOpts().CPlusPlus
)
647 if (const CXXRecordDecl
*record
= VT
->getAsCXXRecordDecl())
648 if (CI
.hasCopyExpr() || !record
->hasTrivialDestructor()) {
649 info
.HasCXXObject
= true;
650 if (!record
->isExternallyVisible())
651 info
.CapturesNonExternalType
= true;
654 CharUnits size
= C
.getTypeSizeInChars(VT
);
655 CharUnits align
= C
.getDeclAlign(variable
);
657 maxFieldAlign
= std::max(maxFieldAlign
, align
);
659 llvm::Type
*llvmType
=
660 CGM
.getTypes().ConvertTypeForMem(VT
);
662 addBlockLayout(align
, size
, &CI
, llvmType
, VT
, layout
, info
, CGM
);
665 // If that was everything, we're done here.
666 if (layout
.empty()) {
668 llvm::StructType::get(CGM
.getLLVMContext(), elementTypes
, true);
669 info
.CanBeGlobal
= true;
670 info
.buildCaptureMap();
674 // Sort the layout by alignment. We have to use a stable sort here
675 // to get reproducible results. There should probably be an
676 // llvm::array_pod_stable_sort.
677 llvm::stable_sort(layout
);
679 // Needed for blocks layout info.
680 info
.BlockHeaderForcedGapOffset
= info
.BlockSize
;
681 info
.BlockHeaderForcedGapSize
= CharUnits::Zero();
683 CharUnits
&blockSize
= info
.BlockSize
;
684 info
.BlockAlign
= std::max(maxFieldAlign
, info
.BlockAlign
);
686 // Assuming that the first byte in the header is maximally aligned,
687 // get the alignment of the first byte following the header.
688 CharUnits endAlign
= getLowBit(blockSize
);
690 // If the end of the header isn't satisfactorily aligned for the
691 // maximum thing, look for things that are okay with the header-end
692 // alignment, and keep appending them until we get something that's
693 // aligned right. This algorithm is only guaranteed optimal if
694 // that condition is satisfied at some point; otherwise we can get
696 // header // next byte has alignment 4
697 // something_with_size_5; // next byte has alignment 1
698 // something_with_alignment_8;
699 // which has 7 bytes of padding, as opposed to the naive solution
700 // which might have less (?).
701 if (endAlign
< maxFieldAlign
) {
702 SmallVectorImpl
<BlockLayoutChunk
>::iterator
703 li
= layout
.begin() + 1, le
= layout
.end();
705 // Look for something that the header end is already
706 // satisfactorily aligned for.
707 for (; li
!= le
&& endAlign
< li
->Alignment
; ++li
)
710 // If we found something that's naturally aligned for the end of
711 // the header, keep adding things...
713 SmallVectorImpl
<BlockLayoutChunk
>::iterator first
= li
;
714 for (; li
!= le
; ++li
) {
715 assert(endAlign
>= li
->Alignment
);
717 li
->setIndex(info
, elementTypes
.size(), blockSize
);
718 elementTypes
.push_back(li
->Type
);
719 blockSize
+= li
->Size
;
720 endAlign
= getLowBit(blockSize
);
722 // ...until we get to the alignment of the maximum field.
723 if (endAlign
>= maxFieldAlign
) {
728 // Don't re-append everything we just appended.
729 layout
.erase(first
, li
);
733 assert(endAlign
== getLowBit(blockSize
));
735 // At this point, we just have to add padding if the end align still
736 // isn't aligned right.
737 if (endAlign
< maxFieldAlign
) {
738 CharUnits newBlockSize
= blockSize
.alignTo(maxFieldAlign
);
739 CharUnits padding
= newBlockSize
- blockSize
;
741 // If we haven't yet added any fields, remember that there was an
742 // initial gap; this need to go into the block layout bit map.
743 if (blockSize
== info
.BlockHeaderForcedGapOffset
) {
744 info
.BlockHeaderForcedGapSize
= padding
;
747 elementTypes
.push_back(llvm::ArrayType::get(CGM
.Int8Ty
,
748 padding
.getQuantity()));
749 blockSize
= newBlockSize
;
750 endAlign
= getLowBit(blockSize
); // might be > maxFieldAlign
753 assert(endAlign
>= maxFieldAlign
);
754 assert(endAlign
== getLowBit(blockSize
));
755 // Slam everything else on now. This works because they have
756 // strictly decreasing alignment and we expect that size is always a
757 // multiple of alignment.
758 for (SmallVectorImpl
<BlockLayoutChunk
>::iterator
759 li
= layout
.begin(), le
= layout
.end(); li
!= le
; ++li
) {
760 if (endAlign
< li
->Alignment
) {
761 // size may not be multiple of alignment. This can only happen with
762 // an over-aligned variable. We will be adding a padding field to
763 // make the size be multiple of alignment.
764 CharUnits padding
= li
->Alignment
- endAlign
;
765 elementTypes
.push_back(llvm::ArrayType::get(CGM
.Int8Ty
,
766 padding
.getQuantity()));
767 blockSize
+= padding
;
768 endAlign
= getLowBit(blockSize
);
770 assert(endAlign
>= li
->Alignment
);
771 li
->setIndex(info
, elementTypes
.size(), blockSize
);
772 elementTypes
.push_back(li
->Type
);
773 blockSize
+= li
->Size
;
774 endAlign
= getLowBit(blockSize
);
777 info
.buildCaptureMap();
779 llvm::StructType::get(CGM
.getLLVMContext(), elementTypes
, true);
782 /// Emit a block literal expression in the current function.
783 llvm::Value
*CodeGenFunction::EmitBlockLiteral(const BlockExpr
*blockExpr
) {
784 // If the block has no captures, we won't have a pre-computed
786 if (!blockExpr
->getBlockDecl()->hasCaptures())
787 // The block literal is emitted as a global variable, and the block invoke
788 // function has to be extracted from its initializer.
789 if (llvm::Constant
*Block
= CGM
.getAddrOfGlobalBlockIfEmitted(blockExpr
))
792 CGBlockInfo
blockInfo(blockExpr
->getBlockDecl(), CurFn
->getName());
793 computeBlockInfo(CGM
, this, blockInfo
);
794 blockInfo
.BlockExpression
= blockExpr
;
795 if (!blockInfo
.CanBeGlobal
)
796 blockInfo
.LocalAddress
= CreateTempAlloca(blockInfo
.StructureType
,
797 blockInfo
.BlockAlign
, "block");
798 return EmitBlockLiteral(blockInfo
);
801 llvm::Value
*CodeGenFunction::EmitBlockLiteral(const CGBlockInfo
&blockInfo
) {
802 bool IsOpenCL
= CGM
.getContext().getLangOpts().OpenCL
;
804 IsOpenCL
? CGM
.getOpenCLRuntime().getGenericVoidPointerType() : VoidPtrTy
;
805 LangAS GenVoidPtrAddr
= IsOpenCL
? LangAS::opencl_generic
: LangAS::Default
;
806 auto GenVoidPtrSize
= CharUnits::fromQuantity(
807 CGM
.getTarget().getPointerWidth(GenVoidPtrAddr
) / 8);
808 // Using the computed layout, generate the actual block function.
809 bool isLambdaConv
= blockInfo
.getBlockDecl()->isConversionFromLambda();
810 CodeGenFunction BlockCGF
{CGM
, true};
811 BlockCGF
.SanOpts
= SanOpts
;
812 auto *InvokeFn
= BlockCGF
.GenerateBlockFunction(
813 CurGD
, blockInfo
, LocalDeclMap
, isLambdaConv
, blockInfo
.CanBeGlobal
);
814 auto *blockFn
= llvm::ConstantExpr::getPointerCast(InvokeFn
, GenVoidPtrTy
);
816 // If there is nothing to capture, we can emit this as a global block.
817 if (blockInfo
.CanBeGlobal
)
818 return CGM
.getAddrOfGlobalBlockIfEmitted(blockInfo
.BlockExpression
);
820 // Otherwise, we have to emit this as a local block.
822 Address blockAddr
= blockInfo
.LocalAddress
;
823 assert(blockAddr
.isValid() && "block has no address!");
826 llvm::Constant
*descriptor
;
829 // If the block is non-escaping, set field 'isa 'to NSConcreteGlobalBlock
830 // and set the BLOCK_IS_GLOBAL bit of field 'flags'. Copying a non-escaping
831 // block just returns the original block and releasing it is a no-op.
832 llvm::Constant
*blockISA
= blockInfo
.NoEscape
833 ? CGM
.getNSConcreteGlobalBlock()
834 : CGM
.getNSConcreteStackBlock();
835 isa
= llvm::ConstantExpr::getBitCast(blockISA
, VoidPtrTy
);
837 // Build the block descriptor.
838 descriptor
= buildBlockDescriptor(CGM
, blockInfo
);
840 // Compute the initial on-stack block flags.
841 flags
= BLOCK_HAS_SIGNATURE
;
842 if (blockInfo
.HasCapturedVariableLayout
)
843 flags
|= BLOCK_HAS_EXTENDED_LAYOUT
;
844 if (blockInfo
.NeedsCopyDispose
)
845 flags
|= BLOCK_HAS_COPY_DISPOSE
;
846 if (blockInfo
.HasCXXObject
)
847 flags
|= BLOCK_HAS_CXX_OBJ
;
848 if (blockInfo
.UsesStret
)
849 flags
|= BLOCK_USE_STRET
;
850 if (blockInfo
.NoEscape
)
851 flags
|= BLOCK_IS_NOESCAPE
| BLOCK_IS_GLOBAL
;
854 auto projectField
= [&](unsigned index
, const Twine
&name
) -> Address
{
855 return Builder
.CreateStructGEP(blockAddr
, index
, name
);
857 auto storeField
= [&](llvm::Value
*value
, unsigned index
, const Twine
&name
) {
858 Builder
.CreateStore(value
, projectField(index
, name
));
861 // Initialize the block header.
863 // We assume all the header fields are densely packed.
866 auto addHeaderField
= [&](llvm::Value
*value
, CharUnits size
,
868 storeField(value
, index
, name
);
874 addHeaderField(isa
, getPointerSize(), "block.isa");
875 addHeaderField(llvm::ConstantInt::get(IntTy
, flags
.getBitMask()),
876 getIntSize(), "block.flags");
877 addHeaderField(llvm::ConstantInt::get(IntTy
, 0), getIntSize(),
881 llvm::ConstantInt::get(IntTy
, blockInfo
.BlockSize
.getQuantity()),
882 getIntSize(), "block.size");
884 llvm::ConstantInt::get(IntTy
, blockInfo
.BlockAlign
.getQuantity()),
885 getIntSize(), "block.align");
887 addHeaderField(blockFn
, GenVoidPtrSize
, "block.invoke");
889 addHeaderField(descriptor
, getPointerSize(), "block.descriptor");
890 else if (auto *Helper
=
891 CGM
.getTargetCodeGenInfo().getTargetOpenCLBlockHelper()) {
892 for (auto I
: Helper
->getCustomFieldValues(*this, blockInfo
)) {
895 CharUnits::fromQuantity(
896 CGM
.getDataLayout().getTypeAllocSize(I
.first
->getType())),
902 // Finally, capture all the values into the block.
903 const BlockDecl
*blockDecl
= blockInfo
.getBlockDecl();
906 if (blockDecl
->capturesCXXThis()) {
908 projectField(blockInfo
.CXXThisIndex
, "block.captured-this.addr");
909 Builder
.CreateStore(LoadCXXThis(), addr
);
912 // Next, captured variables.
913 for (const auto &CI
: blockDecl
->captures()) {
914 const VarDecl
*variable
= CI
.getVariable();
915 const CGBlockInfo::Capture
&capture
= blockInfo
.getCapture(variable
);
917 // Ignore constant captures.
918 if (capture
.isConstant()) continue;
920 QualType type
= capture
.fieldType();
922 // This will be a [[type]]*, except that a byref entry will just be
924 Address blockField
= projectField(capture
.getIndex(), "block.captured");
926 // Compute the address of the thing we're going to move into the
928 Address src
= Address::invalid();
930 if (blockDecl
->isConversionFromLambda()) {
931 // The lambda capture in a lambda's conversion-to-block-pointer is
932 // special; we'll simply emit it directly.
933 src
= Address::invalid();
934 } else if (CI
.isEscapingByref()) {
935 if (BlockInfo
&& CI
.isNested()) {
936 // We need to use the capture from the enclosing block.
937 const CGBlockInfo::Capture
&enclosingCapture
=
938 BlockInfo
->getCapture(variable
);
940 // This is a [[type]]*, except that a byref entry will just be an i8**.
941 src
= Builder
.CreateStructGEP(LoadBlockStruct(),
942 enclosingCapture
.getIndex(),
943 "block.capture.addr");
945 auto I
= LocalDeclMap
.find(variable
);
946 assert(I
!= LocalDeclMap
.end());
950 DeclRefExpr
declRef(getContext(), const_cast<VarDecl
*>(variable
),
951 /*RefersToEnclosingVariableOrCapture*/ CI
.isNested(),
952 type
.getNonReferenceType(), VK_LValue
,
954 src
= EmitDeclRefLValue(&declRef
).getAddress(*this);
957 // For byrefs, we just write the pointer to the byref struct into
958 // the block field. There's no need to chase the forwarding
959 // pointer at this point, since we're building something that will
960 // live a shorter life than the stack byref anyway.
961 if (CI
.isEscapingByref()) {
962 // Get a void* that points to the byref struct.
963 llvm::Value
*byrefPointer
;
965 byrefPointer
= Builder
.CreateLoad(src
, "byref.capture");
967 byrefPointer
= Builder
.CreateBitCast(src
.getPointer(), VoidPtrTy
);
969 // Write that void* into the capture field.
970 Builder
.CreateStore(byrefPointer
, blockField
);
972 // If we have a copy constructor, evaluate that into the block field.
973 } else if (const Expr
*copyExpr
= CI
.getCopyExpr()) {
974 if (blockDecl
->isConversionFromLambda()) {
975 // If we have a lambda conversion, emit the expression
976 // directly into the block instead.
978 AggValueSlot::forAddr(blockField
, Qualifiers(),
979 AggValueSlot::IsDestructed
,
980 AggValueSlot::DoesNotNeedGCBarriers
,
981 AggValueSlot::IsNotAliased
,
982 AggValueSlot::DoesNotOverlap
);
983 EmitAggExpr(copyExpr
, Slot
);
985 EmitSynthesizedCXXCopyCtor(blockField
, src
, copyExpr
);
988 // If it's a reference variable, copy the reference into the block field.
989 } else if (type
->isReferenceType()) {
990 Builder
.CreateStore(src
.getPointer(), blockField
);
992 // If type is const-qualified, copy the value into the block field.
993 } else if (type
.isConstQualified() &&
994 type
.getObjCLifetime() == Qualifiers::OCL_Strong
&&
995 CGM
.getCodeGenOpts().OptimizationLevel
!= 0) {
996 llvm::Value
*value
= Builder
.CreateLoad(src
, "captured");
997 Builder
.CreateStore(value
, blockField
);
999 // If this is an ARC __strong block-pointer variable, don't do a
1002 // TODO: this can be generalized into the normal initialization logic:
1003 // we should never need to do a block-copy when initializing a local
1004 // variable, because the local variable's lifetime should be strictly
1005 // contained within the stack block's.
1006 } else if (type
.getObjCLifetime() == Qualifiers::OCL_Strong
&&
1007 type
->isBlockPointerType()) {
1008 // Load the block and do a simple retain.
1009 llvm::Value
*value
= Builder
.CreateLoad(src
, "block.captured_block");
1010 value
= EmitARCRetainNonBlock(value
);
1012 // Do a primitive store to the block field.
1013 Builder
.CreateStore(value
, blockField
);
1015 // Otherwise, fake up a POD copy into the block field.
1017 // Fake up a new variable so that EmitScalarInit doesn't think
1018 // we're referring to the variable in its own initializer.
1019 ImplicitParamDecl
BlockFieldPseudoVar(getContext(), type
,
1020 ImplicitParamDecl::Other
);
1022 // We use one of these or the other depending on whether the
1023 // reference is nested.
1024 DeclRefExpr
declRef(getContext(), const_cast<VarDecl
*>(variable
),
1025 /*RefersToEnclosingVariableOrCapture*/ CI
.isNested(),
1026 type
, VK_LValue
, SourceLocation());
1028 ImplicitCastExpr
l2r(ImplicitCastExpr::OnStack
, type
, CK_LValueToRValue
,
1029 &declRef
, VK_PRValue
, FPOptionsOverride());
1030 // FIXME: Pass a specific location for the expr init so that the store is
1031 // attributed to a reasonable location - otherwise it may be attributed to
1032 // locations of subexpressions in the initialization.
1033 EmitExprAsInit(&l2r
, &BlockFieldPseudoVar
,
1034 MakeAddrLValue(blockField
, type
, AlignmentSource::Decl
),
1035 /*captured by init*/ false);
1038 // Push a cleanup for the capture if necessary.
1039 if (!blockInfo
.NoEscape
&& !blockInfo
.NeedsCopyDispose
)
1042 // Ignore __block captures; there's nothing special in the on-stack block
1043 // that we need to do for them.
1047 // Ignore objects that aren't destructed.
1048 QualType::DestructionKind dtorKind
= type
.isDestructedType();
1049 if (dtorKind
== QualType::DK_none
)
1052 CodeGenFunction::Destroyer
*destroyer
;
1054 // Block captures count as local values and have imprecise semantics.
1055 // They also can't be arrays, so need to worry about that.
1057 // For const-qualified captures, emit clang.arc.use to ensure the captured
1058 // object doesn't get released while we are still depending on its validity
1059 // within the block.
1060 if (type
.isConstQualified() &&
1061 type
.getObjCLifetime() == Qualifiers::OCL_Strong
&&
1062 CGM
.getCodeGenOpts().OptimizationLevel
!= 0) {
1063 assert(CGM
.getLangOpts().ObjCAutoRefCount
&&
1064 "expected ObjC ARC to be enabled");
1065 destroyer
= emitARCIntrinsicUse
;
1066 } else if (dtorKind
== QualType::DK_objc_strong_lifetime
) {
1067 destroyer
= destroyARCStrongImprecise
;
1069 destroyer
= getDestroyer(dtorKind
);
1072 CleanupKind cleanupKind
= NormalCleanup
;
1073 bool useArrayEHCleanup
= needsEHCleanup(dtorKind
);
1074 if (useArrayEHCleanup
)
1075 cleanupKind
= NormalAndEHCleanup
;
1077 // Extend the lifetime of the capture to the end of the scope enclosing the
1078 // block expression except when the block decl is in the list of RetExpr's
1079 // cleanup objects, in which case its lifetime ends after the full
1081 auto IsBlockDeclInRetExpr
= [&]() {
1082 auto *EWC
= llvm::dyn_cast_or_null
<ExprWithCleanups
>(RetExpr
);
1084 for (auto &C
: EWC
->getObjects())
1085 if (auto *BD
= C
.dyn_cast
<BlockDecl
*>())
1086 if (BD
== blockDecl
)
1091 if (IsBlockDeclInRetExpr())
1092 pushDestroy(cleanupKind
, blockField
, type
, destroyer
, useArrayEHCleanup
);
1094 pushLifetimeExtendedDestroy(cleanupKind
, blockField
, type
, destroyer
,
1098 // Cast to the converted block-pointer type, which happens (somewhat
1099 // unfortunately) to be a pointer to function type.
1100 llvm::Value
*result
= Builder
.CreatePointerCast(
1101 blockAddr
.getPointer(), ConvertType(blockInfo
.getBlockExpr()->getType()));
1104 CGM
.getOpenCLRuntime().recordBlockInfo(blockInfo
.BlockExpression
, InvokeFn
,
1105 result
, blockInfo
.StructureType
);
1112 llvm::Type
*CodeGenModule::getBlockDescriptorType() {
1113 if (BlockDescriptorType
)
1114 return BlockDescriptorType
;
1116 llvm::Type
*UnsignedLongTy
=
1117 getTypes().ConvertType(getContext().UnsignedLongTy
);
1119 // struct __block_descriptor {
1120 // unsigned long reserved;
1121 // unsigned long block_size;
1123 // // later, the following will be added
1126 // void (*copyHelper)();
1127 // void (*copyHelper)();
1128 // } helpers; // !!! optional
1130 // const char *signature; // the block signature
1131 // const char *layout; // reserved
1133 BlockDescriptorType
= llvm::StructType::create(
1134 "struct.__block_descriptor", UnsignedLongTy
, UnsignedLongTy
);
1136 // Now form a pointer to that.
1137 unsigned AddrSpace
= 0;
1138 if (getLangOpts().OpenCL
)
1139 AddrSpace
= getContext().getTargetAddressSpace(LangAS::opencl_constant
);
1140 BlockDescriptorType
= llvm::PointerType::get(BlockDescriptorType
, AddrSpace
);
1141 return BlockDescriptorType
;
1144 llvm::Type
*CodeGenModule::getGenericBlockLiteralType() {
1145 if (GenericBlockLiteralType
)
1146 return GenericBlockLiteralType
;
1148 llvm::Type
*BlockDescPtrTy
= getBlockDescriptorType();
1150 if (getLangOpts().OpenCL
) {
1151 // struct __opencl_block_literal_generic {
1154 // __generic void *__invoke;
1155 // /* custom fields */
1157 SmallVector
<llvm::Type
*, 8> StructFields(
1158 {IntTy
, IntTy
, getOpenCLRuntime().getGenericVoidPointerType()});
1159 if (auto *Helper
= getTargetCodeGenInfo().getTargetOpenCLBlockHelper()) {
1160 llvm::append_range(StructFields
, Helper
->getCustomFieldTypes());
1162 GenericBlockLiteralType
= llvm::StructType::create(
1163 StructFields
, "struct.__opencl_block_literal_generic");
1165 // struct __block_literal_generic {
1169 // void (*__invoke)(void *);
1170 // struct __block_descriptor *__descriptor;
1172 GenericBlockLiteralType
=
1173 llvm::StructType::create("struct.__block_literal_generic", VoidPtrTy
,
1174 IntTy
, IntTy
, VoidPtrTy
, BlockDescPtrTy
);
1177 return GenericBlockLiteralType
;
1180 RValue
CodeGenFunction::EmitBlockCallExpr(const CallExpr
*E
,
1181 ReturnValueSlot ReturnValue
) {
1182 const auto *BPT
= E
->getCallee()->getType()->castAs
<BlockPointerType
>();
1183 llvm::Value
*BlockPtr
= EmitScalarExpr(E
->getCallee());
1184 llvm::Type
*GenBlockTy
= CGM
.getGenericBlockLiteralType();
1185 llvm::Value
*Func
= nullptr;
1186 QualType FnType
= BPT
->getPointeeType();
1187 ASTContext
&Ctx
= getContext();
1190 if (getLangOpts().OpenCL
) {
1191 // For OpenCL, BlockPtr is already casted to generic block literal.
1193 // First argument of a block call is a generic block literal casted to
1194 // generic void pointer, i.e. i8 addrspace(4)*
1195 llvm::Type
*GenericVoidPtrTy
=
1196 CGM
.getOpenCLRuntime().getGenericVoidPointerType();
1197 llvm::Value
*BlockDescriptor
= Builder
.CreatePointerCast(
1198 BlockPtr
, GenericVoidPtrTy
);
1199 QualType VoidPtrQualTy
= Ctx
.getPointerType(
1200 Ctx
.getAddrSpaceQualType(Ctx
.VoidTy
, LangAS::opencl_generic
));
1201 Args
.add(RValue::get(BlockDescriptor
), VoidPtrQualTy
);
1202 // And the rest of the arguments.
1203 EmitCallArgs(Args
, FnType
->getAs
<FunctionProtoType
>(), E
->arguments());
1205 // We *can* call the block directly unless it is a function argument.
1206 if (!isa
<ParmVarDecl
>(E
->getCalleeDecl()))
1207 Func
= CGM
.getOpenCLRuntime().getInvokeFunction(E
->getCallee());
1209 llvm::Value
*FuncPtr
= Builder
.CreateStructGEP(GenBlockTy
, BlockPtr
, 2);
1210 Func
= Builder
.CreateAlignedLoad(GenericVoidPtrTy
, FuncPtr
,
1214 // Bitcast the block literal to a generic block literal.
1215 BlockPtr
= Builder
.CreatePointerCast(
1216 BlockPtr
, llvm::PointerType::get(GenBlockTy
, 0), "block.literal");
1217 // Get pointer to the block invoke function
1218 llvm::Value
*FuncPtr
= Builder
.CreateStructGEP(GenBlockTy
, BlockPtr
, 3);
1220 // First argument is a block literal casted to a void pointer
1221 BlockPtr
= Builder
.CreatePointerCast(BlockPtr
, VoidPtrTy
);
1222 Args
.add(RValue::get(BlockPtr
), Ctx
.VoidPtrTy
);
1223 // And the rest of the arguments.
1224 EmitCallArgs(Args
, FnType
->getAs
<FunctionProtoType
>(), E
->arguments());
1226 // Load the function.
1227 Func
= Builder
.CreateAlignedLoad(VoidPtrTy
, FuncPtr
, getPointerAlign());
1230 const FunctionType
*FuncTy
= FnType
->castAs
<FunctionType
>();
1231 const CGFunctionInfo
&FnInfo
=
1232 CGM
.getTypes().arrangeBlockFunctionCall(Args
, FuncTy
);
1234 // Cast the function pointer to the right type.
1235 llvm::Type
*BlockFTy
= CGM
.getTypes().GetFunctionType(FnInfo
);
1237 llvm::Type
*BlockFTyPtr
= llvm::PointerType::getUnqual(BlockFTy
);
1238 Func
= Builder
.CreatePointerCast(Func
, BlockFTyPtr
);
1240 // Prepare the callee.
1241 CGCallee
Callee(CGCalleeInfo(), Func
);
1243 // And call the block.
1244 return EmitCall(FnInfo
, Callee
, ReturnValue
, Args
);
1247 Address
CodeGenFunction::GetAddrOfBlockDecl(const VarDecl
*variable
) {
1248 assert(BlockInfo
&& "evaluating block ref without block information?");
1249 const CGBlockInfo::Capture
&capture
= BlockInfo
->getCapture(variable
);
1251 // Handle constant captures.
1252 if (capture
.isConstant()) return LocalDeclMap
.find(variable
)->second
;
1254 Address addr
= Builder
.CreateStructGEP(LoadBlockStruct(), capture
.getIndex(),
1255 "block.capture.addr");
1257 if (variable
->isEscapingByref()) {
1258 // addr should be a void** right now. Load, then cast the result
1261 auto &byrefInfo
= getBlockByrefInfo(variable
);
1262 addr
= Address(Builder
.CreateLoad(addr
), Int8Ty
, byrefInfo
.ByrefAlignment
);
1264 addr
= Builder
.CreateElementBitCast(addr
, byrefInfo
.Type
, "byref.addr");
1266 addr
= emitBlockByrefAddress(addr
, byrefInfo
, /*follow*/ true,
1267 variable
->getName());
1270 assert((!variable
->isNonEscapingByref() ||
1271 capture
.fieldType()->isReferenceType()) &&
1272 "the capture field of a non-escaping variable should have a "
1274 if (capture
.fieldType()->isReferenceType())
1275 addr
= EmitLoadOfReference(MakeAddrLValue(addr
, capture
.fieldType()));
1280 void CodeGenModule::setAddrOfGlobalBlock(const BlockExpr
*BE
,
1281 llvm::Constant
*Addr
) {
1282 bool Ok
= EmittedGlobalBlocks
.insert(std::make_pair(BE
, Addr
)).second
;
1284 assert(Ok
&& "Trying to replace an already-existing global block!");
1288 CodeGenModule::GetAddrOfGlobalBlock(const BlockExpr
*BE
,
1290 if (llvm::Constant
*Block
= getAddrOfGlobalBlockIfEmitted(BE
))
1293 CGBlockInfo
blockInfo(BE
->getBlockDecl(), Name
);
1294 blockInfo
.BlockExpression
= BE
;
1296 // Compute information about the layout, etc., of this block.
1297 computeBlockInfo(*this, nullptr, blockInfo
);
1299 // Using that metadata, generate the actual block function.
1301 CodeGenFunction::DeclMapTy LocalDeclMap
;
1302 CodeGenFunction(*this).GenerateBlockFunction(
1303 GlobalDecl(), blockInfo
, LocalDeclMap
,
1304 /*IsLambdaConversionToBlock*/ false, /*BuildGlobalBlock*/ true);
1307 return getAddrOfGlobalBlockIfEmitted(BE
);
1310 static llvm::Constant
*buildGlobalBlock(CodeGenModule
&CGM
,
1311 const CGBlockInfo
&blockInfo
,
1312 llvm::Constant
*blockFn
) {
1313 assert(blockInfo
.CanBeGlobal
);
1314 // Callers should detect this case on their own: calling this function
1315 // generally requires computing layout information, which is a waste of time
1316 // if we've already emitted this block.
1317 assert(!CGM
.getAddrOfGlobalBlockIfEmitted(blockInfo
.BlockExpression
) &&
1318 "Refusing to re-emit a global block.");
1320 // Generate the constants for the block literal initializer.
1321 ConstantInitBuilder
builder(CGM
);
1322 auto fields
= builder
.beginStruct();
1324 bool IsOpenCL
= CGM
.getLangOpts().OpenCL
;
1325 bool IsWindows
= CGM
.getTarget().getTriple().isOSWindows();
1329 fields
.addNullPointer(CGM
.Int8PtrPtrTy
);
1331 fields
.add(CGM
.getNSConcreteGlobalBlock());
1334 BlockFlags flags
= BLOCK_IS_GLOBAL
| BLOCK_HAS_SIGNATURE
;
1335 if (blockInfo
.UsesStret
)
1336 flags
|= BLOCK_USE_STRET
;
1338 fields
.addInt(CGM
.IntTy
, flags
.getBitMask());
1341 fields
.addInt(CGM
.IntTy
, 0);
1343 fields
.addInt(CGM
.IntTy
, blockInfo
.BlockSize
.getQuantity());
1344 fields
.addInt(CGM
.IntTy
, blockInfo
.BlockAlign
.getQuantity());
1348 fields
.add(blockFn
);
1352 fields
.add(buildBlockDescriptor(CGM
, blockInfo
));
1353 } else if (auto *Helper
=
1354 CGM
.getTargetCodeGenInfo().getTargetOpenCLBlockHelper()) {
1355 for (auto *I
: Helper
->getCustomFieldValues(CGM
, blockInfo
)) {
1360 unsigned AddrSpace
= 0;
1361 if (CGM
.getContext().getLangOpts().OpenCL
)
1362 AddrSpace
= CGM
.getContext().getTargetAddressSpace(LangAS::opencl_global
);
1364 llvm::GlobalVariable
*literal
= fields
.finishAndCreateGlobal(
1365 "__block_literal_global", blockInfo
.BlockAlign
,
1366 /*constant*/ !IsWindows
, llvm::GlobalVariable::InternalLinkage
, AddrSpace
);
1368 literal
->addAttribute("objc_arc_inert");
1370 // Windows does not allow globals to be initialised to point to globals in
1371 // different DLLs. Any such variables must run code to initialise them.
1373 auto *Init
= llvm::Function::Create(llvm::FunctionType::get(CGM
.VoidTy
,
1374 {}), llvm::GlobalValue::InternalLinkage
, ".block_isa_init",
1376 llvm::IRBuilder
<> b(llvm::BasicBlock::Create(CGM
.getLLVMContext(), "entry",
1378 b
.CreateAlignedStore(CGM
.getNSConcreteGlobalBlock(),
1379 b
.CreateStructGEP(literal
->getValueType(), literal
, 0),
1380 CGM
.getPointerAlign().getAsAlign());
1382 // We can't use the normal LLVM global initialisation array, because we
1383 // need to specify that this runs early in library initialisation.
1384 auto *InitVar
= new llvm::GlobalVariable(CGM
.getModule(), Init
->getType(),
1385 /*isConstant*/true, llvm::GlobalValue::InternalLinkage
,
1386 Init
, ".block_isa_init_ptr");
1387 InitVar
->setSection(".CRT$XCLa");
1388 CGM
.addUsedGlobal(InitVar
);
1391 // Return a constant of the appropriately-casted type.
1392 llvm::Type
*RequiredType
=
1393 CGM
.getTypes().ConvertType(blockInfo
.getBlockExpr()->getType());
1394 llvm::Constant
*Result
=
1395 llvm::ConstantExpr::getPointerCast(literal
, RequiredType
);
1396 CGM
.setAddrOfGlobalBlock(blockInfo
.BlockExpression
, Result
);
1397 if (CGM
.getContext().getLangOpts().OpenCL
)
1398 CGM
.getOpenCLRuntime().recordBlockInfo(
1399 blockInfo
.BlockExpression
,
1400 cast
<llvm::Function
>(blockFn
->stripPointerCasts()), Result
,
1401 literal
->getValueType());
1405 void CodeGenFunction::setBlockContextParameter(const ImplicitParamDecl
*D
,
1408 assert(BlockInfo
&& "not emitting prologue of block invocation function?!");
1410 // Allocate a stack slot like for any local variable to guarantee optimal
1411 // debug info at -O0. The mem2reg pass will eliminate it when optimizing.
1412 Address alloc
= CreateMemTemp(D
->getType(), D
->getName() + ".addr");
1413 Builder
.CreateStore(arg
, alloc
);
1414 if (CGDebugInfo
*DI
= getDebugInfo()) {
1415 if (CGM
.getCodeGenOpts().hasReducedDebugInfo()) {
1416 DI
->setLocation(D
->getLocation());
1417 DI
->EmitDeclareOfBlockLiteralArgVariable(
1418 *BlockInfo
, D
->getName(), argNum
,
1419 cast
<llvm::AllocaInst
>(alloc
.getPointer()), Builder
);
1423 SourceLocation StartLoc
= BlockInfo
->getBlockExpr()->getBody()->getBeginLoc();
1424 ApplyDebugLocation
Scope(*this, StartLoc
);
1426 // Instead of messing around with LocalDeclMap, just set the value
1427 // directly as BlockPointer.
1428 BlockPointer
= Builder
.CreatePointerCast(
1430 BlockInfo
->StructureType
->getPointerTo(
1431 getContext().getLangOpts().OpenCL
1432 ? getContext().getTargetAddressSpace(LangAS::opencl_generic
)
1437 Address
CodeGenFunction::LoadBlockStruct() {
1438 assert(BlockInfo
&& "not in a block invocation function!");
1439 assert(BlockPointer
&& "no block pointer set!");
1440 return Address(BlockPointer
, BlockInfo
->StructureType
, BlockInfo
->BlockAlign
);
1443 llvm::Function
*CodeGenFunction::GenerateBlockFunction(
1444 GlobalDecl GD
, const CGBlockInfo
&blockInfo
, const DeclMapTy
&ldm
,
1445 bool IsLambdaConversionToBlock
, bool BuildGlobalBlock
) {
1446 const BlockDecl
*blockDecl
= blockInfo
.getBlockDecl();
1450 CurEHLocation
= blockInfo
.getBlockExpr()->getEndLoc();
1452 BlockInfo
= &blockInfo
;
1454 // Arrange for local static and local extern declarations to appear
1455 // to be local to this function as well, in case they're directly
1456 // referenced in a block.
1457 for (DeclMapTy::const_iterator i
= ldm
.begin(), e
= ldm
.end(); i
!= e
; ++i
) {
1458 const auto *var
= dyn_cast
<VarDecl
>(i
->first
);
1459 if (var
&& !var
->hasLocalStorage())
1460 setAddrOfLocalVar(var
, i
->second
);
1463 // Begin building the function declaration.
1465 // Build the argument list.
1466 FunctionArgList args
;
1468 // The first argument is the block pointer. Just take it as a void*
1469 // and cast it later.
1470 QualType selfTy
= getContext().VoidPtrTy
;
1472 // For OpenCL passed block pointer can be private AS local variable or
1473 // global AS program scope variable (for the case with and without captures).
1474 // Generic AS is used therefore to be able to accommodate both private and
1475 // generic AS in one implementation.
1476 if (getLangOpts().OpenCL
)
1477 selfTy
= getContext().getPointerType(getContext().getAddrSpaceQualType(
1478 getContext().VoidTy
, LangAS::opencl_generic
));
1480 IdentifierInfo
*II
= &CGM
.getContext().Idents
.get(".block_descriptor");
1482 ImplicitParamDecl
SelfDecl(getContext(), const_cast<BlockDecl
*>(blockDecl
),
1483 SourceLocation(), II
, selfTy
,
1484 ImplicitParamDecl::ObjCSelf
);
1485 args
.push_back(&SelfDecl
);
1487 // Now add the rest of the parameters.
1488 args
.append(blockDecl
->param_begin(), blockDecl
->param_end());
1490 // Create the function declaration.
1491 const FunctionProtoType
*fnType
= blockInfo
.getBlockExpr()->getFunctionType();
1492 const CGFunctionInfo
&fnInfo
=
1493 CGM
.getTypes().arrangeBlockFunctionDeclaration(fnType
, args
);
1494 if (CGM
.ReturnSlotInterferesWithArgs(fnInfo
))
1495 blockInfo
.UsesStret
= true;
1497 llvm::FunctionType
*fnLLVMType
= CGM
.getTypes().GetFunctionType(fnInfo
);
1499 StringRef name
= CGM
.getBlockMangledName(GD
, blockDecl
);
1500 llvm::Function
*fn
= llvm::Function::Create(
1501 fnLLVMType
, llvm::GlobalValue::InternalLinkage
, name
, &CGM
.getModule());
1502 CGM
.SetInternalFunctionAttributes(blockDecl
, fn
, fnInfo
);
1504 if (BuildGlobalBlock
) {
1505 auto GenVoidPtrTy
= getContext().getLangOpts().OpenCL
1506 ? CGM
.getOpenCLRuntime().getGenericVoidPointerType()
1508 buildGlobalBlock(CGM
, blockInfo
,
1509 llvm::ConstantExpr::getPointerCast(fn
, GenVoidPtrTy
));
1512 // Begin generating the function.
1513 StartFunction(blockDecl
, fnType
->getReturnType(), fn
, fnInfo
, args
,
1514 blockDecl
->getLocation(),
1515 blockInfo
.getBlockExpr()->getBody()->getBeginLoc());
1517 // Okay. Undo some of what StartFunction did.
1519 // At -O0 we generate an explicit alloca for the BlockPointer, so the RA
1520 // won't delete the dbg.declare intrinsics for captured variables.
1521 llvm::Value
*BlockPointerDbgLoc
= BlockPointer
;
1522 if (CGM
.getCodeGenOpts().OptimizationLevel
== 0) {
1523 // Allocate a stack slot for it, so we can point the debugger to it
1524 Address Alloca
= CreateTempAlloca(BlockPointer
->getType(),
1527 // Set the DebugLocation to empty, so the store is recognized as a
1528 // frame setup instruction by llvm::DwarfDebug::beginFunction().
1529 auto NL
= ApplyDebugLocation::CreateEmpty(*this);
1530 Builder
.CreateStore(BlockPointer
, Alloca
);
1531 BlockPointerDbgLoc
= Alloca
.getPointer();
1534 // If we have a C++ 'this' reference, go ahead and force it into
1536 if (blockDecl
->capturesCXXThis()) {
1537 Address addr
= Builder
.CreateStructGEP(
1538 LoadBlockStruct(), blockInfo
.CXXThisIndex
, "block.captured-this");
1539 CXXThisValue
= Builder
.CreateLoad(addr
, "this");
1542 // Also force all the constant captures.
1543 for (const auto &CI
: blockDecl
->captures()) {
1544 const VarDecl
*variable
= CI
.getVariable();
1545 const CGBlockInfo::Capture
&capture
= blockInfo
.getCapture(variable
);
1546 if (!capture
.isConstant()) continue;
1548 CharUnits align
= getContext().getDeclAlign(variable
);
1550 CreateMemTemp(variable
->getType(), align
, "block.captured-const");
1552 Builder
.CreateStore(capture
.getConstant(), alloca
);
1554 setAddrOfLocalVar(variable
, alloca
);
1557 // Save a spot to insert the debug information for all the DeclRefExprs.
1558 llvm::BasicBlock
*entry
= Builder
.GetInsertBlock();
1559 llvm::BasicBlock::iterator entry_ptr
= Builder
.GetInsertPoint();
1562 if (IsLambdaConversionToBlock
)
1563 EmitLambdaBlockInvokeBody();
1565 PGO
.assignRegionCounters(GlobalDecl(blockDecl
), fn
);
1566 incrementProfileCounter(blockDecl
->getBody());
1567 EmitStmt(blockDecl
->getBody());
1570 // Remember where we were...
1571 llvm::BasicBlock
*resume
= Builder
.GetInsertBlock();
1573 // Go back to the entry.
1575 Builder
.SetInsertPoint(entry
, entry_ptr
);
1577 // Emit debug information for all the DeclRefExprs.
1578 // FIXME: also for 'this'
1579 if (CGDebugInfo
*DI
= getDebugInfo()) {
1580 for (const auto &CI
: blockDecl
->captures()) {
1581 const VarDecl
*variable
= CI
.getVariable();
1582 DI
->EmitLocation(Builder
, variable
->getLocation());
1584 if (CGM
.getCodeGenOpts().hasReducedDebugInfo()) {
1585 const CGBlockInfo::Capture
&capture
= blockInfo
.getCapture(variable
);
1586 if (capture
.isConstant()) {
1587 auto addr
= LocalDeclMap
.find(variable
)->second
;
1588 (void)DI
->EmitDeclareOfAutoVariable(variable
, addr
.getPointer(),
1593 DI
->EmitDeclareOfBlockDeclRefVariable(
1594 variable
, BlockPointerDbgLoc
, Builder
, blockInfo
,
1595 entry_ptr
== entry
->end() ? nullptr : &*entry_ptr
);
1598 // Recover location if it was changed in the above loop.
1599 DI
->EmitLocation(Builder
,
1600 cast
<CompoundStmt
>(blockDecl
->getBody())->getRBracLoc());
1603 // And resume where we left off.
1604 if (resume
== nullptr)
1605 Builder
.ClearInsertionPoint();
1607 Builder
.SetInsertPoint(resume
);
1609 FinishFunction(cast
<CompoundStmt
>(blockDecl
->getBody())->getRBracLoc());
1614 static std::pair
<BlockCaptureEntityKind
, BlockFieldFlags
>
1615 computeCopyInfoForBlockCapture(const BlockDecl::Capture
&CI
, QualType T
,
1616 const LangOptions
&LangOpts
) {
1617 if (CI
.getCopyExpr()) {
1618 assert(!CI
.isByRef());
1619 // don't bother computing flags
1620 return std::make_pair(BlockCaptureEntityKind::CXXRecord
, BlockFieldFlags());
1622 BlockFieldFlags Flags
;
1623 if (CI
.isEscapingByref()) {
1624 Flags
= BLOCK_FIELD_IS_BYREF
;
1625 if (T
.isObjCGCWeak())
1626 Flags
|= BLOCK_FIELD_IS_WEAK
;
1627 return std::make_pair(BlockCaptureEntityKind::BlockObject
, Flags
);
1630 Flags
= BLOCK_FIELD_IS_OBJECT
;
1631 bool isBlockPointer
= T
->isBlockPointerType();
1633 Flags
= BLOCK_FIELD_IS_BLOCK
;
1635 switch (T
.isNonTrivialToPrimitiveCopy()) {
1636 case QualType::PCK_Struct
:
1637 return std::make_pair(BlockCaptureEntityKind::NonTrivialCStruct
,
1639 case QualType::PCK_ARCWeak
:
1640 // We need to register __weak direct captures with the runtime.
1641 return std::make_pair(BlockCaptureEntityKind::ARCWeak
, Flags
);
1642 case QualType::PCK_ARCStrong
:
1643 // We need to retain the copied value for __strong direct captures.
1644 // If it's a block pointer, we have to copy the block and assign that to
1645 // the destination pointer, so we might as well use _Block_object_assign.
1646 // Otherwise we can avoid that.
1647 return std::make_pair(!isBlockPointer
? BlockCaptureEntityKind::ARCStrong
1648 : BlockCaptureEntityKind::BlockObject
,
1650 case QualType::PCK_Trivial
:
1651 case QualType::PCK_VolatileTrivial
: {
1652 if (!T
->isObjCRetainableType())
1653 // For all other types, the memcpy is fine.
1654 return std::make_pair(BlockCaptureEntityKind::None
, BlockFieldFlags());
1656 // Honor the inert __unsafe_unretained qualifier, which doesn't actually
1657 // make it into the type system.
1658 if (T
->isObjCInertUnsafeUnretainedType())
1659 return std::make_pair(BlockCaptureEntityKind::None
, BlockFieldFlags());
1661 // Special rules for ARC captures:
1662 Qualifiers QS
= T
.getQualifiers();
1664 // Non-ARC captures of retainable pointers are strong and
1665 // therefore require a call to _Block_object_assign.
1666 if (!QS
.getObjCLifetime() && !LangOpts
.ObjCAutoRefCount
)
1667 return std::make_pair(BlockCaptureEntityKind::BlockObject
, Flags
);
1669 // Otherwise the memcpy is fine.
1670 return std::make_pair(BlockCaptureEntityKind::None
, BlockFieldFlags());
1673 llvm_unreachable("after exhaustive PrimitiveCopyKind switch");
1677 /// Release a __block variable.
1678 struct CallBlockRelease final
: EHScopeStack::Cleanup
{
1680 BlockFieldFlags FieldFlags
;
1681 bool LoadBlockVarAddr
, CanThrow
;
1683 CallBlockRelease(Address Addr
, BlockFieldFlags Flags
, bool LoadValue
,
1685 : Addr(Addr
), FieldFlags(Flags
), LoadBlockVarAddr(LoadValue
),
1688 void Emit(CodeGenFunction
&CGF
, Flags flags
) override
{
1689 llvm::Value
*BlockVarAddr
;
1690 if (LoadBlockVarAddr
) {
1691 BlockVarAddr
= CGF
.Builder
.CreateLoad(Addr
);
1692 BlockVarAddr
= CGF
.Builder
.CreateBitCast(BlockVarAddr
, CGF
.VoidPtrTy
);
1694 BlockVarAddr
= Addr
.getPointer();
1697 CGF
.BuildBlockRelease(BlockVarAddr
, FieldFlags
, CanThrow
);
1700 } // end anonymous namespace
1702 /// Check if \p T is a C++ class that has a destructor that can throw.
1703 bool CodeGenFunction::cxxDestructorCanThrow(QualType T
) {
1704 if (const auto *RD
= T
->getAsCXXRecordDecl())
1705 if (const CXXDestructorDecl
*DD
= RD
->getDestructor())
1706 return DD
->getType()->castAs
<FunctionProtoType
>()->canThrow();
1710 // Return a string that has the information about a capture.
1711 static std::string
getBlockCaptureStr(const CGBlockInfo::Capture
&Cap
,
1712 CaptureStrKind StrKind
,
1713 CharUnits BlockAlignment
,
1714 CodeGenModule
&CGM
) {
1716 ASTContext
&Ctx
= CGM
.getContext();
1717 const BlockDecl::Capture
&CI
= *Cap
.Cap
;
1718 QualType CaptureTy
= CI
.getVariable()->getType();
1720 BlockCaptureEntityKind Kind
;
1721 BlockFieldFlags Flags
;
1723 // CaptureStrKind::Merged should be passed only when the operations and the
1724 // flags are the same for copy and dispose.
1725 assert((StrKind
!= CaptureStrKind::Merged
||
1726 (Cap
.CopyKind
== Cap
.DisposeKind
&&
1727 Cap
.CopyFlags
== Cap
.DisposeFlags
)) &&
1728 "different operations and flags");
1730 if (StrKind
== CaptureStrKind::DisposeHelper
) {
1731 Kind
= Cap
.DisposeKind
;
1732 Flags
= Cap
.DisposeFlags
;
1734 Kind
= Cap
.CopyKind
;
1735 Flags
= Cap
.CopyFlags
;
1739 case BlockCaptureEntityKind::CXXRecord
: {
1741 SmallString
<256> TyStr
;
1742 llvm::raw_svector_ostream
Out(TyStr
);
1743 CGM
.getCXXABI().getMangleContext().mangleTypeName(CaptureTy
, Out
);
1744 Str
+= llvm::to_string(TyStr
.size()) + TyStr
.c_str();
1747 case BlockCaptureEntityKind::ARCWeak
:
1750 case BlockCaptureEntityKind::ARCStrong
:
1753 case BlockCaptureEntityKind::BlockObject
: {
1754 const VarDecl
*Var
= CI
.getVariable();
1755 unsigned F
= Flags
.getBitMask();
1756 if (F
& BLOCK_FIELD_IS_BYREF
) {
1758 if (F
& BLOCK_FIELD_IS_WEAK
)
1761 // If CaptureStrKind::Merged is passed, check both the copy expression
1762 // and the destructor.
1763 if (StrKind
!= CaptureStrKind::DisposeHelper
) {
1764 if (Ctx
.getBlockVarCopyInit(Var
).canThrow())
1767 if (StrKind
!= CaptureStrKind::CopyHelper
) {
1768 if (CodeGenFunction::cxxDestructorCanThrow(CaptureTy
))
1773 assert((F
& BLOCK_FIELD_IS_OBJECT
) && "unexpected flag value");
1774 if (F
== BLOCK_FIELD_IS_BLOCK
)
1781 case BlockCaptureEntityKind::NonTrivialCStruct
: {
1782 bool IsVolatile
= CaptureTy
.isVolatileQualified();
1783 CharUnits Alignment
= BlockAlignment
.alignmentAtOffset(Cap
.getOffset());
1786 std::string FuncStr
;
1787 if (StrKind
== CaptureStrKind::DisposeHelper
)
1788 FuncStr
= CodeGenFunction::getNonTrivialDestructorStr(
1789 CaptureTy
, Alignment
, IsVolatile
, Ctx
);
1791 // If CaptureStrKind::Merged is passed, use the copy constructor string.
1792 // It has all the information that the destructor string has.
1793 FuncStr
= CodeGenFunction::getNonTrivialCopyConstructorStr(
1794 CaptureTy
, Alignment
, IsVolatile
, Ctx
);
1795 // The underscore is necessary here because non-trivial copy constructor
1796 // and destructor strings can start with a number.
1797 Str
+= llvm::to_string(FuncStr
.size()) + "_" + FuncStr
;
1800 case BlockCaptureEntityKind::None
:
1807 static std::string
getCopyDestroyHelperFuncName(
1808 const SmallVectorImpl
<CGBlockInfo::Capture
> &Captures
,
1809 CharUnits BlockAlignment
, CaptureStrKind StrKind
, CodeGenModule
&CGM
) {
1810 assert((StrKind
== CaptureStrKind::CopyHelper
||
1811 StrKind
== CaptureStrKind::DisposeHelper
) &&
1812 "unexpected CaptureStrKind");
1813 std::string Name
= StrKind
== CaptureStrKind::CopyHelper
1814 ? "__copy_helper_block_"
1815 : "__destroy_helper_block_";
1816 if (CGM
.getLangOpts().Exceptions
)
1818 if (CGM
.getCodeGenOpts().ObjCAutoRefCountExceptions
)
1820 Name
+= llvm::to_string(BlockAlignment
.getQuantity()) + "_";
1822 for (auto &Cap
: Captures
) {
1823 if (Cap
.isConstantOrTrivial())
1825 Name
+= llvm::to_string(Cap
.getOffset().getQuantity());
1826 Name
+= getBlockCaptureStr(Cap
, StrKind
, BlockAlignment
, CGM
);
1832 static void pushCaptureCleanup(BlockCaptureEntityKind CaptureKind
,
1833 Address Field
, QualType CaptureType
,
1834 BlockFieldFlags Flags
, bool ForCopyHelper
,
1835 VarDecl
*Var
, CodeGenFunction
&CGF
) {
1836 bool EHOnly
= ForCopyHelper
;
1838 switch (CaptureKind
) {
1839 case BlockCaptureEntityKind::CXXRecord
:
1840 case BlockCaptureEntityKind::ARCWeak
:
1841 case BlockCaptureEntityKind::NonTrivialCStruct
:
1842 case BlockCaptureEntityKind::ARCStrong
: {
1843 if (CaptureType
.isDestructedType() &&
1844 (!EHOnly
|| CGF
.needsEHCleanup(CaptureType
.isDestructedType()))) {
1845 CodeGenFunction::Destroyer
*Destroyer
=
1846 CaptureKind
== BlockCaptureEntityKind::ARCStrong
1847 ? CodeGenFunction::destroyARCStrongImprecise
1848 : CGF
.getDestroyer(CaptureType
.isDestructedType());
1851 : CGF
.getCleanupKind(CaptureType
.isDestructedType());
1852 CGF
.pushDestroy(Kind
, Field
, CaptureType
, Destroyer
, Kind
& EHCleanup
);
1856 case BlockCaptureEntityKind::BlockObject
: {
1857 if (!EHOnly
|| CGF
.getLangOpts().Exceptions
) {
1858 CleanupKind Kind
= EHOnly
? EHCleanup
: NormalAndEHCleanup
;
1859 // Calls to _Block_object_dispose along the EH path in the copy helper
1860 // function don't throw as newly-copied __block variables always have a
1861 // reference count of 2.
1863 !ForCopyHelper
&& CGF
.cxxDestructorCanThrow(CaptureType
);
1864 CGF
.enterByrefCleanup(Kind
, Field
, Flags
, /*LoadBlockVarAddr*/ true,
1869 case BlockCaptureEntityKind::None
:
1874 static void setBlockHelperAttributesVisibility(bool CapturesNonExternalType
,
1876 const CGFunctionInfo
&FI
,
1877 CodeGenModule
&CGM
) {
1878 if (CapturesNonExternalType
) {
1879 CGM
.SetInternalFunctionAttributes(GlobalDecl(), Fn
, FI
);
1881 Fn
->setVisibility(llvm::GlobalValue::HiddenVisibility
);
1882 Fn
->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global
);
1883 CGM
.SetLLVMFunctionAttributes(GlobalDecl(), FI
, Fn
, /*IsThunk=*/false);
1884 CGM
.SetLLVMFunctionAttributesForDefinition(nullptr, Fn
);
1887 /// Generate the copy-helper function for a block closure object:
1888 /// static void block_copy_helper(block_t *dst, block_t *src);
1889 /// The runtime will have previously initialized 'dst' by doing a
1890 /// bit-copy of 'src'.
1892 /// Note that this copies an entire block closure object to the heap;
1893 /// it should not be confused with a 'byref copy helper', which moves
1894 /// the contents of an individual __block variable to the heap.
1896 CodeGenFunction::GenerateCopyHelperFunction(const CGBlockInfo
&blockInfo
) {
1897 std::string FuncName
= getCopyDestroyHelperFuncName(
1898 blockInfo
.SortedCaptures
, blockInfo
.BlockAlign
,
1899 CaptureStrKind::CopyHelper
, CGM
);
1901 if (llvm::GlobalValue
*Func
= CGM
.getModule().getNamedValue(FuncName
))
1902 return llvm::ConstantExpr::getBitCast(Func
, VoidPtrTy
);
1904 ASTContext
&C
= getContext();
1906 QualType ReturnTy
= C
.VoidTy
;
1908 FunctionArgList args
;
1909 ImplicitParamDecl
DstDecl(C
, C
.VoidPtrTy
, ImplicitParamDecl::Other
);
1910 args
.push_back(&DstDecl
);
1911 ImplicitParamDecl
SrcDecl(C
, C
.VoidPtrTy
, ImplicitParamDecl::Other
);
1912 args
.push_back(&SrcDecl
);
1914 const CGFunctionInfo
&FI
=
1915 CGM
.getTypes().arrangeBuiltinFunctionDeclaration(ReturnTy
, args
);
1917 // FIXME: it would be nice if these were mergeable with things with
1918 // identical semantics.
1919 llvm::FunctionType
*LTy
= CGM
.getTypes().GetFunctionType(FI
);
1921 llvm::Function
*Fn
=
1922 llvm::Function::Create(LTy
, llvm::GlobalValue::LinkOnceODRLinkage
,
1923 FuncName
, &CGM
.getModule());
1924 if (CGM
.supportsCOMDAT())
1925 Fn
->setComdat(CGM
.getModule().getOrInsertComdat(FuncName
));
1927 SmallVector
<QualType
, 2> ArgTys
;
1928 ArgTys
.push_back(C
.VoidPtrTy
);
1929 ArgTys
.push_back(C
.VoidPtrTy
);
1931 setBlockHelperAttributesVisibility(blockInfo
.CapturesNonExternalType
, Fn
, FI
,
1933 StartFunction(GlobalDecl(), ReturnTy
, Fn
, FI
, args
);
1934 auto AL
= ApplyDebugLocation::CreateArtificial(*this);
1936 Address src
= GetAddrOfLocalVar(&SrcDecl
);
1937 src
= Address(Builder
.CreateLoad(src
), Int8Ty
, blockInfo
.BlockAlign
);
1938 src
= Builder
.CreateElementBitCast(src
, blockInfo
.StructureType
,
1941 Address dst
= GetAddrOfLocalVar(&DstDecl
);
1942 dst
= Address(Builder
.CreateLoad(dst
), Int8Ty
, blockInfo
.BlockAlign
);
1944 Builder
.CreateElementBitCast(dst
, blockInfo
.StructureType
, "block.dest");
1946 for (auto &capture
: blockInfo
.SortedCaptures
) {
1947 if (capture
.isConstantOrTrivial())
1950 const BlockDecl::Capture
&CI
= *capture
.Cap
;
1951 QualType captureType
= CI
.getVariable()->getType();
1952 BlockFieldFlags flags
= capture
.CopyFlags
;
1954 unsigned index
= capture
.getIndex();
1955 Address srcField
= Builder
.CreateStructGEP(src
, index
);
1956 Address dstField
= Builder
.CreateStructGEP(dst
, index
);
1958 switch (capture
.CopyKind
) {
1959 case BlockCaptureEntityKind::CXXRecord
:
1960 // If there's an explicit copy expression, we do that.
1961 assert(CI
.getCopyExpr() && "copy expression for variable is missing");
1962 EmitSynthesizedCXXCopyCtor(dstField
, srcField
, CI
.getCopyExpr());
1964 case BlockCaptureEntityKind::ARCWeak
:
1965 EmitARCCopyWeak(dstField
, srcField
);
1967 case BlockCaptureEntityKind::NonTrivialCStruct
: {
1968 // If this is a C struct that requires non-trivial copy construction,
1969 // emit a call to its copy constructor.
1970 QualType varType
= CI
.getVariable()->getType();
1971 callCStructCopyConstructor(MakeAddrLValue(dstField
, varType
),
1972 MakeAddrLValue(srcField
, varType
));
1975 case BlockCaptureEntityKind::ARCStrong
: {
1976 llvm::Value
*srcValue
= Builder
.CreateLoad(srcField
, "blockcopy.src");
1977 // At -O0, store null into the destination field (so that the
1978 // storeStrong doesn't over-release) and then call storeStrong.
1979 // This is a workaround to not having an initStrong call.
1980 if (CGM
.getCodeGenOpts().OptimizationLevel
== 0) {
1981 auto *ty
= cast
<llvm::PointerType
>(srcValue
->getType());
1982 llvm::Value
*null
= llvm::ConstantPointerNull::get(ty
);
1983 Builder
.CreateStore(null
, dstField
);
1984 EmitARCStoreStrongCall(dstField
, srcValue
, true);
1986 // With optimization enabled, take advantage of the fact that
1987 // the blocks runtime guarantees a memcpy of the block data, and
1988 // just emit a retain of the src field.
1990 EmitARCRetainNonBlock(srcValue
);
1992 // Unless EH cleanup is required, we don't need this anymore, so kill
1993 // it. It's not quite worth the annoyance to avoid creating it in the
1995 if (!needsEHCleanup(captureType
.isDestructedType()))
1996 cast
<llvm::Instruction
>(dstField
.getPointer())->eraseFromParent();
2000 case BlockCaptureEntityKind::BlockObject
: {
2001 llvm::Value
*srcValue
= Builder
.CreateLoad(srcField
, "blockcopy.src");
2002 srcValue
= Builder
.CreateBitCast(srcValue
, VoidPtrTy
);
2003 llvm::Value
*dstAddr
=
2004 Builder
.CreateBitCast(dstField
.getPointer(), VoidPtrTy
);
2005 llvm::Value
*args
[] = {
2006 dstAddr
, srcValue
, llvm::ConstantInt::get(Int32Ty
, flags
.getBitMask())
2009 if (CI
.isByRef() && C
.getBlockVarCopyInit(CI
.getVariable()).canThrow())
2010 EmitRuntimeCallOrInvoke(CGM
.getBlockObjectAssign(), args
);
2012 EmitNounwindRuntimeCall(CGM
.getBlockObjectAssign(), args
);
2015 case BlockCaptureEntityKind::None
:
2019 // Ensure that we destroy the copied object if an exception is thrown later
2020 // in the helper function.
2021 pushCaptureCleanup(capture
.CopyKind
, dstField
, captureType
, flags
,
2022 /*ForCopyHelper*/ true, CI
.getVariable(), *this);
2027 return llvm::ConstantExpr::getBitCast(Fn
, VoidPtrTy
);
2030 static BlockFieldFlags
2031 getBlockFieldFlagsForObjCObjectPointer(const BlockDecl::Capture
&CI
,
2033 BlockFieldFlags Flags
= BLOCK_FIELD_IS_OBJECT
;
2034 if (T
->isBlockPointerType())
2035 Flags
= BLOCK_FIELD_IS_BLOCK
;
2039 static std::pair
<BlockCaptureEntityKind
, BlockFieldFlags
>
2040 computeDestroyInfoForBlockCapture(const BlockDecl::Capture
&CI
, QualType T
,
2041 const LangOptions
&LangOpts
) {
2042 if (CI
.isEscapingByref()) {
2043 BlockFieldFlags Flags
= BLOCK_FIELD_IS_BYREF
;
2044 if (T
.isObjCGCWeak())
2045 Flags
|= BLOCK_FIELD_IS_WEAK
;
2046 return std::make_pair(BlockCaptureEntityKind::BlockObject
, Flags
);
2049 switch (T
.isDestructedType()) {
2050 case QualType::DK_cxx_destructor
:
2051 return std::make_pair(BlockCaptureEntityKind::CXXRecord
, BlockFieldFlags());
2052 case QualType::DK_objc_strong_lifetime
:
2053 // Use objc_storeStrong for __strong direct captures; the
2054 // dynamic tools really like it when we do this.
2055 return std::make_pair(BlockCaptureEntityKind::ARCStrong
,
2056 getBlockFieldFlagsForObjCObjectPointer(CI
, T
));
2057 case QualType::DK_objc_weak_lifetime
:
2058 // Support __weak direct captures.
2059 return std::make_pair(BlockCaptureEntityKind::ARCWeak
,
2060 getBlockFieldFlagsForObjCObjectPointer(CI
, T
));
2061 case QualType::DK_nontrivial_c_struct
:
2062 return std::make_pair(BlockCaptureEntityKind::NonTrivialCStruct
,
2064 case QualType::DK_none
: {
2065 // Non-ARC captures are strong, and we need to use _Block_object_dispose.
2066 // But honor the inert __unsafe_unretained qualifier, which doesn't actually
2067 // make it into the type system.
2068 if (T
->isObjCRetainableType() && !T
.getQualifiers().hasObjCLifetime() &&
2069 !LangOpts
.ObjCAutoRefCount
&& !T
->isObjCInertUnsafeUnretainedType())
2070 return std::make_pair(BlockCaptureEntityKind::BlockObject
,
2071 getBlockFieldFlagsForObjCObjectPointer(CI
, T
));
2072 // Otherwise, we have nothing to do.
2073 return std::make_pair(BlockCaptureEntityKind::None
, BlockFieldFlags());
2076 llvm_unreachable("after exhaustive DestructionKind switch");
2079 /// Generate the destroy-helper function for a block closure object:
2080 /// static void block_destroy_helper(block_t *theBlock);
2082 /// Note that this destroys a heap-allocated block closure object;
2083 /// it should not be confused with a 'byref destroy helper', which
2084 /// destroys the heap-allocated contents of an individual __block
2087 CodeGenFunction::GenerateDestroyHelperFunction(const CGBlockInfo
&blockInfo
) {
2088 std::string FuncName
= getCopyDestroyHelperFuncName(
2089 blockInfo
.SortedCaptures
, blockInfo
.BlockAlign
,
2090 CaptureStrKind::DisposeHelper
, CGM
);
2092 if (llvm::GlobalValue
*Func
= CGM
.getModule().getNamedValue(FuncName
))
2093 return llvm::ConstantExpr::getBitCast(Func
, VoidPtrTy
);
2095 ASTContext
&C
= getContext();
2097 QualType ReturnTy
= C
.VoidTy
;
2099 FunctionArgList args
;
2100 ImplicitParamDecl
SrcDecl(C
, C
.VoidPtrTy
, ImplicitParamDecl::Other
);
2101 args
.push_back(&SrcDecl
);
2103 const CGFunctionInfo
&FI
=
2104 CGM
.getTypes().arrangeBuiltinFunctionDeclaration(ReturnTy
, args
);
2106 // FIXME: We'd like to put these into a mergable by content, with
2107 // internal linkage.
2108 llvm::FunctionType
*LTy
= CGM
.getTypes().GetFunctionType(FI
);
2110 llvm::Function
*Fn
=
2111 llvm::Function::Create(LTy
, llvm::GlobalValue::LinkOnceODRLinkage
,
2112 FuncName
, &CGM
.getModule());
2113 if (CGM
.supportsCOMDAT())
2114 Fn
->setComdat(CGM
.getModule().getOrInsertComdat(FuncName
));
2116 SmallVector
<QualType
, 1> ArgTys
;
2117 ArgTys
.push_back(C
.VoidPtrTy
);
2119 setBlockHelperAttributesVisibility(blockInfo
.CapturesNonExternalType
, Fn
, FI
,
2121 StartFunction(GlobalDecl(), ReturnTy
, Fn
, FI
, args
);
2122 markAsIgnoreThreadCheckingAtRuntime(Fn
);
2124 auto AL
= ApplyDebugLocation::CreateArtificial(*this);
2126 Address src
= GetAddrOfLocalVar(&SrcDecl
);
2127 src
= Address(Builder
.CreateLoad(src
), Int8Ty
, blockInfo
.BlockAlign
);
2128 src
= Builder
.CreateElementBitCast(src
, blockInfo
.StructureType
, "block");
2130 CodeGenFunction::RunCleanupsScope
cleanups(*this);
2132 for (auto &capture
: blockInfo
.SortedCaptures
) {
2133 if (capture
.isConstantOrTrivial())
2136 const BlockDecl::Capture
&CI
= *capture
.Cap
;
2137 BlockFieldFlags flags
= capture
.DisposeFlags
;
2139 Address srcField
= Builder
.CreateStructGEP(src
, capture
.getIndex());
2141 pushCaptureCleanup(capture
.DisposeKind
, srcField
,
2142 CI
.getVariable()->getType(), flags
,
2143 /*ForCopyHelper*/ false, CI
.getVariable(), *this);
2146 cleanups
.ForceCleanup();
2150 return llvm::ConstantExpr::getBitCast(Fn
, VoidPtrTy
);
2155 /// Emits the copy/dispose helper functions for a __block object of id type.
2156 class ObjectByrefHelpers final
: public BlockByrefHelpers
{
2157 BlockFieldFlags Flags
;
2160 ObjectByrefHelpers(CharUnits alignment
, BlockFieldFlags flags
)
2161 : BlockByrefHelpers(alignment
), Flags(flags
) {}
2163 void emitCopy(CodeGenFunction
&CGF
, Address destField
,
2164 Address srcField
) override
{
2165 destField
= CGF
.Builder
.CreateElementBitCast(destField
, CGF
.Int8Ty
);
2167 srcField
= CGF
.Builder
.CreateElementBitCast(srcField
, CGF
.Int8PtrTy
);
2168 llvm::Value
*srcValue
= CGF
.Builder
.CreateLoad(srcField
);
2170 unsigned flags
= (Flags
| BLOCK_BYREF_CALLER
).getBitMask();
2172 llvm::Value
*flagsVal
= llvm::ConstantInt::get(CGF
.Int32Ty
, flags
);
2173 llvm::FunctionCallee fn
= CGF
.CGM
.getBlockObjectAssign();
2175 llvm::Value
*args
[] = { destField
.getPointer(), srcValue
, flagsVal
};
2176 CGF
.EmitNounwindRuntimeCall(fn
, args
);
2179 void emitDispose(CodeGenFunction
&CGF
, Address field
) override
{
2180 field
= CGF
.Builder
.CreateElementBitCast(field
, CGF
.Int8PtrTy
);
2181 llvm::Value
*value
= CGF
.Builder
.CreateLoad(field
);
2183 CGF
.BuildBlockRelease(value
, Flags
| BLOCK_BYREF_CALLER
, false);
2186 void profileImpl(llvm::FoldingSetNodeID
&id
) const override
{
2187 id
.AddInteger(Flags
.getBitMask());
2191 /// Emits the copy/dispose helpers for an ARC __block __weak variable.
2192 class ARCWeakByrefHelpers final
: public BlockByrefHelpers
{
2194 ARCWeakByrefHelpers(CharUnits alignment
) : BlockByrefHelpers(alignment
) {}
2196 void emitCopy(CodeGenFunction
&CGF
, Address destField
,
2197 Address srcField
) override
{
2198 CGF
.EmitARCMoveWeak(destField
, srcField
);
2201 void emitDispose(CodeGenFunction
&CGF
, Address field
) override
{
2202 CGF
.EmitARCDestroyWeak(field
);
2205 void profileImpl(llvm::FoldingSetNodeID
&id
) const override
{
2206 // 0 is distinguishable from all pointers and byref flags
2211 /// Emits the copy/dispose helpers for an ARC __block __strong variable
2212 /// that's not of block-pointer type.
2213 class ARCStrongByrefHelpers final
: public BlockByrefHelpers
{
2215 ARCStrongByrefHelpers(CharUnits alignment
) : BlockByrefHelpers(alignment
) {}
2217 void emitCopy(CodeGenFunction
&CGF
, Address destField
,
2218 Address srcField
) override
{
2219 // Do a "move" by copying the value and then zeroing out the old
2222 llvm::Value
*value
= CGF
.Builder
.CreateLoad(srcField
);
2225 llvm::ConstantPointerNull::get(cast
<llvm::PointerType
>(value
->getType()));
2227 if (CGF
.CGM
.getCodeGenOpts().OptimizationLevel
== 0) {
2228 CGF
.Builder
.CreateStore(null
, destField
);
2229 CGF
.EmitARCStoreStrongCall(destField
, value
, /*ignored*/ true);
2230 CGF
.EmitARCStoreStrongCall(srcField
, null
, /*ignored*/ true);
2233 CGF
.Builder
.CreateStore(value
, destField
);
2234 CGF
.Builder
.CreateStore(null
, srcField
);
2237 void emitDispose(CodeGenFunction
&CGF
, Address field
) override
{
2238 CGF
.EmitARCDestroyStrong(field
, ARCImpreciseLifetime
);
2241 void profileImpl(llvm::FoldingSetNodeID
&id
) const override
{
2242 // 1 is distinguishable from all pointers and byref flags
2247 /// Emits the copy/dispose helpers for an ARC __block __strong
2248 /// variable that's of block-pointer type.
2249 class ARCStrongBlockByrefHelpers final
: public BlockByrefHelpers
{
2251 ARCStrongBlockByrefHelpers(CharUnits alignment
)
2252 : BlockByrefHelpers(alignment
) {}
2254 void emitCopy(CodeGenFunction
&CGF
, Address destField
,
2255 Address srcField
) override
{
2256 // Do the copy with objc_retainBlock; that's all that
2257 // _Block_object_assign would do anyway, and we'd have to pass the
2258 // right arguments to make sure it doesn't get no-op'ed.
2259 llvm::Value
*oldValue
= CGF
.Builder
.CreateLoad(srcField
);
2260 llvm::Value
*copy
= CGF
.EmitARCRetainBlock(oldValue
, /*mandatory*/ true);
2261 CGF
.Builder
.CreateStore(copy
, destField
);
2264 void emitDispose(CodeGenFunction
&CGF
, Address field
) override
{
2265 CGF
.EmitARCDestroyStrong(field
, ARCImpreciseLifetime
);
2268 void profileImpl(llvm::FoldingSetNodeID
&id
) const override
{
2269 // 2 is distinguishable from all pointers and byref flags
2274 /// Emits the copy/dispose helpers for a __block variable with a
2275 /// nontrivial copy constructor or destructor.
2276 class CXXByrefHelpers final
: public BlockByrefHelpers
{
2278 const Expr
*CopyExpr
;
2281 CXXByrefHelpers(CharUnits alignment
, QualType type
,
2282 const Expr
*copyExpr
)
2283 : BlockByrefHelpers(alignment
), VarType(type
), CopyExpr(copyExpr
) {}
2285 bool needsCopy() const override
{ return CopyExpr
!= nullptr; }
2286 void emitCopy(CodeGenFunction
&CGF
, Address destField
,
2287 Address srcField
) override
{
2288 if (!CopyExpr
) return;
2289 CGF
.EmitSynthesizedCXXCopyCtor(destField
, srcField
, CopyExpr
);
2292 void emitDispose(CodeGenFunction
&CGF
, Address field
) override
{
2293 EHScopeStack::stable_iterator cleanupDepth
= CGF
.EHStack
.stable_begin();
2294 CGF
.PushDestructorCleanup(VarType
, field
);
2295 CGF
.PopCleanupBlocks(cleanupDepth
);
2298 void profileImpl(llvm::FoldingSetNodeID
&id
) const override
{
2299 id
.AddPointer(VarType
.getCanonicalType().getAsOpaquePtr());
2303 /// Emits the copy/dispose helpers for a __block variable that is a non-trivial
2305 class NonTrivialCStructByrefHelpers final
: public BlockByrefHelpers
{
2309 NonTrivialCStructByrefHelpers(CharUnits alignment
, QualType type
)
2310 : BlockByrefHelpers(alignment
), VarType(type
) {}
2312 void emitCopy(CodeGenFunction
&CGF
, Address destField
,
2313 Address srcField
) override
{
2314 CGF
.callCStructMoveConstructor(CGF
.MakeAddrLValue(destField
, VarType
),
2315 CGF
.MakeAddrLValue(srcField
, VarType
));
2318 bool needsDispose() const override
{
2319 return VarType
.isDestructedType();
2322 void emitDispose(CodeGenFunction
&CGF
, Address field
) override
{
2323 EHScopeStack::stable_iterator cleanupDepth
= CGF
.EHStack
.stable_begin();
2324 CGF
.pushDestroy(VarType
.isDestructedType(), field
, VarType
);
2325 CGF
.PopCleanupBlocks(cleanupDepth
);
2328 void profileImpl(llvm::FoldingSetNodeID
&id
) const override
{
2329 id
.AddPointer(VarType
.getCanonicalType().getAsOpaquePtr());
2332 } // end anonymous namespace
2334 static llvm::Constant
*
2335 generateByrefCopyHelper(CodeGenFunction
&CGF
, const BlockByrefInfo
&byrefInfo
,
2336 BlockByrefHelpers
&generator
) {
2337 ASTContext
&Context
= CGF
.getContext();
2339 QualType ReturnTy
= Context
.VoidTy
;
2341 FunctionArgList args
;
2342 ImplicitParamDecl
Dst(Context
, Context
.VoidPtrTy
, ImplicitParamDecl::Other
);
2343 args
.push_back(&Dst
);
2345 ImplicitParamDecl
Src(Context
, Context
.VoidPtrTy
, ImplicitParamDecl::Other
);
2346 args
.push_back(&Src
);
2348 const CGFunctionInfo
&FI
=
2349 CGF
.CGM
.getTypes().arrangeBuiltinFunctionDeclaration(ReturnTy
, args
);
2351 llvm::FunctionType
*LTy
= CGF
.CGM
.getTypes().GetFunctionType(FI
);
2353 // FIXME: We'd like to put these into a mergable by content, with
2354 // internal linkage.
2355 llvm::Function
*Fn
=
2356 llvm::Function::Create(LTy
, llvm::GlobalValue::InternalLinkage
,
2357 "__Block_byref_object_copy_", &CGF
.CGM
.getModule());
2359 SmallVector
<QualType
, 2> ArgTys
;
2360 ArgTys
.push_back(Context
.VoidPtrTy
);
2361 ArgTys
.push_back(Context
.VoidPtrTy
);
2363 CGF
.CGM
.SetInternalFunctionAttributes(GlobalDecl(), Fn
, FI
);
2365 CGF
.StartFunction(GlobalDecl(), ReturnTy
, Fn
, FI
, args
);
2366 // Create a scope with an artificial location for the body of this function.
2367 auto AL
= ApplyDebugLocation::CreateArtificial(CGF
);
2369 if (generator
.needsCopy()) {
2371 Address destField
= CGF
.GetAddrOfLocalVar(&Dst
);
2372 destField
= Address(CGF
.Builder
.CreateLoad(destField
), CGF
.Int8Ty
,
2373 byrefInfo
.ByrefAlignment
);
2374 destField
= CGF
.Builder
.CreateElementBitCast(destField
, byrefInfo
.Type
);
2376 CGF
.emitBlockByrefAddress(destField
, byrefInfo
, false, "dest-object");
2379 Address srcField
= CGF
.GetAddrOfLocalVar(&Src
);
2380 srcField
= Address(CGF
.Builder
.CreateLoad(srcField
), CGF
.Int8Ty
,
2381 byrefInfo
.ByrefAlignment
);
2382 srcField
= CGF
.Builder
.CreateElementBitCast(srcField
, byrefInfo
.Type
);
2384 CGF
.emitBlockByrefAddress(srcField
, byrefInfo
, false, "src-object");
2386 generator
.emitCopy(CGF
, destField
, srcField
);
2389 CGF
.FinishFunction();
2391 return llvm::ConstantExpr::getBitCast(Fn
, CGF
.Int8PtrTy
);
2394 /// Build the copy helper for a __block variable.
2395 static llvm::Constant
*buildByrefCopyHelper(CodeGenModule
&CGM
,
2396 const BlockByrefInfo
&byrefInfo
,
2397 BlockByrefHelpers
&generator
) {
2398 CodeGenFunction
CGF(CGM
);
2399 return generateByrefCopyHelper(CGF
, byrefInfo
, generator
);
2402 /// Generate code for a __block variable's dispose helper.
2403 static llvm::Constant
*
2404 generateByrefDisposeHelper(CodeGenFunction
&CGF
,
2405 const BlockByrefInfo
&byrefInfo
,
2406 BlockByrefHelpers
&generator
) {
2407 ASTContext
&Context
= CGF
.getContext();
2408 QualType R
= Context
.VoidTy
;
2410 FunctionArgList args
;
2411 ImplicitParamDecl
Src(CGF
.getContext(), Context
.VoidPtrTy
,
2412 ImplicitParamDecl::Other
);
2413 args
.push_back(&Src
);
2415 const CGFunctionInfo
&FI
=
2416 CGF
.CGM
.getTypes().arrangeBuiltinFunctionDeclaration(R
, args
);
2418 llvm::FunctionType
*LTy
= CGF
.CGM
.getTypes().GetFunctionType(FI
);
2420 // FIXME: We'd like to put these into a mergable by content, with
2421 // internal linkage.
2422 llvm::Function
*Fn
=
2423 llvm::Function::Create(LTy
, llvm::GlobalValue::InternalLinkage
,
2424 "__Block_byref_object_dispose_",
2425 &CGF
.CGM
.getModule());
2427 SmallVector
<QualType
, 1> ArgTys
;
2428 ArgTys
.push_back(Context
.VoidPtrTy
);
2430 CGF
.CGM
.SetInternalFunctionAttributes(GlobalDecl(), Fn
, FI
);
2432 CGF
.StartFunction(GlobalDecl(), R
, Fn
, FI
, args
);
2433 // Create a scope with an artificial location for the body of this function.
2434 auto AL
= ApplyDebugLocation::CreateArtificial(CGF
);
2436 if (generator
.needsDispose()) {
2437 Address addr
= CGF
.GetAddrOfLocalVar(&Src
);
2438 addr
= Address(CGF
.Builder
.CreateLoad(addr
), CGF
.Int8Ty
,
2439 byrefInfo
.ByrefAlignment
);
2440 addr
= CGF
.Builder
.CreateElementBitCast(addr
, byrefInfo
.Type
);
2441 addr
= CGF
.emitBlockByrefAddress(addr
, byrefInfo
, false, "object");
2443 generator
.emitDispose(CGF
, addr
);
2446 CGF
.FinishFunction();
2448 return llvm::ConstantExpr::getBitCast(Fn
, CGF
.Int8PtrTy
);
2451 /// Build the dispose helper for a __block variable.
2452 static llvm::Constant
*buildByrefDisposeHelper(CodeGenModule
&CGM
,
2453 const BlockByrefInfo
&byrefInfo
,
2454 BlockByrefHelpers
&generator
) {
2455 CodeGenFunction
CGF(CGM
);
2456 return generateByrefDisposeHelper(CGF
, byrefInfo
, generator
);
2459 /// Lazily build the copy and dispose helpers for a __block variable
2460 /// with the given information.
2462 static T
*buildByrefHelpers(CodeGenModule
&CGM
, const BlockByrefInfo
&byrefInfo
,
2464 llvm::FoldingSetNodeID id
;
2465 generator
.Profile(id
);
2468 BlockByrefHelpers
*node
2469 = CGM
.ByrefHelpersCache
.FindNodeOrInsertPos(id
, insertPos
);
2470 if (node
) return static_cast<T
*>(node
);
2472 generator
.CopyHelper
= buildByrefCopyHelper(CGM
, byrefInfo
, generator
);
2473 generator
.DisposeHelper
= buildByrefDisposeHelper(CGM
, byrefInfo
, generator
);
2475 T
*copy
= new (CGM
.getContext()) T(std::forward
<T
>(generator
));
2476 CGM
.ByrefHelpersCache
.InsertNode(copy
, insertPos
);
2480 /// Build the copy and dispose helpers for the given __block variable
2481 /// emission. Places the helpers in the global cache. Returns null
2482 /// if no helpers are required.
2484 CodeGenFunction::buildByrefHelpers(llvm::StructType
&byrefType
,
2485 const AutoVarEmission
&emission
) {
2486 const VarDecl
&var
= *emission
.Variable
;
2487 assert(var
.isEscapingByref() &&
2488 "only escaping __block variables need byref helpers");
2490 QualType type
= var
.getType();
2492 auto &byrefInfo
= getBlockByrefInfo(&var
);
2494 // The alignment we care about for the purposes of uniquing byref
2495 // helpers is the alignment of the actual byref value field.
2496 CharUnits valueAlignment
=
2497 byrefInfo
.ByrefAlignment
.alignmentAtOffset(byrefInfo
.FieldOffset
);
2499 if (const CXXRecordDecl
*record
= type
->getAsCXXRecordDecl()) {
2500 const Expr
*copyExpr
=
2501 CGM
.getContext().getBlockVarCopyInit(&var
).getCopyExpr();
2502 if (!copyExpr
&& record
->hasTrivialDestructor()) return nullptr;
2504 return ::buildByrefHelpers(
2505 CGM
, byrefInfo
, CXXByrefHelpers(valueAlignment
, type
, copyExpr
));
2508 // If type is a non-trivial C struct type that is non-trivial to
2509 // destructly move or destroy, build the copy and dispose helpers.
2510 if (type
.isNonTrivialToPrimitiveDestructiveMove() == QualType::PCK_Struct
||
2511 type
.isDestructedType() == QualType::DK_nontrivial_c_struct
)
2512 return ::buildByrefHelpers(
2513 CGM
, byrefInfo
, NonTrivialCStructByrefHelpers(valueAlignment
, type
));
2515 // Otherwise, if we don't have a retainable type, there's nothing to do.
2516 // that the runtime does extra copies.
2517 if (!type
->isObjCRetainableType()) return nullptr;
2519 Qualifiers qs
= type
.getQualifiers();
2521 // If we have lifetime, that dominates.
2522 if (Qualifiers::ObjCLifetime lifetime
= qs
.getObjCLifetime()) {
2524 case Qualifiers::OCL_None
: llvm_unreachable("impossible");
2526 // These are just bits as far as the runtime is concerned.
2527 case Qualifiers::OCL_ExplicitNone
:
2528 case Qualifiers::OCL_Autoreleasing
:
2531 // Tell the runtime that this is ARC __weak, called by the
2533 case Qualifiers::OCL_Weak
:
2534 return ::buildByrefHelpers(CGM
, byrefInfo
,
2535 ARCWeakByrefHelpers(valueAlignment
));
2537 // ARC __strong __block variables need to be retained.
2538 case Qualifiers::OCL_Strong
:
2539 // Block pointers need to be copied, and there's no direct
2540 // transfer possible.
2541 if (type
->isBlockPointerType()) {
2542 return ::buildByrefHelpers(CGM
, byrefInfo
,
2543 ARCStrongBlockByrefHelpers(valueAlignment
));
2545 // Otherwise, we transfer ownership of the retain from the stack
2548 return ::buildByrefHelpers(CGM
, byrefInfo
,
2549 ARCStrongByrefHelpers(valueAlignment
));
2552 llvm_unreachable("fell out of lifetime switch!");
2555 BlockFieldFlags flags
;
2556 if (type
->isBlockPointerType()) {
2557 flags
|= BLOCK_FIELD_IS_BLOCK
;
2558 } else if (CGM
.getContext().isObjCNSObjectType(type
) ||
2559 type
->isObjCObjectPointerType()) {
2560 flags
|= BLOCK_FIELD_IS_OBJECT
;
2565 if (type
.isObjCGCWeak())
2566 flags
|= BLOCK_FIELD_IS_WEAK
;
2568 return ::buildByrefHelpers(CGM
, byrefInfo
,
2569 ObjectByrefHelpers(valueAlignment
, flags
));
2572 Address
CodeGenFunction::emitBlockByrefAddress(Address baseAddr
,
2574 bool followForward
) {
2575 auto &info
= getBlockByrefInfo(var
);
2576 return emitBlockByrefAddress(baseAddr
, info
, followForward
, var
->getName());
2579 Address
CodeGenFunction::emitBlockByrefAddress(Address baseAddr
,
2580 const BlockByrefInfo
&info
,
2582 const llvm::Twine
&name
) {
2583 // Chase the forwarding address if requested.
2584 if (followForward
) {
2585 Address forwardingAddr
= Builder
.CreateStructGEP(baseAddr
, 1, "forwarding");
2586 baseAddr
= Address(Builder
.CreateLoad(forwardingAddr
), info
.Type
,
2587 info
.ByrefAlignment
);
2590 return Builder
.CreateStructGEP(baseAddr
, info
.FieldIndex
, name
);
2593 /// BuildByrefInfo - This routine changes a __block variable declared as T x
2598 /// void *__forwarding;
2599 /// int32_t __flags;
2601 /// void *__copy_helper; // only if needed
2602 /// void *__destroy_helper; // only if needed
2603 /// void *__byref_variable_layout;// only if needed
2604 /// char padding[X]; // only if needed
2608 const BlockByrefInfo
&CodeGenFunction::getBlockByrefInfo(const VarDecl
*D
) {
2609 auto it
= BlockByrefInfos
.find(D
);
2610 if (it
!= BlockByrefInfos
.end())
2613 llvm::StructType
*byrefType
=
2614 llvm::StructType::create(getLLVMContext(),
2615 "struct.__block_byref_" + D
->getNameAsString());
2617 QualType Ty
= D
->getType();
2620 SmallVector
<llvm::Type
*, 8> types
;
2623 types
.push_back(Int8PtrTy
);
2624 size
+= getPointerSize();
2626 // void *__forwarding;
2627 types
.push_back(llvm::PointerType::getUnqual(byrefType
));
2628 size
+= getPointerSize();
2631 types
.push_back(Int32Ty
);
2632 size
+= CharUnits::fromQuantity(4);
2635 types
.push_back(Int32Ty
);
2636 size
+= CharUnits::fromQuantity(4);
2638 // Note that this must match *exactly* the logic in buildByrefHelpers.
2639 bool hasCopyAndDispose
= getContext().BlockRequiresCopying(Ty
, D
);
2640 if (hasCopyAndDispose
) {
2641 /// void *__copy_helper;
2642 types
.push_back(Int8PtrTy
);
2643 size
+= getPointerSize();
2645 /// void *__destroy_helper;
2646 types
.push_back(Int8PtrTy
);
2647 size
+= getPointerSize();
2650 bool HasByrefExtendedLayout
= false;
2651 Qualifiers::ObjCLifetime Lifetime
= Qualifiers::OCL_None
;
2652 if (getContext().getByrefLifetime(Ty
, Lifetime
, HasByrefExtendedLayout
) &&
2653 HasByrefExtendedLayout
) {
2654 /// void *__byref_variable_layout;
2655 types
.push_back(Int8PtrTy
);
2656 size
+= CharUnits::fromQuantity(PointerSizeInBytes
);
2660 llvm::Type
*varTy
= ConvertTypeForMem(Ty
);
2662 bool packed
= false;
2663 CharUnits varAlign
= getContext().getDeclAlign(D
);
2664 CharUnits varOffset
= size
.alignTo(varAlign
);
2666 // We may have to insert padding.
2667 if (varOffset
!= size
) {
2668 llvm::Type
*paddingTy
=
2669 llvm::ArrayType::get(Int8Ty
, (varOffset
- size
).getQuantity());
2671 types
.push_back(paddingTy
);
2674 // Conversely, we might have to prevent LLVM from inserting padding.
2675 } else if (CGM
.getDataLayout().getABITypeAlign(varTy
) >
2676 uint64_t(varAlign
.getQuantity())) {
2679 types
.push_back(varTy
);
2681 byrefType
->setBody(types
, packed
);
2683 BlockByrefInfo info
;
2684 info
.Type
= byrefType
;
2685 info
.FieldIndex
= types
.size() - 1;
2686 info
.FieldOffset
= varOffset
;
2687 info
.ByrefAlignment
= std::max(varAlign
, getPointerAlign());
2689 auto pair
= BlockByrefInfos
.insert({D
, info
});
2690 assert(pair
.second
&& "info was inserted recursively?");
2691 return pair
.first
->second
;
2694 /// Initialize the structural components of a __block variable, i.e.
2695 /// everything but the actual object.
2696 void CodeGenFunction::emitByrefStructureInit(const AutoVarEmission
&emission
) {
2697 // Find the address of the local.
2698 Address addr
= emission
.Addr
;
2700 // That's an alloca of the byref structure type.
2701 llvm::StructType
*byrefType
= cast
<llvm::StructType
>(addr
.getElementType());
2703 unsigned nextHeaderIndex
= 0;
2704 CharUnits nextHeaderOffset
;
2705 auto storeHeaderField
= [&](llvm::Value
*value
, CharUnits fieldSize
,
2706 const Twine
&name
) {
2707 auto fieldAddr
= Builder
.CreateStructGEP(addr
, nextHeaderIndex
, name
);
2708 Builder
.CreateStore(value
, fieldAddr
);
2711 nextHeaderOffset
+= fieldSize
;
2714 // Build the byref helpers if necessary. This is null if we don't need any.
2715 BlockByrefHelpers
*helpers
= buildByrefHelpers(*byrefType
, emission
);
2717 const VarDecl
&D
= *emission
.Variable
;
2718 QualType type
= D
.getType();
2720 bool HasByrefExtendedLayout
= false;
2721 Qualifiers::ObjCLifetime ByrefLifetime
= Qualifiers::OCL_None
;
2722 bool ByRefHasLifetime
=
2723 getContext().getByrefLifetime(type
, ByrefLifetime
, HasByrefExtendedLayout
);
2727 // Initialize the 'isa', which is just 0 or 1.
2729 if (type
.isObjCGCWeak())
2731 V
= Builder
.CreateIntToPtr(Builder
.getInt32(isa
), Int8PtrTy
, "isa");
2732 storeHeaderField(V
, getPointerSize(), "byref.isa");
2734 // Store the address of the variable into its own forwarding pointer.
2735 storeHeaderField(addr
.getPointer(), getPointerSize(), "byref.forwarding");
2738 // c) the flags field is set to either 0 if no helper functions are
2739 // needed or BLOCK_BYREF_HAS_COPY_DISPOSE if they are,
2741 if (helpers
) flags
|= BLOCK_BYREF_HAS_COPY_DISPOSE
;
2742 if (ByRefHasLifetime
) {
2743 if (HasByrefExtendedLayout
) flags
|= BLOCK_BYREF_LAYOUT_EXTENDED
;
2744 else switch (ByrefLifetime
) {
2745 case Qualifiers::OCL_Strong
:
2746 flags
|= BLOCK_BYREF_LAYOUT_STRONG
;
2748 case Qualifiers::OCL_Weak
:
2749 flags
|= BLOCK_BYREF_LAYOUT_WEAK
;
2751 case Qualifiers::OCL_ExplicitNone
:
2752 flags
|= BLOCK_BYREF_LAYOUT_UNRETAINED
;
2754 case Qualifiers::OCL_None
:
2755 if (!type
->isObjCObjectPointerType() && !type
->isBlockPointerType())
2756 flags
|= BLOCK_BYREF_LAYOUT_NON_OBJECT
;
2761 if (CGM
.getLangOpts().ObjCGCBitmapPrint
) {
2762 printf("\n Inline flag for BYREF variable layout (%d):", flags
.getBitMask());
2763 if (flags
& BLOCK_BYREF_HAS_COPY_DISPOSE
)
2764 printf(" BLOCK_BYREF_HAS_COPY_DISPOSE");
2765 if (flags
& BLOCK_BYREF_LAYOUT_MASK
) {
2766 BlockFlags
ThisFlag(flags
.getBitMask() & BLOCK_BYREF_LAYOUT_MASK
);
2767 if (ThisFlag
== BLOCK_BYREF_LAYOUT_EXTENDED
)
2768 printf(" BLOCK_BYREF_LAYOUT_EXTENDED");
2769 if (ThisFlag
== BLOCK_BYREF_LAYOUT_STRONG
)
2770 printf(" BLOCK_BYREF_LAYOUT_STRONG");
2771 if (ThisFlag
== BLOCK_BYREF_LAYOUT_WEAK
)
2772 printf(" BLOCK_BYREF_LAYOUT_WEAK");
2773 if (ThisFlag
== BLOCK_BYREF_LAYOUT_UNRETAINED
)
2774 printf(" BLOCK_BYREF_LAYOUT_UNRETAINED");
2775 if (ThisFlag
== BLOCK_BYREF_LAYOUT_NON_OBJECT
)
2776 printf(" BLOCK_BYREF_LAYOUT_NON_OBJECT");
2781 storeHeaderField(llvm::ConstantInt::get(IntTy
, flags
.getBitMask()),
2782 getIntSize(), "byref.flags");
2784 CharUnits byrefSize
= CGM
.GetTargetTypeStoreSize(byrefType
);
2785 V
= llvm::ConstantInt::get(IntTy
, byrefSize
.getQuantity());
2786 storeHeaderField(V
, getIntSize(), "byref.size");
2789 storeHeaderField(helpers
->CopyHelper
, getPointerSize(),
2790 "byref.copyHelper");
2791 storeHeaderField(helpers
->DisposeHelper
, getPointerSize(),
2792 "byref.disposeHelper");
2795 if (ByRefHasLifetime
&& HasByrefExtendedLayout
) {
2796 auto layoutInfo
= CGM
.getObjCRuntime().BuildByrefLayout(CGM
, type
);
2797 storeHeaderField(layoutInfo
, getPointerSize(), "byref.layout");
2801 void CodeGenFunction::BuildBlockRelease(llvm::Value
*V
, BlockFieldFlags flags
,
2803 llvm::FunctionCallee F
= CGM
.getBlockObjectDispose();
2804 llvm::Value
*args
[] = {
2805 Builder
.CreateBitCast(V
, Int8PtrTy
),
2806 llvm::ConstantInt::get(Int32Ty
, flags
.getBitMask())
2810 EmitRuntimeCallOrInvoke(F
, args
);
2812 EmitNounwindRuntimeCall(F
, args
);
2815 void CodeGenFunction::enterByrefCleanup(CleanupKind Kind
, Address Addr
,
2816 BlockFieldFlags Flags
,
2817 bool LoadBlockVarAddr
, bool CanThrow
) {
2818 EHStack
.pushCleanup
<CallBlockRelease
>(Kind
, Addr
, Flags
, LoadBlockVarAddr
,
2822 /// Adjust the declaration of something from the blocks API.
2823 static void configureBlocksRuntimeObject(CodeGenModule
&CGM
,
2824 llvm::Constant
*C
) {
2825 auto *GV
= cast
<llvm::GlobalValue
>(C
->stripPointerCasts());
2827 if (CGM
.getTarget().getTriple().isOSBinFormatCOFF()) {
2828 IdentifierInfo
&II
= CGM
.getContext().Idents
.get(C
->getName());
2829 TranslationUnitDecl
*TUDecl
= CGM
.getContext().getTranslationUnitDecl();
2830 DeclContext
*DC
= TranslationUnitDecl::castToDeclContext(TUDecl
);
2832 assert((isa
<llvm::Function
>(C
->stripPointerCasts()) ||
2833 isa
<llvm::GlobalVariable
>(C
->stripPointerCasts())) &&
2834 "expected Function or GlobalVariable");
2836 const NamedDecl
*ND
= nullptr;
2837 for (const auto *Result
: DC
->lookup(&II
))
2838 if ((ND
= dyn_cast
<FunctionDecl
>(Result
)) ||
2839 (ND
= dyn_cast
<VarDecl
>(Result
)))
2842 // TODO: support static blocks runtime
2843 if (GV
->isDeclaration() && (!ND
|| !ND
->hasAttr
<DLLExportAttr
>())) {
2844 GV
->setDLLStorageClass(llvm::GlobalValue::DLLImportStorageClass
);
2845 GV
->setLinkage(llvm::GlobalValue::ExternalLinkage
);
2847 GV
->setDLLStorageClass(llvm::GlobalValue::DLLExportStorageClass
);
2848 GV
->setLinkage(llvm::GlobalValue::ExternalLinkage
);
2852 if (CGM
.getLangOpts().BlocksRuntimeOptional
&& GV
->isDeclaration() &&
2853 GV
->hasExternalLinkage())
2854 GV
->setLinkage(llvm::GlobalValue::ExternalWeakLinkage
);
2856 CGM
.setDSOLocal(GV
);
2859 llvm::FunctionCallee
CodeGenModule::getBlockObjectDispose() {
2860 if (BlockObjectDispose
)
2861 return BlockObjectDispose
;
2863 llvm::Type
*args
[] = { Int8PtrTy
, Int32Ty
};
2864 llvm::FunctionType
*fty
2865 = llvm::FunctionType::get(VoidTy
, args
, false);
2866 BlockObjectDispose
= CreateRuntimeFunction(fty
, "_Block_object_dispose");
2867 configureBlocksRuntimeObject(
2868 *this, cast
<llvm::Constant
>(BlockObjectDispose
.getCallee()));
2869 return BlockObjectDispose
;
2872 llvm::FunctionCallee
CodeGenModule::getBlockObjectAssign() {
2873 if (BlockObjectAssign
)
2874 return BlockObjectAssign
;
2876 llvm::Type
*args
[] = { Int8PtrTy
, Int8PtrTy
, Int32Ty
};
2877 llvm::FunctionType
*fty
2878 = llvm::FunctionType::get(VoidTy
, args
, false);
2879 BlockObjectAssign
= CreateRuntimeFunction(fty
, "_Block_object_assign");
2880 configureBlocksRuntimeObject(
2881 *this, cast
<llvm::Constant
>(BlockObjectAssign
.getCallee()));
2882 return BlockObjectAssign
;
2885 llvm::Constant
*CodeGenModule::getNSConcreteGlobalBlock() {
2886 if (NSConcreteGlobalBlock
)
2887 return NSConcreteGlobalBlock
;
2889 NSConcreteGlobalBlock
= GetOrCreateLLVMGlobal(
2890 "_NSConcreteGlobalBlock", Int8PtrTy
, LangAS::Default
, nullptr);
2891 configureBlocksRuntimeObject(*this, NSConcreteGlobalBlock
);
2892 return NSConcreteGlobalBlock
;
2895 llvm::Constant
*CodeGenModule::getNSConcreteStackBlock() {
2896 if (NSConcreteStackBlock
)
2897 return NSConcreteStackBlock
;
2899 NSConcreteStackBlock
= GetOrCreateLLVMGlobal(
2900 "_NSConcreteStackBlock", Int8PtrTy
, LangAS::Default
, nullptr);
2901 configureBlocksRuntimeObject(*this, NSConcreteStackBlock
);
2902 return NSConcreteStackBlock
;