1 //===--- CodeGenModule.h - Per-Module state for LLVM CodeGen ----*- 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 is the internal per-translation-unit state used for llvm translation. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #ifndef LLVM_CLANG_LIB_CODEGEN_CODEGENMODULE_H 14 #define LLVM_CLANG_LIB_CODEGEN_CODEGENMODULE_H 15 16 #include "CGVTables.h" 17 #include "CodeGenTypeCache.h" 18 #include "CodeGenTypes.h" 19 #include "SanitizerMetadata.h" 20 #include "clang/AST/DeclCXX.h" 21 #include "clang/AST/DeclObjC.h" 22 #include "clang/AST/DeclOpenMP.h" 23 #include "clang/AST/GlobalDecl.h" 24 #include "clang/AST/Mangle.h" 25 #include "clang/Basic/ABI.h" 26 #include "clang/Basic/LangOptions.h" 27 #include "clang/Basic/Module.h" 28 #include "clang/Basic/NoSanitizeList.h" 29 #include "clang/Basic/TargetInfo.h" 30 #include "clang/Basic/XRayLists.h" 31 #include "clang/Lex/PreprocessorOptions.h" 32 #include "llvm/ADT/DenseMap.h" 33 #include "llvm/ADT/SetVector.h" 34 #include "llvm/ADT/SmallPtrSet.h" 35 #include "llvm/ADT/StringMap.h" 36 #include "llvm/IR/Module.h" 37 #include "llvm/IR/ValueHandle.h" 38 #include "llvm/Transforms/Utils/SanitizerStats.h" 39 40 namespace llvm { 41 class Module; 42 class Constant; 43 class ConstantInt; 44 class Function; 45 class GlobalValue; 46 class DataLayout; 47 class FunctionType; 48 class LLVMContext; 49 class OpenMPIRBuilder; 50 class IndexedInstrProfReader; 51 } 52 53 namespace clang { 54 class ASTContext; 55 class AtomicType; 56 class FunctionDecl; 57 class IdentifierInfo; 58 class ObjCMethodDecl; 59 class ObjCImplementationDecl; 60 class ObjCCategoryImplDecl; 61 class ObjCProtocolDecl; 62 class ObjCEncodeExpr; 63 class BlockExpr; 64 class CharUnits; 65 class Decl; 66 class Expr; 67 class Stmt; 68 class InitListExpr; 69 class StringLiteral; 70 class NamedDecl; 71 class ValueDecl; 72 class VarDecl; 73 class LangOptions; 74 class CodeGenOptions; 75 class HeaderSearchOptions; 76 class DiagnosticsEngine; 77 class AnnotateAttr; 78 class CXXDestructorDecl; 79 class Module; 80 class CoverageSourceInfo; 81 class TargetAttr; 82 class InitSegAttr; 83 struct ParsedTargetAttr; 84 85 namespace CodeGen { 86 87 class CallArgList; 88 class CodeGenFunction; 89 class CodeGenTBAA; 90 class CGCXXABI; 91 class CGDebugInfo; 92 class CGObjCRuntime; 93 class CGOpenCLRuntime; 94 class CGOpenMPRuntime; 95 class CGCUDARuntime; 96 class BlockFieldFlags; 97 class FunctionArgList; 98 class CoverageMappingModuleGen; 99 class TargetCodeGenInfo; 100 101 enum ForDefinition_t : bool { 102 NotForDefinition = false, 103 ForDefinition = true 104 }; 105 106 struct OrderGlobalInitsOrStermFinalizers { 107 unsigned int priority; 108 unsigned int lex_order; 109 OrderGlobalInitsOrStermFinalizers(unsigned int p, unsigned int l) 110 : priority(p), lex_order(l) {} 111 112 bool operator==(const OrderGlobalInitsOrStermFinalizers &RHS) const { 113 return priority == RHS.priority && lex_order == RHS.lex_order; 114 } 115 116 bool operator<(const OrderGlobalInitsOrStermFinalizers &RHS) const { 117 return std::tie(priority, lex_order) < 118 std::tie(RHS.priority, RHS.lex_order); 119 } 120 }; 121 122 struct ObjCEntrypoints { 123 ObjCEntrypoints() { memset(this, 0, sizeof(*this)); } 124 125 /// void objc_alloc(id); 126 llvm::FunctionCallee objc_alloc; 127 128 /// void objc_allocWithZone(id); 129 llvm::FunctionCallee objc_allocWithZone; 130 131 /// void objc_alloc_init(id); 132 llvm::FunctionCallee objc_alloc_init; 133 134 /// void objc_autoreleasePoolPop(void*); 135 llvm::FunctionCallee objc_autoreleasePoolPop; 136 137 /// void objc_autoreleasePoolPop(void*); 138 /// Note this method is used when we are using exception handling 139 llvm::FunctionCallee objc_autoreleasePoolPopInvoke; 140 141 /// void *objc_autoreleasePoolPush(void); 142 llvm::Function *objc_autoreleasePoolPush; 143 144 /// id objc_autorelease(id); 145 llvm::Function *objc_autorelease; 146 147 /// id objc_autorelease(id); 148 /// Note this is the runtime method not the intrinsic. 149 llvm::FunctionCallee objc_autoreleaseRuntimeFunction; 150 151 /// id objc_autoreleaseReturnValue(id); 152 llvm::Function *objc_autoreleaseReturnValue; 153 154 /// void objc_copyWeak(id *dest, id *src); 155 llvm::Function *objc_copyWeak; 156 157 /// void objc_destroyWeak(id*); 158 llvm::Function *objc_destroyWeak; 159 160 /// id objc_initWeak(id*, id); 161 llvm::Function *objc_initWeak; 162 163 /// id objc_loadWeak(id*); 164 llvm::Function *objc_loadWeak; 165 166 /// id objc_loadWeakRetained(id*); 167 llvm::Function *objc_loadWeakRetained; 168 169 /// void objc_moveWeak(id *dest, id *src); 170 llvm::Function *objc_moveWeak; 171 172 /// id objc_retain(id); 173 llvm::Function *objc_retain; 174 175 /// id objc_retain(id); 176 /// Note this is the runtime method not the intrinsic. 177 llvm::FunctionCallee objc_retainRuntimeFunction; 178 179 /// id objc_retainAutorelease(id); 180 llvm::Function *objc_retainAutorelease; 181 182 /// id objc_retainAutoreleaseReturnValue(id); 183 llvm::Function *objc_retainAutoreleaseReturnValue; 184 185 /// id objc_retainAutoreleasedReturnValue(id); 186 llvm::Function *objc_retainAutoreleasedReturnValue; 187 188 /// id objc_retainBlock(id); 189 llvm::Function *objc_retainBlock; 190 191 /// void objc_release(id); 192 llvm::Function *objc_release; 193 194 /// void objc_release(id); 195 /// Note this is the runtime method not the intrinsic. 196 llvm::FunctionCallee objc_releaseRuntimeFunction; 197 198 /// void objc_storeStrong(id*, id); 199 llvm::Function *objc_storeStrong; 200 201 /// id objc_storeWeak(id*, id); 202 llvm::Function *objc_storeWeak; 203 204 /// id objc_unsafeClaimAutoreleasedReturnValue(id); 205 llvm::Function *objc_unsafeClaimAutoreleasedReturnValue; 206 207 /// A void(void) inline asm to use to mark that the return value of 208 /// a call will be immediately retain. 209 llvm::InlineAsm *retainAutoreleasedReturnValueMarker; 210 211 /// void clang.arc.use(...); 212 llvm::Function *clang_arc_use; 213 214 /// void clang.arc.noop.use(...); 215 llvm::Function *clang_arc_noop_use; 216 }; 217 218 /// This class records statistics on instrumentation based profiling. 219 class InstrProfStats { 220 uint32_t VisitedInMainFile; 221 uint32_t MissingInMainFile; 222 uint32_t Visited; 223 uint32_t Missing; 224 uint32_t Mismatched; 225 226 public: 227 InstrProfStats() 228 : VisitedInMainFile(0), MissingInMainFile(0), Visited(0), Missing(0), 229 Mismatched(0) {} 230 /// Record that we've visited a function and whether or not that function was 231 /// in the main source file. 232 void addVisited(bool MainFile) { 233 if (MainFile) 234 ++VisitedInMainFile; 235 ++Visited; 236 } 237 /// Record that a function we've visited has no profile data. 238 void addMissing(bool MainFile) { 239 if (MainFile) 240 ++MissingInMainFile; 241 ++Missing; 242 } 243 /// Record that a function we've visited has mismatched profile data. 244 void addMismatched(bool MainFile) { ++Mismatched; } 245 /// Whether or not the stats we've gathered indicate any potential problems. 246 bool hasDiagnostics() { return Missing || Mismatched; } 247 /// Report potential problems we've found to \c Diags. 248 void reportDiagnostics(DiagnosticsEngine &Diags, StringRef MainFile); 249 }; 250 251 /// A pair of helper functions for a __block variable. 252 class BlockByrefHelpers : public llvm::FoldingSetNode { 253 // MSVC requires this type to be complete in order to process this 254 // header. 255 public: 256 llvm::Constant *CopyHelper; 257 llvm::Constant *DisposeHelper; 258 259 /// The alignment of the field. This is important because 260 /// different offsets to the field within the byref struct need to 261 /// have different helper functions. 262 CharUnits Alignment; 263 264 BlockByrefHelpers(CharUnits alignment) 265 : CopyHelper(nullptr), DisposeHelper(nullptr), Alignment(alignment) {} 266 BlockByrefHelpers(const BlockByrefHelpers &) = default; 267 virtual ~BlockByrefHelpers(); 268 269 void Profile(llvm::FoldingSetNodeID &id) const { 270 id.AddInteger(Alignment.getQuantity()); 271 profileImpl(id); 272 } 273 virtual void profileImpl(llvm::FoldingSetNodeID &id) const = 0; 274 275 virtual bool needsCopy() const { return true; } 276 virtual void emitCopy(CodeGenFunction &CGF, Address dest, Address src) = 0; 277 278 virtual bool needsDispose() const { return true; } 279 virtual void emitDispose(CodeGenFunction &CGF, Address field) = 0; 280 }; 281 282 /// This class organizes the cross-function state that is used while generating 283 /// LLVM code. 284 class CodeGenModule : public CodeGenTypeCache { 285 CodeGenModule(const CodeGenModule &) = delete; 286 void operator=(const CodeGenModule &) = delete; 287 288 public: 289 struct Structor { 290 Structor() : Priority(0), Initializer(nullptr), AssociatedData(nullptr) {} 291 Structor(int Priority, llvm::Constant *Initializer, 292 llvm::Constant *AssociatedData) 293 : Priority(Priority), Initializer(Initializer), 294 AssociatedData(AssociatedData) {} 295 int Priority; 296 llvm::Constant *Initializer; 297 llvm::Constant *AssociatedData; 298 }; 299 300 typedef std::vector<Structor> CtorList; 301 302 private: 303 ASTContext &Context; 304 const LangOptions &LangOpts; 305 const HeaderSearchOptions &HeaderSearchOpts; // Only used for debug info. 306 const PreprocessorOptions &PreprocessorOpts; // Only used for debug info. 307 const CodeGenOptions &CodeGenOpts; 308 unsigned NumAutoVarInit = 0; 309 llvm::Module &TheModule; 310 DiagnosticsEngine &Diags; 311 const TargetInfo &Target; 312 std::unique_ptr<CGCXXABI> ABI; 313 llvm::LLVMContext &VMContext; 314 std::string ModuleNameHash = ""; 315 316 std::unique_ptr<CodeGenTBAA> TBAA; 317 318 mutable std::unique_ptr<TargetCodeGenInfo> TheTargetCodeGenInfo; 319 320 // This should not be moved earlier, since its initialization depends on some 321 // of the previous reference members being already initialized and also checks 322 // if TheTargetCodeGenInfo is NULL 323 CodeGenTypes Types; 324 325 /// Holds information about C++ vtables. 326 CodeGenVTables VTables; 327 328 std::unique_ptr<CGObjCRuntime> ObjCRuntime; 329 std::unique_ptr<CGOpenCLRuntime> OpenCLRuntime; 330 std::unique_ptr<CGOpenMPRuntime> OpenMPRuntime; 331 std::unique_ptr<CGCUDARuntime> CUDARuntime; 332 std::unique_ptr<CGDebugInfo> DebugInfo; 333 std::unique_ptr<ObjCEntrypoints> ObjCData; 334 llvm::MDNode *NoObjCARCExceptionsMetadata = nullptr; 335 std::unique_ptr<llvm::IndexedInstrProfReader> PGOReader; 336 InstrProfStats PGOStats; 337 std::unique_ptr<llvm::SanitizerStatReport> SanStats; 338 339 // A set of references that have only been seen via a weakref so far. This is 340 // used to remove the weak of the reference if we ever see a direct reference 341 // or a definition. 342 llvm::SmallPtrSet<llvm::GlobalValue*, 10> WeakRefReferences; 343 344 /// This contains all the decls which have definitions but/ which are deferred 345 /// for emission and therefore should only be output if they are actually 346 /// used. If a decl is in this, then it is known to have not been referenced 347 /// yet. 348 std::map<StringRef, GlobalDecl> DeferredDecls; 349 350 /// This is a list of deferred decls which we have seen that *are* actually 351 /// referenced. These get code generated when the module is done. 352 std::vector<GlobalDecl> DeferredDeclsToEmit; 353 void addDeferredDeclToEmit(GlobalDecl GD) { 354 DeferredDeclsToEmit.emplace_back(GD); 355 } 356 357 /// List of alias we have emitted. Used to make sure that what they point to 358 /// is defined once we get to the end of the of the translation unit. 359 std::vector<GlobalDecl> Aliases; 360 361 /// List of multiversion functions that have to be emitted. Used to make sure 362 /// we properly emit the iFunc. 363 std::vector<GlobalDecl> MultiVersionFuncs; 364 365 typedef llvm::StringMap<llvm::TrackingVH<llvm::Constant> > ReplacementsTy; 366 ReplacementsTy Replacements; 367 368 /// List of global values to be replaced with something else. Used when we 369 /// want to replace a GlobalValue but can't identify it by its mangled name 370 /// anymore (because the name is already taken). 371 llvm::SmallVector<std::pair<llvm::GlobalValue *, llvm::Constant *>, 8> 372 GlobalValReplacements; 373 374 /// Variables for which we've emitted globals containing their constant 375 /// values along with the corresponding globals, for opportunistic reuse. 376 llvm::DenseMap<const VarDecl*, llvm::GlobalVariable*> InitializerConstants; 377 378 /// Set of global decls for which we already diagnosed mangled name conflict. 379 /// Required to not issue a warning (on a mangling conflict) multiple times 380 /// for the same decl. 381 llvm::DenseSet<GlobalDecl> DiagnosedConflictingDefinitions; 382 383 /// A queue of (optional) vtables to consider emitting. 384 std::vector<const CXXRecordDecl*> DeferredVTables; 385 386 /// A queue of (optional) vtables that may be emitted opportunistically. 387 std::vector<const CXXRecordDecl *> OpportunisticVTables; 388 389 /// List of global values which are required to be present in the object file; 390 /// bitcast to i8*. This is used for forcing visibility of symbols which may 391 /// otherwise be optimized out. 392 std::vector<llvm::WeakTrackingVH> LLVMUsed; 393 std::vector<llvm::WeakTrackingVH> LLVMCompilerUsed; 394 395 /// Store the list of global constructors and their respective priorities to 396 /// be emitted when the translation unit is complete. 397 CtorList GlobalCtors; 398 399 /// Store the list of global destructors and their respective priorities to be 400 /// emitted when the translation unit is complete. 401 CtorList GlobalDtors; 402 403 /// An ordered map of canonical GlobalDecls to their mangled names. 404 llvm::MapVector<GlobalDecl, StringRef> MangledDeclNames; 405 llvm::StringMap<GlobalDecl, llvm::BumpPtrAllocator> Manglings; 406 407 // An ordered map of canonical GlobalDecls paired with the cpu-index for 408 // cpu-specific name manglings. 409 llvm::MapVector<std::pair<GlobalDecl, unsigned>, StringRef> 410 CPUSpecificMangledDeclNames; 411 llvm::StringMap<std::pair<GlobalDecl, unsigned>, llvm::BumpPtrAllocator> 412 CPUSpecificManglings; 413 414 /// Global annotations. 415 std::vector<llvm::Constant*> Annotations; 416 417 /// Map used to get unique annotation strings. 418 llvm::StringMap<llvm::Constant*> AnnotationStrings; 419 420 /// Used for uniquing of annotation arguments. 421 llvm::DenseMap<unsigned, llvm::Constant *> AnnotationArgs; 422 423 llvm::StringMap<llvm::GlobalVariable *> CFConstantStringMap; 424 425 llvm::DenseMap<llvm::Constant *, llvm::GlobalVariable *> ConstantStringMap; 426 llvm::DenseMap<const Decl*, llvm::Constant *> StaticLocalDeclMap; 427 llvm::DenseMap<const Decl*, llvm::GlobalVariable*> StaticLocalDeclGuardMap; 428 llvm::DenseMap<const Expr*, llvm::Constant *> MaterializedGlobalTemporaryMap; 429 430 llvm::DenseMap<QualType, llvm::Constant *> AtomicSetterHelperFnMap; 431 llvm::DenseMap<QualType, llvm::Constant *> AtomicGetterHelperFnMap; 432 433 /// Map used to get unique type descriptor constants for sanitizers. 434 llvm::DenseMap<QualType, llvm::Constant *> TypeDescriptorMap; 435 436 /// Map used to track internal linkage functions declared within 437 /// extern "C" regions. 438 typedef llvm::MapVector<IdentifierInfo *, 439 llvm::GlobalValue *> StaticExternCMap; 440 StaticExternCMap StaticExternCValues; 441 442 /// thread_local variables defined or used in this TU. 443 std::vector<const VarDecl *> CXXThreadLocals; 444 445 /// thread_local variables with initializers that need to run 446 /// before any thread_local variable in this TU is odr-used. 447 std::vector<llvm::Function *> CXXThreadLocalInits; 448 std::vector<const VarDecl *> CXXThreadLocalInitVars; 449 450 /// Global variables with initializers that need to run before main. 451 std::vector<llvm::Function *> CXXGlobalInits; 452 453 /// When a C++ decl with an initializer is deferred, null is 454 /// appended to CXXGlobalInits, and the index of that null is placed 455 /// here so that the initializer will be performed in the correct 456 /// order. Once the decl is emitted, the index is replaced with ~0U to ensure 457 /// that we don't re-emit the initializer. 458 llvm::DenseMap<const Decl*, unsigned> DelayedCXXInitPosition; 459 460 typedef std::pair<OrderGlobalInitsOrStermFinalizers, llvm::Function *> 461 GlobalInitData; 462 463 struct GlobalInitPriorityCmp { 464 bool operator()(const GlobalInitData &LHS, 465 const GlobalInitData &RHS) const { 466 return LHS.first.priority < RHS.first.priority; 467 } 468 }; 469 470 /// Global variables with initializers whose order of initialization is set by 471 /// init_priority attribute. 472 SmallVector<GlobalInitData, 8> PrioritizedCXXGlobalInits; 473 474 /// Global destructor functions and arguments that need to run on termination. 475 /// When UseSinitAndSterm is set, it instead contains sterm finalizer 476 /// functions, which also run on unloading a shared library. 477 typedef std::tuple<llvm::FunctionType *, llvm::WeakTrackingVH, 478 llvm::Constant *> 479 CXXGlobalDtorsOrStermFinalizer_t; 480 SmallVector<CXXGlobalDtorsOrStermFinalizer_t, 8> 481 CXXGlobalDtorsOrStermFinalizers; 482 483 typedef std::pair<OrderGlobalInitsOrStermFinalizers, llvm::Function *> 484 StermFinalizerData; 485 486 struct StermFinalizerPriorityCmp { 487 bool operator()(const StermFinalizerData &LHS, 488 const StermFinalizerData &RHS) const { 489 return LHS.first.priority < RHS.first.priority; 490 } 491 }; 492 493 /// Global variables with sterm finalizers whose order of initialization is 494 /// set by init_priority attribute. 495 SmallVector<StermFinalizerData, 8> PrioritizedCXXStermFinalizers; 496 497 /// The complete set of modules that has been imported. 498 llvm::SetVector<clang::Module *> ImportedModules; 499 500 /// The set of modules for which the module initializers 501 /// have been emitted. 502 llvm::SmallPtrSet<clang::Module *, 16> EmittedModuleInitializers; 503 504 /// A vector of metadata strings for linker options. 505 SmallVector<llvm::MDNode *, 16> LinkerOptionsMetadata; 506 507 /// A vector of metadata strings for dependent libraries for ELF. 508 SmallVector<llvm::MDNode *, 16> ELFDependentLibraries; 509 510 /// @name Cache for Objective-C runtime types 511 /// @{ 512 513 /// Cached reference to the class for constant strings. This value has type 514 /// int * but is actually an Obj-C class pointer. 515 llvm::WeakTrackingVH CFConstantStringClassRef; 516 517 /// The type used to describe the state of a fast enumeration in 518 /// Objective-C's for..in loop. 519 QualType ObjCFastEnumerationStateType; 520 521 /// @} 522 523 /// Lazily create the Objective-C runtime 524 void createObjCRuntime(); 525 526 void createOpenCLRuntime(); 527 void createOpenMPRuntime(); 528 void createCUDARuntime(); 529 530 bool isTriviallyRecursive(const FunctionDecl *F); 531 bool shouldEmitFunction(GlobalDecl GD); 532 bool shouldOpportunisticallyEmitVTables(); 533 /// Map used to be sure we don't emit the same CompoundLiteral twice. 534 llvm::DenseMap<const CompoundLiteralExpr *, llvm::GlobalVariable *> 535 EmittedCompoundLiterals; 536 537 /// Map of the global blocks we've emitted, so that we don't have to re-emit 538 /// them if the constexpr evaluator gets aggressive. 539 llvm::DenseMap<const BlockExpr *, llvm::Constant *> EmittedGlobalBlocks; 540 541 /// @name Cache for Blocks Runtime Globals 542 /// @{ 543 544 llvm::Constant *NSConcreteGlobalBlock = nullptr; 545 llvm::Constant *NSConcreteStackBlock = nullptr; 546 547 llvm::FunctionCallee BlockObjectAssign = nullptr; 548 llvm::FunctionCallee BlockObjectDispose = nullptr; 549 550 llvm::Type *BlockDescriptorType = nullptr; 551 llvm::Type *GenericBlockLiteralType = nullptr; 552 553 struct { 554 int GlobalUniqueCount; 555 } Block; 556 557 GlobalDecl initializedGlobalDecl; 558 559 /// @} 560 561 /// void @llvm.lifetime.start(i64 %size, i8* nocapture <ptr>) 562 llvm::Function *LifetimeStartFn = nullptr; 563 564 /// void @llvm.lifetime.end(i64 %size, i8* nocapture <ptr>) 565 llvm::Function *LifetimeEndFn = nullptr; 566 567 std::unique_ptr<SanitizerMetadata> SanitizerMD; 568 569 llvm::MapVector<const Decl *, bool> DeferredEmptyCoverageMappingDecls; 570 571 std::unique_ptr<CoverageMappingModuleGen> CoverageMapping; 572 573 /// Mapping from canonical types to their metadata identifiers. We need to 574 /// maintain this mapping because identifiers may be formed from distinct 575 /// MDNodes. 576 typedef llvm::DenseMap<QualType, llvm::Metadata *> MetadataTypeMap; 577 MetadataTypeMap MetadataIdMap; 578 MetadataTypeMap VirtualMetadataIdMap; 579 MetadataTypeMap GeneralizedMetadataIdMap; 580 581 public: 582 CodeGenModule(ASTContext &C, const HeaderSearchOptions &headersearchopts, 583 const PreprocessorOptions &ppopts, 584 const CodeGenOptions &CodeGenOpts, llvm::Module &M, 585 DiagnosticsEngine &Diags, 586 CoverageSourceInfo *CoverageInfo = nullptr); 587 588 ~CodeGenModule(); 589 590 void clear(); 591 592 /// Finalize LLVM code generation. 593 void Release(); 594 595 /// Return true if we should emit location information for expressions. 596 bool getExpressionLocationsEnabled() const; 597 598 /// Return a reference to the configured Objective-C runtime. 599 CGObjCRuntime &getObjCRuntime() { 600 if (!ObjCRuntime) createObjCRuntime(); 601 return *ObjCRuntime; 602 } 603 604 /// Return true iff an Objective-C runtime has been configured. 605 bool hasObjCRuntime() { return !!ObjCRuntime; } 606 607 const std::string &getModuleNameHash() const { return ModuleNameHash; } 608 609 /// Return a reference to the configured OpenCL runtime. 610 CGOpenCLRuntime &getOpenCLRuntime() { 611 assert(OpenCLRuntime != nullptr); 612 return *OpenCLRuntime; 613 } 614 615 /// Return a reference to the configured OpenMP runtime. 616 CGOpenMPRuntime &getOpenMPRuntime() { 617 assert(OpenMPRuntime != nullptr); 618 return *OpenMPRuntime; 619 } 620 621 /// Return a reference to the configured CUDA runtime. 622 CGCUDARuntime &getCUDARuntime() { 623 assert(CUDARuntime != nullptr); 624 return *CUDARuntime; 625 } 626 627 ObjCEntrypoints &getObjCEntrypoints() const { 628 assert(ObjCData != nullptr); 629 return *ObjCData; 630 } 631 632 // Version checking functions, used to implement ObjC's @available: 633 // i32 @__isOSVersionAtLeast(i32, i32, i32) 634 llvm::FunctionCallee IsOSVersionAtLeastFn = nullptr; 635 // i32 @__isPlatformVersionAtLeast(i32, i32, i32, i32) 636 llvm::FunctionCallee IsPlatformVersionAtLeastFn = nullptr; 637 638 InstrProfStats &getPGOStats() { return PGOStats; } 639 llvm::IndexedInstrProfReader *getPGOReader() const { return PGOReader.get(); } 640 641 CoverageMappingModuleGen *getCoverageMapping() const { 642 return CoverageMapping.get(); 643 } 644 645 llvm::Constant *getStaticLocalDeclAddress(const VarDecl *D) { 646 return StaticLocalDeclMap[D]; 647 } 648 void setStaticLocalDeclAddress(const VarDecl *D, 649 llvm::Constant *C) { 650 StaticLocalDeclMap[D] = C; 651 } 652 653 llvm::Constant * 654 getOrCreateStaticVarDecl(const VarDecl &D, 655 llvm::GlobalValue::LinkageTypes Linkage); 656 657 llvm::GlobalVariable *getStaticLocalDeclGuardAddress(const VarDecl *D) { 658 return StaticLocalDeclGuardMap[D]; 659 } 660 void setStaticLocalDeclGuardAddress(const VarDecl *D, 661 llvm::GlobalVariable *C) { 662 StaticLocalDeclGuardMap[D] = C; 663 } 664 665 Address createUnnamedGlobalFrom(const VarDecl &D, llvm::Constant *Constant, 666 CharUnits Align); 667 668 bool lookupRepresentativeDecl(StringRef MangledName, 669 GlobalDecl &Result) const; 670 671 llvm::Constant *getAtomicSetterHelperFnMap(QualType Ty) { 672 return AtomicSetterHelperFnMap[Ty]; 673 } 674 void setAtomicSetterHelperFnMap(QualType Ty, 675 llvm::Constant *Fn) { 676 AtomicSetterHelperFnMap[Ty] = Fn; 677 } 678 679 llvm::Constant *getAtomicGetterHelperFnMap(QualType Ty) { 680 return AtomicGetterHelperFnMap[Ty]; 681 } 682 void setAtomicGetterHelperFnMap(QualType Ty, 683 llvm::Constant *Fn) { 684 AtomicGetterHelperFnMap[Ty] = Fn; 685 } 686 687 llvm::Constant *getTypeDescriptorFromMap(QualType Ty) { 688 return TypeDescriptorMap[Ty]; 689 } 690 void setTypeDescriptorInMap(QualType Ty, llvm::Constant *C) { 691 TypeDescriptorMap[Ty] = C; 692 } 693 694 CGDebugInfo *getModuleDebugInfo() { return DebugInfo.get(); } 695 696 llvm::MDNode *getNoObjCARCExceptionsMetadata() { 697 if (!NoObjCARCExceptionsMetadata) 698 NoObjCARCExceptionsMetadata = llvm::MDNode::get(getLLVMContext(), None); 699 return NoObjCARCExceptionsMetadata; 700 } 701 702 ASTContext &getContext() const { return Context; } 703 const LangOptions &getLangOpts() const { return LangOpts; } 704 const HeaderSearchOptions &getHeaderSearchOpts() 705 const { return HeaderSearchOpts; } 706 const PreprocessorOptions &getPreprocessorOpts() 707 const { return PreprocessorOpts; } 708 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; } 709 llvm::Module &getModule() const { return TheModule; } 710 DiagnosticsEngine &getDiags() const { return Diags; } 711 const llvm::DataLayout &getDataLayout() const { 712 return TheModule.getDataLayout(); 713 } 714 const TargetInfo &getTarget() const { return Target; } 715 const llvm::Triple &getTriple() const { return Target.getTriple(); } 716 bool supportsCOMDAT() const; 717 void maybeSetTrivialComdat(const Decl &D, llvm::GlobalObject &GO); 718 719 CGCXXABI &getCXXABI() const { return *ABI; } 720 llvm::LLVMContext &getLLVMContext() { return VMContext; } 721 722 bool shouldUseTBAA() const { return TBAA != nullptr; } 723 724 const TargetCodeGenInfo &getTargetCodeGenInfo(); 725 726 CodeGenTypes &getTypes() { return Types; } 727 728 CodeGenVTables &getVTables() { return VTables; } 729 730 ItaniumVTableContext &getItaniumVTableContext() { 731 return VTables.getItaniumVTableContext(); 732 } 733 734 MicrosoftVTableContext &getMicrosoftVTableContext() { 735 return VTables.getMicrosoftVTableContext(); 736 } 737 738 CtorList &getGlobalCtors() { return GlobalCtors; } 739 CtorList &getGlobalDtors() { return GlobalDtors; } 740 741 /// getTBAATypeInfo - Get metadata used to describe accesses to objects of 742 /// the given type. 743 llvm::MDNode *getTBAATypeInfo(QualType QTy); 744 745 /// getTBAAAccessInfo - Get TBAA information that describes an access to 746 /// an object of the given type. 747 TBAAAccessInfo getTBAAAccessInfo(QualType AccessType); 748 749 /// getTBAAVTablePtrAccessInfo - Get the TBAA information that describes an 750 /// access to a virtual table pointer. 751 TBAAAccessInfo getTBAAVTablePtrAccessInfo(llvm::Type *VTablePtrType); 752 753 llvm::MDNode *getTBAAStructInfo(QualType QTy); 754 755 /// getTBAABaseTypeInfo - Get metadata that describes the given base access 756 /// type. Return null if the type is not suitable for use in TBAA access tags. 757 llvm::MDNode *getTBAABaseTypeInfo(QualType QTy); 758 759 /// getTBAAAccessTagInfo - Get TBAA tag for a given memory access. 760 llvm::MDNode *getTBAAAccessTagInfo(TBAAAccessInfo Info); 761 762 /// mergeTBAAInfoForCast - Get merged TBAA information for the purposes of 763 /// type casts. 764 TBAAAccessInfo mergeTBAAInfoForCast(TBAAAccessInfo SourceInfo, 765 TBAAAccessInfo TargetInfo); 766 767 /// mergeTBAAInfoForConditionalOperator - Get merged TBAA information for the 768 /// purposes of conditional operator. 769 TBAAAccessInfo mergeTBAAInfoForConditionalOperator(TBAAAccessInfo InfoA, 770 TBAAAccessInfo InfoB); 771 772 /// mergeTBAAInfoForMemoryTransfer - Get merged TBAA information for the 773 /// purposes of memory transfer calls. 774 TBAAAccessInfo mergeTBAAInfoForMemoryTransfer(TBAAAccessInfo DestInfo, 775 TBAAAccessInfo SrcInfo); 776 777 /// getTBAAInfoForSubobject - Get TBAA information for an access with a given 778 /// base lvalue. 779 TBAAAccessInfo getTBAAInfoForSubobject(LValue Base, QualType AccessType) { 780 if (Base.getTBAAInfo().isMayAlias()) 781 return TBAAAccessInfo::getMayAliasInfo(); 782 return getTBAAAccessInfo(AccessType); 783 } 784 785 bool isTypeConstant(QualType QTy, bool ExcludeCtorDtor); 786 787 bool isPaddedAtomicType(QualType type); 788 bool isPaddedAtomicType(const AtomicType *type); 789 790 /// DecorateInstructionWithTBAA - Decorate the instruction with a TBAA tag. 791 void DecorateInstructionWithTBAA(llvm::Instruction *Inst, 792 TBAAAccessInfo TBAAInfo); 793 794 /// Adds !invariant.barrier !tag to instruction 795 void DecorateInstructionWithInvariantGroup(llvm::Instruction *I, 796 const CXXRecordDecl *RD); 797 798 /// Emit the given number of characters as a value of type size_t. 799 llvm::ConstantInt *getSize(CharUnits numChars); 800 801 /// Set the visibility for the given LLVM GlobalValue. 802 void setGlobalVisibility(llvm::GlobalValue *GV, const NamedDecl *D) const; 803 804 void setDSOLocal(llvm::GlobalValue *GV) const; 805 806 void setDLLImportDLLExport(llvm::GlobalValue *GV, GlobalDecl D) const; 807 void setDLLImportDLLExport(llvm::GlobalValue *GV, const NamedDecl *D) const; 808 /// Set visibility, dllimport/dllexport and dso_local. 809 /// This must be called after dllimport/dllexport is set. 810 void setGVProperties(llvm::GlobalValue *GV, GlobalDecl GD) const; 811 void setGVProperties(llvm::GlobalValue *GV, const NamedDecl *D) const; 812 813 void setGVPropertiesAux(llvm::GlobalValue *GV, const NamedDecl *D) const; 814 815 /// Set the TLS mode for the given LLVM GlobalValue for the thread-local 816 /// variable declaration D. 817 void setTLSMode(llvm::GlobalValue *GV, const VarDecl &D) const; 818 819 /// Get LLVM TLS mode from CodeGenOptions. 820 llvm::GlobalVariable::ThreadLocalMode GetDefaultLLVMTLSModel() const; 821 822 static llvm::GlobalValue::VisibilityTypes GetLLVMVisibility(Visibility V) { 823 switch (V) { 824 case DefaultVisibility: return llvm::GlobalValue::DefaultVisibility; 825 case HiddenVisibility: return llvm::GlobalValue::HiddenVisibility; 826 case ProtectedVisibility: return llvm::GlobalValue::ProtectedVisibility; 827 } 828 llvm_unreachable("unknown visibility!"); 829 } 830 831 llvm::Constant *GetAddrOfGlobal(GlobalDecl GD, 832 ForDefinition_t IsForDefinition 833 = NotForDefinition); 834 835 /// Will return a global variable of the given type. If a variable with a 836 /// different type already exists then a new variable with the right type 837 /// will be created and all uses of the old variable will be replaced with a 838 /// bitcast to the new variable. 839 llvm::GlobalVariable * 840 CreateOrReplaceCXXRuntimeVariable(StringRef Name, llvm::Type *Ty, 841 llvm::GlobalValue::LinkageTypes Linkage, 842 unsigned Alignment); 843 844 llvm::Function *CreateGlobalInitOrCleanUpFunction( 845 llvm::FunctionType *ty, const Twine &name, const CGFunctionInfo &FI, 846 SourceLocation Loc = SourceLocation(), bool TLS = false); 847 848 /// Return the AST address space of the underlying global variable for D, as 849 /// determined by its declaration. Normally this is the same as the address 850 /// space of D's type, but in CUDA, address spaces are associated with 851 /// declarations, not types. If D is nullptr, return the default address 852 /// space for global variable. 853 /// 854 /// For languages without explicit address spaces, if D has default address 855 /// space, target-specific global or constant address space may be returned. 856 LangAS GetGlobalVarAddressSpace(const VarDecl *D); 857 858 /// Return the AST address space of constant literal, which is used to emit 859 /// the constant literal as global variable in LLVM IR. 860 /// Note: This is not necessarily the address space of the constant literal 861 /// in AST. For address space agnostic language, e.g. C++, constant literal 862 /// in AST is always in default address space. 863 LangAS GetGlobalConstantAddressSpace() const; 864 865 /// Return the llvm::Constant for the address of the given global variable. 866 /// If Ty is non-null and if the global doesn't exist, then it will be created 867 /// with the specified type instead of whatever the normal requested type 868 /// would be. If IsForDefinition is true, it is guaranteed that an actual 869 /// global with type Ty will be returned, not conversion of a variable with 870 /// the same mangled name but some other type. 871 llvm::Constant *GetAddrOfGlobalVar(const VarDecl *D, 872 llvm::Type *Ty = nullptr, 873 ForDefinition_t IsForDefinition 874 = NotForDefinition); 875 876 /// Return the address of the given function. If Ty is non-null, then this 877 /// function will use the specified type if it has to create it. 878 llvm::Constant *GetAddrOfFunction(GlobalDecl GD, llvm::Type *Ty = nullptr, 879 bool ForVTable = false, 880 bool DontDefer = false, 881 ForDefinition_t IsForDefinition 882 = NotForDefinition); 883 884 // Return the function body address of the given function. 885 llvm::Constant *GetFunctionStart(const ValueDecl *Decl); 886 887 /// Get the address of the RTTI descriptor for the given type. 888 llvm::Constant *GetAddrOfRTTIDescriptor(QualType Ty, bool ForEH = false); 889 890 /// Get the address of a GUID. 891 ConstantAddress GetAddrOfMSGuidDecl(const MSGuidDecl *GD); 892 893 /// Get the address of a template parameter object. 894 ConstantAddress 895 GetAddrOfTemplateParamObject(const TemplateParamObjectDecl *TPO); 896 897 /// Get the address of the thunk for the given global decl. 898 llvm::Constant *GetAddrOfThunk(StringRef Name, llvm::Type *FnTy, 899 GlobalDecl GD); 900 901 /// Get a reference to the target of VD. 902 ConstantAddress GetWeakRefReference(const ValueDecl *VD); 903 904 /// Returns the assumed alignment of an opaque pointer to the given class. 905 CharUnits getClassPointerAlignment(const CXXRecordDecl *CD); 906 907 /// Returns the minimum object size for an object of the given class type 908 /// (or a class derived from it). 909 CharUnits getMinimumClassObjectSize(const CXXRecordDecl *CD); 910 911 /// Returns the minimum object size for an object of the given type. 912 CharUnits getMinimumObjectSize(QualType Ty) { 913 if (CXXRecordDecl *RD = Ty->getAsCXXRecordDecl()) 914 return getMinimumClassObjectSize(RD); 915 return getContext().getTypeSizeInChars(Ty); 916 } 917 918 /// Returns the assumed alignment of a virtual base of a class. 919 CharUnits getVBaseAlignment(CharUnits DerivedAlign, 920 const CXXRecordDecl *Derived, 921 const CXXRecordDecl *VBase); 922 923 /// Given a class pointer with an actual known alignment, and the 924 /// expected alignment of an object at a dynamic offset w.r.t that 925 /// pointer, return the alignment to assume at the offset. 926 CharUnits getDynamicOffsetAlignment(CharUnits ActualAlign, 927 const CXXRecordDecl *Class, 928 CharUnits ExpectedTargetAlign); 929 930 CharUnits 931 computeNonVirtualBaseClassOffset(const CXXRecordDecl *DerivedClass, 932 CastExpr::path_const_iterator Start, 933 CastExpr::path_const_iterator End); 934 935 /// Returns the offset from a derived class to a class. Returns null if the 936 /// offset is 0. 937 llvm::Constant * 938 GetNonVirtualBaseClassOffset(const CXXRecordDecl *ClassDecl, 939 CastExpr::path_const_iterator PathBegin, 940 CastExpr::path_const_iterator PathEnd); 941 942 llvm::FoldingSet<BlockByrefHelpers> ByrefHelpersCache; 943 944 /// Fetches the global unique block count. 945 int getUniqueBlockCount() { return ++Block.GlobalUniqueCount; } 946 947 /// Fetches the type of a generic block descriptor. 948 llvm::Type *getBlockDescriptorType(); 949 950 /// The type of a generic block literal. 951 llvm::Type *getGenericBlockLiteralType(); 952 953 /// Gets the address of a block which requires no captures. 954 llvm::Constant *GetAddrOfGlobalBlock(const BlockExpr *BE, StringRef Name); 955 956 /// Returns the address of a block which requires no caputres, or null if 957 /// we've yet to emit the block for BE. 958 llvm::Constant *getAddrOfGlobalBlockIfEmitted(const BlockExpr *BE) { 959 return EmittedGlobalBlocks.lookup(BE); 960 } 961 962 /// Notes that BE's global block is available via Addr. Asserts that BE 963 /// isn't already emitted. 964 void setAddrOfGlobalBlock(const BlockExpr *BE, llvm::Constant *Addr); 965 966 /// Return a pointer to a constant CFString object for the given string. 967 ConstantAddress GetAddrOfConstantCFString(const StringLiteral *Literal); 968 969 /// Return a pointer to a constant NSString object for the given string. Or a 970 /// user defined String object as defined via 971 /// -fconstant-string-class=class_name option. 972 ConstantAddress GetAddrOfConstantString(const StringLiteral *Literal); 973 974 /// Return a constant array for the given string. 975 llvm::Constant *GetConstantArrayFromStringLiteral(const StringLiteral *E); 976 977 /// Return a pointer to a constant array for the given string literal. 978 ConstantAddress 979 GetAddrOfConstantStringFromLiteral(const StringLiteral *S, 980 StringRef Name = ".str"); 981 982 /// Return a pointer to a constant array for the given ObjCEncodeExpr node. 983 ConstantAddress 984 GetAddrOfConstantStringFromObjCEncode(const ObjCEncodeExpr *); 985 986 /// Returns a pointer to a character array containing the literal and a 987 /// terminating '\0' character. The result has pointer to array type. 988 /// 989 /// \param GlobalName If provided, the name to use for the global (if one is 990 /// created). 991 ConstantAddress 992 GetAddrOfConstantCString(const std::string &Str, 993 const char *GlobalName = nullptr); 994 995 /// Returns a pointer to a constant global variable for the given file-scope 996 /// compound literal expression. 997 ConstantAddress GetAddrOfConstantCompoundLiteral(const CompoundLiteralExpr*E); 998 999 /// If it's been emitted already, returns the GlobalVariable corresponding to 1000 /// a compound literal. Otherwise, returns null. 1001 llvm::GlobalVariable * 1002 getAddrOfConstantCompoundLiteralIfEmitted(const CompoundLiteralExpr *E); 1003 1004 /// Notes that CLE's GlobalVariable is GV. Asserts that CLE isn't already 1005 /// emitted. 1006 void setAddrOfConstantCompoundLiteral(const CompoundLiteralExpr *CLE, 1007 llvm::GlobalVariable *GV); 1008 1009 /// Returns a pointer to a global variable representing a temporary 1010 /// with static or thread storage duration. 1011 ConstantAddress GetAddrOfGlobalTemporary(const MaterializeTemporaryExpr *E, 1012 const Expr *Inner); 1013 1014 /// Retrieve the record type that describes the state of an 1015 /// Objective-C fast enumeration loop (for..in). 1016 QualType getObjCFastEnumerationStateType(); 1017 1018 // Produce code for this constructor/destructor. This method doesn't try 1019 // to apply any ABI rules about which other constructors/destructors 1020 // are needed or if they are alias to each other. 1021 llvm::Function *codegenCXXStructor(GlobalDecl GD); 1022 1023 /// Return the address of the constructor/destructor of the given type. 1024 llvm::Constant * 1025 getAddrOfCXXStructor(GlobalDecl GD, const CGFunctionInfo *FnInfo = nullptr, 1026 llvm::FunctionType *FnType = nullptr, 1027 bool DontDefer = false, 1028 ForDefinition_t IsForDefinition = NotForDefinition) { 1029 return cast<llvm::Constant>(getAddrAndTypeOfCXXStructor(GD, FnInfo, FnType, 1030 DontDefer, 1031 IsForDefinition) 1032 .getCallee()); 1033 } 1034 1035 llvm::FunctionCallee getAddrAndTypeOfCXXStructor( 1036 GlobalDecl GD, const CGFunctionInfo *FnInfo = nullptr, 1037 llvm::FunctionType *FnType = nullptr, bool DontDefer = false, 1038 ForDefinition_t IsForDefinition = NotForDefinition); 1039 1040 /// Given a builtin id for a function like "__builtin_fabsf", return a 1041 /// Function* for "fabsf". 1042 llvm::Constant *getBuiltinLibFunction(const FunctionDecl *FD, 1043 unsigned BuiltinID); 1044 1045 llvm::Function *getIntrinsic(unsigned IID, ArrayRef<llvm::Type*> Tys = None); 1046 1047 /// Emit code for a single top level declaration. 1048 void EmitTopLevelDecl(Decl *D); 1049 1050 /// Stored a deferred empty coverage mapping for an unused 1051 /// and thus uninstrumented top level declaration. 1052 void AddDeferredUnusedCoverageMapping(Decl *D); 1053 1054 /// Remove the deferred empty coverage mapping as this 1055 /// declaration is actually instrumented. 1056 void ClearUnusedCoverageMapping(const Decl *D); 1057 1058 /// Emit all the deferred coverage mappings 1059 /// for the uninstrumented functions. 1060 void EmitDeferredUnusedCoverageMappings(); 1061 1062 /// Emit an alias for "main" if it has no arguments (needed for wasm). 1063 void EmitMainVoidAlias(); 1064 1065 /// Tell the consumer that this variable has been instantiated. 1066 void HandleCXXStaticMemberVarInstantiation(VarDecl *VD); 1067 1068 /// If the declaration has internal linkage but is inside an 1069 /// extern "C" linkage specification, prepare to emit an alias for it 1070 /// to the expected name. 1071 template<typename SomeDecl> 1072 void MaybeHandleStaticInExternC(const SomeDecl *D, llvm::GlobalValue *GV); 1073 1074 /// Add a global to a list to be added to the llvm.used metadata. 1075 void addUsedGlobal(llvm::GlobalValue *GV); 1076 1077 /// Add a global to a list to be added to the llvm.compiler.used metadata. 1078 void addCompilerUsedGlobal(llvm::GlobalValue *GV); 1079 1080 /// Add a global to a list to be added to the llvm.compiler.used metadata. 1081 void addUsedOrCompilerUsedGlobal(llvm::GlobalValue *GV); 1082 1083 /// Add a destructor and object to add to the C++ global destructor function. 1084 void AddCXXDtorEntry(llvm::FunctionCallee DtorFn, llvm::Constant *Object) { 1085 CXXGlobalDtorsOrStermFinalizers.emplace_back(DtorFn.getFunctionType(), 1086 DtorFn.getCallee(), Object); 1087 } 1088 1089 /// Add an sterm finalizer to the C++ global cleanup function. 1090 void AddCXXStermFinalizerEntry(llvm::FunctionCallee DtorFn) { 1091 CXXGlobalDtorsOrStermFinalizers.emplace_back(DtorFn.getFunctionType(), 1092 DtorFn.getCallee(), nullptr); 1093 } 1094 1095 /// Add an sterm finalizer to its own llvm.global_dtors entry. 1096 void AddCXXStermFinalizerToGlobalDtor(llvm::Function *StermFinalizer, 1097 int Priority) { 1098 AddGlobalDtor(StermFinalizer, Priority); 1099 } 1100 1101 void AddCXXPrioritizedStermFinalizerEntry(llvm::Function *StermFinalizer, 1102 int Priority) { 1103 OrderGlobalInitsOrStermFinalizers Key(Priority, 1104 PrioritizedCXXStermFinalizers.size()); 1105 PrioritizedCXXStermFinalizers.push_back( 1106 std::make_pair(Key, StermFinalizer)); 1107 } 1108 1109 /// Create or return a runtime function declaration with the specified type 1110 /// and name. If \p AssumeConvergent is true, the call will have the 1111 /// convergent attribute added. 1112 llvm::FunctionCallee 1113 CreateRuntimeFunction(llvm::FunctionType *Ty, StringRef Name, 1114 llvm::AttributeList ExtraAttrs = llvm::AttributeList(), 1115 bool Local = false, bool AssumeConvergent = false); 1116 1117 /// Create a new runtime global variable with the specified type and name. 1118 llvm::Constant *CreateRuntimeVariable(llvm::Type *Ty, 1119 StringRef Name); 1120 1121 ///@name Custom Blocks Runtime Interfaces 1122 ///@{ 1123 1124 llvm::Constant *getNSConcreteGlobalBlock(); 1125 llvm::Constant *getNSConcreteStackBlock(); 1126 llvm::FunctionCallee getBlockObjectAssign(); 1127 llvm::FunctionCallee getBlockObjectDispose(); 1128 1129 ///@} 1130 1131 llvm::Function *getLLVMLifetimeStartFn(); 1132 llvm::Function *getLLVMLifetimeEndFn(); 1133 1134 // Make sure that this type is translated. 1135 void UpdateCompletedType(const TagDecl *TD); 1136 1137 llvm::Constant *getMemberPointerConstant(const UnaryOperator *e); 1138 1139 /// Emit type info if type of an expression is a variably modified 1140 /// type. Also emit proper debug info for cast types. 1141 void EmitExplicitCastExprType(const ExplicitCastExpr *E, 1142 CodeGenFunction *CGF = nullptr); 1143 1144 /// Return the result of value-initializing the given type, i.e. a null 1145 /// expression of the given type. This is usually, but not always, an LLVM 1146 /// null constant. 1147 llvm::Constant *EmitNullConstant(QualType T); 1148 1149 /// Return a null constant appropriate for zero-initializing a base class with 1150 /// the given type. This is usually, but not always, an LLVM null constant. 1151 llvm::Constant *EmitNullConstantForBase(const CXXRecordDecl *Record); 1152 1153 /// Emit a general error that something can't be done. 1154 void Error(SourceLocation loc, StringRef error); 1155 1156 /// Print out an error that codegen doesn't support the specified stmt yet. 1157 void ErrorUnsupported(const Stmt *S, const char *Type); 1158 1159 /// Print out an error that codegen doesn't support the specified decl yet. 1160 void ErrorUnsupported(const Decl *D, const char *Type); 1161 1162 /// Set the attributes on the LLVM function for the given decl and function 1163 /// info. This applies attributes necessary for handling the ABI as well as 1164 /// user specified attributes like section. 1165 void SetInternalFunctionAttributes(GlobalDecl GD, llvm::Function *F, 1166 const CGFunctionInfo &FI); 1167 1168 /// Set the LLVM function attributes (sext, zext, etc). 1169 void SetLLVMFunctionAttributes(GlobalDecl GD, const CGFunctionInfo &Info, 1170 llvm::Function *F, bool IsThunk); 1171 1172 /// Set the LLVM function attributes which only apply to a function 1173 /// definition. 1174 void SetLLVMFunctionAttributesForDefinition(const Decl *D, llvm::Function *F); 1175 1176 /// Set the LLVM function attributes that represent floating point 1177 /// environment. 1178 void setLLVMFunctionFEnvAttributes(const FunctionDecl *D, llvm::Function *F); 1179 1180 /// Return true iff the given type uses 'sret' when used as a return type. 1181 bool ReturnTypeUsesSRet(const CGFunctionInfo &FI); 1182 1183 /// Return true iff the given type uses an argument slot when 'sret' is used 1184 /// as a return type. 1185 bool ReturnSlotInterferesWithArgs(const CGFunctionInfo &FI); 1186 1187 /// Return true iff the given type uses 'fpret' when used as a return type. 1188 bool ReturnTypeUsesFPRet(QualType ResultType); 1189 1190 /// Return true iff the given type uses 'fp2ret' when used as a return type. 1191 bool ReturnTypeUsesFP2Ret(QualType ResultType); 1192 1193 /// Get the LLVM attributes and calling convention to use for a particular 1194 /// function type. 1195 /// 1196 /// \param Name - The function name. 1197 /// \param Info - The function type information. 1198 /// \param CalleeInfo - The callee information these attributes are being 1199 /// constructed for. If valid, the attributes applied to this decl may 1200 /// contribute to the function attributes and calling convention. 1201 /// \param Attrs [out] - On return, the attribute list to use. 1202 /// \param CallingConv [out] - On return, the LLVM calling convention to use. 1203 void ConstructAttributeList(StringRef Name, const CGFunctionInfo &Info, 1204 CGCalleeInfo CalleeInfo, 1205 llvm::AttributeList &Attrs, unsigned &CallingConv, 1206 bool AttrOnCallSite, bool IsThunk); 1207 1208 /// Adds attributes to F according to our CodeGenOptions and LangOptions, as 1209 /// though we had emitted it ourselves. We remove any attributes on F that 1210 /// conflict with the attributes we add here. 1211 /// 1212 /// This is useful for adding attrs to bitcode modules that you want to link 1213 /// with but don't control, such as CUDA's libdevice. When linking with such 1214 /// a bitcode library, you might want to set e.g. its functions' 1215 /// "unsafe-fp-math" attribute to match the attr of the functions you're 1216 /// codegen'ing. Otherwise, LLVM will interpret the bitcode module's lack of 1217 /// unsafe-fp-math attrs as tantamount to unsafe-fp-math=false, and then LLVM 1218 /// will propagate unsafe-fp-math=false up to every transitive caller of a 1219 /// function in the bitcode library! 1220 /// 1221 /// With the exception of fast-math attrs, this will only make the attributes 1222 /// on the function more conservative. But it's unsafe to call this on a 1223 /// function which relies on particular fast-math attributes for correctness. 1224 /// It's up to you to ensure that this is safe. 1225 void addDefaultFunctionDefinitionAttributes(llvm::Function &F); 1226 1227 /// Like the overload taking a `Function &`, but intended specifically 1228 /// for frontends that want to build on Clang's target-configuration logic. 1229 void addDefaultFunctionDefinitionAttributes(llvm::AttrBuilder &attrs); 1230 1231 StringRef getMangledName(GlobalDecl GD); 1232 StringRef getBlockMangledName(GlobalDecl GD, const BlockDecl *BD); 1233 1234 void EmitTentativeDefinition(const VarDecl *D); 1235 1236 void EmitExternalDeclaration(const VarDecl *D); 1237 1238 void EmitVTable(CXXRecordDecl *Class); 1239 1240 void RefreshTypeCacheForClass(const CXXRecordDecl *Class); 1241 1242 /// Appends Opts to the "llvm.linker.options" metadata value. 1243 void AppendLinkerOptions(StringRef Opts); 1244 1245 /// Appends a detect mismatch command to the linker options. 1246 void AddDetectMismatch(StringRef Name, StringRef Value); 1247 1248 /// Appends a dependent lib to the appropriate metadata value. 1249 void AddDependentLib(StringRef Lib); 1250 1251 1252 llvm::GlobalVariable::LinkageTypes getFunctionLinkage(GlobalDecl GD); 1253 1254 void setFunctionLinkage(GlobalDecl GD, llvm::Function *F) { 1255 F->setLinkage(getFunctionLinkage(GD)); 1256 } 1257 1258 /// Return the appropriate linkage for the vtable, VTT, and type information 1259 /// of the given class. 1260 llvm::GlobalVariable::LinkageTypes getVTableLinkage(const CXXRecordDecl *RD); 1261 1262 /// Return the store size, in character units, of the given LLVM type. 1263 CharUnits GetTargetTypeStoreSize(llvm::Type *Ty) const; 1264 1265 /// Returns LLVM linkage for a declarator. 1266 llvm::GlobalValue::LinkageTypes 1267 getLLVMLinkageForDeclarator(const DeclaratorDecl *D, GVALinkage Linkage, 1268 bool IsConstantVariable); 1269 1270 /// Returns LLVM linkage for a declarator. 1271 llvm::GlobalValue::LinkageTypes 1272 getLLVMLinkageVarDefinition(const VarDecl *VD, bool IsConstant); 1273 1274 /// Emit all the global annotations. 1275 void EmitGlobalAnnotations(); 1276 1277 /// Emit an annotation string. 1278 llvm::Constant *EmitAnnotationString(StringRef Str); 1279 1280 /// Emit the annotation's translation unit. 1281 llvm::Constant *EmitAnnotationUnit(SourceLocation Loc); 1282 1283 /// Emit the annotation line number. 1284 llvm::Constant *EmitAnnotationLineNo(SourceLocation L); 1285 1286 /// Emit additional args of the annotation. 1287 llvm::Constant *EmitAnnotationArgs(const AnnotateAttr *Attr); 1288 1289 /// Generate the llvm::ConstantStruct which contains the annotation 1290 /// information for a given GlobalValue. The annotation struct is 1291 /// {i8 *, i8 *, i8 *, i32}. The first field is a constant expression, the 1292 /// GlobalValue being annotated. The second field is the constant string 1293 /// created from the AnnotateAttr's annotation. The third field is a constant 1294 /// string containing the name of the translation unit. The fourth field is 1295 /// the line number in the file of the annotated value declaration. 1296 llvm::Constant *EmitAnnotateAttr(llvm::GlobalValue *GV, 1297 const AnnotateAttr *AA, 1298 SourceLocation L); 1299 1300 /// Add global annotations that are set on D, for the global GV. Those 1301 /// annotations are emitted during finalization of the LLVM code. 1302 void AddGlobalAnnotations(const ValueDecl *D, llvm::GlobalValue *GV); 1303 1304 bool isInNoSanitizeList(SanitizerMask Kind, llvm::Function *Fn, 1305 SourceLocation Loc) const; 1306 1307 bool isInNoSanitizeList(llvm::GlobalVariable *GV, SourceLocation Loc, 1308 QualType Ty, StringRef Category = StringRef()) const; 1309 1310 /// Imbue XRay attributes to a function, applying the always/never attribute 1311 /// lists in the process. Returns true if we did imbue attributes this way, 1312 /// false otherwise. 1313 bool imbueXRayAttrs(llvm::Function *Fn, SourceLocation Loc, 1314 StringRef Category = StringRef()) const; 1315 1316 /// Returns true if function at the given location should be excluded from 1317 /// profile instrumentation. 1318 bool isProfileInstrExcluded(llvm::Function *Fn, SourceLocation Loc) const; 1319 1320 SanitizerMetadata *getSanitizerMetadata() { 1321 return SanitizerMD.get(); 1322 } 1323 1324 void addDeferredVTable(const CXXRecordDecl *RD) { 1325 DeferredVTables.push_back(RD); 1326 } 1327 1328 /// Emit code for a single global function or var decl. Forward declarations 1329 /// are emitted lazily. 1330 void EmitGlobal(GlobalDecl D); 1331 1332 bool TryEmitBaseDestructorAsAlias(const CXXDestructorDecl *D); 1333 1334 llvm::GlobalValue *GetGlobalValue(StringRef Ref); 1335 1336 /// Set attributes which are common to any form of a global definition (alias, 1337 /// Objective-C method, function, global variable). 1338 /// 1339 /// NOTE: This should only be called for definitions. 1340 void SetCommonAttributes(GlobalDecl GD, llvm::GlobalValue *GV); 1341 1342 void addReplacement(StringRef Name, llvm::Constant *C); 1343 1344 void addGlobalValReplacement(llvm::GlobalValue *GV, llvm::Constant *C); 1345 1346 /// Emit a code for threadprivate directive. 1347 /// \param D Threadprivate declaration. 1348 void EmitOMPThreadPrivateDecl(const OMPThreadPrivateDecl *D); 1349 1350 /// Emit a code for declare reduction construct. 1351 void EmitOMPDeclareReduction(const OMPDeclareReductionDecl *D, 1352 CodeGenFunction *CGF = nullptr); 1353 1354 /// Emit a code for declare mapper construct. 1355 void EmitOMPDeclareMapper(const OMPDeclareMapperDecl *D, 1356 CodeGenFunction *CGF = nullptr); 1357 1358 /// Emit a code for requires directive. 1359 /// \param D Requires declaration 1360 void EmitOMPRequiresDecl(const OMPRequiresDecl *D); 1361 1362 /// Emit a code for the allocate directive. 1363 /// \param D The allocate declaration 1364 void EmitOMPAllocateDecl(const OMPAllocateDecl *D); 1365 1366 /// Returns whether the given record has hidden LTO visibility and therefore 1367 /// may participate in (single-module) CFI and whole-program vtable 1368 /// optimization. 1369 bool HasHiddenLTOVisibility(const CXXRecordDecl *RD); 1370 1371 /// Returns whether the given record has public std LTO visibility 1372 /// and therefore may not participate in (single-module) CFI and whole-program 1373 /// vtable optimization. 1374 bool HasLTOVisibilityPublicStd(const CXXRecordDecl *RD); 1375 1376 /// Returns the vcall visibility of the given type. This is the scope in which 1377 /// a virtual function call could be made which ends up being dispatched to a 1378 /// member function of this class. This scope can be wider than the visibility 1379 /// of the class itself when the class has a more-visible dynamic base class. 1380 /// The client should pass in an empty Visited set, which is used to prevent 1381 /// redundant recursive processing. 1382 llvm::GlobalObject::VCallVisibility 1383 GetVCallVisibilityLevel(const CXXRecordDecl *RD, 1384 llvm::DenseSet<const CXXRecordDecl *> &Visited); 1385 1386 /// Emit type metadata for the given vtable using the given layout. 1387 void EmitVTableTypeMetadata(const CXXRecordDecl *RD, 1388 llvm::GlobalVariable *VTable, 1389 const VTableLayout &VTLayout); 1390 1391 /// Generate a cross-DSO type identifier for MD. 1392 llvm::ConstantInt *CreateCrossDsoCfiTypeId(llvm::Metadata *MD); 1393 1394 /// Create a metadata identifier for the given type. This may either be an 1395 /// MDString (for external identifiers) or a distinct unnamed MDNode (for 1396 /// internal identifiers). 1397 llvm::Metadata *CreateMetadataIdentifierForType(QualType T); 1398 1399 /// Create a metadata identifier that is intended to be used to check virtual 1400 /// calls via a member function pointer. 1401 llvm::Metadata *CreateMetadataIdentifierForVirtualMemPtrType(QualType T); 1402 1403 /// Create a metadata identifier for the generalization of the given type. 1404 /// This may either be an MDString (for external identifiers) or a distinct 1405 /// unnamed MDNode (for internal identifiers). 1406 llvm::Metadata *CreateMetadataIdentifierGeneralized(QualType T); 1407 1408 /// Create and attach type metadata to the given function. 1409 void CreateFunctionTypeMetadataForIcall(const FunctionDecl *FD, 1410 llvm::Function *F); 1411 1412 /// Whether this function's return type has no side effects, and thus may 1413 /// be trivially discarded if it is unused. 1414 bool MayDropFunctionReturn(const ASTContext &Context, QualType ReturnType); 1415 1416 /// Returns whether this module needs the "all-vtables" type identifier. 1417 bool NeedAllVtablesTypeId() const; 1418 1419 /// Create and attach type metadata for the given vtable. 1420 void AddVTableTypeMetadata(llvm::GlobalVariable *VTable, CharUnits Offset, 1421 const CXXRecordDecl *RD); 1422 1423 /// Return a vector of most-base classes for RD. This is used to implement 1424 /// control flow integrity checks for member function pointers. 1425 /// 1426 /// A most-base class of a class C is defined as a recursive base class of C, 1427 /// including C itself, that does not have any bases. 1428 std::vector<const CXXRecordDecl *> 1429 getMostBaseClasses(const CXXRecordDecl *RD); 1430 1431 /// Get the declaration of std::terminate for the platform. 1432 llvm::FunctionCallee getTerminateFn(); 1433 1434 llvm::SanitizerStatReport &getSanStats(); 1435 1436 llvm::Value * 1437 createOpenCLIntToSamplerConversion(const Expr *E, CodeGenFunction &CGF); 1438 1439 /// OpenCL v1.2 s5.6.4.6 allows the compiler to store kernel argument 1440 /// information in the program executable. The argument information stored 1441 /// includes the argument name, its type, the address and access qualifiers 1442 /// used. This helper can be used to generate metadata for source code kernel 1443 /// function as well as generated implicitly kernels. If a kernel is generated 1444 /// implicitly null value has to be passed to the last two parameters, 1445 /// otherwise all parameters must have valid non-null values. 1446 /// \param FN is a pointer to IR function being generated. 1447 /// \param FD is a pointer to function declaration if any. 1448 /// \param CGF is a pointer to CodeGenFunction that generates this function. 1449 void GenOpenCLArgMetadata(llvm::Function *FN, 1450 const FunctionDecl *FD = nullptr, 1451 CodeGenFunction *CGF = nullptr); 1452 1453 /// Get target specific null pointer. 1454 /// \param T is the LLVM type of the null pointer. 1455 /// \param QT is the clang QualType of the null pointer. 1456 llvm::Constant *getNullPointer(llvm::PointerType *T, QualType QT); 1457 1458 CharUnits getNaturalTypeAlignment(QualType T, 1459 LValueBaseInfo *BaseInfo = nullptr, 1460 TBAAAccessInfo *TBAAInfo = nullptr, 1461 bool forPointeeType = false); 1462 CharUnits getNaturalPointeeTypeAlignment(QualType T, 1463 LValueBaseInfo *BaseInfo = nullptr, 1464 TBAAAccessInfo *TBAAInfo = nullptr); 1465 bool stopAutoInit(); 1466 1467 /// Print the postfix for externalized static variable for single source 1468 /// offloading languages CUDA and HIP. 1469 void printPostfixForExternalizedStaticVar(llvm::raw_ostream &OS) const; 1470 1471 private: 1472 llvm::Constant *GetOrCreateLLVMFunction( 1473 StringRef MangledName, llvm::Type *Ty, GlobalDecl D, bool ForVTable, 1474 bool DontDefer = false, bool IsThunk = false, 1475 llvm::AttributeList ExtraAttrs = llvm::AttributeList(), 1476 ForDefinition_t IsForDefinition = NotForDefinition); 1477 1478 llvm::Constant *GetOrCreateMultiVersionResolver(GlobalDecl GD, 1479 llvm::Type *DeclTy, 1480 const FunctionDecl *FD); 1481 void UpdateMultiVersionNames(GlobalDecl GD, const FunctionDecl *FD); 1482 1483 llvm::Constant * 1484 GetOrCreateLLVMGlobal(StringRef MangledName, llvm::Type *Ty, LangAS AddrSpace, 1485 const VarDecl *D, 1486 ForDefinition_t IsForDefinition = NotForDefinition); 1487 1488 bool GetCPUAndFeaturesAttributes(GlobalDecl GD, 1489 llvm::AttrBuilder &AttrBuilder); 1490 void setNonAliasAttributes(GlobalDecl GD, llvm::GlobalObject *GO); 1491 1492 /// Set function attributes for a function declaration. 1493 void SetFunctionAttributes(GlobalDecl GD, llvm::Function *F, 1494 bool IsIncompleteFunction, bool IsThunk); 1495 1496 void EmitGlobalDefinition(GlobalDecl D, llvm::GlobalValue *GV = nullptr); 1497 1498 void EmitGlobalFunctionDefinition(GlobalDecl GD, llvm::GlobalValue *GV); 1499 void EmitMultiVersionFunctionDefinition(GlobalDecl GD, llvm::GlobalValue *GV); 1500 1501 void EmitGlobalVarDefinition(const VarDecl *D, bool IsTentative = false); 1502 void EmitExternalVarDeclaration(const VarDecl *D); 1503 void EmitAliasDefinition(GlobalDecl GD); 1504 void emitIFuncDefinition(GlobalDecl GD); 1505 void emitCPUDispatchDefinition(GlobalDecl GD); 1506 void EmitTargetClonesResolver(GlobalDecl GD); 1507 void EmitObjCPropertyImplementations(const ObjCImplementationDecl *D); 1508 void EmitObjCIvarInitializations(ObjCImplementationDecl *D); 1509 1510 // C++ related functions. 1511 1512 void EmitDeclContext(const DeclContext *DC); 1513 void EmitLinkageSpec(const LinkageSpecDecl *D); 1514 1515 /// Emit the function that initializes C++ thread_local variables. 1516 void EmitCXXThreadLocalInitFunc(); 1517 1518 /// Emit the function that initializes C++ globals. 1519 void EmitCXXGlobalInitFunc(); 1520 1521 /// Emit the function that performs cleanup associated with C++ globals. 1522 void EmitCXXGlobalCleanUpFunc(); 1523 1524 /// Emit the function that initializes the specified global (if PerformInit is 1525 /// true) and registers its destructor. 1526 void EmitCXXGlobalVarDeclInitFunc(const VarDecl *D, 1527 llvm::GlobalVariable *Addr, 1528 bool PerformInit); 1529 1530 void EmitPointerToInitFunc(const VarDecl *VD, llvm::GlobalVariable *Addr, 1531 llvm::Function *InitFunc, InitSegAttr *ISA); 1532 1533 // FIXME: Hardcoding priority here is gross. 1534 void AddGlobalCtor(llvm::Function *Ctor, int Priority = 65535, 1535 llvm::Constant *AssociatedData = nullptr); 1536 void AddGlobalDtor(llvm::Function *Dtor, int Priority = 65535, 1537 bool IsDtorAttrFunc = false); 1538 1539 /// EmitCtorList - Generates a global array of functions and priorities using 1540 /// the given list and name. This array will have appending linkage and is 1541 /// suitable for use as a LLVM constructor or destructor array. Clears Fns. 1542 void EmitCtorList(CtorList &Fns, const char *GlobalName); 1543 1544 /// Emit any needed decls for which code generation was deferred. 1545 void EmitDeferred(); 1546 1547 /// Try to emit external vtables as available_externally if they have emitted 1548 /// all inlined virtual functions. It runs after EmitDeferred() and therefore 1549 /// is not allowed to create new references to things that need to be emitted 1550 /// lazily. 1551 void EmitVTablesOpportunistically(); 1552 1553 /// Call replaceAllUsesWith on all pairs in Replacements. 1554 void applyReplacements(); 1555 1556 /// Call replaceAllUsesWith on all pairs in GlobalValReplacements. 1557 void applyGlobalValReplacements(); 1558 1559 void checkAliases(); 1560 1561 std::map<int, llvm::TinyPtrVector<llvm::Function *>> DtorsUsingAtExit; 1562 1563 /// Register functions annotated with __attribute__((destructor)) using 1564 /// __cxa_atexit, if it is available, or atexit otherwise. 1565 void registerGlobalDtorsWithAtExit(); 1566 1567 // When using sinit and sterm functions, unregister 1568 // __attribute__((destructor)) annotated functions which were previously 1569 // registered by the atexit subroutine using unatexit. 1570 void unregisterGlobalDtorsWithUnAtExit(); 1571 1572 void emitMultiVersionFunctions(); 1573 1574 /// Emit any vtables which we deferred and still have a use for. 1575 void EmitDeferredVTables(); 1576 1577 /// Emit a dummy function that reference a CoreFoundation symbol when 1578 /// @available is used on Darwin. 1579 void emitAtAvailableLinkGuard(); 1580 1581 /// Emit the llvm.used and llvm.compiler.used metadata. 1582 void emitLLVMUsed(); 1583 1584 /// Emit the link options introduced by imported modules. 1585 void EmitModuleLinkOptions(); 1586 1587 /// Emit aliases for internal-linkage declarations inside "C" language 1588 /// linkage specifications, giving them the "expected" name where possible. 1589 void EmitStaticExternCAliases(); 1590 1591 void EmitDeclMetadata(); 1592 1593 /// Emit the Clang version as llvm.ident metadata. 1594 void EmitVersionIdentMetadata(); 1595 1596 /// Emit the Clang commandline as llvm.commandline metadata. 1597 void EmitCommandLineMetadata(); 1598 1599 /// Emit the module flag metadata used to pass options controlling the 1600 /// the backend to LLVM. 1601 void EmitBackendOptionsMetadata(const CodeGenOptions CodeGenOpts); 1602 1603 /// Emits OpenCL specific Metadata e.g. OpenCL version. 1604 void EmitOpenCLMetadata(); 1605 1606 /// Emit the llvm.gcov metadata used to tell LLVM where to emit the .gcno and 1607 /// .gcda files in a way that persists in .bc files. 1608 void EmitCoverageFile(); 1609 1610 /// Determine whether the definition must be emitted; if this returns \c 1611 /// false, the definition can be emitted lazily if it's used. 1612 bool MustBeEmitted(const ValueDecl *D); 1613 1614 /// Determine whether the definition can be emitted eagerly, or should be 1615 /// delayed until the end of the translation unit. This is relevant for 1616 /// definitions whose linkage can change, e.g. implicit function instantions 1617 /// which may later be explicitly instantiated. 1618 bool MayBeEmittedEagerly(const ValueDecl *D); 1619 1620 /// Check whether we can use a "simpler", more core exceptions personality 1621 /// function. 1622 void SimplifyPersonality(); 1623 1624 /// Helper function for ConstructAttributeList and 1625 /// addDefaultFunctionDefinitionAttributes. Builds a set of function 1626 /// attributes to add to a function with the given properties. 1627 void getDefaultFunctionAttributes(StringRef Name, bool HasOptnone, 1628 bool AttrOnCallSite, 1629 llvm::AttrBuilder &FuncAttrs); 1630 1631 llvm::Metadata *CreateMetadataIdentifierImpl(QualType T, MetadataTypeMap &Map, 1632 StringRef Suffix); 1633 }; 1634 1635 } // end namespace CodeGen 1636 } // end namespace clang 1637 1638 #endif // LLVM_CLANG_LIB_CODEGEN_CODEGENMODULE_H 1639