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