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