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 return getLangOpts().hasDefaultVisibilityExportMapping() && D && 803 (D->getLinkageAndVisibility().getVisibility() == 804 DefaultVisibility) && 805 (getLangOpts().isAllDefaultVisibilityExportMapping() || 806 (getLangOpts().isExplicitDefaultVisibilityExportMapping() && 807 D->getLinkageAndVisibility().isVisibilityExplicit())); 808 } 809 void setDLLImportDLLExport(llvm::GlobalValue *GV, GlobalDecl D) const; 810 void setDLLImportDLLExport(llvm::GlobalValue *GV, const NamedDecl *D) const; 811 /// Set visibility, dllimport/dllexport and dso_local. 812 /// This must be called after dllimport/dllexport is set. 813 void setGVProperties(llvm::GlobalValue *GV, GlobalDecl GD) const; 814 void setGVProperties(llvm::GlobalValue *GV, const NamedDecl *D) const; 815 816 void setGVPropertiesAux(llvm::GlobalValue *GV, const NamedDecl *D) const; 817 818 /// Set the TLS mode for the given LLVM GlobalValue for the thread-local 819 /// variable declaration D. 820 void setTLSMode(llvm::GlobalValue *GV, const VarDecl &D) const; 821 822 /// Get LLVM TLS mode from CodeGenOptions. 823 llvm::GlobalVariable::ThreadLocalMode GetDefaultLLVMTLSModel() const; 824 825 static llvm::GlobalValue::VisibilityTypes GetLLVMVisibility(Visibility V) { 826 switch (V) { 827 case DefaultVisibility: return llvm::GlobalValue::DefaultVisibility; 828 case HiddenVisibility: return llvm::GlobalValue::HiddenVisibility; 829 case ProtectedVisibility: return llvm::GlobalValue::ProtectedVisibility; 830 } 831 llvm_unreachable("unknown visibility!"); 832 } 833 834 llvm::Constant *GetAddrOfGlobal(GlobalDecl GD, 835 ForDefinition_t IsForDefinition 836 = NotForDefinition); 837 838 /// Will return a global variable of the given type. If a variable with a 839 /// different type already exists then a new variable with the right type 840 /// will be created and all uses of the old variable will be replaced with a 841 /// bitcast to the new variable. 842 llvm::GlobalVariable * 843 CreateOrReplaceCXXRuntimeVariable(StringRef Name, llvm::Type *Ty, 844 llvm::GlobalValue::LinkageTypes Linkage, 845 unsigned Alignment); 846 847 llvm::Function *CreateGlobalInitOrCleanUpFunction( 848 llvm::FunctionType *ty, const Twine &name, const CGFunctionInfo &FI, 849 SourceLocation Loc = SourceLocation(), bool TLS = false, 850 llvm::GlobalVariable::LinkageTypes Linkage = 851 llvm::GlobalVariable::InternalLinkage); 852 853 /// Return the AST address space of the underlying global variable for D, as 854 /// determined by its declaration. Normally this is the same as the address 855 /// space of D's type, but in CUDA, address spaces are associated with 856 /// declarations, not types. If D is nullptr, return the default address 857 /// space for global variable. 858 /// 859 /// For languages without explicit address spaces, if D has default address 860 /// space, target-specific global or constant address space may be returned. 861 LangAS GetGlobalVarAddressSpace(const VarDecl *D); 862 863 /// Return the AST address space of constant literal, which is used to emit 864 /// the constant literal as global variable in LLVM IR. 865 /// Note: This is not necessarily the address space of the constant literal 866 /// in AST. For address space agnostic language, e.g. C++, constant literal 867 /// in AST is always in default address space. 868 LangAS GetGlobalConstantAddressSpace() const; 869 870 /// Return the llvm::Constant for the address of the given global variable. 871 /// If Ty is non-null and if the global doesn't exist, then it will be created 872 /// with the specified type instead of whatever the normal requested type 873 /// would be. If IsForDefinition is true, it is guaranteed that an actual 874 /// global with type Ty will be returned, not conversion of a variable with 875 /// the same mangled name but some other type. 876 llvm::Constant *GetAddrOfGlobalVar(const VarDecl *D, 877 llvm::Type *Ty = nullptr, 878 ForDefinition_t IsForDefinition 879 = NotForDefinition); 880 881 /// Return the address of the given function. If Ty is non-null, then this 882 /// function will use the specified type if it has to create it. 883 llvm::Constant *GetAddrOfFunction(GlobalDecl GD, llvm::Type *Ty = nullptr, 884 bool ForVTable = false, 885 bool DontDefer = false, 886 ForDefinition_t IsForDefinition 887 = NotForDefinition); 888 889 // Return the function body address of the given function. 890 llvm::Constant *GetFunctionStart(const ValueDecl *Decl); 891 892 /// Get the address of the RTTI descriptor for the given type. 893 llvm::Constant *GetAddrOfRTTIDescriptor(QualType Ty, bool ForEH = false); 894 895 /// Get the address of a GUID. 896 ConstantAddress GetAddrOfMSGuidDecl(const MSGuidDecl *GD); 897 898 /// Get the address of a UnnamedGlobalConstant 899 ConstantAddress 900 GetAddrOfUnnamedGlobalConstantDecl(const UnnamedGlobalConstantDecl *GCD); 901 902 /// Get the address of a template parameter object. 903 ConstantAddress 904 GetAddrOfTemplateParamObject(const TemplateParamObjectDecl *TPO); 905 906 /// Get the address of the thunk for the given global decl. 907 llvm::Constant *GetAddrOfThunk(StringRef Name, llvm::Type *FnTy, 908 GlobalDecl GD); 909 910 /// Get a reference to the target of VD. 911 ConstantAddress GetWeakRefReference(const ValueDecl *VD); 912 913 /// Returns the assumed alignment of an opaque pointer to the given class. 914 CharUnits getClassPointerAlignment(const CXXRecordDecl *CD); 915 916 /// Returns the minimum object size for an object of the given class type 917 /// (or a class derived from it). 918 CharUnits getMinimumClassObjectSize(const CXXRecordDecl *CD); 919 920 /// Returns the minimum object size for an object of the given type. 921 CharUnits getMinimumObjectSize(QualType Ty) { 922 if (CXXRecordDecl *RD = Ty->getAsCXXRecordDecl()) 923 return getMinimumClassObjectSize(RD); 924 return getContext().getTypeSizeInChars(Ty); 925 } 926 927 /// Returns the assumed alignment of a virtual base of a class. 928 CharUnits getVBaseAlignment(CharUnits DerivedAlign, 929 const CXXRecordDecl *Derived, 930 const CXXRecordDecl *VBase); 931 932 /// Given a class pointer with an actual known alignment, and the 933 /// expected alignment of an object at a dynamic offset w.r.t that 934 /// pointer, return the alignment to assume at the offset. 935 CharUnits getDynamicOffsetAlignment(CharUnits ActualAlign, 936 const CXXRecordDecl *Class, 937 CharUnits ExpectedTargetAlign); 938 939 CharUnits 940 computeNonVirtualBaseClassOffset(const CXXRecordDecl *DerivedClass, 941 CastExpr::path_const_iterator Start, 942 CastExpr::path_const_iterator End); 943 944 /// Returns the offset from a derived class to a class. Returns null if the 945 /// offset is 0. 946 llvm::Constant * 947 GetNonVirtualBaseClassOffset(const CXXRecordDecl *ClassDecl, 948 CastExpr::path_const_iterator PathBegin, 949 CastExpr::path_const_iterator PathEnd); 950 951 llvm::FoldingSet<BlockByrefHelpers> ByrefHelpersCache; 952 953 /// Fetches the global unique block count. 954 int getUniqueBlockCount() { return ++Block.GlobalUniqueCount; } 955 956 /// Fetches the type of a generic block descriptor. 957 llvm::Type *getBlockDescriptorType(); 958 959 /// The type of a generic block literal. 960 llvm::Type *getGenericBlockLiteralType(); 961 962 /// Gets the address of a block which requires no captures. 963 llvm::Constant *GetAddrOfGlobalBlock(const BlockExpr *BE, StringRef Name); 964 965 /// Returns the address of a block which requires no caputres, or null if 966 /// we've yet to emit the block for BE. 967 llvm::Constant *getAddrOfGlobalBlockIfEmitted(const BlockExpr *BE) { 968 return EmittedGlobalBlocks.lookup(BE); 969 } 970 971 /// Notes that BE's global block is available via Addr. Asserts that BE 972 /// isn't already emitted. 973 void setAddrOfGlobalBlock(const BlockExpr *BE, llvm::Constant *Addr); 974 975 /// Return a pointer to a constant CFString object for the given string. 976 ConstantAddress GetAddrOfConstantCFString(const StringLiteral *Literal); 977 978 /// Return a pointer to a constant NSString object for the given string. Or a 979 /// user defined String object as defined via 980 /// -fconstant-string-class=class_name option. 981 ConstantAddress GetAddrOfConstantString(const StringLiteral *Literal); 982 983 /// Return a constant array for the given string. 984 llvm::Constant *GetConstantArrayFromStringLiteral(const StringLiteral *E); 985 986 /// Return a pointer to a constant array for the given string literal. 987 ConstantAddress 988 GetAddrOfConstantStringFromLiteral(const StringLiteral *S, 989 StringRef Name = ".str"); 990 991 /// Return a pointer to a constant array for the given ObjCEncodeExpr node. 992 ConstantAddress 993 GetAddrOfConstantStringFromObjCEncode(const ObjCEncodeExpr *); 994 995 /// Returns a pointer to a character array containing the literal and a 996 /// terminating '\0' character. The result has pointer to array type. 997 /// 998 /// \param GlobalName If provided, the name to use for the global (if one is 999 /// created). 1000 ConstantAddress 1001 GetAddrOfConstantCString(const std::string &Str, 1002 const char *GlobalName = nullptr); 1003 1004 /// Returns a pointer to a constant global variable for the given file-scope 1005 /// compound literal expression. 1006 ConstantAddress GetAddrOfConstantCompoundLiteral(const CompoundLiteralExpr*E); 1007 1008 /// If it's been emitted already, returns the GlobalVariable corresponding to 1009 /// a compound literal. Otherwise, returns null. 1010 llvm::GlobalVariable * 1011 getAddrOfConstantCompoundLiteralIfEmitted(const CompoundLiteralExpr *E); 1012 1013 /// Notes that CLE's GlobalVariable is GV. Asserts that CLE isn't already 1014 /// emitted. 1015 void setAddrOfConstantCompoundLiteral(const CompoundLiteralExpr *CLE, 1016 llvm::GlobalVariable *GV); 1017 1018 /// Returns a pointer to a global variable representing a temporary 1019 /// with static or thread storage duration. 1020 ConstantAddress GetAddrOfGlobalTemporary(const MaterializeTemporaryExpr *E, 1021 const Expr *Inner); 1022 1023 /// Retrieve the record type that describes the state of an 1024 /// Objective-C fast enumeration loop (for..in). 1025 QualType getObjCFastEnumerationStateType(); 1026 1027 // Produce code for this constructor/destructor. This method doesn't try 1028 // to apply any ABI rules about which other constructors/destructors 1029 // are needed or if they are alias to each other. 1030 llvm::Function *codegenCXXStructor(GlobalDecl GD); 1031 1032 /// Return the address of the constructor/destructor of the given type. 1033 llvm::Constant * 1034 getAddrOfCXXStructor(GlobalDecl GD, const CGFunctionInfo *FnInfo = nullptr, 1035 llvm::FunctionType *FnType = nullptr, 1036 bool DontDefer = false, 1037 ForDefinition_t IsForDefinition = NotForDefinition) { 1038 return cast<llvm::Constant>(getAddrAndTypeOfCXXStructor(GD, FnInfo, FnType, 1039 DontDefer, 1040 IsForDefinition) 1041 .getCallee()); 1042 } 1043 1044 llvm::FunctionCallee getAddrAndTypeOfCXXStructor( 1045 GlobalDecl GD, const CGFunctionInfo *FnInfo = nullptr, 1046 llvm::FunctionType *FnType = nullptr, bool DontDefer = false, 1047 ForDefinition_t IsForDefinition = NotForDefinition); 1048 1049 /// Given a builtin id for a function like "__builtin_fabsf", return a 1050 /// Function* for "fabsf". 1051 llvm::Constant *getBuiltinLibFunction(const FunctionDecl *FD, 1052 unsigned BuiltinID); 1053 1054 llvm::Function *getIntrinsic(unsigned IID, ArrayRef<llvm::Type*> Tys = None); 1055 1056 /// Emit code for a single top level declaration. 1057 void EmitTopLevelDecl(Decl *D); 1058 1059 /// Stored a deferred empty coverage mapping for an unused 1060 /// and thus uninstrumented top level declaration. 1061 void AddDeferredUnusedCoverageMapping(Decl *D); 1062 1063 /// Remove the deferred empty coverage mapping as this 1064 /// declaration is actually instrumented. 1065 void ClearUnusedCoverageMapping(const Decl *D); 1066 1067 /// Emit all the deferred coverage mappings 1068 /// for the uninstrumented functions. 1069 void EmitDeferredUnusedCoverageMappings(); 1070 1071 /// Emit an alias for "main" if it has no arguments (needed for wasm). 1072 void EmitMainVoidAlias(); 1073 1074 /// Tell the consumer that this variable has been instantiated. 1075 void HandleCXXStaticMemberVarInstantiation(VarDecl *VD); 1076 1077 /// If the declaration has internal linkage but is inside an 1078 /// extern "C" linkage specification, prepare to emit an alias for it 1079 /// to the expected name. 1080 template<typename SomeDecl> 1081 void MaybeHandleStaticInExternC(const SomeDecl *D, llvm::GlobalValue *GV); 1082 1083 /// Add a global to a list to be added to the llvm.used metadata. 1084 void addUsedGlobal(llvm::GlobalValue *GV); 1085 1086 /// Add a global to a list to be added to the llvm.compiler.used metadata. 1087 void addCompilerUsedGlobal(llvm::GlobalValue *GV); 1088 1089 /// Add a global to a list to be added to the llvm.compiler.used metadata. 1090 void addUsedOrCompilerUsedGlobal(llvm::GlobalValue *GV); 1091 1092 /// Add a destructor and object to add to the C++ global destructor function. 1093 void AddCXXDtorEntry(llvm::FunctionCallee DtorFn, llvm::Constant *Object) { 1094 CXXGlobalDtorsOrStermFinalizers.emplace_back(DtorFn.getFunctionType(), 1095 DtorFn.getCallee(), Object); 1096 } 1097 1098 /// Add an sterm finalizer to the C++ global cleanup function. 1099 void AddCXXStermFinalizerEntry(llvm::FunctionCallee DtorFn) { 1100 CXXGlobalDtorsOrStermFinalizers.emplace_back(DtorFn.getFunctionType(), 1101 DtorFn.getCallee(), nullptr); 1102 } 1103 1104 /// Add an sterm finalizer to its own llvm.global_dtors entry. 1105 void AddCXXStermFinalizerToGlobalDtor(llvm::Function *StermFinalizer, 1106 int Priority) { 1107 AddGlobalDtor(StermFinalizer, Priority); 1108 } 1109 1110 void AddCXXPrioritizedStermFinalizerEntry(llvm::Function *StermFinalizer, 1111 int Priority) { 1112 OrderGlobalInitsOrStermFinalizers Key(Priority, 1113 PrioritizedCXXStermFinalizers.size()); 1114 PrioritizedCXXStermFinalizers.push_back( 1115 std::make_pair(Key, StermFinalizer)); 1116 } 1117 1118 /// Create or return a runtime function declaration with the specified type 1119 /// and name. If \p AssumeConvergent is true, the call will have the 1120 /// convergent attribute added. 1121 llvm::FunctionCallee 1122 CreateRuntimeFunction(llvm::FunctionType *Ty, StringRef Name, 1123 llvm::AttributeList ExtraAttrs = llvm::AttributeList(), 1124 bool Local = false, bool AssumeConvergent = false); 1125 1126 /// Create a new runtime global variable with the specified type and name. 1127 llvm::Constant *CreateRuntimeVariable(llvm::Type *Ty, 1128 StringRef Name); 1129 1130 ///@name Custom Blocks Runtime Interfaces 1131 ///@{ 1132 1133 llvm::Constant *getNSConcreteGlobalBlock(); 1134 llvm::Constant *getNSConcreteStackBlock(); 1135 llvm::FunctionCallee getBlockObjectAssign(); 1136 llvm::FunctionCallee getBlockObjectDispose(); 1137 1138 ///@} 1139 1140 llvm::Function *getLLVMLifetimeStartFn(); 1141 llvm::Function *getLLVMLifetimeEndFn(); 1142 1143 // Make sure that this type is translated. 1144 void UpdateCompletedType(const TagDecl *TD); 1145 1146 llvm::Constant *getMemberPointerConstant(const UnaryOperator *e); 1147 1148 /// Emit type info if type of an expression is a variably modified 1149 /// type. Also emit proper debug info for cast types. 1150 void EmitExplicitCastExprType(const ExplicitCastExpr *E, 1151 CodeGenFunction *CGF = nullptr); 1152 1153 /// Return the result of value-initializing the given type, i.e. a null 1154 /// expression of the given type. This is usually, but not always, an LLVM 1155 /// null constant. 1156 llvm::Constant *EmitNullConstant(QualType T); 1157 1158 /// Return a null constant appropriate for zero-initializing a base class with 1159 /// the given type. This is usually, but not always, an LLVM null constant. 1160 llvm::Constant *EmitNullConstantForBase(const CXXRecordDecl *Record); 1161 1162 /// Emit a general error that something can't be done. 1163 void Error(SourceLocation loc, StringRef error); 1164 1165 /// Print out an error that codegen doesn't support the specified stmt yet. 1166 void ErrorUnsupported(const Stmt *S, const char *Type); 1167 1168 /// Print out an error that codegen doesn't support the specified decl yet. 1169 void ErrorUnsupported(const Decl *D, const char *Type); 1170 1171 /// Set the attributes on the LLVM function for the given decl and function 1172 /// info. This applies attributes necessary for handling the ABI as well as 1173 /// user specified attributes like section. 1174 void SetInternalFunctionAttributes(GlobalDecl GD, llvm::Function *F, 1175 const CGFunctionInfo &FI); 1176 1177 /// Set the LLVM function attributes (sext, zext, etc). 1178 void SetLLVMFunctionAttributes(GlobalDecl GD, const CGFunctionInfo &Info, 1179 llvm::Function *F, bool IsThunk); 1180 1181 /// Set the LLVM function attributes which only apply to a function 1182 /// definition. 1183 void SetLLVMFunctionAttributesForDefinition(const Decl *D, llvm::Function *F); 1184 1185 /// Set the LLVM function attributes that represent floating point 1186 /// environment. 1187 void setLLVMFunctionFEnvAttributes(const FunctionDecl *D, llvm::Function *F); 1188 1189 /// Return true iff the given type uses 'sret' when used as a return type. 1190 bool ReturnTypeUsesSRet(const CGFunctionInfo &FI); 1191 1192 /// Return true iff the given type uses an argument slot when 'sret' is used 1193 /// as a return type. 1194 bool ReturnSlotInterferesWithArgs(const CGFunctionInfo &FI); 1195 1196 /// Return true iff the given type uses 'fpret' when used as a return type. 1197 bool ReturnTypeUsesFPRet(QualType ResultType); 1198 1199 /// Return true iff the given type uses 'fp2ret' when used as a return type. 1200 bool ReturnTypeUsesFP2Ret(QualType ResultType); 1201 1202 /// Get the LLVM attributes and calling convention to use for a particular 1203 /// function type. 1204 /// 1205 /// \param Name - The function name. 1206 /// \param Info - The function type information. 1207 /// \param CalleeInfo - The callee information these attributes are being 1208 /// constructed for. If valid, the attributes applied to this decl may 1209 /// contribute to the function attributes and calling convention. 1210 /// \param Attrs [out] - On return, the attribute list to use. 1211 /// \param CallingConv [out] - On return, the LLVM calling convention to use. 1212 void ConstructAttributeList(StringRef Name, const CGFunctionInfo &Info, 1213 CGCalleeInfo CalleeInfo, 1214 llvm::AttributeList &Attrs, unsigned &CallingConv, 1215 bool AttrOnCallSite, bool IsThunk); 1216 1217 /// Adds attributes to F according to our CodeGenOptions and LangOptions, as 1218 /// though we had emitted it ourselves. We remove any attributes on F that 1219 /// conflict with the attributes we add here. 1220 /// 1221 /// This is useful for adding attrs to bitcode modules that you want to link 1222 /// with but don't control, such as CUDA's libdevice. When linking with such 1223 /// a bitcode library, you might want to set e.g. its functions' 1224 /// "unsafe-fp-math" attribute to match the attr of the functions you're 1225 /// codegen'ing. Otherwise, LLVM will interpret the bitcode module's lack of 1226 /// unsafe-fp-math attrs as tantamount to unsafe-fp-math=false, and then LLVM 1227 /// will propagate unsafe-fp-math=false up to every transitive caller of a 1228 /// function in the bitcode library! 1229 /// 1230 /// With the exception of fast-math attrs, this will only make the attributes 1231 /// on the function more conservative. But it's unsafe to call this on a 1232 /// function which relies on particular fast-math attributes for correctness. 1233 /// It's up to you to ensure that this is safe. 1234 void addDefaultFunctionDefinitionAttributes(llvm::Function &F); 1235 1236 /// Like the overload taking a `Function &`, but intended specifically 1237 /// for frontends that want to build on Clang's target-configuration logic. 1238 void addDefaultFunctionDefinitionAttributes(llvm::AttrBuilder &attrs); 1239 1240 StringRef getMangledName(GlobalDecl GD); 1241 StringRef getBlockMangledName(GlobalDecl GD, const BlockDecl *BD); 1242 const GlobalDecl getMangledNameDecl(StringRef); 1243 1244 void EmitTentativeDefinition(const VarDecl *D); 1245 1246 void EmitExternalDeclaration(const VarDecl *D); 1247 1248 void EmitVTable(CXXRecordDecl *Class); 1249 1250 void RefreshTypeCacheForClass(const CXXRecordDecl *Class); 1251 1252 /// Appends Opts to the "llvm.linker.options" metadata value. 1253 void AppendLinkerOptions(StringRef Opts); 1254 1255 /// Appends a detect mismatch command to the linker options. 1256 void AddDetectMismatch(StringRef Name, StringRef Value); 1257 1258 /// Appends a dependent lib to the appropriate metadata value. 1259 void AddDependentLib(StringRef Lib); 1260 1261 1262 llvm::GlobalVariable::LinkageTypes getFunctionLinkage(GlobalDecl GD); 1263 1264 void setFunctionLinkage(GlobalDecl GD, llvm::Function *F) { 1265 F->setLinkage(getFunctionLinkage(GD)); 1266 } 1267 1268 /// Return the appropriate linkage for the vtable, VTT, and type information 1269 /// of the given class. 1270 llvm::GlobalVariable::LinkageTypes getVTableLinkage(const CXXRecordDecl *RD); 1271 1272 /// Return the store size, in character units, of the given LLVM type. 1273 CharUnits GetTargetTypeStoreSize(llvm::Type *Ty) const; 1274 1275 /// Returns LLVM linkage for a declarator. 1276 llvm::GlobalValue::LinkageTypes 1277 getLLVMLinkageForDeclarator(const DeclaratorDecl *D, GVALinkage Linkage, 1278 bool IsConstantVariable); 1279 1280 /// Returns LLVM linkage for a declarator. 1281 llvm::GlobalValue::LinkageTypes 1282 getLLVMLinkageVarDefinition(const VarDecl *VD, bool IsConstant); 1283 1284 /// Emit all the global annotations. 1285 void EmitGlobalAnnotations(); 1286 1287 /// Emit an annotation string. 1288 llvm::Constant *EmitAnnotationString(StringRef Str); 1289 1290 /// Emit the annotation's translation unit. 1291 llvm::Constant *EmitAnnotationUnit(SourceLocation Loc); 1292 1293 /// Emit the annotation line number. 1294 llvm::Constant *EmitAnnotationLineNo(SourceLocation L); 1295 1296 /// Emit additional args of the annotation. 1297 llvm::Constant *EmitAnnotationArgs(const AnnotateAttr *Attr); 1298 1299 /// Generate the llvm::ConstantStruct which contains the annotation 1300 /// information for a given GlobalValue. The annotation struct is 1301 /// {i8 *, i8 *, i8 *, i32}. The first field is a constant expression, the 1302 /// GlobalValue being annotated. The second field is the constant string 1303 /// created from the AnnotateAttr's annotation. The third field is a constant 1304 /// string containing the name of the translation unit. The fourth field is 1305 /// the line number in the file of the annotated value declaration. 1306 llvm::Constant *EmitAnnotateAttr(llvm::GlobalValue *GV, 1307 const AnnotateAttr *AA, 1308 SourceLocation L); 1309 1310 /// Add global annotations that are set on D, for the global GV. Those 1311 /// annotations are emitted during finalization of the LLVM code. 1312 void AddGlobalAnnotations(const ValueDecl *D, llvm::GlobalValue *GV); 1313 1314 bool isInNoSanitizeList(SanitizerMask Kind, llvm::Function *Fn, 1315 SourceLocation Loc) const; 1316 1317 bool isInNoSanitizeList(SanitizerMask Kind, llvm::GlobalVariable *GV, 1318 SourceLocation Loc, QualType Ty, 1319 StringRef Category = StringRef()) const; 1320 1321 /// Imbue XRay attributes to a function, applying the always/never attribute 1322 /// lists in the process. Returns true if we did imbue attributes this way, 1323 /// false otherwise. 1324 bool imbueXRayAttrs(llvm::Function *Fn, SourceLocation Loc, 1325 StringRef Category = StringRef()) const; 1326 1327 /// Returns true if function at the given location should be excluded from 1328 /// profile instrumentation. 1329 bool isProfileInstrExcluded(llvm::Function *Fn, SourceLocation Loc) const; 1330 1331 SanitizerMetadata *getSanitizerMetadata() { 1332 return SanitizerMD.get(); 1333 } 1334 1335 void addDeferredVTable(const CXXRecordDecl *RD) { 1336 DeferredVTables.push_back(RD); 1337 } 1338 1339 /// Emit code for a single global function or var decl. Forward declarations 1340 /// are emitted lazily. 1341 void EmitGlobal(GlobalDecl D); 1342 1343 bool TryEmitBaseDestructorAsAlias(const CXXDestructorDecl *D); 1344 1345 llvm::GlobalValue *GetGlobalValue(StringRef Ref); 1346 1347 /// Set attributes which are common to any form of a global definition (alias, 1348 /// Objective-C method, function, global variable). 1349 /// 1350 /// NOTE: This should only be called for definitions. 1351 void SetCommonAttributes(GlobalDecl GD, llvm::GlobalValue *GV); 1352 1353 void addReplacement(StringRef Name, llvm::Constant *C); 1354 1355 void addGlobalValReplacement(llvm::GlobalValue *GV, llvm::Constant *C); 1356 1357 /// Emit a code for threadprivate directive. 1358 /// \param D Threadprivate declaration. 1359 void EmitOMPThreadPrivateDecl(const OMPThreadPrivateDecl *D); 1360 1361 /// Emit a code for declare reduction construct. 1362 void EmitOMPDeclareReduction(const OMPDeclareReductionDecl *D, 1363 CodeGenFunction *CGF = nullptr); 1364 1365 /// Emit a code for declare mapper construct. 1366 void EmitOMPDeclareMapper(const OMPDeclareMapperDecl *D, 1367 CodeGenFunction *CGF = nullptr); 1368 1369 /// Emit a code for requires directive. 1370 /// \param D Requires declaration 1371 void EmitOMPRequiresDecl(const OMPRequiresDecl *D); 1372 1373 /// Emit a code for the allocate directive. 1374 /// \param D The allocate declaration 1375 void EmitOMPAllocateDecl(const OMPAllocateDecl *D); 1376 1377 /// Return the alignment specified in an allocate directive, if present. 1378 llvm::Optional<CharUnits> getOMPAllocateAlignment(const VarDecl *VD); 1379 1380 /// Returns whether the given record has hidden LTO visibility and therefore 1381 /// may participate in (single-module) CFI and whole-program vtable 1382 /// optimization. 1383 bool HasHiddenLTOVisibility(const CXXRecordDecl *RD); 1384 1385 /// Returns whether the given record has public LTO visibility (regardless of 1386 /// -lto-whole-program-visibility) and therefore may not participate in 1387 /// (single-module) CFI and whole-program vtable optimization. 1388 bool AlwaysHasLTOVisibilityPublic(const CXXRecordDecl *RD); 1389 1390 /// Returns the vcall visibility of the given type. This is the scope in which 1391 /// a virtual function call could be made which ends up being dispatched to a 1392 /// member function of this class. This scope can be wider than the visibility 1393 /// of the class itself when the class has a more-visible dynamic base class. 1394 /// The client should pass in an empty Visited set, which is used to prevent 1395 /// redundant recursive processing. 1396 llvm::GlobalObject::VCallVisibility 1397 GetVCallVisibilityLevel(const CXXRecordDecl *RD, 1398 llvm::DenseSet<const CXXRecordDecl *> &Visited); 1399 1400 /// Emit type metadata for the given vtable using the given layout. 1401 void EmitVTableTypeMetadata(const CXXRecordDecl *RD, 1402 llvm::GlobalVariable *VTable, 1403 const VTableLayout &VTLayout); 1404 1405 /// Generate a cross-DSO type identifier for MD. 1406 llvm::ConstantInt *CreateCrossDsoCfiTypeId(llvm::Metadata *MD); 1407 1408 /// Create a metadata identifier for the given type. This may either be an 1409 /// MDString (for external identifiers) or a distinct unnamed MDNode (for 1410 /// internal identifiers). 1411 llvm::Metadata *CreateMetadataIdentifierForType(QualType T); 1412 1413 /// Create a metadata identifier that is intended to be used to check virtual 1414 /// calls via a member function pointer. 1415 llvm::Metadata *CreateMetadataIdentifierForVirtualMemPtrType(QualType T); 1416 1417 /// Create a metadata identifier for the generalization of the given type. 1418 /// This may either be an MDString (for external identifiers) or a distinct 1419 /// unnamed MDNode (for internal identifiers). 1420 llvm::Metadata *CreateMetadataIdentifierGeneralized(QualType T); 1421 1422 /// Create and attach type metadata to the given function. 1423 void CreateFunctionTypeMetadataForIcall(const FunctionDecl *FD, 1424 llvm::Function *F); 1425 1426 /// Whether this function's return type has no side effects, and thus may 1427 /// be trivially discarded if it is unused. 1428 bool MayDropFunctionReturn(const ASTContext &Context, QualType ReturnType); 1429 1430 /// Returns whether this module needs the "all-vtables" type identifier. 1431 bool NeedAllVtablesTypeId() const; 1432 1433 /// Create and attach type metadata for the given vtable. 1434 void AddVTableTypeMetadata(llvm::GlobalVariable *VTable, CharUnits Offset, 1435 const CXXRecordDecl *RD); 1436 1437 /// Return a vector of most-base classes for RD. This is used to implement 1438 /// control flow integrity checks for member function pointers. 1439 /// 1440 /// A most-base class of a class C is defined as a recursive base class of C, 1441 /// including C itself, that does not have any bases. 1442 std::vector<const CXXRecordDecl *> 1443 getMostBaseClasses(const CXXRecordDecl *RD); 1444 1445 /// Get the declaration of std::terminate for the platform. 1446 llvm::FunctionCallee getTerminateFn(); 1447 1448 llvm::SanitizerStatReport &getSanStats(); 1449 1450 llvm::Value * 1451 createOpenCLIntToSamplerConversion(const Expr *E, CodeGenFunction &CGF); 1452 1453 /// OpenCL v1.2 s5.6.4.6 allows the compiler to store kernel argument 1454 /// information in the program executable. The argument information stored 1455 /// includes the argument name, its type, the address and access qualifiers 1456 /// used. This helper can be used to generate metadata for source code kernel 1457 /// function as well as generated implicitly kernels. If a kernel is generated 1458 /// implicitly null value has to be passed to the last two parameters, 1459 /// otherwise all parameters must have valid non-null values. 1460 /// \param FN is a pointer to IR function being generated. 1461 /// \param FD is a pointer to function declaration if any. 1462 /// \param CGF is a pointer to CodeGenFunction that generates this function. 1463 void GenOpenCLArgMetadata(llvm::Function *FN, 1464 const FunctionDecl *FD = nullptr, 1465 CodeGenFunction *CGF = nullptr); 1466 1467 /// Get target specific null pointer. 1468 /// \param T is the LLVM type of the null pointer. 1469 /// \param QT is the clang QualType of the null pointer. 1470 llvm::Constant *getNullPointer(llvm::PointerType *T, QualType QT); 1471 1472 CharUnits getNaturalTypeAlignment(QualType T, 1473 LValueBaseInfo *BaseInfo = nullptr, 1474 TBAAAccessInfo *TBAAInfo = nullptr, 1475 bool forPointeeType = false); 1476 CharUnits getNaturalPointeeTypeAlignment(QualType T, 1477 LValueBaseInfo *BaseInfo = nullptr, 1478 TBAAAccessInfo *TBAAInfo = nullptr); 1479 bool stopAutoInit(); 1480 1481 /// Print the postfix for externalized static variable or kernels for single 1482 /// source offloading languages CUDA and HIP. The unique postfix is created 1483 /// using either the CUID argument, or the file's UniqueID and active macros. 1484 /// The fallback method without a CUID requires that the offloading toolchain 1485 /// does not define separate macros via the -cc1 options. 1486 void printPostfixForExternalizedDecl(llvm::raw_ostream &OS, 1487 const Decl *D) const; 1488 1489 private: 1490 llvm::Constant *GetOrCreateLLVMFunction( 1491 StringRef MangledName, llvm::Type *Ty, GlobalDecl D, bool ForVTable, 1492 bool DontDefer = false, bool IsThunk = false, 1493 llvm::AttributeList ExtraAttrs = llvm::AttributeList(), 1494 ForDefinition_t IsForDefinition = NotForDefinition); 1495 1496 // References to multiversion functions are resolved through an implicitly 1497 // defined resolver function. This function is responsible for creating 1498 // the resolver symbol for the provided declaration. The value returned 1499 // will be for an ifunc (llvm::GlobalIFunc) if the current target supports 1500 // that feature and for a regular function (llvm::GlobalValue) otherwise. 1501 llvm::Constant *GetOrCreateMultiVersionResolver(GlobalDecl GD); 1502 1503 // In scenarios where a function is not known to be a multiversion function 1504 // until a later declaration, it is sometimes necessary to change the 1505 // previously created mangled name to align with requirements of whatever 1506 // multiversion function kind the function is now known to be. This function 1507 // is responsible for performing such mangled name updates. 1508 void UpdateMultiVersionNames(GlobalDecl GD, const FunctionDecl *FD, 1509 StringRef &CurName); 1510 1511 llvm::Constant * 1512 GetOrCreateLLVMGlobal(StringRef MangledName, llvm::Type *Ty, LangAS AddrSpace, 1513 const VarDecl *D, 1514 ForDefinition_t IsForDefinition = NotForDefinition); 1515 1516 bool GetCPUAndFeaturesAttributes(GlobalDecl GD, 1517 llvm::AttrBuilder &AttrBuilder); 1518 void setNonAliasAttributes(GlobalDecl GD, llvm::GlobalObject *GO); 1519 1520 /// Set function attributes for a function declaration. 1521 void SetFunctionAttributes(GlobalDecl GD, llvm::Function *F, 1522 bool IsIncompleteFunction, bool IsThunk); 1523 1524 void EmitGlobalDefinition(GlobalDecl D, llvm::GlobalValue *GV = nullptr); 1525 1526 void EmitGlobalFunctionDefinition(GlobalDecl GD, llvm::GlobalValue *GV); 1527 void EmitMultiVersionFunctionDefinition(GlobalDecl GD, llvm::GlobalValue *GV); 1528 1529 void EmitGlobalVarDefinition(const VarDecl *D, bool IsTentative = false); 1530 void EmitExternalVarDeclaration(const VarDecl *D); 1531 void EmitAliasDefinition(GlobalDecl GD); 1532 void emitIFuncDefinition(GlobalDecl GD); 1533 void emitCPUDispatchDefinition(GlobalDecl GD); 1534 void EmitObjCPropertyImplementations(const ObjCImplementationDecl *D); 1535 void EmitObjCIvarInitializations(ObjCImplementationDecl *D); 1536 1537 // C++ related functions. 1538 1539 void EmitDeclContext(const DeclContext *DC); 1540 void EmitLinkageSpec(const LinkageSpecDecl *D); 1541 1542 /// Emit the function that initializes C++ thread_local variables. 1543 void EmitCXXThreadLocalInitFunc(); 1544 1545 /// Emit the function that initializes C++ globals. 1546 void EmitCXXGlobalInitFunc(); 1547 1548 /// Emit the function that performs cleanup associated with C++ globals. 1549 void EmitCXXGlobalCleanUpFunc(); 1550 1551 /// Emit the function that initializes the specified global (if PerformInit is 1552 /// true) and registers its destructor. 1553 void EmitCXXGlobalVarDeclInitFunc(const VarDecl *D, 1554 llvm::GlobalVariable *Addr, 1555 bool PerformInit); 1556 1557 void EmitPointerToInitFunc(const VarDecl *VD, llvm::GlobalVariable *Addr, 1558 llvm::Function *InitFunc, InitSegAttr *ISA); 1559 1560 // FIXME: Hardcoding priority here is gross. 1561 void AddGlobalCtor(llvm::Function *Ctor, int Priority = 65535, 1562 llvm::Constant *AssociatedData = nullptr); 1563 void AddGlobalDtor(llvm::Function *Dtor, int Priority = 65535, 1564 bool IsDtorAttrFunc = false); 1565 1566 /// EmitCtorList - Generates a global array of functions and priorities using 1567 /// the given list and name. This array will have appending linkage and is 1568 /// suitable for use as a LLVM constructor or destructor array. Clears Fns. 1569 void EmitCtorList(CtorList &Fns, const char *GlobalName); 1570 1571 /// Emit any needed decls for which code generation was deferred. 1572 void EmitDeferred(); 1573 1574 /// Try to emit external vtables as available_externally if they have emitted 1575 /// all inlined virtual functions. It runs after EmitDeferred() and therefore 1576 /// is not allowed to create new references to things that need to be emitted 1577 /// lazily. 1578 void EmitVTablesOpportunistically(); 1579 1580 /// Call replaceAllUsesWith on all pairs in Replacements. 1581 void applyReplacements(); 1582 1583 /// Call replaceAllUsesWith on all pairs in GlobalValReplacements. 1584 void applyGlobalValReplacements(); 1585 1586 void checkAliases(); 1587 1588 std::map<int, llvm::TinyPtrVector<llvm::Function *>> DtorsUsingAtExit; 1589 1590 /// Register functions annotated with __attribute__((destructor)) using 1591 /// __cxa_atexit, if it is available, or atexit otherwise. 1592 void registerGlobalDtorsWithAtExit(); 1593 1594 // When using sinit and sterm functions, unregister 1595 // __attribute__((destructor)) annotated functions which were previously 1596 // registered by the atexit subroutine using unatexit. 1597 void unregisterGlobalDtorsWithUnAtExit(); 1598 1599 /// Emit deferred multiversion function resolvers and associated variants. 1600 void emitMultiVersionFunctions(); 1601 1602 /// Emit any vtables which we deferred and still have a use for. 1603 void EmitDeferredVTables(); 1604 1605 /// Emit a dummy function that reference a CoreFoundation symbol when 1606 /// @available is used on Darwin. 1607 void emitAtAvailableLinkGuard(); 1608 1609 /// Emit the llvm.used and llvm.compiler.used metadata. 1610 void emitLLVMUsed(); 1611 1612 /// Emit the link options introduced by imported modules. 1613 void EmitModuleLinkOptions(); 1614 1615 /// Helper function for EmitStaticExternCAliases() to redirect ifuncs that 1616 /// have a resolver name that matches 'Elem' to instead resolve to the name of 1617 /// 'CppFunc'. This redirection is necessary in cases where 'Elem' has a name 1618 /// that will be emitted as an alias of the name bound to 'CppFunc'; ifuncs 1619 /// may not reference aliases. Redirection is only performed if 'Elem' is only 1620 /// used by ifuncs in which case, 'Elem' is destroyed. 'true' is returned if 1621 /// redirection is successful, and 'false' is returned otherwise. 1622 bool CheckAndReplaceExternCIFuncs(llvm::GlobalValue *Elem, 1623 llvm::GlobalValue *CppFunc); 1624 1625 /// Emit aliases for internal-linkage declarations inside "C" language 1626 /// linkage specifications, giving them the "expected" name where possible. 1627 void EmitStaticExternCAliases(); 1628 1629 void EmitDeclMetadata(); 1630 1631 /// Emit the Clang version as llvm.ident metadata. 1632 void EmitVersionIdentMetadata(); 1633 1634 /// Emit the Clang commandline as llvm.commandline metadata. 1635 void EmitCommandLineMetadata(); 1636 1637 /// Emit the module flag metadata used to pass options controlling the 1638 /// the backend to LLVM. 1639 void EmitBackendOptionsMetadata(const CodeGenOptions CodeGenOpts); 1640 1641 /// Emits OpenCL specific Metadata e.g. OpenCL version. 1642 void EmitOpenCLMetadata(); 1643 1644 /// Emit the llvm.gcov metadata used to tell LLVM where to emit the .gcno and 1645 /// .gcda files in a way that persists in .bc files. 1646 void EmitCoverageFile(); 1647 1648 /// Determine whether the definition must be emitted; if this returns \c 1649 /// false, the definition can be emitted lazily if it's used. 1650 bool MustBeEmitted(const ValueDecl *D); 1651 1652 /// Determine whether the definition can be emitted eagerly, or should be 1653 /// delayed until the end of the translation unit. This is relevant for 1654 /// definitions whose linkage can change, e.g. implicit function instantions 1655 /// which may later be explicitly instantiated. 1656 bool MayBeEmittedEagerly(const ValueDecl *D); 1657 1658 /// Check whether we can use a "simpler", more core exceptions personality 1659 /// function. 1660 void SimplifyPersonality(); 1661 1662 /// Helper function for ConstructAttributeList and 1663 /// addDefaultFunctionDefinitionAttributes. Builds a set of function 1664 /// attributes to add to a function with the given properties. 1665 void getDefaultFunctionAttributes(StringRef Name, bool HasOptnone, 1666 bool AttrOnCallSite, 1667 llvm::AttrBuilder &FuncAttrs); 1668 1669 llvm::Metadata *CreateMetadataIdentifierImpl(QualType T, MetadataTypeMap &Map, 1670 StringRef Suffix); 1671 }; 1672 1673 } // end namespace CodeGen 1674 } // end namespace clang 1675 1676 #endif // LLVM_CLANG_LIB_CODEGEN_CODEGENMODULE_H 1677