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