xref: /freebsd/contrib/llvm-project/clang/lib/CodeGen/CGBlocks.cpp (revision 9729f076e4d93c5a37e78d427bfe0f1ab99bbcc6)
1 //===--- CGBlocks.cpp - Emit LLVM Code for declarations ---------*- C++ -*-===//
2 //
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
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This contains code to emit blocks.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "CGBlocks.h"
14 #include "CGCXXABI.h"
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"
29 #include <algorithm>
30 #include <cstdio>
31 
32 using namespace clang;
33 using namespace CodeGen;
34 
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) {
40 
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);
45 }
46 
47 // Anchor the vtable to this translation unit.
48 BlockByrefHelpers::~BlockByrefHelpers() {}
49 
50 /// Build the given block as a global block.
51 static llvm::Constant *buildGlobalBlock(CodeGenModule &CGM,
52                                         const CGBlockInfo &blockInfo,
53                                         llvm::Constant *blockFn);
54 
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);
59 }
60 
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);
65 }
66 
67 namespace {
68 
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;
76 
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) {}
85 
86   bool operator<(const BlockCaptureManagedEntity &Other) const {
87     return Capture->getOffset() < Other.Capture->getOffset();
88   }
89 };
90 
91 enum class CaptureStrKind {
92   // String for the copy helper.
93   CopyHelper,
94   // String for the dispose helper.
95   DisposeHelper,
96   // Merge the strings for the copy helper and dispose helper.
97   Merged
98 };
99 
100 } // end anonymous namespace
101 
102 static std::string getBlockCaptureStr(const CGBlockInfo::Capture &Cap,
103                                       CaptureStrKind StrKind,
104                                       CharUnits BlockAlignment,
105                                       CodeGenModule &CGM);
106 
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()) + "_";
111 
112   if (BlockInfo.NeedsCopyDispose) {
113     if (CGM.getLangOpts().Exceptions)
114       Name += "e";
115     if (CGM.getCodeGenOpts().ObjCAutoRefCountExceptions)
116       Name += "a";
117     Name += llvm::to_string(BlockInfo.BlockAlign.getQuantity()) + "_";
118 
119     for (auto &Cap : BlockInfo.SortedCaptures) {
120       if (Cap.isConstantOrTrivial())
121         continue;
122 
123       Name += llvm::to_string(Cap.getOffset().getQuantity());
124 
125       if (Cap.CopyKind == Cap.DisposeKind) {
126         // If CopyKind and DisposeKind are the same, merge the capture
127         // information.
128         assert(Cap.CopyKind != BlockCaptureEntityKind::None &&
129                "shouldn't see BlockCaptureManagedEntity that is None");
130         Name += getBlockCaptureStr(Cap, CaptureStrKind::Merged,
131                                    BlockInfo.BlockAlign, CGM);
132       } else {
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);
140       }
141     }
142     Name += "_";
143   }
144 
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);
152   return Name;
153 }
154 
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.
159 /// \code
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.
167 /// };
168 /// \endcode
169 static llvm::Constant *buildBlockDescriptor(CodeGenModule &CGM,
170                                             const CGBlockInfo &blockInfo) {
171   ASTContext &C = CGM.getContext();
172 
173   llvm::IntegerType *ulong =
174     cast<llvm::IntegerType>(CGM.getTypes().ConvertType(C.UnsignedLongTy));
175   llvm::PointerType *i8p = nullptr;
176   if (CGM.getLangOpts().OpenCL)
177     i8p =
178       llvm::Type::getInt8PtrTy(
179            CGM.getLLVMContext(), C.getTargetAddressSpace(LangAS::opencl_constant));
180   else
181     i8p = CGM.VoidPtrTy;
182 
183   std::string descName;
184 
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());
192   }
193 
194   // If there isn't an equivalent block descriptor global variable, create a new
195   // one.
196   ConstantInitBuilder builder(CGM);
197   auto elements = builder.beginStruct();
198 
199   // reserved
200   elements.addInt(ulong, 0);
201 
202   // Size
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
205   // API to size_t.
206   elements.addInt(ulong, blockInfo.BlockSize.getQuantity());
207 
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);
214 
215     // destroy_func_decl
216     llvm::Constant *disposeHelper = buildDisposeHelper(CGM, blockInfo);
217     elements.add(disposeHelper);
218 
219     if (cast<llvm::Function>(copyHelper->getOperand(0))->hasInternalLinkage() ||
220         cast<llvm::Function>(disposeHelper->getOperand(0))
221             ->hasInternalLinkage())
222       hasInternalHelper = true;
223   }
224 
225   // Signature.  Mandatory ObjC-style method descriptor @encode sequence.
226   std::string typeAtEncoding =
227     CGM.getContext().getObjCEncodingForBlock(blockInfo.getBlockExpr());
228   elements.add(llvm::ConstantExpr::getBitCast(
229     CGM.GetAddrOfConstantCString(typeAtEncoding).getPointer(), i8p));
230 
231   // GC layout.
232   if (C.getLangOpts().ObjC) {
233     if (CGM.getLangOpts().getGC() != LangOptions::NonGC)
234       elements.add(CGM.getObjCRuntime().BuildGCBlockLayout(CGM, blockInfo));
235     else
236       elements.add(CGM.getObjCRuntime().BuildRCBlockLayout(CGM, blockInfo));
237   }
238   else
239     elements.addNullPointer(i8p);
240 
241   unsigned AddrSpace = 0;
242   if (C.getLangOpts().OpenCL)
243     AddrSpace = C.getTargetAddressSpace(LangAS::opencl_constant);
244 
245   llvm::GlobalValue::LinkageTypes linkage;
246   if (descName.empty()) {
247     linkage = llvm::GlobalValue::InternalLinkage;
248     descName = "__block_descriptor_tmp";
249   } else if (hasInternalHelper) {
250     // If either the copy helper or the dispose helper has internal linkage,
251     // the block descriptor must have internal linkage too.
252     linkage = llvm::GlobalValue::InternalLinkage;
253   } else {
254     linkage = llvm::GlobalValue::LinkOnceODRLinkage;
255   }
256 
257   llvm::GlobalVariable *global =
258       elements.finishAndCreateGlobal(descName, CGM.getPointerAlign(),
259                                      /*constant*/ true, linkage, AddrSpace);
260 
261   if (linkage == llvm::GlobalValue::LinkOnceODRLinkage) {
262     if (CGM.supportsCOMDAT())
263       global->setComdat(CGM.getModule().getOrInsertComdat(descName));
264     global->setVisibility(llvm::GlobalValue::HiddenVisibility);
265     global->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
266   }
267 
268   return llvm::ConstantExpr::getBitCast(global, CGM.getBlockDescriptorType());
269 }
270 
271 /*
272   Purely notional variadic template describing the layout of a block.
273 
274   template <class _ResultType, class... _ParamTypes, class... _CaptureTypes>
275   struct Block_literal {
276     /// Initialized to one of:
277     ///   extern void *_NSConcreteStackBlock[];
278     ///   extern void *_NSConcreteGlobalBlock[];
279     ///
280     /// In theory, we could start one off malloc'ed by setting
281     /// BLOCK_NEEDS_FREE, giving it a refcount of 1, and using
282     /// this isa:
283     ///   extern void *_NSConcreteMallocBlock[];
284     struct objc_class *isa;
285 
286     /// These are the flags (with corresponding bit number) that the
287     /// compiler is actually supposed to know about.
288     ///  23. BLOCK_IS_NOESCAPE - indicates that the block is non-escaping
289     ///  25. BLOCK_HAS_COPY_DISPOSE - indicates that the block
290     ///   descriptor provides copy and dispose helper functions
291     ///  26. BLOCK_HAS_CXX_OBJ - indicates that there's a captured
292     ///   object with a nontrivial destructor or copy constructor
293     ///  28. BLOCK_IS_GLOBAL - indicates that the block is allocated
294     ///   as global memory
295     ///  29. BLOCK_USE_STRET - indicates that the block function
296     ///   uses stret, which objc_msgSend needs to know about
297     ///  30. BLOCK_HAS_SIGNATURE - indicates that the block has an
298     ///   @encoded signature string
299     /// And we're not supposed to manipulate these:
300     ///  24. BLOCK_NEEDS_FREE - indicates that the block has been moved
301     ///   to malloc'ed memory
302     ///  27. BLOCK_IS_GC - indicates that the block has been moved to
303     ///   to GC-allocated memory
304     /// Additionally, the bottom 16 bits are a reference count which
305     /// should be zero on the stack.
306     int flags;
307 
308     /// Reserved;  should be zero-initialized.
309     int reserved;
310 
311     /// Function pointer generated from block literal.
312     _ResultType (*invoke)(Block_literal *, _ParamTypes...);
313 
314     /// Block description metadata generated from block literal.
315     struct Block_descriptor *block_descriptor;
316 
317     /// Captured values follow.
318     _CapturesTypes captures...;
319   };
320  */
321 
322 namespace {
323   /// A chunk of data that we actually have to capture in the block.
324   struct BlockLayoutChunk {
325     CharUnits Alignment;
326     CharUnits Size;
327     const BlockDecl::Capture *Capture; // null for 'this'
328     llvm::Type *Type;
329     QualType FieldType;
330     BlockCaptureEntityKind CopyKind, DisposeKind;
331     BlockFieldFlags CopyFlags, DisposeFlags;
332 
333     BlockLayoutChunk(CharUnits align, CharUnits size,
334                      const BlockDecl::Capture *capture, llvm::Type *type,
335                      QualType fieldType, BlockCaptureEntityKind CopyKind,
336                      BlockFieldFlags CopyFlags,
337                      BlockCaptureEntityKind DisposeKind,
338                      BlockFieldFlags DisposeFlags)
339         : Alignment(align), Size(size), Capture(capture), Type(type),
340           FieldType(fieldType), CopyKind(CopyKind), DisposeKind(DisposeKind),
341           CopyFlags(CopyFlags), DisposeFlags(DisposeFlags) {}
342 
343     /// Tell the block info that this chunk has the given field index.
344     void setIndex(CGBlockInfo &info, unsigned index, CharUnits offset) {
345       if (!Capture) {
346         info.CXXThisIndex = index;
347         info.CXXThisOffset = offset;
348       } else {
349         info.SortedCaptures.push_back(CGBlockInfo::Capture::makeIndex(
350             index, offset, FieldType, CopyKind, CopyFlags, DisposeKind,
351             DisposeFlags, Capture));
352       }
353     }
354 
355     bool isTrivial() const {
356       return CopyKind == BlockCaptureEntityKind::None &&
357              DisposeKind == BlockCaptureEntityKind::None;
358     }
359   };
360 
361   /// Order by 1) all __strong together 2) next, all block together 3) next,
362   /// all byref together 4) next, all __weak together. Preserve descending
363   /// alignment in all situations.
364   bool operator<(const BlockLayoutChunk &left, const BlockLayoutChunk &right) {
365     if (left.Alignment != right.Alignment)
366       return left.Alignment > right.Alignment;
367 
368     auto getPrefOrder = [](const BlockLayoutChunk &chunk) {
369       switch (chunk.CopyKind) {
370       case BlockCaptureEntityKind::ARCStrong:
371         return 0;
372       case BlockCaptureEntityKind::BlockObject:
373         switch (chunk.CopyFlags.getBitMask()) {
374         case BLOCK_FIELD_IS_OBJECT:
375           return 0;
376         case BLOCK_FIELD_IS_BLOCK:
377           return 1;
378         case BLOCK_FIELD_IS_BYREF:
379           return 2;
380         default:
381           break;
382         }
383         break;
384       case BlockCaptureEntityKind::ARCWeak:
385         return 3;
386       default:
387         break;
388       }
389       return 4;
390     };
391 
392     return getPrefOrder(left) < getPrefOrder(right);
393   }
394 } // end anonymous namespace
395 
396 static std::pair<BlockCaptureEntityKind, BlockFieldFlags>
397 computeCopyInfoForBlockCapture(const BlockDecl::Capture &CI, QualType T,
398                                const LangOptions &LangOpts);
399 
400 static std::pair<BlockCaptureEntityKind, BlockFieldFlags>
401 computeDestroyInfoForBlockCapture(const BlockDecl::Capture &CI, QualType T,
402                                   const LangOptions &LangOpts);
403 
404 static void addBlockLayout(CharUnits align, CharUnits size,
405                            const BlockDecl::Capture *capture, llvm::Type *type,
406                            QualType fieldType,
407                            SmallVectorImpl<BlockLayoutChunk> &Layout,
408                            CGBlockInfo &Info, CodeGenModule &CGM) {
409   if (!capture) {
410     // 'this' capture.
411     Layout.push_back(BlockLayoutChunk(
412         align, size, capture, type, fieldType, BlockCaptureEntityKind::None,
413         BlockFieldFlags(), BlockCaptureEntityKind::None, BlockFieldFlags()));
414     return;
415   }
416 
417   const LangOptions &LangOpts = CGM.getLangOpts();
418   BlockCaptureEntityKind CopyKind, DisposeKind;
419   BlockFieldFlags CopyFlags, DisposeFlags;
420 
421   std::tie(CopyKind, CopyFlags) =
422       computeCopyInfoForBlockCapture(*capture, fieldType, LangOpts);
423   std::tie(DisposeKind, DisposeFlags) =
424       computeDestroyInfoForBlockCapture(*capture, fieldType, LangOpts);
425   Layout.push_back(BlockLayoutChunk(align, size, capture, type, fieldType,
426                                     CopyKind, CopyFlags, DisposeKind,
427                                     DisposeFlags));
428 
429   if (Info.NoEscape)
430     return;
431 
432   if (!Layout.back().isTrivial())
433     Info.NeedsCopyDispose = true;
434 }
435 
436 /// Determines if the given type is safe for constant capture in C++.
437 static bool isSafeForCXXConstantCapture(QualType type) {
438   const RecordType *recordType =
439     type->getBaseElementTypeUnsafe()->getAs<RecordType>();
440 
441   // Only records can be unsafe.
442   if (!recordType) return true;
443 
444   const auto *record = cast<CXXRecordDecl>(recordType->getDecl());
445 
446   // Maintain semantics for classes with non-trivial dtors or copy ctors.
447   if (!record->hasTrivialDestructor()) return false;
448   if (record->hasNonTrivialCopyConstructor()) return false;
449 
450   // Otherwise, we just have to make sure there aren't any mutable
451   // fields that might have changed since initialization.
452   return !record->hasMutableFields();
453 }
454 
455 /// It is illegal to modify a const object after initialization.
456 /// Therefore, if a const object has a constant initializer, we don't
457 /// actually need to keep storage for it in the block; we'll just
458 /// rematerialize it at the start of the block function.  This is
459 /// acceptable because we make no promises about address stability of
460 /// captured variables.
461 static llvm::Constant *tryCaptureAsConstant(CodeGenModule &CGM,
462                                             CodeGenFunction *CGF,
463                                             const VarDecl *var) {
464   // Return if this is a function parameter. We shouldn't try to
465   // rematerialize default arguments of function parameters.
466   if (isa<ParmVarDecl>(var))
467     return nullptr;
468 
469   QualType type = var->getType();
470 
471   // We can only do this if the variable is const.
472   if (!type.isConstQualified()) return nullptr;
473 
474   // Furthermore, in C++ we have to worry about mutable fields:
475   // C++ [dcl.type.cv]p4:
476   //   Except that any class member declared mutable can be
477   //   modified, any attempt to modify a const object during its
478   //   lifetime results in undefined behavior.
479   if (CGM.getLangOpts().CPlusPlus && !isSafeForCXXConstantCapture(type))
480     return nullptr;
481 
482   // If the variable doesn't have any initializer (shouldn't this be
483   // invalid?), it's not clear what we should do.  Maybe capture as
484   // zero?
485   const Expr *init = var->getInit();
486   if (!init) return nullptr;
487 
488   return ConstantEmitter(CGM, CGF).tryEmitAbstractForInitializer(*var);
489 }
490 
491 /// Get the low bit of a nonzero character count.  This is the
492 /// alignment of the nth byte if the 0th byte is universally aligned.
493 static CharUnits getLowBit(CharUnits v) {
494   return CharUnits::fromQuantity(v.getQuantity() & (~v.getQuantity() + 1));
495 }
496 
497 static void initializeForBlockHeader(CodeGenModule &CGM, CGBlockInfo &info,
498                              SmallVectorImpl<llvm::Type*> &elementTypes) {
499 
500   assert(elementTypes.empty());
501   if (CGM.getLangOpts().OpenCL) {
502     // The header is basically 'struct { int; int; generic void *;
503     // custom_fields; }'. Assert that struct is packed.
504     auto GenericAS =
505         CGM.getContext().getTargetAddressSpace(LangAS::opencl_generic);
506     auto GenPtrAlign =
507         CharUnits::fromQuantity(CGM.getTarget().getPointerAlign(GenericAS) / 8);
508     auto GenPtrSize =
509         CharUnits::fromQuantity(CGM.getTarget().getPointerWidth(GenericAS) / 8);
510     assert(CGM.getIntSize() <= GenPtrSize);
511     assert(CGM.getIntAlign() <= GenPtrAlign);
512     assert((2 * CGM.getIntSize()).isMultipleOf(GenPtrAlign));
513     elementTypes.push_back(CGM.IntTy); /* total size */
514     elementTypes.push_back(CGM.IntTy); /* align */
515     elementTypes.push_back(
516         CGM.getOpenCLRuntime()
517             .getGenericVoidPointerType()); /* invoke function */
518     unsigned Offset =
519         2 * CGM.getIntSize().getQuantity() + GenPtrSize.getQuantity();
520     unsigned BlockAlign = GenPtrAlign.getQuantity();
521     if (auto *Helper =
522             CGM.getTargetCodeGenInfo().getTargetOpenCLBlockHelper()) {
523       for (auto I : Helper->getCustomFieldTypes()) /* custom fields */ {
524         // TargetOpenCLBlockHelp needs to make sure the struct is packed.
525         // If necessary, add padding fields to the custom fields.
526         unsigned Align = CGM.getDataLayout().getABITypeAlignment(I);
527         if (BlockAlign < Align)
528           BlockAlign = Align;
529         assert(Offset % Align == 0);
530         Offset += CGM.getDataLayout().getTypeAllocSize(I);
531         elementTypes.push_back(I);
532       }
533     }
534     info.BlockAlign = CharUnits::fromQuantity(BlockAlign);
535     info.BlockSize = CharUnits::fromQuantity(Offset);
536   } else {
537     // The header is basically 'struct { void *; int; int; void *; void *; }'.
538     // Assert that the struct is packed.
539     assert(CGM.getIntSize() <= CGM.getPointerSize());
540     assert(CGM.getIntAlign() <= CGM.getPointerAlign());
541     assert((2 * CGM.getIntSize()).isMultipleOf(CGM.getPointerAlign()));
542     info.BlockAlign = CGM.getPointerAlign();
543     info.BlockSize = 3 * CGM.getPointerSize() + 2 * CGM.getIntSize();
544     elementTypes.push_back(CGM.VoidPtrTy);
545     elementTypes.push_back(CGM.IntTy);
546     elementTypes.push_back(CGM.IntTy);
547     elementTypes.push_back(CGM.VoidPtrTy);
548     elementTypes.push_back(CGM.getBlockDescriptorType());
549   }
550 }
551 
552 static QualType getCaptureFieldType(const CodeGenFunction &CGF,
553                                     const BlockDecl::Capture &CI) {
554   const VarDecl *VD = CI.getVariable();
555 
556   // If the variable is captured by an enclosing block or lambda expression,
557   // use the type of the capture field.
558   if (CGF.BlockInfo && CI.isNested())
559     return CGF.BlockInfo->getCapture(VD).fieldType();
560   if (auto *FD = CGF.LambdaCaptureFields.lookup(VD))
561     return FD->getType();
562   // If the captured variable is a non-escaping __block variable, the field
563   // type is the reference type. If the variable is a __block variable that
564   // already has a reference type, the field type is the variable's type.
565   return VD->isNonEscapingByref() ?
566          CGF.getContext().getLValueReferenceType(VD->getType()) : VD->getType();
567 }
568 
569 /// Compute the layout of the given block.  Attempts to lay the block
570 /// out with minimal space requirements.
571 static void computeBlockInfo(CodeGenModule &CGM, CodeGenFunction *CGF,
572                              CGBlockInfo &info) {
573   ASTContext &C = CGM.getContext();
574   const BlockDecl *block = info.getBlockDecl();
575 
576   SmallVector<llvm::Type*, 8> elementTypes;
577   initializeForBlockHeader(CGM, info, elementTypes);
578   bool hasNonConstantCustomFields = false;
579   if (auto *OpenCLHelper =
580           CGM.getTargetCodeGenInfo().getTargetOpenCLBlockHelper())
581     hasNonConstantCustomFields =
582         !OpenCLHelper->areAllCustomFieldValuesConstant(info);
583   if (!block->hasCaptures() && !hasNonConstantCustomFields) {
584     info.StructureType =
585       llvm::StructType::get(CGM.getLLVMContext(), elementTypes, true);
586     info.CanBeGlobal = true;
587     return;
588   }
589   else if (C.getLangOpts().ObjC &&
590            CGM.getLangOpts().getGC() == LangOptions::NonGC)
591     info.HasCapturedVariableLayout = true;
592 
593   if (block->doesNotEscape())
594     info.NoEscape = true;
595 
596   // Collect the layout chunks.
597   SmallVector<BlockLayoutChunk, 16> layout;
598   layout.reserve(block->capturesCXXThis() +
599                  (block->capture_end() - block->capture_begin()));
600 
601   CharUnits maxFieldAlign;
602 
603   // First, 'this'.
604   if (block->capturesCXXThis()) {
605     assert(CGF && CGF->CurFuncDecl && isa<CXXMethodDecl>(CGF->CurFuncDecl) &&
606            "Can't capture 'this' outside a method");
607     QualType thisType = cast<CXXMethodDecl>(CGF->CurFuncDecl)->getThisType();
608 
609     // Theoretically, this could be in a different address space, so
610     // don't assume standard pointer size/align.
611     llvm::Type *llvmType = CGM.getTypes().ConvertType(thisType);
612     auto TInfo = CGM.getContext().getTypeInfoInChars(thisType);
613     maxFieldAlign = std::max(maxFieldAlign, TInfo.Align);
614 
615     addBlockLayout(TInfo.Align, TInfo.Width, nullptr, llvmType, thisType,
616                    layout, info, CGM);
617   }
618 
619   // Next, all the block captures.
620   for (const auto &CI : block->captures()) {
621     const VarDecl *variable = CI.getVariable();
622 
623     if (CI.isEscapingByref()) {
624       // Just use void* instead of a pointer to the byref type.
625       CharUnits align = CGM.getPointerAlign();
626       maxFieldAlign = std::max(maxFieldAlign, align);
627 
628       // Since a __block variable cannot be captured by lambdas, its type and
629       // the capture field type should always match.
630       assert(CGF && getCaptureFieldType(*CGF, CI) == variable->getType() &&
631              "capture type differs from the variable type");
632       addBlockLayout(align, CGM.getPointerSize(), &CI, CGM.VoidPtrTy,
633                      variable->getType(), layout, info, CGM);
634       continue;
635     }
636 
637     // Otherwise, build a layout chunk with the size and alignment of
638     // the declaration.
639     if (llvm::Constant *constant = tryCaptureAsConstant(CGM, CGF, variable)) {
640       info.SortedCaptures.push_back(
641           CGBlockInfo::Capture::makeConstant(constant, &CI));
642       continue;
643     }
644 
645     QualType VT = getCaptureFieldType(*CGF, CI);
646 
647     if (CGM.getLangOpts().CPlusPlus)
648       if (const CXXRecordDecl *record = VT->getAsCXXRecordDecl())
649         if (CI.hasCopyExpr() || !record->hasTrivialDestructor()) {
650           info.HasCXXObject = true;
651           if (!record->isExternallyVisible())
652             info.CapturesNonExternalType = true;
653         }
654 
655     CharUnits size = C.getTypeSizeInChars(VT);
656     CharUnits align = C.getDeclAlign(variable);
657 
658     maxFieldAlign = std::max(maxFieldAlign, align);
659 
660     llvm::Type *llvmType =
661       CGM.getTypes().ConvertTypeForMem(VT);
662 
663     addBlockLayout(align, size, &CI, llvmType, VT, layout, info, CGM);
664   }
665 
666   // If that was everything, we're done here.
667   if (layout.empty()) {
668     info.StructureType =
669       llvm::StructType::get(CGM.getLLVMContext(), elementTypes, true);
670     info.CanBeGlobal = true;
671     info.buildCaptureMap();
672     return;
673   }
674 
675   // Sort the layout by alignment.  We have to use a stable sort here
676   // to get reproducible results.  There should probably be an
677   // llvm::array_pod_stable_sort.
678   llvm::stable_sort(layout);
679 
680   // Needed for blocks layout info.
681   info.BlockHeaderForcedGapOffset = info.BlockSize;
682   info.BlockHeaderForcedGapSize = CharUnits::Zero();
683 
684   CharUnits &blockSize = info.BlockSize;
685   info.BlockAlign = std::max(maxFieldAlign, info.BlockAlign);
686 
687   // Assuming that the first byte in the header is maximally aligned,
688   // get the alignment of the first byte following the header.
689   CharUnits endAlign = getLowBit(blockSize);
690 
691   // If the end of the header isn't satisfactorily aligned for the
692   // maximum thing, look for things that are okay with the header-end
693   // alignment, and keep appending them until we get something that's
694   // aligned right.  This algorithm is only guaranteed optimal if
695   // that condition is satisfied at some point; otherwise we can get
696   // things like:
697   //   header                 // next byte has alignment 4
698   //   something_with_size_5; // next byte has alignment 1
699   //   something_with_alignment_8;
700   // which has 7 bytes of padding, as opposed to the naive solution
701   // which might have less (?).
702   if (endAlign < maxFieldAlign) {
703     SmallVectorImpl<BlockLayoutChunk>::iterator
704       li = layout.begin() + 1, le = layout.end();
705 
706     // Look for something that the header end is already
707     // satisfactorily aligned for.
708     for (; li != le && endAlign < li->Alignment; ++li)
709       ;
710 
711     // If we found something that's naturally aligned for the end of
712     // the header, keep adding things...
713     if (li != le) {
714       SmallVectorImpl<BlockLayoutChunk>::iterator first = li;
715       for (; li != le; ++li) {
716         assert(endAlign >= li->Alignment);
717 
718         li->setIndex(info, elementTypes.size(), blockSize);
719         elementTypes.push_back(li->Type);
720         blockSize += li->Size;
721         endAlign = getLowBit(blockSize);
722 
723         // ...until we get to the alignment of the maximum field.
724         if (endAlign >= maxFieldAlign) {
725           ++li;
726           break;
727         }
728       }
729       // Don't re-append everything we just appended.
730       layout.erase(first, li);
731     }
732   }
733 
734   assert(endAlign == getLowBit(blockSize));
735 
736   // At this point, we just have to add padding if the end align still
737   // isn't aligned right.
738   if (endAlign < maxFieldAlign) {
739     CharUnits newBlockSize = blockSize.alignTo(maxFieldAlign);
740     CharUnits padding = newBlockSize - blockSize;
741 
742     // If we haven't yet added any fields, remember that there was an
743     // initial gap; this need to go into the block layout bit map.
744     if (blockSize == info.BlockHeaderForcedGapOffset) {
745       info.BlockHeaderForcedGapSize = padding;
746     }
747 
748     elementTypes.push_back(llvm::ArrayType::get(CGM.Int8Ty,
749                                                 padding.getQuantity()));
750     blockSize = newBlockSize;
751     endAlign = getLowBit(blockSize); // might be > maxFieldAlign
752   }
753 
754   assert(endAlign >= maxFieldAlign);
755   assert(endAlign == getLowBit(blockSize));
756   // Slam everything else on now.  This works because they have
757   // strictly decreasing alignment and we expect that size is always a
758   // multiple of alignment.
759   for (SmallVectorImpl<BlockLayoutChunk>::iterator
760          li = layout.begin(), le = layout.end(); li != le; ++li) {
761     if (endAlign < li->Alignment) {
762       // size may not be multiple of alignment. This can only happen with
763       // an over-aligned variable. We will be adding a padding field to
764       // make the size be multiple of alignment.
765       CharUnits padding = li->Alignment - endAlign;
766       elementTypes.push_back(llvm::ArrayType::get(CGM.Int8Ty,
767                                                   padding.getQuantity()));
768       blockSize += padding;
769       endAlign = getLowBit(blockSize);
770     }
771     assert(endAlign >= li->Alignment);
772     li->setIndex(info, elementTypes.size(), blockSize);
773     elementTypes.push_back(li->Type);
774     blockSize += li->Size;
775     endAlign = getLowBit(blockSize);
776   }
777 
778   info.buildCaptureMap();
779   info.StructureType =
780     llvm::StructType::get(CGM.getLLVMContext(), elementTypes, true);
781 }
782 
783 /// Emit a block literal expression in the current function.
784 llvm::Value *CodeGenFunction::EmitBlockLiteral(const BlockExpr *blockExpr) {
785   // If the block has no captures, we won't have a pre-computed
786   // layout for it.
787   if (!blockExpr->getBlockDecl()->hasCaptures())
788     // The block literal is emitted as a global variable, and the block invoke
789     // function has to be extracted from its initializer.
790     if (llvm::Constant *Block = CGM.getAddrOfGlobalBlockIfEmitted(blockExpr))
791       return Block;
792 
793   CGBlockInfo blockInfo(blockExpr->getBlockDecl(), CurFn->getName());
794   computeBlockInfo(CGM, this, blockInfo);
795   blockInfo.BlockExpression = blockExpr;
796   if (!blockInfo.CanBeGlobal)
797     blockInfo.LocalAddress = CreateTempAlloca(blockInfo.StructureType,
798                                               blockInfo.BlockAlign, "block");
799   return EmitBlockLiteral(blockInfo);
800 }
801 
802 llvm::Value *CodeGenFunction::EmitBlockLiteral(const CGBlockInfo &blockInfo) {
803   bool IsOpenCL = CGM.getContext().getLangOpts().OpenCL;
804   auto GenVoidPtrTy =
805       IsOpenCL ? CGM.getOpenCLRuntime().getGenericVoidPointerType() : VoidPtrTy;
806   LangAS GenVoidPtrAddr = IsOpenCL ? LangAS::opencl_generic : LangAS::Default;
807   auto GenVoidPtrSize = CharUnits::fromQuantity(
808       CGM.getTarget().getPointerWidth(
809           CGM.getContext().getTargetAddressSpace(GenVoidPtrAddr)) /
810       8);
811   // Using the computed layout, generate the actual block function.
812   bool isLambdaConv = blockInfo.getBlockDecl()->isConversionFromLambda();
813   CodeGenFunction BlockCGF{CGM, true};
814   BlockCGF.SanOpts = SanOpts;
815   auto *InvokeFn = BlockCGF.GenerateBlockFunction(
816       CurGD, blockInfo, LocalDeclMap, isLambdaConv, blockInfo.CanBeGlobal);
817   auto *blockFn = llvm::ConstantExpr::getPointerCast(InvokeFn, GenVoidPtrTy);
818 
819   // If there is nothing to capture, we can emit this as a global block.
820   if (blockInfo.CanBeGlobal)
821     return CGM.getAddrOfGlobalBlockIfEmitted(blockInfo.BlockExpression);
822 
823   // Otherwise, we have to emit this as a local block.
824 
825   Address blockAddr = blockInfo.LocalAddress;
826   assert(blockAddr.isValid() && "block has no address!");
827 
828   llvm::Constant *isa;
829   llvm::Constant *descriptor;
830   BlockFlags flags;
831   if (!IsOpenCL) {
832     // If the block is non-escaping, set field 'isa 'to NSConcreteGlobalBlock
833     // and set the BLOCK_IS_GLOBAL bit of field 'flags'. Copying a non-escaping
834     // block just returns the original block and releasing it is a no-op.
835     llvm::Constant *blockISA = blockInfo.NoEscape
836                                    ? CGM.getNSConcreteGlobalBlock()
837                                    : CGM.getNSConcreteStackBlock();
838     isa = llvm::ConstantExpr::getBitCast(blockISA, VoidPtrTy);
839 
840     // Build the block descriptor.
841     descriptor = buildBlockDescriptor(CGM, blockInfo);
842 
843     // Compute the initial on-stack block flags.
844     flags = BLOCK_HAS_SIGNATURE;
845     if (blockInfo.HasCapturedVariableLayout)
846       flags |= BLOCK_HAS_EXTENDED_LAYOUT;
847     if (blockInfo.NeedsCopyDispose)
848       flags |= BLOCK_HAS_COPY_DISPOSE;
849     if (blockInfo.HasCXXObject)
850       flags |= BLOCK_HAS_CXX_OBJ;
851     if (blockInfo.UsesStret)
852       flags |= BLOCK_USE_STRET;
853     if (blockInfo.NoEscape)
854       flags |= BLOCK_IS_NOESCAPE | BLOCK_IS_GLOBAL;
855   }
856 
857   auto projectField = [&](unsigned index, const Twine &name) -> Address {
858     return Builder.CreateStructGEP(blockAddr, index, name);
859   };
860   auto storeField = [&](llvm::Value *value, unsigned index, const Twine &name) {
861     Builder.CreateStore(value, projectField(index, name));
862   };
863 
864   // Initialize the block header.
865   {
866     // We assume all the header fields are densely packed.
867     unsigned index = 0;
868     CharUnits offset;
869     auto addHeaderField = [&](llvm::Value *value, CharUnits size,
870                               const Twine &name) {
871       storeField(value, index, name);
872       offset += size;
873       index++;
874     };
875 
876     if (!IsOpenCL) {
877       addHeaderField(isa, getPointerSize(), "block.isa");
878       addHeaderField(llvm::ConstantInt::get(IntTy, flags.getBitMask()),
879                      getIntSize(), "block.flags");
880       addHeaderField(llvm::ConstantInt::get(IntTy, 0), getIntSize(),
881                      "block.reserved");
882     } else {
883       addHeaderField(
884           llvm::ConstantInt::get(IntTy, blockInfo.BlockSize.getQuantity()),
885           getIntSize(), "block.size");
886       addHeaderField(
887           llvm::ConstantInt::get(IntTy, blockInfo.BlockAlign.getQuantity()),
888           getIntSize(), "block.align");
889     }
890     addHeaderField(blockFn, GenVoidPtrSize, "block.invoke");
891     if (!IsOpenCL)
892       addHeaderField(descriptor, getPointerSize(), "block.descriptor");
893     else if (auto *Helper =
894                  CGM.getTargetCodeGenInfo().getTargetOpenCLBlockHelper()) {
895       for (auto I : Helper->getCustomFieldValues(*this, blockInfo)) {
896         addHeaderField(
897             I.first,
898             CharUnits::fromQuantity(
899                 CGM.getDataLayout().getTypeAllocSize(I.first->getType())),
900             I.second);
901       }
902     }
903   }
904 
905   // Finally, capture all the values into the block.
906   const BlockDecl *blockDecl = blockInfo.getBlockDecl();
907 
908   // First, 'this'.
909   if (blockDecl->capturesCXXThis()) {
910     Address addr =
911         projectField(blockInfo.CXXThisIndex, "block.captured-this.addr");
912     Builder.CreateStore(LoadCXXThis(), addr);
913   }
914 
915   // Next, captured variables.
916   for (const auto &CI : blockDecl->captures()) {
917     const VarDecl *variable = CI.getVariable();
918     const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable);
919 
920     // Ignore constant captures.
921     if (capture.isConstant()) continue;
922 
923     QualType type = capture.fieldType();
924 
925     // This will be a [[type]]*, except that a byref entry will just be
926     // an i8**.
927     Address blockField = projectField(capture.getIndex(), "block.captured");
928 
929     // Compute the address of the thing we're going to move into the
930     // block literal.
931     Address src = Address::invalid();
932 
933     if (blockDecl->isConversionFromLambda()) {
934       // The lambda capture in a lambda's conversion-to-block-pointer is
935       // special; we'll simply emit it directly.
936       src = Address::invalid();
937     } else if (CI.isEscapingByref()) {
938       if (BlockInfo && CI.isNested()) {
939         // We need to use the capture from the enclosing block.
940         const CGBlockInfo::Capture &enclosingCapture =
941             BlockInfo->getCapture(variable);
942 
943         // This is a [[type]]*, except that a byref entry will just be an i8**.
944         src = Builder.CreateStructGEP(LoadBlockStruct(),
945                                       enclosingCapture.getIndex(),
946                                       "block.capture.addr");
947       } else {
948         auto I = LocalDeclMap.find(variable);
949         assert(I != LocalDeclMap.end());
950         src = I->second;
951       }
952     } else {
953       DeclRefExpr declRef(getContext(), const_cast<VarDecl *>(variable),
954                           /*RefersToEnclosingVariableOrCapture*/ CI.isNested(),
955                           type.getNonReferenceType(), VK_LValue,
956                           SourceLocation());
957       src = EmitDeclRefLValue(&declRef).getAddress(*this);
958     };
959 
960     // For byrefs, we just write the pointer to the byref struct into
961     // the block field.  There's no need to chase the forwarding
962     // pointer at this point, since we're building something that will
963     // live a shorter life than the stack byref anyway.
964     if (CI.isEscapingByref()) {
965       // Get a void* that points to the byref struct.
966       llvm::Value *byrefPointer;
967       if (CI.isNested())
968         byrefPointer = Builder.CreateLoad(src, "byref.capture");
969       else
970         byrefPointer = Builder.CreateBitCast(src.getPointer(), VoidPtrTy);
971 
972       // Write that void* into the capture field.
973       Builder.CreateStore(byrefPointer, blockField);
974 
975     // If we have a copy constructor, evaluate that into the block field.
976     } else if (const Expr *copyExpr = CI.getCopyExpr()) {
977       if (blockDecl->isConversionFromLambda()) {
978         // If we have a lambda conversion, emit the expression
979         // directly into the block instead.
980         AggValueSlot Slot =
981             AggValueSlot::forAddr(blockField, Qualifiers(),
982                                   AggValueSlot::IsDestructed,
983                                   AggValueSlot::DoesNotNeedGCBarriers,
984                                   AggValueSlot::IsNotAliased,
985                                   AggValueSlot::DoesNotOverlap);
986         EmitAggExpr(copyExpr, Slot);
987       } else {
988         EmitSynthesizedCXXCopyCtor(blockField, src, copyExpr);
989       }
990 
991     // If it's a reference variable, copy the reference into the block field.
992     } else if (type->isReferenceType()) {
993       Builder.CreateStore(src.getPointer(), blockField);
994 
995     // If type is const-qualified, copy the value into the block field.
996     } else if (type.isConstQualified() &&
997                type.getObjCLifetime() == Qualifiers::OCL_Strong &&
998                CGM.getCodeGenOpts().OptimizationLevel != 0) {
999       llvm::Value *value = Builder.CreateLoad(src, "captured");
1000       Builder.CreateStore(value, blockField);
1001 
1002     // If this is an ARC __strong block-pointer variable, don't do a
1003     // block copy.
1004     //
1005     // TODO: this can be generalized into the normal initialization logic:
1006     // we should never need to do a block-copy when initializing a local
1007     // variable, because the local variable's lifetime should be strictly
1008     // contained within the stack block's.
1009     } else if (type.getObjCLifetime() == Qualifiers::OCL_Strong &&
1010                type->isBlockPointerType()) {
1011       // Load the block and do a simple retain.
1012       llvm::Value *value = Builder.CreateLoad(src, "block.captured_block");
1013       value = EmitARCRetainNonBlock(value);
1014 
1015       // Do a primitive store to the block field.
1016       Builder.CreateStore(value, blockField);
1017 
1018     // Otherwise, fake up a POD copy into the block field.
1019     } else {
1020       // Fake up a new variable so that EmitScalarInit doesn't think
1021       // we're referring to the variable in its own initializer.
1022       ImplicitParamDecl BlockFieldPseudoVar(getContext(), type,
1023                                             ImplicitParamDecl::Other);
1024 
1025       // We use one of these or the other depending on whether the
1026       // reference is nested.
1027       DeclRefExpr declRef(getContext(), const_cast<VarDecl *>(variable),
1028                           /*RefersToEnclosingVariableOrCapture*/ CI.isNested(),
1029                           type, VK_LValue, SourceLocation());
1030 
1031       ImplicitCastExpr l2r(ImplicitCastExpr::OnStack, type, CK_LValueToRValue,
1032                            &declRef, VK_PRValue, FPOptionsOverride());
1033       // FIXME: Pass a specific location for the expr init so that the store is
1034       // attributed to a reasonable location - otherwise it may be attributed to
1035       // locations of subexpressions in the initialization.
1036       EmitExprAsInit(&l2r, &BlockFieldPseudoVar,
1037                      MakeAddrLValue(blockField, type, AlignmentSource::Decl),
1038                      /*captured by init*/ false);
1039     }
1040 
1041     // Push a cleanup for the capture if necessary.
1042     if (!blockInfo.NoEscape && !blockInfo.NeedsCopyDispose)
1043       continue;
1044 
1045     // Ignore __block captures; there's nothing special in the on-stack block
1046     // that we need to do for them.
1047     if (CI.isByRef())
1048       continue;
1049 
1050     // Ignore objects that aren't destructed.
1051     QualType::DestructionKind dtorKind = type.isDestructedType();
1052     if (dtorKind == QualType::DK_none)
1053       continue;
1054 
1055     CodeGenFunction::Destroyer *destroyer;
1056 
1057     // Block captures count as local values and have imprecise semantics.
1058     // They also can't be arrays, so need to worry about that.
1059     //
1060     // For const-qualified captures, emit clang.arc.use to ensure the captured
1061     // object doesn't get released while we are still depending on its validity
1062     // within the block.
1063     if (type.isConstQualified() &&
1064         type.getObjCLifetime() == Qualifiers::OCL_Strong &&
1065         CGM.getCodeGenOpts().OptimizationLevel != 0) {
1066       assert(CGM.getLangOpts().ObjCAutoRefCount &&
1067              "expected ObjC ARC to be enabled");
1068       destroyer = emitARCIntrinsicUse;
1069     } else if (dtorKind == QualType::DK_objc_strong_lifetime) {
1070       destroyer = destroyARCStrongImprecise;
1071     } else {
1072       destroyer = getDestroyer(dtorKind);
1073     }
1074 
1075     CleanupKind cleanupKind = NormalCleanup;
1076     bool useArrayEHCleanup = needsEHCleanup(dtorKind);
1077     if (useArrayEHCleanup)
1078       cleanupKind = NormalAndEHCleanup;
1079 
1080     // Extend the lifetime of the capture to the end of the scope enclosing the
1081     // block expression except when the block decl is in the list of RetExpr's
1082     // cleanup objects, in which case its lifetime ends after the full
1083     // expression.
1084     auto IsBlockDeclInRetExpr = [&]() {
1085       auto *EWC = llvm::dyn_cast_or_null<ExprWithCleanups>(RetExpr);
1086       if (EWC)
1087         for (auto &C : EWC->getObjects())
1088           if (auto *BD = C.dyn_cast<BlockDecl *>())
1089             if (BD == blockDecl)
1090               return true;
1091       return false;
1092     };
1093 
1094     if (IsBlockDeclInRetExpr())
1095       pushDestroy(cleanupKind, blockField, type, destroyer, useArrayEHCleanup);
1096     else
1097       pushLifetimeExtendedDestroy(cleanupKind, blockField, type, destroyer,
1098                                   useArrayEHCleanup);
1099   }
1100 
1101   // Cast to the converted block-pointer type, which happens (somewhat
1102   // unfortunately) to be a pointer to function type.
1103   llvm::Value *result = Builder.CreatePointerCast(
1104       blockAddr.getPointer(), ConvertType(blockInfo.getBlockExpr()->getType()));
1105 
1106   if (IsOpenCL) {
1107     CGM.getOpenCLRuntime().recordBlockInfo(blockInfo.BlockExpression, InvokeFn,
1108                                            result);
1109   }
1110 
1111   return result;
1112 }
1113 
1114 
1115 llvm::Type *CodeGenModule::getBlockDescriptorType() {
1116   if (BlockDescriptorType)
1117     return BlockDescriptorType;
1118 
1119   llvm::Type *UnsignedLongTy =
1120     getTypes().ConvertType(getContext().UnsignedLongTy);
1121 
1122   // struct __block_descriptor {
1123   //   unsigned long reserved;
1124   //   unsigned long block_size;
1125   //
1126   //   // later, the following will be added
1127   //
1128   //   struct {
1129   //     void (*copyHelper)();
1130   //     void (*copyHelper)();
1131   //   } helpers;                // !!! optional
1132   //
1133   //   const char *signature;   // the block signature
1134   //   const char *layout;      // reserved
1135   // };
1136   BlockDescriptorType = llvm::StructType::create(
1137       "struct.__block_descriptor", UnsignedLongTy, UnsignedLongTy);
1138 
1139   // Now form a pointer to that.
1140   unsigned AddrSpace = 0;
1141   if (getLangOpts().OpenCL)
1142     AddrSpace = getContext().getTargetAddressSpace(LangAS::opencl_constant);
1143   BlockDescriptorType = llvm::PointerType::get(BlockDescriptorType, AddrSpace);
1144   return BlockDescriptorType;
1145 }
1146 
1147 llvm::Type *CodeGenModule::getGenericBlockLiteralType() {
1148   if (GenericBlockLiteralType)
1149     return GenericBlockLiteralType;
1150 
1151   llvm::Type *BlockDescPtrTy = getBlockDescriptorType();
1152 
1153   if (getLangOpts().OpenCL) {
1154     // struct __opencl_block_literal_generic {
1155     //   int __size;
1156     //   int __align;
1157     //   __generic void *__invoke;
1158     //   /* custom fields */
1159     // };
1160     SmallVector<llvm::Type *, 8> StructFields(
1161         {IntTy, IntTy, getOpenCLRuntime().getGenericVoidPointerType()});
1162     if (auto *Helper = getTargetCodeGenInfo().getTargetOpenCLBlockHelper()) {
1163       for (auto I : Helper->getCustomFieldTypes())
1164         StructFields.push_back(I);
1165     }
1166     GenericBlockLiteralType = llvm::StructType::create(
1167         StructFields, "struct.__opencl_block_literal_generic");
1168   } else {
1169     // struct __block_literal_generic {
1170     //   void *__isa;
1171     //   int __flags;
1172     //   int __reserved;
1173     //   void (*__invoke)(void *);
1174     //   struct __block_descriptor *__descriptor;
1175     // };
1176     GenericBlockLiteralType =
1177         llvm::StructType::create("struct.__block_literal_generic", VoidPtrTy,
1178                                  IntTy, IntTy, VoidPtrTy, BlockDescPtrTy);
1179   }
1180 
1181   return GenericBlockLiteralType;
1182 }
1183 
1184 RValue CodeGenFunction::EmitBlockCallExpr(const CallExpr *E,
1185                                           ReturnValueSlot ReturnValue) {
1186   const auto *BPT = E->getCallee()->getType()->castAs<BlockPointerType>();
1187   llvm::Value *BlockPtr = EmitScalarExpr(E->getCallee());
1188   llvm::Type *GenBlockTy = CGM.getGenericBlockLiteralType();
1189   llvm::Value *Func = nullptr;
1190   QualType FnType = BPT->getPointeeType();
1191   ASTContext &Ctx = getContext();
1192   CallArgList Args;
1193 
1194   if (getLangOpts().OpenCL) {
1195     // For OpenCL, BlockPtr is already casted to generic block literal.
1196 
1197     // First argument of a block call is a generic block literal casted to
1198     // generic void pointer, i.e. i8 addrspace(4)*
1199     llvm::Type *GenericVoidPtrTy =
1200         CGM.getOpenCLRuntime().getGenericVoidPointerType();
1201     llvm::Value *BlockDescriptor = Builder.CreatePointerCast(
1202         BlockPtr, GenericVoidPtrTy);
1203     QualType VoidPtrQualTy = Ctx.getPointerType(
1204         Ctx.getAddrSpaceQualType(Ctx.VoidTy, LangAS::opencl_generic));
1205     Args.add(RValue::get(BlockDescriptor), VoidPtrQualTy);
1206     // And the rest of the arguments.
1207     EmitCallArgs(Args, FnType->getAs<FunctionProtoType>(), E->arguments());
1208 
1209     // We *can* call the block directly unless it is a function argument.
1210     if (!isa<ParmVarDecl>(E->getCalleeDecl()))
1211       Func = CGM.getOpenCLRuntime().getInvokeFunction(E->getCallee());
1212     else {
1213       llvm::Value *FuncPtr = Builder.CreateStructGEP(GenBlockTy, BlockPtr, 2);
1214       Func = Builder.CreateAlignedLoad(GenericVoidPtrTy, FuncPtr,
1215                                        getPointerAlign());
1216     }
1217   } else {
1218     // Bitcast the block literal to a generic block literal.
1219     BlockPtr = Builder.CreatePointerCast(
1220         BlockPtr, llvm::PointerType::get(GenBlockTy, 0), "block.literal");
1221     // Get pointer to the block invoke function
1222     llvm::Value *FuncPtr = Builder.CreateStructGEP(GenBlockTy, BlockPtr, 3);
1223 
1224     // First argument is a block literal casted to a void pointer
1225     BlockPtr = Builder.CreatePointerCast(BlockPtr, VoidPtrTy);
1226     Args.add(RValue::get(BlockPtr), Ctx.VoidPtrTy);
1227     // And the rest of the arguments.
1228     EmitCallArgs(Args, FnType->getAs<FunctionProtoType>(), E->arguments());
1229 
1230     // Load the function.
1231     Func = Builder.CreateAlignedLoad(VoidPtrTy, FuncPtr, getPointerAlign());
1232   }
1233 
1234   const FunctionType *FuncTy = FnType->castAs<FunctionType>();
1235   const CGFunctionInfo &FnInfo =
1236     CGM.getTypes().arrangeBlockFunctionCall(Args, FuncTy);
1237 
1238   // Cast the function pointer to the right type.
1239   llvm::Type *BlockFTy = CGM.getTypes().GetFunctionType(FnInfo);
1240 
1241   llvm::Type *BlockFTyPtr = llvm::PointerType::getUnqual(BlockFTy);
1242   Func = Builder.CreatePointerCast(Func, BlockFTyPtr);
1243 
1244   // Prepare the callee.
1245   CGCallee Callee(CGCalleeInfo(), Func);
1246 
1247   // And call the block.
1248   return EmitCall(FnInfo, Callee, ReturnValue, Args);
1249 }
1250 
1251 Address CodeGenFunction::GetAddrOfBlockDecl(const VarDecl *variable) {
1252   assert(BlockInfo && "evaluating block ref without block information?");
1253   const CGBlockInfo::Capture &capture = BlockInfo->getCapture(variable);
1254 
1255   // Handle constant captures.
1256   if (capture.isConstant()) return LocalDeclMap.find(variable)->second;
1257 
1258   Address addr = Builder.CreateStructGEP(LoadBlockStruct(), capture.getIndex(),
1259                                          "block.capture.addr");
1260 
1261   if (variable->isEscapingByref()) {
1262     // addr should be a void** right now.  Load, then cast the result
1263     // to byref*.
1264 
1265     auto &byrefInfo = getBlockByrefInfo(variable);
1266     addr = Address(Builder.CreateLoad(addr), byrefInfo.ByrefAlignment);
1267 
1268     auto byrefPointerType = llvm::PointerType::get(byrefInfo.Type, 0);
1269     addr = Builder.CreateBitCast(addr, byrefPointerType, "byref.addr");
1270 
1271     addr = emitBlockByrefAddress(addr, byrefInfo, /*follow*/ true,
1272                                  variable->getName());
1273   }
1274 
1275   assert((!variable->isNonEscapingByref() ||
1276           capture.fieldType()->isReferenceType()) &&
1277          "the capture field of a non-escaping variable should have a "
1278          "reference type");
1279   if (capture.fieldType()->isReferenceType())
1280     addr = EmitLoadOfReference(MakeAddrLValue(addr, capture.fieldType()));
1281 
1282   return addr;
1283 }
1284 
1285 void CodeGenModule::setAddrOfGlobalBlock(const BlockExpr *BE,
1286                                          llvm::Constant *Addr) {
1287   bool Ok = EmittedGlobalBlocks.insert(std::make_pair(BE, Addr)).second;
1288   (void)Ok;
1289   assert(Ok && "Trying to replace an already-existing global block!");
1290 }
1291 
1292 llvm::Constant *
1293 CodeGenModule::GetAddrOfGlobalBlock(const BlockExpr *BE,
1294                                     StringRef Name) {
1295   if (llvm::Constant *Block = getAddrOfGlobalBlockIfEmitted(BE))
1296     return Block;
1297 
1298   CGBlockInfo blockInfo(BE->getBlockDecl(), Name);
1299   blockInfo.BlockExpression = BE;
1300 
1301   // Compute information about the layout, etc., of this block.
1302   computeBlockInfo(*this, nullptr, blockInfo);
1303 
1304   // Using that metadata, generate the actual block function.
1305   {
1306     CodeGenFunction::DeclMapTy LocalDeclMap;
1307     CodeGenFunction(*this).GenerateBlockFunction(
1308         GlobalDecl(), blockInfo, LocalDeclMap,
1309         /*IsLambdaConversionToBlock*/ false, /*BuildGlobalBlock*/ true);
1310   }
1311 
1312   return getAddrOfGlobalBlockIfEmitted(BE);
1313 }
1314 
1315 static llvm::Constant *buildGlobalBlock(CodeGenModule &CGM,
1316                                         const CGBlockInfo &blockInfo,
1317                                         llvm::Constant *blockFn) {
1318   assert(blockInfo.CanBeGlobal);
1319   // Callers should detect this case on their own: calling this function
1320   // generally requires computing layout information, which is a waste of time
1321   // if we've already emitted this block.
1322   assert(!CGM.getAddrOfGlobalBlockIfEmitted(blockInfo.BlockExpression) &&
1323          "Refusing to re-emit a global block.");
1324 
1325   // Generate the constants for the block literal initializer.
1326   ConstantInitBuilder builder(CGM);
1327   auto fields = builder.beginStruct();
1328 
1329   bool IsOpenCL = CGM.getLangOpts().OpenCL;
1330   bool IsWindows = CGM.getTarget().getTriple().isOSWindows();
1331   if (!IsOpenCL) {
1332     // isa
1333     if (IsWindows)
1334       fields.addNullPointer(CGM.Int8PtrPtrTy);
1335     else
1336       fields.add(CGM.getNSConcreteGlobalBlock());
1337 
1338     // __flags
1339     BlockFlags flags = BLOCK_IS_GLOBAL | BLOCK_HAS_SIGNATURE;
1340     if (blockInfo.UsesStret)
1341       flags |= BLOCK_USE_STRET;
1342 
1343     fields.addInt(CGM.IntTy, flags.getBitMask());
1344 
1345     // Reserved
1346     fields.addInt(CGM.IntTy, 0);
1347   } else {
1348     fields.addInt(CGM.IntTy, blockInfo.BlockSize.getQuantity());
1349     fields.addInt(CGM.IntTy, blockInfo.BlockAlign.getQuantity());
1350   }
1351 
1352   // Function
1353   fields.add(blockFn);
1354 
1355   if (!IsOpenCL) {
1356     // Descriptor
1357     fields.add(buildBlockDescriptor(CGM, blockInfo));
1358   } else if (auto *Helper =
1359                  CGM.getTargetCodeGenInfo().getTargetOpenCLBlockHelper()) {
1360     for (auto I : Helper->getCustomFieldValues(CGM, blockInfo)) {
1361       fields.add(I);
1362     }
1363   }
1364 
1365   unsigned AddrSpace = 0;
1366   if (CGM.getContext().getLangOpts().OpenCL)
1367     AddrSpace = CGM.getContext().getTargetAddressSpace(LangAS::opencl_global);
1368 
1369   llvm::GlobalVariable *literal = fields.finishAndCreateGlobal(
1370       "__block_literal_global", blockInfo.BlockAlign,
1371       /*constant*/ !IsWindows, llvm::GlobalVariable::InternalLinkage, AddrSpace);
1372 
1373   literal->addAttribute("objc_arc_inert");
1374 
1375   // Windows does not allow globals to be initialised to point to globals in
1376   // different DLLs.  Any such variables must run code to initialise them.
1377   if (IsWindows) {
1378     auto *Init = llvm::Function::Create(llvm::FunctionType::get(CGM.VoidTy,
1379           {}), llvm::GlobalValue::InternalLinkage, ".block_isa_init",
1380         &CGM.getModule());
1381     llvm::IRBuilder<> b(llvm::BasicBlock::Create(CGM.getLLVMContext(), "entry",
1382           Init));
1383     b.CreateAlignedStore(CGM.getNSConcreteGlobalBlock(),
1384                          b.CreateStructGEP(literal->getValueType(), literal, 0),
1385                          CGM.getPointerAlign().getAsAlign());
1386     b.CreateRetVoid();
1387     // We can't use the normal LLVM global initialisation array, because we
1388     // need to specify that this runs early in library initialisation.
1389     auto *InitVar = new llvm::GlobalVariable(CGM.getModule(), Init->getType(),
1390         /*isConstant*/true, llvm::GlobalValue::InternalLinkage,
1391         Init, ".block_isa_init_ptr");
1392     InitVar->setSection(".CRT$XCLa");
1393     CGM.addUsedGlobal(InitVar);
1394   }
1395 
1396   // Return a constant of the appropriately-casted type.
1397   llvm::Type *RequiredType =
1398     CGM.getTypes().ConvertType(blockInfo.getBlockExpr()->getType());
1399   llvm::Constant *Result =
1400       llvm::ConstantExpr::getPointerCast(literal, RequiredType);
1401   CGM.setAddrOfGlobalBlock(blockInfo.BlockExpression, Result);
1402   if (CGM.getContext().getLangOpts().OpenCL)
1403     CGM.getOpenCLRuntime().recordBlockInfo(
1404         blockInfo.BlockExpression,
1405         cast<llvm::Function>(blockFn->stripPointerCasts()), Result);
1406   return Result;
1407 }
1408 
1409 void CodeGenFunction::setBlockContextParameter(const ImplicitParamDecl *D,
1410                                                unsigned argNum,
1411                                                llvm::Value *arg) {
1412   assert(BlockInfo && "not emitting prologue of block invocation function?!");
1413 
1414   // Allocate a stack slot like for any local variable to guarantee optimal
1415   // debug info at -O0. The mem2reg pass will eliminate it when optimizing.
1416   Address alloc = CreateMemTemp(D->getType(), D->getName() + ".addr");
1417   Builder.CreateStore(arg, alloc);
1418   if (CGDebugInfo *DI = getDebugInfo()) {
1419     if (CGM.getCodeGenOpts().hasReducedDebugInfo()) {
1420       DI->setLocation(D->getLocation());
1421       DI->EmitDeclareOfBlockLiteralArgVariable(
1422           *BlockInfo, D->getName(), argNum,
1423           cast<llvm::AllocaInst>(alloc.getPointer()), Builder);
1424     }
1425   }
1426 
1427   SourceLocation StartLoc = BlockInfo->getBlockExpr()->getBody()->getBeginLoc();
1428   ApplyDebugLocation Scope(*this, StartLoc);
1429 
1430   // Instead of messing around with LocalDeclMap, just set the value
1431   // directly as BlockPointer.
1432   BlockPointer = Builder.CreatePointerCast(
1433       arg,
1434       BlockInfo->StructureType->getPointerTo(
1435           getContext().getLangOpts().OpenCL
1436               ? getContext().getTargetAddressSpace(LangAS::opencl_generic)
1437               : 0),
1438       "block");
1439 }
1440 
1441 Address CodeGenFunction::LoadBlockStruct() {
1442   assert(BlockInfo && "not in a block invocation function!");
1443   assert(BlockPointer && "no block pointer set!");
1444   return Address(BlockPointer, BlockInfo->BlockAlign);
1445 }
1446 
1447 llvm::Function *
1448 CodeGenFunction::GenerateBlockFunction(GlobalDecl GD,
1449                                        const CGBlockInfo &blockInfo,
1450                                        const DeclMapTy &ldm,
1451                                        bool IsLambdaConversionToBlock,
1452                                        bool BuildGlobalBlock) {
1453   const BlockDecl *blockDecl = blockInfo.getBlockDecl();
1454 
1455   CurGD = GD;
1456 
1457   CurEHLocation = blockInfo.getBlockExpr()->getEndLoc();
1458 
1459   BlockInfo = &blockInfo;
1460 
1461   // Arrange for local static and local extern declarations to appear
1462   // to be local to this function as well, in case they're directly
1463   // referenced in a block.
1464   for (DeclMapTy::const_iterator i = ldm.begin(), e = ldm.end(); i != e; ++i) {
1465     const auto *var = dyn_cast<VarDecl>(i->first);
1466     if (var && !var->hasLocalStorage())
1467       setAddrOfLocalVar(var, i->second);
1468   }
1469 
1470   // Begin building the function declaration.
1471 
1472   // Build the argument list.
1473   FunctionArgList args;
1474 
1475   // The first argument is the block pointer.  Just take it as a void*
1476   // and cast it later.
1477   QualType selfTy = getContext().VoidPtrTy;
1478 
1479   // For OpenCL passed block pointer can be private AS local variable or
1480   // global AS program scope variable (for the case with and without captures).
1481   // Generic AS is used therefore to be able to accommodate both private and
1482   // generic AS in one implementation.
1483   if (getLangOpts().OpenCL)
1484     selfTy = getContext().getPointerType(getContext().getAddrSpaceQualType(
1485         getContext().VoidTy, LangAS::opencl_generic));
1486 
1487   IdentifierInfo *II = &CGM.getContext().Idents.get(".block_descriptor");
1488 
1489   ImplicitParamDecl SelfDecl(getContext(), const_cast<BlockDecl *>(blockDecl),
1490                              SourceLocation(), II, selfTy,
1491                              ImplicitParamDecl::ObjCSelf);
1492   args.push_back(&SelfDecl);
1493 
1494   // Now add the rest of the parameters.
1495   args.append(blockDecl->param_begin(), blockDecl->param_end());
1496 
1497   // Create the function declaration.
1498   const FunctionProtoType *fnType = blockInfo.getBlockExpr()->getFunctionType();
1499   const CGFunctionInfo &fnInfo =
1500     CGM.getTypes().arrangeBlockFunctionDeclaration(fnType, args);
1501   if (CGM.ReturnSlotInterferesWithArgs(fnInfo))
1502     blockInfo.UsesStret = true;
1503 
1504   llvm::FunctionType *fnLLVMType = CGM.getTypes().GetFunctionType(fnInfo);
1505 
1506   StringRef name = CGM.getBlockMangledName(GD, blockDecl);
1507   llvm::Function *fn = llvm::Function::Create(
1508       fnLLVMType, llvm::GlobalValue::InternalLinkage, name, &CGM.getModule());
1509   CGM.SetInternalFunctionAttributes(blockDecl, fn, fnInfo);
1510 
1511   if (BuildGlobalBlock) {
1512     auto GenVoidPtrTy = getContext().getLangOpts().OpenCL
1513                             ? CGM.getOpenCLRuntime().getGenericVoidPointerType()
1514                             : VoidPtrTy;
1515     buildGlobalBlock(CGM, blockInfo,
1516                      llvm::ConstantExpr::getPointerCast(fn, GenVoidPtrTy));
1517   }
1518 
1519   // Begin generating the function.
1520   StartFunction(blockDecl, fnType->getReturnType(), fn, fnInfo, args,
1521                 blockDecl->getLocation(),
1522                 blockInfo.getBlockExpr()->getBody()->getBeginLoc());
1523 
1524   // Okay.  Undo some of what StartFunction did.
1525 
1526   // At -O0 we generate an explicit alloca for the BlockPointer, so the RA
1527   // won't delete the dbg.declare intrinsics for captured variables.
1528   llvm::Value *BlockPointerDbgLoc = BlockPointer;
1529   if (CGM.getCodeGenOpts().OptimizationLevel == 0) {
1530     // Allocate a stack slot for it, so we can point the debugger to it
1531     Address Alloca = CreateTempAlloca(BlockPointer->getType(),
1532                                       getPointerAlign(),
1533                                       "block.addr");
1534     // Set the DebugLocation to empty, so the store is recognized as a
1535     // frame setup instruction by llvm::DwarfDebug::beginFunction().
1536     auto NL = ApplyDebugLocation::CreateEmpty(*this);
1537     Builder.CreateStore(BlockPointer, Alloca);
1538     BlockPointerDbgLoc = Alloca.getPointer();
1539   }
1540 
1541   // If we have a C++ 'this' reference, go ahead and force it into
1542   // existence now.
1543   if (blockDecl->capturesCXXThis()) {
1544     Address addr = Builder.CreateStructGEP(
1545         LoadBlockStruct(), blockInfo.CXXThisIndex, "block.captured-this");
1546     CXXThisValue = Builder.CreateLoad(addr, "this");
1547   }
1548 
1549   // Also force all the constant captures.
1550   for (const auto &CI : blockDecl->captures()) {
1551     const VarDecl *variable = CI.getVariable();
1552     const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable);
1553     if (!capture.isConstant()) continue;
1554 
1555     CharUnits align = getContext().getDeclAlign(variable);
1556     Address alloca =
1557       CreateMemTemp(variable->getType(), align, "block.captured-const");
1558 
1559     Builder.CreateStore(capture.getConstant(), alloca);
1560 
1561     setAddrOfLocalVar(variable, alloca);
1562   }
1563 
1564   // Save a spot to insert the debug information for all the DeclRefExprs.
1565   llvm::BasicBlock *entry = Builder.GetInsertBlock();
1566   llvm::BasicBlock::iterator entry_ptr = Builder.GetInsertPoint();
1567   --entry_ptr;
1568 
1569   if (IsLambdaConversionToBlock)
1570     EmitLambdaBlockInvokeBody();
1571   else {
1572     PGO.assignRegionCounters(GlobalDecl(blockDecl), fn);
1573     incrementProfileCounter(blockDecl->getBody());
1574     EmitStmt(blockDecl->getBody());
1575   }
1576 
1577   // Remember where we were...
1578   llvm::BasicBlock *resume = Builder.GetInsertBlock();
1579 
1580   // Go back to the entry.
1581   ++entry_ptr;
1582   Builder.SetInsertPoint(entry, entry_ptr);
1583 
1584   // Emit debug information for all the DeclRefExprs.
1585   // FIXME: also for 'this'
1586   if (CGDebugInfo *DI = getDebugInfo()) {
1587     for (const auto &CI : blockDecl->captures()) {
1588       const VarDecl *variable = CI.getVariable();
1589       DI->EmitLocation(Builder, variable->getLocation());
1590 
1591       if (CGM.getCodeGenOpts().hasReducedDebugInfo()) {
1592         const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable);
1593         if (capture.isConstant()) {
1594           auto addr = LocalDeclMap.find(variable)->second;
1595           (void)DI->EmitDeclareOfAutoVariable(variable, addr.getPointer(),
1596                                               Builder);
1597           continue;
1598         }
1599 
1600         DI->EmitDeclareOfBlockDeclRefVariable(
1601             variable, BlockPointerDbgLoc, Builder, blockInfo,
1602             entry_ptr == entry->end() ? nullptr : &*entry_ptr);
1603       }
1604     }
1605     // Recover location if it was changed in the above loop.
1606     DI->EmitLocation(Builder,
1607                      cast<CompoundStmt>(blockDecl->getBody())->getRBracLoc());
1608   }
1609 
1610   // And resume where we left off.
1611   if (resume == nullptr)
1612     Builder.ClearInsertionPoint();
1613   else
1614     Builder.SetInsertPoint(resume);
1615 
1616   FinishFunction(cast<CompoundStmt>(blockDecl->getBody())->getRBracLoc());
1617 
1618   return fn;
1619 }
1620 
1621 static std::pair<BlockCaptureEntityKind, BlockFieldFlags>
1622 computeCopyInfoForBlockCapture(const BlockDecl::Capture &CI, QualType T,
1623                                const LangOptions &LangOpts) {
1624   if (CI.getCopyExpr()) {
1625     assert(!CI.isByRef());
1626     // don't bother computing flags
1627     return std::make_pair(BlockCaptureEntityKind::CXXRecord, BlockFieldFlags());
1628   }
1629   BlockFieldFlags Flags;
1630   if (CI.isEscapingByref()) {
1631     Flags = BLOCK_FIELD_IS_BYREF;
1632     if (T.isObjCGCWeak())
1633       Flags |= BLOCK_FIELD_IS_WEAK;
1634     return std::make_pair(BlockCaptureEntityKind::BlockObject, Flags);
1635   }
1636 
1637   Flags = BLOCK_FIELD_IS_OBJECT;
1638   bool isBlockPointer = T->isBlockPointerType();
1639   if (isBlockPointer)
1640     Flags = BLOCK_FIELD_IS_BLOCK;
1641 
1642   switch (T.isNonTrivialToPrimitiveCopy()) {
1643   case QualType::PCK_Struct:
1644     return std::make_pair(BlockCaptureEntityKind::NonTrivialCStruct,
1645                           BlockFieldFlags());
1646   case QualType::PCK_ARCWeak:
1647     // We need to register __weak direct captures with the runtime.
1648     return std::make_pair(BlockCaptureEntityKind::ARCWeak, Flags);
1649   case QualType::PCK_ARCStrong:
1650     // We need to retain the copied value for __strong direct captures.
1651     // If it's a block pointer, we have to copy the block and assign that to
1652     // the destination pointer, so we might as well use _Block_object_assign.
1653     // Otherwise we can avoid that.
1654     return std::make_pair(!isBlockPointer ? BlockCaptureEntityKind::ARCStrong
1655                                           : BlockCaptureEntityKind::BlockObject,
1656                           Flags);
1657   case QualType::PCK_Trivial:
1658   case QualType::PCK_VolatileTrivial: {
1659     if (!T->isObjCRetainableType())
1660       // For all other types, the memcpy is fine.
1661       return std::make_pair(BlockCaptureEntityKind::None, BlockFieldFlags());
1662 
1663     // Honor the inert __unsafe_unretained qualifier, which doesn't actually
1664     // make it into the type system.
1665     if (T->isObjCInertUnsafeUnretainedType())
1666       return std::make_pair(BlockCaptureEntityKind::None, BlockFieldFlags());
1667 
1668     // Special rules for ARC captures:
1669     Qualifiers QS = T.getQualifiers();
1670 
1671     // Non-ARC captures of retainable pointers are strong and
1672     // therefore require a call to _Block_object_assign.
1673     if (!QS.getObjCLifetime() && !LangOpts.ObjCAutoRefCount)
1674       return std::make_pair(BlockCaptureEntityKind::BlockObject, Flags);
1675 
1676     // Otherwise the memcpy is fine.
1677     return std::make_pair(BlockCaptureEntityKind::None, BlockFieldFlags());
1678   }
1679   }
1680   llvm_unreachable("after exhaustive PrimitiveCopyKind switch");
1681 }
1682 
1683 namespace {
1684 /// Release a __block variable.
1685 struct CallBlockRelease final : EHScopeStack::Cleanup {
1686   Address Addr;
1687   BlockFieldFlags FieldFlags;
1688   bool LoadBlockVarAddr, CanThrow;
1689 
1690   CallBlockRelease(Address Addr, BlockFieldFlags Flags, bool LoadValue,
1691                    bool CT)
1692       : Addr(Addr), FieldFlags(Flags), LoadBlockVarAddr(LoadValue),
1693         CanThrow(CT) {}
1694 
1695   void Emit(CodeGenFunction &CGF, Flags flags) override {
1696     llvm::Value *BlockVarAddr;
1697     if (LoadBlockVarAddr) {
1698       BlockVarAddr = CGF.Builder.CreateLoad(Addr);
1699       BlockVarAddr = CGF.Builder.CreateBitCast(BlockVarAddr, CGF.VoidPtrTy);
1700     } else {
1701       BlockVarAddr = Addr.getPointer();
1702     }
1703 
1704     CGF.BuildBlockRelease(BlockVarAddr, FieldFlags, CanThrow);
1705   }
1706 };
1707 } // end anonymous namespace
1708 
1709 /// Check if \p T is a C++ class that has a destructor that can throw.
1710 bool CodeGenFunction::cxxDestructorCanThrow(QualType T) {
1711   if (const auto *RD = T->getAsCXXRecordDecl())
1712     if (const CXXDestructorDecl *DD = RD->getDestructor())
1713       return DD->getType()->castAs<FunctionProtoType>()->canThrow();
1714   return false;
1715 }
1716 
1717 // Return a string that has the information about a capture.
1718 static std::string getBlockCaptureStr(const CGBlockInfo::Capture &Cap,
1719                                       CaptureStrKind StrKind,
1720                                       CharUnits BlockAlignment,
1721                                       CodeGenModule &CGM) {
1722   std::string Str;
1723   ASTContext &Ctx = CGM.getContext();
1724   const BlockDecl::Capture &CI = *Cap.Cap;
1725   QualType CaptureTy = CI.getVariable()->getType();
1726 
1727   BlockCaptureEntityKind Kind;
1728   BlockFieldFlags Flags;
1729 
1730   // CaptureStrKind::Merged should be passed only when the operations and the
1731   // flags are the same for copy and dispose.
1732   assert((StrKind != CaptureStrKind::Merged ||
1733           (Cap.CopyKind == Cap.DisposeKind &&
1734            Cap.CopyFlags == Cap.DisposeFlags)) &&
1735          "different operations and flags");
1736 
1737   if (StrKind == CaptureStrKind::DisposeHelper) {
1738     Kind = Cap.DisposeKind;
1739     Flags = Cap.DisposeFlags;
1740   } else {
1741     Kind = Cap.CopyKind;
1742     Flags = Cap.CopyFlags;
1743   }
1744 
1745   switch (Kind) {
1746   case BlockCaptureEntityKind::CXXRecord: {
1747     Str += "c";
1748     SmallString<256> TyStr;
1749     llvm::raw_svector_ostream Out(TyStr);
1750     CGM.getCXXABI().getMangleContext().mangleTypeName(CaptureTy, Out);
1751     Str += llvm::to_string(TyStr.size()) + TyStr.c_str();
1752     break;
1753   }
1754   case BlockCaptureEntityKind::ARCWeak:
1755     Str += "w";
1756     break;
1757   case BlockCaptureEntityKind::ARCStrong:
1758     Str += "s";
1759     break;
1760   case BlockCaptureEntityKind::BlockObject: {
1761     const VarDecl *Var = CI.getVariable();
1762     unsigned F = Flags.getBitMask();
1763     if (F & BLOCK_FIELD_IS_BYREF) {
1764       Str += "r";
1765       if (F & BLOCK_FIELD_IS_WEAK)
1766         Str += "w";
1767       else {
1768         // If CaptureStrKind::Merged is passed, check both the copy expression
1769         // and the destructor.
1770         if (StrKind != CaptureStrKind::DisposeHelper) {
1771           if (Ctx.getBlockVarCopyInit(Var).canThrow())
1772             Str += "c";
1773         }
1774         if (StrKind != CaptureStrKind::CopyHelper) {
1775           if (CodeGenFunction::cxxDestructorCanThrow(CaptureTy))
1776             Str += "d";
1777         }
1778       }
1779     } else {
1780       assert((F & BLOCK_FIELD_IS_OBJECT) && "unexpected flag value");
1781       if (F == BLOCK_FIELD_IS_BLOCK)
1782         Str += "b";
1783       else
1784         Str += "o";
1785     }
1786     break;
1787   }
1788   case BlockCaptureEntityKind::NonTrivialCStruct: {
1789     bool IsVolatile = CaptureTy.isVolatileQualified();
1790     CharUnits Alignment = BlockAlignment.alignmentAtOffset(Cap.getOffset());
1791 
1792     Str += "n";
1793     std::string FuncStr;
1794     if (StrKind == CaptureStrKind::DisposeHelper)
1795       FuncStr = CodeGenFunction::getNonTrivialDestructorStr(
1796           CaptureTy, Alignment, IsVolatile, Ctx);
1797     else
1798       // If CaptureStrKind::Merged is passed, use the copy constructor string.
1799       // It has all the information that the destructor string has.
1800       FuncStr = CodeGenFunction::getNonTrivialCopyConstructorStr(
1801           CaptureTy, Alignment, IsVolatile, Ctx);
1802     // The underscore is necessary here because non-trivial copy constructor
1803     // and destructor strings can start with a number.
1804     Str += llvm::to_string(FuncStr.size()) + "_" + FuncStr;
1805     break;
1806   }
1807   case BlockCaptureEntityKind::None:
1808     break;
1809   }
1810 
1811   return Str;
1812 }
1813 
1814 static std::string getCopyDestroyHelperFuncName(
1815     const SmallVectorImpl<CGBlockInfo::Capture> &Captures,
1816     CharUnits BlockAlignment, CaptureStrKind StrKind, CodeGenModule &CGM) {
1817   assert((StrKind == CaptureStrKind::CopyHelper ||
1818           StrKind == CaptureStrKind::DisposeHelper) &&
1819          "unexpected CaptureStrKind");
1820   std::string Name = StrKind == CaptureStrKind::CopyHelper
1821                          ? "__copy_helper_block_"
1822                          : "__destroy_helper_block_";
1823   if (CGM.getLangOpts().Exceptions)
1824     Name += "e";
1825   if (CGM.getCodeGenOpts().ObjCAutoRefCountExceptions)
1826     Name += "a";
1827   Name += llvm::to_string(BlockAlignment.getQuantity()) + "_";
1828 
1829   for (auto &Cap : Captures) {
1830     if (Cap.isConstantOrTrivial())
1831       continue;
1832     Name += llvm::to_string(Cap.getOffset().getQuantity());
1833     Name += getBlockCaptureStr(Cap, StrKind, BlockAlignment, CGM);
1834   }
1835 
1836   return Name;
1837 }
1838 
1839 static void pushCaptureCleanup(BlockCaptureEntityKind CaptureKind,
1840                                Address Field, QualType CaptureType,
1841                                BlockFieldFlags Flags, bool ForCopyHelper,
1842                                VarDecl *Var, CodeGenFunction &CGF) {
1843   bool EHOnly = ForCopyHelper;
1844 
1845   switch (CaptureKind) {
1846   case BlockCaptureEntityKind::CXXRecord:
1847   case BlockCaptureEntityKind::ARCWeak:
1848   case BlockCaptureEntityKind::NonTrivialCStruct:
1849   case BlockCaptureEntityKind::ARCStrong: {
1850     if (CaptureType.isDestructedType() &&
1851         (!EHOnly || CGF.needsEHCleanup(CaptureType.isDestructedType()))) {
1852       CodeGenFunction::Destroyer *Destroyer =
1853           CaptureKind == BlockCaptureEntityKind::ARCStrong
1854               ? CodeGenFunction::destroyARCStrongImprecise
1855               : CGF.getDestroyer(CaptureType.isDestructedType());
1856       CleanupKind Kind =
1857           EHOnly ? EHCleanup
1858                  : CGF.getCleanupKind(CaptureType.isDestructedType());
1859       CGF.pushDestroy(Kind, Field, CaptureType, Destroyer, Kind & EHCleanup);
1860     }
1861     break;
1862   }
1863   case BlockCaptureEntityKind::BlockObject: {
1864     if (!EHOnly || CGF.getLangOpts().Exceptions) {
1865       CleanupKind Kind = EHOnly ? EHCleanup : NormalAndEHCleanup;
1866       // Calls to _Block_object_dispose along the EH path in the copy helper
1867       // function don't throw as newly-copied __block variables always have a
1868       // reference count of 2.
1869       bool CanThrow =
1870           !ForCopyHelper && CGF.cxxDestructorCanThrow(CaptureType);
1871       CGF.enterByrefCleanup(Kind, Field, Flags, /*LoadBlockVarAddr*/ true,
1872                             CanThrow);
1873     }
1874     break;
1875   }
1876   case BlockCaptureEntityKind::None:
1877     break;
1878   }
1879 }
1880 
1881 static void setBlockHelperAttributesVisibility(bool CapturesNonExternalType,
1882                                                llvm::Function *Fn,
1883                                                const CGFunctionInfo &FI,
1884                                                CodeGenModule &CGM) {
1885   if (CapturesNonExternalType) {
1886     CGM.SetInternalFunctionAttributes(GlobalDecl(), Fn, FI);
1887   } else {
1888     Fn->setVisibility(llvm::GlobalValue::HiddenVisibility);
1889     Fn->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
1890     CGM.SetLLVMFunctionAttributes(GlobalDecl(), FI, Fn, /*IsThunk=*/false);
1891     CGM.SetLLVMFunctionAttributesForDefinition(nullptr, Fn);
1892   }
1893 }
1894 /// Generate the copy-helper function for a block closure object:
1895 ///   static void block_copy_helper(block_t *dst, block_t *src);
1896 /// The runtime will have previously initialized 'dst' by doing a
1897 /// bit-copy of 'src'.
1898 ///
1899 /// Note that this copies an entire block closure object to the heap;
1900 /// it should not be confused with a 'byref copy helper', which moves
1901 /// the contents of an individual __block variable to the heap.
1902 llvm::Constant *
1903 CodeGenFunction::GenerateCopyHelperFunction(const CGBlockInfo &blockInfo) {
1904   std::string FuncName = getCopyDestroyHelperFuncName(
1905       blockInfo.SortedCaptures, blockInfo.BlockAlign,
1906       CaptureStrKind::CopyHelper, CGM);
1907 
1908   if (llvm::GlobalValue *Func = CGM.getModule().getNamedValue(FuncName))
1909     return llvm::ConstantExpr::getBitCast(Func, VoidPtrTy);
1910 
1911   ASTContext &C = getContext();
1912 
1913   QualType ReturnTy = C.VoidTy;
1914 
1915   FunctionArgList args;
1916   ImplicitParamDecl DstDecl(C, C.VoidPtrTy, ImplicitParamDecl::Other);
1917   args.push_back(&DstDecl);
1918   ImplicitParamDecl SrcDecl(C, C.VoidPtrTy, ImplicitParamDecl::Other);
1919   args.push_back(&SrcDecl);
1920 
1921   const CGFunctionInfo &FI =
1922       CGM.getTypes().arrangeBuiltinFunctionDeclaration(ReturnTy, args);
1923 
1924   // FIXME: it would be nice if these were mergeable with things with
1925   // identical semantics.
1926   llvm::FunctionType *LTy = CGM.getTypes().GetFunctionType(FI);
1927 
1928   llvm::Function *Fn =
1929     llvm::Function::Create(LTy, llvm::GlobalValue::LinkOnceODRLinkage,
1930                            FuncName, &CGM.getModule());
1931   if (CGM.supportsCOMDAT())
1932     Fn->setComdat(CGM.getModule().getOrInsertComdat(FuncName));
1933 
1934   SmallVector<QualType, 2> ArgTys;
1935   ArgTys.push_back(C.VoidPtrTy);
1936   ArgTys.push_back(C.VoidPtrTy);
1937 
1938   setBlockHelperAttributesVisibility(blockInfo.CapturesNonExternalType, Fn, FI,
1939                                      CGM);
1940   StartFunction(GlobalDecl(), ReturnTy, Fn, FI, args);
1941   auto AL = ApplyDebugLocation::CreateArtificial(*this);
1942 
1943   llvm::Type *structPtrTy = blockInfo.StructureType->getPointerTo();
1944 
1945   Address src = GetAddrOfLocalVar(&SrcDecl);
1946   src = Address(Builder.CreateLoad(src), blockInfo.BlockAlign);
1947   src = Builder.CreateBitCast(src, structPtrTy, "block.source");
1948 
1949   Address dst = GetAddrOfLocalVar(&DstDecl);
1950   dst = Address(Builder.CreateLoad(dst), blockInfo.BlockAlign);
1951   dst = Builder.CreateBitCast(dst, structPtrTy, "block.dest");
1952 
1953   for (auto &capture : blockInfo.SortedCaptures) {
1954     if (capture.isConstantOrTrivial())
1955       continue;
1956 
1957     const BlockDecl::Capture &CI = *capture.Cap;
1958     QualType captureType = CI.getVariable()->getType();
1959     BlockFieldFlags flags = capture.CopyFlags;
1960 
1961     unsigned index = capture.getIndex();
1962     Address srcField = Builder.CreateStructGEP(src, index);
1963     Address dstField = Builder.CreateStructGEP(dst, index);
1964 
1965     switch (capture.CopyKind) {
1966     case BlockCaptureEntityKind::CXXRecord:
1967       // If there's an explicit copy expression, we do that.
1968       assert(CI.getCopyExpr() && "copy expression for variable is missing");
1969       EmitSynthesizedCXXCopyCtor(dstField, srcField, CI.getCopyExpr());
1970       break;
1971     case BlockCaptureEntityKind::ARCWeak:
1972       EmitARCCopyWeak(dstField, srcField);
1973       break;
1974     case BlockCaptureEntityKind::NonTrivialCStruct: {
1975       // If this is a C struct that requires non-trivial copy construction,
1976       // emit a call to its copy constructor.
1977       QualType varType = CI.getVariable()->getType();
1978       callCStructCopyConstructor(MakeAddrLValue(dstField, varType),
1979                                  MakeAddrLValue(srcField, varType));
1980       break;
1981     }
1982     case BlockCaptureEntityKind::ARCStrong: {
1983       llvm::Value *srcValue = Builder.CreateLoad(srcField, "blockcopy.src");
1984       // At -O0, store null into the destination field (so that the
1985       // storeStrong doesn't over-release) and then call storeStrong.
1986       // This is a workaround to not having an initStrong call.
1987       if (CGM.getCodeGenOpts().OptimizationLevel == 0) {
1988         auto *ty = cast<llvm::PointerType>(srcValue->getType());
1989         llvm::Value *null = llvm::ConstantPointerNull::get(ty);
1990         Builder.CreateStore(null, dstField);
1991         EmitARCStoreStrongCall(dstField, srcValue, true);
1992 
1993       // With optimization enabled, take advantage of the fact that
1994       // the blocks runtime guarantees a memcpy of the block data, and
1995       // just emit a retain of the src field.
1996       } else {
1997         EmitARCRetainNonBlock(srcValue);
1998 
1999         // Unless EH cleanup is required, we don't need this anymore, so kill
2000         // it. It's not quite worth the annoyance to avoid creating it in the
2001         // first place.
2002         if (!needsEHCleanup(captureType.isDestructedType()))
2003           cast<llvm::Instruction>(dstField.getPointer())->eraseFromParent();
2004       }
2005       break;
2006     }
2007     case BlockCaptureEntityKind::BlockObject: {
2008       llvm::Value *srcValue = Builder.CreateLoad(srcField, "blockcopy.src");
2009       srcValue = Builder.CreateBitCast(srcValue, VoidPtrTy);
2010       llvm::Value *dstAddr =
2011           Builder.CreateBitCast(dstField.getPointer(), VoidPtrTy);
2012       llvm::Value *args[] = {
2013         dstAddr, srcValue, llvm::ConstantInt::get(Int32Ty, flags.getBitMask())
2014       };
2015 
2016       if (CI.isByRef() && C.getBlockVarCopyInit(CI.getVariable()).canThrow())
2017         EmitRuntimeCallOrInvoke(CGM.getBlockObjectAssign(), args);
2018       else
2019         EmitNounwindRuntimeCall(CGM.getBlockObjectAssign(), args);
2020       break;
2021     }
2022     case BlockCaptureEntityKind::None:
2023       continue;
2024     }
2025 
2026     // Ensure that we destroy the copied object if an exception is thrown later
2027     // in the helper function.
2028     pushCaptureCleanup(capture.CopyKind, dstField, captureType, flags,
2029                        /*ForCopyHelper*/ true, CI.getVariable(), *this);
2030   }
2031 
2032   FinishFunction();
2033 
2034   return llvm::ConstantExpr::getBitCast(Fn, VoidPtrTy);
2035 }
2036 
2037 static BlockFieldFlags
2038 getBlockFieldFlagsForObjCObjectPointer(const BlockDecl::Capture &CI,
2039                                        QualType T) {
2040   BlockFieldFlags Flags = BLOCK_FIELD_IS_OBJECT;
2041   if (T->isBlockPointerType())
2042     Flags = BLOCK_FIELD_IS_BLOCK;
2043   return Flags;
2044 }
2045 
2046 static std::pair<BlockCaptureEntityKind, BlockFieldFlags>
2047 computeDestroyInfoForBlockCapture(const BlockDecl::Capture &CI, QualType T,
2048                                   const LangOptions &LangOpts) {
2049   if (CI.isEscapingByref()) {
2050     BlockFieldFlags Flags = BLOCK_FIELD_IS_BYREF;
2051     if (T.isObjCGCWeak())
2052       Flags |= BLOCK_FIELD_IS_WEAK;
2053     return std::make_pair(BlockCaptureEntityKind::BlockObject, Flags);
2054   }
2055 
2056   switch (T.isDestructedType()) {
2057   case QualType::DK_cxx_destructor:
2058     return std::make_pair(BlockCaptureEntityKind::CXXRecord, BlockFieldFlags());
2059   case QualType::DK_objc_strong_lifetime:
2060     // Use objc_storeStrong for __strong direct captures; the
2061     // dynamic tools really like it when we do this.
2062     return std::make_pair(BlockCaptureEntityKind::ARCStrong,
2063                           getBlockFieldFlagsForObjCObjectPointer(CI, T));
2064   case QualType::DK_objc_weak_lifetime:
2065     // Support __weak direct captures.
2066     return std::make_pair(BlockCaptureEntityKind::ARCWeak,
2067                           getBlockFieldFlagsForObjCObjectPointer(CI, T));
2068   case QualType::DK_nontrivial_c_struct:
2069     return std::make_pair(BlockCaptureEntityKind::NonTrivialCStruct,
2070                           BlockFieldFlags());
2071   case QualType::DK_none: {
2072     // Non-ARC captures are strong, and we need to use _Block_object_dispose.
2073     // But honor the inert __unsafe_unretained qualifier, which doesn't actually
2074     // make it into the type system.
2075     if (T->isObjCRetainableType() && !T.getQualifiers().hasObjCLifetime() &&
2076         !LangOpts.ObjCAutoRefCount && !T->isObjCInertUnsafeUnretainedType())
2077       return std::make_pair(BlockCaptureEntityKind::BlockObject,
2078                             getBlockFieldFlagsForObjCObjectPointer(CI, T));
2079     // Otherwise, we have nothing to do.
2080     return std::make_pair(BlockCaptureEntityKind::None, BlockFieldFlags());
2081   }
2082   }
2083   llvm_unreachable("after exhaustive DestructionKind switch");
2084 }
2085 
2086 /// Generate the destroy-helper function for a block closure object:
2087 ///   static void block_destroy_helper(block_t *theBlock);
2088 ///
2089 /// Note that this destroys a heap-allocated block closure object;
2090 /// it should not be confused with a 'byref destroy helper', which
2091 /// destroys the heap-allocated contents of an individual __block
2092 /// variable.
2093 llvm::Constant *
2094 CodeGenFunction::GenerateDestroyHelperFunction(const CGBlockInfo &blockInfo) {
2095   std::string FuncName = getCopyDestroyHelperFuncName(
2096       blockInfo.SortedCaptures, blockInfo.BlockAlign,
2097       CaptureStrKind::DisposeHelper, CGM);
2098 
2099   if (llvm::GlobalValue *Func = CGM.getModule().getNamedValue(FuncName))
2100     return llvm::ConstantExpr::getBitCast(Func, VoidPtrTy);
2101 
2102   ASTContext &C = getContext();
2103 
2104   QualType ReturnTy = C.VoidTy;
2105 
2106   FunctionArgList args;
2107   ImplicitParamDecl SrcDecl(C, C.VoidPtrTy, ImplicitParamDecl::Other);
2108   args.push_back(&SrcDecl);
2109 
2110   const CGFunctionInfo &FI =
2111       CGM.getTypes().arrangeBuiltinFunctionDeclaration(ReturnTy, args);
2112 
2113   // FIXME: We'd like to put these into a mergable by content, with
2114   // internal linkage.
2115   llvm::FunctionType *LTy = CGM.getTypes().GetFunctionType(FI);
2116 
2117   llvm::Function *Fn =
2118     llvm::Function::Create(LTy, llvm::GlobalValue::LinkOnceODRLinkage,
2119                            FuncName, &CGM.getModule());
2120   if (CGM.supportsCOMDAT())
2121     Fn->setComdat(CGM.getModule().getOrInsertComdat(FuncName));
2122 
2123   SmallVector<QualType, 1> ArgTys;
2124   ArgTys.push_back(C.VoidPtrTy);
2125 
2126   setBlockHelperAttributesVisibility(blockInfo.CapturesNonExternalType, Fn, FI,
2127                                      CGM);
2128   StartFunction(GlobalDecl(), ReturnTy, Fn, FI, args);
2129   markAsIgnoreThreadCheckingAtRuntime(Fn);
2130 
2131   auto AL = ApplyDebugLocation::CreateArtificial(*this);
2132 
2133   llvm::Type *structPtrTy = blockInfo.StructureType->getPointerTo();
2134 
2135   Address src = GetAddrOfLocalVar(&SrcDecl);
2136   src = Address(Builder.CreateLoad(src), blockInfo.BlockAlign);
2137   src = Builder.CreateBitCast(src, structPtrTy, "block");
2138 
2139   CodeGenFunction::RunCleanupsScope cleanups(*this);
2140 
2141   for (auto &capture : blockInfo.SortedCaptures) {
2142     if (capture.isConstantOrTrivial())
2143       continue;
2144 
2145     const BlockDecl::Capture &CI = *capture.Cap;
2146     BlockFieldFlags flags = capture.DisposeFlags;
2147 
2148     Address srcField = Builder.CreateStructGEP(src, capture.getIndex());
2149 
2150     pushCaptureCleanup(capture.DisposeKind, srcField,
2151                        CI.getVariable()->getType(), flags,
2152                        /*ForCopyHelper*/ false, CI.getVariable(), *this);
2153   }
2154 
2155   cleanups.ForceCleanup();
2156 
2157   FinishFunction();
2158 
2159   return llvm::ConstantExpr::getBitCast(Fn, VoidPtrTy);
2160 }
2161 
2162 namespace {
2163 
2164 /// Emits the copy/dispose helper functions for a __block object of id type.
2165 class ObjectByrefHelpers final : public BlockByrefHelpers {
2166   BlockFieldFlags Flags;
2167 
2168 public:
2169   ObjectByrefHelpers(CharUnits alignment, BlockFieldFlags flags)
2170     : BlockByrefHelpers(alignment), Flags(flags) {}
2171 
2172   void emitCopy(CodeGenFunction &CGF, Address destField,
2173                 Address srcField) override {
2174     destField = CGF.Builder.CreateBitCast(destField, CGF.VoidPtrTy);
2175 
2176     srcField = CGF.Builder.CreateBitCast(srcField, CGF.VoidPtrPtrTy);
2177     llvm::Value *srcValue = CGF.Builder.CreateLoad(srcField);
2178 
2179     unsigned flags = (Flags | BLOCK_BYREF_CALLER).getBitMask();
2180 
2181     llvm::Value *flagsVal = llvm::ConstantInt::get(CGF.Int32Ty, flags);
2182     llvm::FunctionCallee fn = CGF.CGM.getBlockObjectAssign();
2183 
2184     llvm::Value *args[] = { destField.getPointer(), srcValue, flagsVal };
2185     CGF.EmitNounwindRuntimeCall(fn, args);
2186   }
2187 
2188   void emitDispose(CodeGenFunction &CGF, Address field) override {
2189     field = CGF.Builder.CreateBitCast(field, CGF.Int8PtrTy->getPointerTo(0));
2190     llvm::Value *value = CGF.Builder.CreateLoad(field);
2191 
2192     CGF.BuildBlockRelease(value, Flags | BLOCK_BYREF_CALLER, false);
2193   }
2194 
2195   void profileImpl(llvm::FoldingSetNodeID &id) const override {
2196     id.AddInteger(Flags.getBitMask());
2197   }
2198 };
2199 
2200 /// Emits the copy/dispose helpers for an ARC __block __weak variable.
2201 class ARCWeakByrefHelpers final : public BlockByrefHelpers {
2202 public:
2203   ARCWeakByrefHelpers(CharUnits alignment) : BlockByrefHelpers(alignment) {}
2204 
2205   void emitCopy(CodeGenFunction &CGF, Address destField,
2206                 Address srcField) override {
2207     CGF.EmitARCMoveWeak(destField, srcField);
2208   }
2209 
2210   void emitDispose(CodeGenFunction &CGF, Address field) override {
2211     CGF.EmitARCDestroyWeak(field);
2212   }
2213 
2214   void profileImpl(llvm::FoldingSetNodeID &id) const override {
2215     // 0 is distinguishable from all pointers and byref flags
2216     id.AddInteger(0);
2217   }
2218 };
2219 
2220 /// Emits the copy/dispose helpers for an ARC __block __strong variable
2221 /// that's not of block-pointer type.
2222 class ARCStrongByrefHelpers final : public BlockByrefHelpers {
2223 public:
2224   ARCStrongByrefHelpers(CharUnits alignment) : BlockByrefHelpers(alignment) {}
2225 
2226   void emitCopy(CodeGenFunction &CGF, Address destField,
2227                 Address srcField) override {
2228     // Do a "move" by copying the value and then zeroing out the old
2229     // variable.
2230 
2231     llvm::Value *value = CGF.Builder.CreateLoad(srcField);
2232 
2233     llvm::Value *null =
2234       llvm::ConstantPointerNull::get(cast<llvm::PointerType>(value->getType()));
2235 
2236     if (CGF.CGM.getCodeGenOpts().OptimizationLevel == 0) {
2237       CGF.Builder.CreateStore(null, destField);
2238       CGF.EmitARCStoreStrongCall(destField, value, /*ignored*/ true);
2239       CGF.EmitARCStoreStrongCall(srcField, null, /*ignored*/ true);
2240       return;
2241     }
2242     CGF.Builder.CreateStore(value, destField);
2243     CGF.Builder.CreateStore(null, srcField);
2244   }
2245 
2246   void emitDispose(CodeGenFunction &CGF, Address field) override {
2247     CGF.EmitARCDestroyStrong(field, ARCImpreciseLifetime);
2248   }
2249 
2250   void profileImpl(llvm::FoldingSetNodeID &id) const override {
2251     // 1 is distinguishable from all pointers and byref flags
2252     id.AddInteger(1);
2253   }
2254 };
2255 
2256 /// Emits the copy/dispose helpers for an ARC __block __strong
2257 /// variable that's of block-pointer type.
2258 class ARCStrongBlockByrefHelpers final : public BlockByrefHelpers {
2259 public:
2260   ARCStrongBlockByrefHelpers(CharUnits alignment)
2261     : BlockByrefHelpers(alignment) {}
2262 
2263   void emitCopy(CodeGenFunction &CGF, Address destField,
2264                 Address srcField) override {
2265     // Do the copy with objc_retainBlock; that's all that
2266     // _Block_object_assign would do anyway, and we'd have to pass the
2267     // right arguments to make sure it doesn't get no-op'ed.
2268     llvm::Value *oldValue = CGF.Builder.CreateLoad(srcField);
2269     llvm::Value *copy = CGF.EmitARCRetainBlock(oldValue, /*mandatory*/ true);
2270     CGF.Builder.CreateStore(copy, destField);
2271   }
2272 
2273   void emitDispose(CodeGenFunction &CGF, Address field) override {
2274     CGF.EmitARCDestroyStrong(field, ARCImpreciseLifetime);
2275   }
2276 
2277   void profileImpl(llvm::FoldingSetNodeID &id) const override {
2278     // 2 is distinguishable from all pointers and byref flags
2279     id.AddInteger(2);
2280   }
2281 };
2282 
2283 /// Emits the copy/dispose helpers for a __block variable with a
2284 /// nontrivial copy constructor or destructor.
2285 class CXXByrefHelpers final : public BlockByrefHelpers {
2286   QualType VarType;
2287   const Expr *CopyExpr;
2288 
2289 public:
2290   CXXByrefHelpers(CharUnits alignment, QualType type,
2291                   const Expr *copyExpr)
2292     : BlockByrefHelpers(alignment), VarType(type), CopyExpr(copyExpr) {}
2293 
2294   bool needsCopy() const override { return CopyExpr != nullptr; }
2295   void emitCopy(CodeGenFunction &CGF, Address destField,
2296                 Address srcField) override {
2297     if (!CopyExpr) return;
2298     CGF.EmitSynthesizedCXXCopyCtor(destField, srcField, CopyExpr);
2299   }
2300 
2301   void emitDispose(CodeGenFunction &CGF, Address field) override {
2302     EHScopeStack::stable_iterator cleanupDepth = CGF.EHStack.stable_begin();
2303     CGF.PushDestructorCleanup(VarType, field);
2304     CGF.PopCleanupBlocks(cleanupDepth);
2305   }
2306 
2307   void profileImpl(llvm::FoldingSetNodeID &id) const override {
2308     id.AddPointer(VarType.getCanonicalType().getAsOpaquePtr());
2309   }
2310 };
2311 
2312 /// Emits the copy/dispose helpers for a __block variable that is a non-trivial
2313 /// C struct.
2314 class NonTrivialCStructByrefHelpers final : public BlockByrefHelpers {
2315   QualType VarType;
2316 
2317 public:
2318   NonTrivialCStructByrefHelpers(CharUnits alignment, QualType type)
2319     : BlockByrefHelpers(alignment), VarType(type) {}
2320 
2321   void emitCopy(CodeGenFunction &CGF, Address destField,
2322                 Address srcField) override {
2323     CGF.callCStructMoveConstructor(CGF.MakeAddrLValue(destField, VarType),
2324                                    CGF.MakeAddrLValue(srcField, VarType));
2325   }
2326 
2327   bool needsDispose() const override {
2328     return VarType.isDestructedType();
2329   }
2330 
2331   void emitDispose(CodeGenFunction &CGF, Address field) override {
2332     EHScopeStack::stable_iterator cleanupDepth = CGF.EHStack.stable_begin();
2333     CGF.pushDestroy(VarType.isDestructedType(), field, VarType);
2334     CGF.PopCleanupBlocks(cleanupDepth);
2335   }
2336 
2337   void profileImpl(llvm::FoldingSetNodeID &id) const override {
2338     id.AddPointer(VarType.getCanonicalType().getAsOpaquePtr());
2339   }
2340 };
2341 } // end anonymous namespace
2342 
2343 static llvm::Constant *
2344 generateByrefCopyHelper(CodeGenFunction &CGF, const BlockByrefInfo &byrefInfo,
2345                         BlockByrefHelpers &generator) {
2346   ASTContext &Context = CGF.getContext();
2347 
2348   QualType ReturnTy = Context.VoidTy;
2349 
2350   FunctionArgList args;
2351   ImplicitParamDecl Dst(Context, Context.VoidPtrTy, ImplicitParamDecl::Other);
2352   args.push_back(&Dst);
2353 
2354   ImplicitParamDecl Src(Context, Context.VoidPtrTy, ImplicitParamDecl::Other);
2355   args.push_back(&Src);
2356 
2357   const CGFunctionInfo &FI =
2358       CGF.CGM.getTypes().arrangeBuiltinFunctionDeclaration(ReturnTy, args);
2359 
2360   llvm::FunctionType *LTy = CGF.CGM.getTypes().GetFunctionType(FI);
2361 
2362   // FIXME: We'd like to put these into a mergable by content, with
2363   // internal linkage.
2364   llvm::Function *Fn =
2365     llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
2366                            "__Block_byref_object_copy_", &CGF.CGM.getModule());
2367 
2368   SmallVector<QualType, 2> ArgTys;
2369   ArgTys.push_back(Context.VoidPtrTy);
2370   ArgTys.push_back(Context.VoidPtrTy);
2371 
2372   CGF.CGM.SetInternalFunctionAttributes(GlobalDecl(), Fn, FI);
2373 
2374   CGF.StartFunction(GlobalDecl(), ReturnTy, Fn, FI, args);
2375     // Create a scope with an artificial location for the body of this function.
2376   auto AL = ApplyDebugLocation::CreateArtificial(CGF);
2377 
2378   if (generator.needsCopy()) {
2379     llvm::Type *byrefPtrType = byrefInfo.Type->getPointerTo(0);
2380 
2381     // dst->x
2382     Address destField = CGF.GetAddrOfLocalVar(&Dst);
2383     destField = Address(CGF.Builder.CreateLoad(destField),
2384                         byrefInfo.ByrefAlignment);
2385     destField = CGF.Builder.CreateBitCast(destField, byrefPtrType);
2386     destField = CGF.emitBlockByrefAddress(destField, byrefInfo, false,
2387                                           "dest-object");
2388 
2389     // src->x
2390     Address srcField = CGF.GetAddrOfLocalVar(&Src);
2391     srcField = Address(CGF.Builder.CreateLoad(srcField),
2392                        byrefInfo.ByrefAlignment);
2393     srcField = CGF.Builder.CreateBitCast(srcField, byrefPtrType);
2394     srcField = CGF.emitBlockByrefAddress(srcField, byrefInfo, false,
2395                                          "src-object");
2396 
2397     generator.emitCopy(CGF, destField, srcField);
2398   }
2399 
2400   CGF.FinishFunction();
2401 
2402   return llvm::ConstantExpr::getBitCast(Fn, CGF.Int8PtrTy);
2403 }
2404 
2405 /// Build the copy helper for a __block variable.
2406 static llvm::Constant *buildByrefCopyHelper(CodeGenModule &CGM,
2407                                             const BlockByrefInfo &byrefInfo,
2408                                             BlockByrefHelpers &generator) {
2409   CodeGenFunction CGF(CGM);
2410   return generateByrefCopyHelper(CGF, byrefInfo, generator);
2411 }
2412 
2413 /// Generate code for a __block variable's dispose helper.
2414 static llvm::Constant *
2415 generateByrefDisposeHelper(CodeGenFunction &CGF,
2416                            const BlockByrefInfo &byrefInfo,
2417                            BlockByrefHelpers &generator) {
2418   ASTContext &Context = CGF.getContext();
2419   QualType R = Context.VoidTy;
2420 
2421   FunctionArgList args;
2422   ImplicitParamDecl Src(CGF.getContext(), Context.VoidPtrTy,
2423                         ImplicitParamDecl::Other);
2424   args.push_back(&Src);
2425 
2426   const CGFunctionInfo &FI =
2427     CGF.CGM.getTypes().arrangeBuiltinFunctionDeclaration(R, args);
2428 
2429   llvm::FunctionType *LTy = CGF.CGM.getTypes().GetFunctionType(FI);
2430 
2431   // FIXME: We'd like to put these into a mergable by content, with
2432   // internal linkage.
2433   llvm::Function *Fn =
2434     llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
2435                            "__Block_byref_object_dispose_",
2436                            &CGF.CGM.getModule());
2437 
2438   SmallVector<QualType, 1> ArgTys;
2439   ArgTys.push_back(Context.VoidPtrTy);
2440 
2441   CGF.CGM.SetInternalFunctionAttributes(GlobalDecl(), Fn, FI);
2442 
2443   CGF.StartFunction(GlobalDecl(), R, Fn, FI, args);
2444     // Create a scope with an artificial location for the body of this function.
2445   auto AL = ApplyDebugLocation::CreateArtificial(CGF);
2446 
2447   if (generator.needsDispose()) {
2448     Address addr = CGF.GetAddrOfLocalVar(&Src);
2449     addr = Address(CGF.Builder.CreateLoad(addr), byrefInfo.ByrefAlignment);
2450     auto byrefPtrType = byrefInfo.Type->getPointerTo(0);
2451     addr = CGF.Builder.CreateBitCast(addr, byrefPtrType);
2452     addr = CGF.emitBlockByrefAddress(addr, byrefInfo, false, "object");
2453 
2454     generator.emitDispose(CGF, addr);
2455   }
2456 
2457   CGF.FinishFunction();
2458 
2459   return llvm::ConstantExpr::getBitCast(Fn, CGF.Int8PtrTy);
2460 }
2461 
2462 /// Build the dispose helper for a __block variable.
2463 static llvm::Constant *buildByrefDisposeHelper(CodeGenModule &CGM,
2464                                                const BlockByrefInfo &byrefInfo,
2465                                                BlockByrefHelpers &generator) {
2466   CodeGenFunction CGF(CGM);
2467   return generateByrefDisposeHelper(CGF, byrefInfo, generator);
2468 }
2469 
2470 /// Lazily build the copy and dispose helpers for a __block variable
2471 /// with the given information.
2472 template <class T>
2473 static T *buildByrefHelpers(CodeGenModule &CGM, const BlockByrefInfo &byrefInfo,
2474                             T &&generator) {
2475   llvm::FoldingSetNodeID id;
2476   generator.Profile(id);
2477 
2478   void *insertPos;
2479   BlockByrefHelpers *node
2480     = CGM.ByrefHelpersCache.FindNodeOrInsertPos(id, insertPos);
2481   if (node) return static_cast<T*>(node);
2482 
2483   generator.CopyHelper = buildByrefCopyHelper(CGM, byrefInfo, generator);
2484   generator.DisposeHelper = buildByrefDisposeHelper(CGM, byrefInfo, generator);
2485 
2486   T *copy = new (CGM.getContext()) T(std::forward<T>(generator));
2487   CGM.ByrefHelpersCache.InsertNode(copy, insertPos);
2488   return copy;
2489 }
2490 
2491 /// Build the copy and dispose helpers for the given __block variable
2492 /// emission.  Places the helpers in the global cache.  Returns null
2493 /// if no helpers are required.
2494 BlockByrefHelpers *
2495 CodeGenFunction::buildByrefHelpers(llvm::StructType &byrefType,
2496                                    const AutoVarEmission &emission) {
2497   const VarDecl &var = *emission.Variable;
2498   assert(var.isEscapingByref() &&
2499          "only escaping __block variables need byref helpers");
2500 
2501   QualType type = var.getType();
2502 
2503   auto &byrefInfo = getBlockByrefInfo(&var);
2504 
2505   // The alignment we care about for the purposes of uniquing byref
2506   // helpers is the alignment of the actual byref value field.
2507   CharUnits valueAlignment =
2508     byrefInfo.ByrefAlignment.alignmentAtOffset(byrefInfo.FieldOffset);
2509 
2510   if (const CXXRecordDecl *record = type->getAsCXXRecordDecl()) {
2511     const Expr *copyExpr =
2512         CGM.getContext().getBlockVarCopyInit(&var).getCopyExpr();
2513     if (!copyExpr && record->hasTrivialDestructor()) return nullptr;
2514 
2515     return ::buildByrefHelpers(
2516         CGM, byrefInfo, CXXByrefHelpers(valueAlignment, type, copyExpr));
2517   }
2518 
2519   // If type is a non-trivial C struct type that is non-trivial to
2520   // destructly move or destroy, build the copy and dispose helpers.
2521   if (type.isNonTrivialToPrimitiveDestructiveMove() == QualType::PCK_Struct ||
2522       type.isDestructedType() == QualType::DK_nontrivial_c_struct)
2523     return ::buildByrefHelpers(
2524         CGM, byrefInfo, NonTrivialCStructByrefHelpers(valueAlignment, type));
2525 
2526   // Otherwise, if we don't have a retainable type, there's nothing to do.
2527   // that the runtime does extra copies.
2528   if (!type->isObjCRetainableType()) return nullptr;
2529 
2530   Qualifiers qs = type.getQualifiers();
2531 
2532   // If we have lifetime, that dominates.
2533   if (Qualifiers::ObjCLifetime lifetime = qs.getObjCLifetime()) {
2534     switch (lifetime) {
2535     case Qualifiers::OCL_None: llvm_unreachable("impossible");
2536 
2537     // These are just bits as far as the runtime is concerned.
2538     case Qualifiers::OCL_ExplicitNone:
2539     case Qualifiers::OCL_Autoreleasing:
2540       return nullptr;
2541 
2542     // Tell the runtime that this is ARC __weak, called by the
2543     // byref routines.
2544     case Qualifiers::OCL_Weak:
2545       return ::buildByrefHelpers(CGM, byrefInfo,
2546                                  ARCWeakByrefHelpers(valueAlignment));
2547 
2548     // ARC __strong __block variables need to be retained.
2549     case Qualifiers::OCL_Strong:
2550       // Block pointers need to be copied, and there's no direct
2551       // transfer possible.
2552       if (type->isBlockPointerType()) {
2553         return ::buildByrefHelpers(CGM, byrefInfo,
2554                                    ARCStrongBlockByrefHelpers(valueAlignment));
2555 
2556       // Otherwise, we transfer ownership of the retain from the stack
2557       // to the heap.
2558       } else {
2559         return ::buildByrefHelpers(CGM, byrefInfo,
2560                                    ARCStrongByrefHelpers(valueAlignment));
2561       }
2562     }
2563     llvm_unreachable("fell out of lifetime switch!");
2564   }
2565 
2566   BlockFieldFlags flags;
2567   if (type->isBlockPointerType()) {
2568     flags |= BLOCK_FIELD_IS_BLOCK;
2569   } else if (CGM.getContext().isObjCNSObjectType(type) ||
2570              type->isObjCObjectPointerType()) {
2571     flags |= BLOCK_FIELD_IS_OBJECT;
2572   } else {
2573     return nullptr;
2574   }
2575 
2576   if (type.isObjCGCWeak())
2577     flags |= BLOCK_FIELD_IS_WEAK;
2578 
2579   return ::buildByrefHelpers(CGM, byrefInfo,
2580                              ObjectByrefHelpers(valueAlignment, flags));
2581 }
2582 
2583 Address CodeGenFunction::emitBlockByrefAddress(Address baseAddr,
2584                                                const VarDecl *var,
2585                                                bool followForward) {
2586   auto &info = getBlockByrefInfo(var);
2587   return emitBlockByrefAddress(baseAddr, info, followForward, var->getName());
2588 }
2589 
2590 Address CodeGenFunction::emitBlockByrefAddress(Address baseAddr,
2591                                                const BlockByrefInfo &info,
2592                                                bool followForward,
2593                                                const llvm::Twine &name) {
2594   // Chase the forwarding address if requested.
2595   if (followForward) {
2596     Address forwardingAddr = Builder.CreateStructGEP(baseAddr, 1, "forwarding");
2597     baseAddr = Address(Builder.CreateLoad(forwardingAddr), info.ByrefAlignment);
2598   }
2599 
2600   return Builder.CreateStructGEP(baseAddr, info.FieldIndex, name);
2601 }
2602 
2603 /// BuildByrefInfo - This routine changes a __block variable declared as T x
2604 ///   into:
2605 ///
2606 ///      struct {
2607 ///        void *__isa;
2608 ///        void *__forwarding;
2609 ///        int32_t __flags;
2610 ///        int32_t __size;
2611 ///        void *__copy_helper;       // only if needed
2612 ///        void *__destroy_helper;    // only if needed
2613 ///        void *__byref_variable_layout;// only if needed
2614 ///        char padding[X];           // only if needed
2615 ///        T x;
2616 ///      } x
2617 ///
2618 const BlockByrefInfo &CodeGenFunction::getBlockByrefInfo(const VarDecl *D) {
2619   auto it = BlockByrefInfos.find(D);
2620   if (it != BlockByrefInfos.end())
2621     return it->second;
2622 
2623   llvm::StructType *byrefType =
2624     llvm::StructType::create(getLLVMContext(),
2625                              "struct.__block_byref_" + D->getNameAsString());
2626 
2627   QualType Ty = D->getType();
2628 
2629   CharUnits size;
2630   SmallVector<llvm::Type *, 8> types;
2631 
2632   // void *__isa;
2633   types.push_back(Int8PtrTy);
2634   size += getPointerSize();
2635 
2636   // void *__forwarding;
2637   types.push_back(llvm::PointerType::getUnqual(byrefType));
2638   size += getPointerSize();
2639 
2640   // int32_t __flags;
2641   types.push_back(Int32Ty);
2642   size += CharUnits::fromQuantity(4);
2643 
2644   // int32_t __size;
2645   types.push_back(Int32Ty);
2646   size += CharUnits::fromQuantity(4);
2647 
2648   // Note that this must match *exactly* the logic in buildByrefHelpers.
2649   bool hasCopyAndDispose = getContext().BlockRequiresCopying(Ty, D);
2650   if (hasCopyAndDispose) {
2651     /// void *__copy_helper;
2652     types.push_back(Int8PtrTy);
2653     size += getPointerSize();
2654 
2655     /// void *__destroy_helper;
2656     types.push_back(Int8PtrTy);
2657     size += getPointerSize();
2658   }
2659 
2660   bool HasByrefExtendedLayout = false;
2661   Qualifiers::ObjCLifetime Lifetime = Qualifiers::OCL_None;
2662   if (getContext().getByrefLifetime(Ty, Lifetime, HasByrefExtendedLayout) &&
2663       HasByrefExtendedLayout) {
2664     /// void *__byref_variable_layout;
2665     types.push_back(Int8PtrTy);
2666     size += CharUnits::fromQuantity(PointerSizeInBytes);
2667   }
2668 
2669   // T x;
2670   llvm::Type *varTy = ConvertTypeForMem(Ty);
2671 
2672   bool packed = false;
2673   CharUnits varAlign = getContext().getDeclAlign(D);
2674   CharUnits varOffset = size.alignTo(varAlign);
2675 
2676   // We may have to insert padding.
2677   if (varOffset != size) {
2678     llvm::Type *paddingTy =
2679       llvm::ArrayType::get(Int8Ty, (varOffset - size).getQuantity());
2680 
2681     types.push_back(paddingTy);
2682     size = varOffset;
2683 
2684   // Conversely, we might have to prevent LLVM from inserting padding.
2685   } else if (CGM.getDataLayout().getABITypeAlignment(varTy) >
2686              uint64_t(varAlign.getQuantity())) {
2687     packed = true;
2688   }
2689   types.push_back(varTy);
2690 
2691   byrefType->setBody(types, packed);
2692 
2693   BlockByrefInfo info;
2694   info.Type = byrefType;
2695   info.FieldIndex = types.size() - 1;
2696   info.FieldOffset = varOffset;
2697   info.ByrefAlignment = std::max(varAlign, getPointerAlign());
2698 
2699   auto pair = BlockByrefInfos.insert({D, info});
2700   assert(pair.second && "info was inserted recursively?");
2701   return pair.first->second;
2702 }
2703 
2704 /// Initialize the structural components of a __block variable, i.e.
2705 /// everything but the actual object.
2706 void CodeGenFunction::emitByrefStructureInit(const AutoVarEmission &emission) {
2707   // Find the address of the local.
2708   Address addr = emission.Addr;
2709 
2710   // That's an alloca of the byref structure type.
2711   llvm::StructType *byrefType = cast<llvm::StructType>(addr.getElementType());
2712 
2713   unsigned nextHeaderIndex = 0;
2714   CharUnits nextHeaderOffset;
2715   auto storeHeaderField = [&](llvm::Value *value, CharUnits fieldSize,
2716                               const Twine &name) {
2717     auto fieldAddr = Builder.CreateStructGEP(addr, nextHeaderIndex, name);
2718     Builder.CreateStore(value, fieldAddr);
2719 
2720     nextHeaderIndex++;
2721     nextHeaderOffset += fieldSize;
2722   };
2723 
2724   // Build the byref helpers if necessary.  This is null if we don't need any.
2725   BlockByrefHelpers *helpers = buildByrefHelpers(*byrefType, emission);
2726 
2727   const VarDecl &D = *emission.Variable;
2728   QualType type = D.getType();
2729 
2730   bool HasByrefExtendedLayout = false;
2731   Qualifiers::ObjCLifetime ByrefLifetime = Qualifiers::OCL_None;
2732   bool ByRefHasLifetime =
2733     getContext().getByrefLifetime(type, ByrefLifetime, HasByrefExtendedLayout);
2734 
2735   llvm::Value *V;
2736 
2737   // Initialize the 'isa', which is just 0 or 1.
2738   int isa = 0;
2739   if (type.isObjCGCWeak())
2740     isa = 1;
2741   V = Builder.CreateIntToPtr(Builder.getInt32(isa), Int8PtrTy, "isa");
2742   storeHeaderField(V, getPointerSize(), "byref.isa");
2743 
2744   // Store the address of the variable into its own forwarding pointer.
2745   storeHeaderField(addr.getPointer(), getPointerSize(), "byref.forwarding");
2746 
2747   // Blocks ABI:
2748   //   c) the flags field is set to either 0 if no helper functions are
2749   //      needed or BLOCK_BYREF_HAS_COPY_DISPOSE if they are,
2750   BlockFlags flags;
2751   if (helpers) flags |= BLOCK_BYREF_HAS_COPY_DISPOSE;
2752   if (ByRefHasLifetime) {
2753     if (HasByrefExtendedLayout) flags |= BLOCK_BYREF_LAYOUT_EXTENDED;
2754       else switch (ByrefLifetime) {
2755         case Qualifiers::OCL_Strong:
2756           flags |= BLOCK_BYREF_LAYOUT_STRONG;
2757           break;
2758         case Qualifiers::OCL_Weak:
2759           flags |= BLOCK_BYREF_LAYOUT_WEAK;
2760           break;
2761         case Qualifiers::OCL_ExplicitNone:
2762           flags |= BLOCK_BYREF_LAYOUT_UNRETAINED;
2763           break;
2764         case Qualifiers::OCL_None:
2765           if (!type->isObjCObjectPointerType() && !type->isBlockPointerType())
2766             flags |= BLOCK_BYREF_LAYOUT_NON_OBJECT;
2767           break;
2768         default:
2769           break;
2770       }
2771     if (CGM.getLangOpts().ObjCGCBitmapPrint) {
2772       printf("\n Inline flag for BYREF variable layout (%d):", flags.getBitMask());
2773       if (flags & BLOCK_BYREF_HAS_COPY_DISPOSE)
2774         printf(" BLOCK_BYREF_HAS_COPY_DISPOSE");
2775       if (flags & BLOCK_BYREF_LAYOUT_MASK) {
2776         BlockFlags ThisFlag(flags.getBitMask() & BLOCK_BYREF_LAYOUT_MASK);
2777         if (ThisFlag ==  BLOCK_BYREF_LAYOUT_EXTENDED)
2778           printf(" BLOCK_BYREF_LAYOUT_EXTENDED");
2779         if (ThisFlag ==  BLOCK_BYREF_LAYOUT_STRONG)
2780           printf(" BLOCK_BYREF_LAYOUT_STRONG");
2781         if (ThisFlag == BLOCK_BYREF_LAYOUT_WEAK)
2782           printf(" BLOCK_BYREF_LAYOUT_WEAK");
2783         if (ThisFlag == BLOCK_BYREF_LAYOUT_UNRETAINED)
2784           printf(" BLOCK_BYREF_LAYOUT_UNRETAINED");
2785         if (ThisFlag == BLOCK_BYREF_LAYOUT_NON_OBJECT)
2786           printf(" BLOCK_BYREF_LAYOUT_NON_OBJECT");
2787       }
2788       printf("\n");
2789     }
2790   }
2791   storeHeaderField(llvm::ConstantInt::get(IntTy, flags.getBitMask()),
2792                    getIntSize(), "byref.flags");
2793 
2794   CharUnits byrefSize = CGM.GetTargetTypeStoreSize(byrefType);
2795   V = llvm::ConstantInt::get(IntTy, byrefSize.getQuantity());
2796   storeHeaderField(V, getIntSize(), "byref.size");
2797 
2798   if (helpers) {
2799     storeHeaderField(helpers->CopyHelper, getPointerSize(),
2800                      "byref.copyHelper");
2801     storeHeaderField(helpers->DisposeHelper, getPointerSize(),
2802                      "byref.disposeHelper");
2803   }
2804 
2805   if (ByRefHasLifetime && HasByrefExtendedLayout) {
2806     auto layoutInfo = CGM.getObjCRuntime().BuildByrefLayout(CGM, type);
2807     storeHeaderField(layoutInfo, getPointerSize(), "byref.layout");
2808   }
2809 }
2810 
2811 void CodeGenFunction::BuildBlockRelease(llvm::Value *V, BlockFieldFlags flags,
2812                                         bool CanThrow) {
2813   llvm::FunctionCallee F = CGM.getBlockObjectDispose();
2814   llvm::Value *args[] = {
2815     Builder.CreateBitCast(V, Int8PtrTy),
2816     llvm::ConstantInt::get(Int32Ty, flags.getBitMask())
2817   };
2818 
2819   if (CanThrow)
2820     EmitRuntimeCallOrInvoke(F, args);
2821   else
2822     EmitNounwindRuntimeCall(F, args);
2823 }
2824 
2825 void CodeGenFunction::enterByrefCleanup(CleanupKind Kind, Address Addr,
2826                                         BlockFieldFlags Flags,
2827                                         bool LoadBlockVarAddr, bool CanThrow) {
2828   EHStack.pushCleanup<CallBlockRelease>(Kind, Addr, Flags, LoadBlockVarAddr,
2829                                         CanThrow);
2830 }
2831 
2832 /// Adjust the declaration of something from the blocks API.
2833 static void configureBlocksRuntimeObject(CodeGenModule &CGM,
2834                                          llvm::Constant *C) {
2835   auto *GV = cast<llvm::GlobalValue>(C->stripPointerCasts());
2836 
2837   if (CGM.getTarget().getTriple().isOSBinFormatCOFF()) {
2838     IdentifierInfo &II = CGM.getContext().Idents.get(C->getName());
2839     TranslationUnitDecl *TUDecl = CGM.getContext().getTranslationUnitDecl();
2840     DeclContext *DC = TranslationUnitDecl::castToDeclContext(TUDecl);
2841 
2842     assert((isa<llvm::Function>(C->stripPointerCasts()) ||
2843             isa<llvm::GlobalVariable>(C->stripPointerCasts())) &&
2844            "expected Function or GlobalVariable");
2845 
2846     const NamedDecl *ND = nullptr;
2847     for (const auto *Result : DC->lookup(&II))
2848       if ((ND = dyn_cast<FunctionDecl>(Result)) ||
2849           (ND = dyn_cast<VarDecl>(Result)))
2850         break;
2851 
2852     // TODO: support static blocks runtime
2853     if (GV->isDeclaration() && (!ND || !ND->hasAttr<DLLExportAttr>())) {
2854       GV->setDLLStorageClass(llvm::GlobalValue::DLLImportStorageClass);
2855       GV->setLinkage(llvm::GlobalValue::ExternalLinkage);
2856     } else {
2857       GV->setDLLStorageClass(llvm::GlobalValue::DLLExportStorageClass);
2858       GV->setLinkage(llvm::GlobalValue::ExternalLinkage);
2859     }
2860   }
2861 
2862   if (CGM.getLangOpts().BlocksRuntimeOptional && GV->isDeclaration() &&
2863       GV->hasExternalLinkage())
2864     GV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
2865 
2866   CGM.setDSOLocal(GV);
2867 }
2868 
2869 llvm::FunctionCallee CodeGenModule::getBlockObjectDispose() {
2870   if (BlockObjectDispose)
2871     return BlockObjectDispose;
2872 
2873   llvm::Type *args[] = { Int8PtrTy, Int32Ty };
2874   llvm::FunctionType *fty
2875     = llvm::FunctionType::get(VoidTy, args, false);
2876   BlockObjectDispose = CreateRuntimeFunction(fty, "_Block_object_dispose");
2877   configureBlocksRuntimeObject(
2878       *this, cast<llvm::Constant>(BlockObjectDispose.getCallee()));
2879   return BlockObjectDispose;
2880 }
2881 
2882 llvm::FunctionCallee CodeGenModule::getBlockObjectAssign() {
2883   if (BlockObjectAssign)
2884     return BlockObjectAssign;
2885 
2886   llvm::Type *args[] = { Int8PtrTy, Int8PtrTy, Int32Ty };
2887   llvm::FunctionType *fty
2888     = llvm::FunctionType::get(VoidTy, args, false);
2889   BlockObjectAssign = CreateRuntimeFunction(fty, "_Block_object_assign");
2890   configureBlocksRuntimeObject(
2891       *this, cast<llvm::Constant>(BlockObjectAssign.getCallee()));
2892   return BlockObjectAssign;
2893 }
2894 
2895 llvm::Constant *CodeGenModule::getNSConcreteGlobalBlock() {
2896   if (NSConcreteGlobalBlock)
2897     return NSConcreteGlobalBlock;
2898 
2899   NSConcreteGlobalBlock = GetOrCreateLLVMGlobal(
2900       "_NSConcreteGlobalBlock", Int8PtrTy, LangAS::Default, nullptr);
2901   configureBlocksRuntimeObject(*this, NSConcreteGlobalBlock);
2902   return NSConcreteGlobalBlock;
2903 }
2904 
2905 llvm::Constant *CodeGenModule::getNSConcreteStackBlock() {
2906   if (NSConcreteStackBlock)
2907     return NSConcreteStackBlock;
2908 
2909   NSConcreteStackBlock = GetOrCreateLLVMGlobal(
2910       "_NSConcreteStackBlock", Int8PtrTy, LangAS::Default, nullptr);
2911   configureBlocksRuntimeObject(*this, NSConcreteStackBlock);
2912   return NSConcreteStackBlock;
2913 }
2914