1 //===--- CodeGenModule.h - Per-Module state for LLVM CodeGen ----*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This is the internal per-translation-unit state used for llvm translation.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef LLVM_CLANG_LIB_CODEGEN_CODEGENMODULE_H
15 #define LLVM_CLANG_LIB_CODEGEN_CODEGENMODULE_H
16 
17 #include "CGVTables.h"
18 #include "CodeGenTypeCache.h"
19 #include "CodeGenTypes.h"
20 #include "SanitizerMetadata.h"
21 #include "clang/AST/Attr.h"
22 #include "clang/AST/DeclCXX.h"
23 #include "clang/AST/DeclObjC.h"
24 #include "clang/AST/DeclOpenMP.h"
25 #include "clang/AST/GlobalDecl.h"
26 #include "clang/AST/Mangle.h"
27 #include "clang/Basic/ABI.h"
28 #include "clang/Basic/LangOptions.h"
29 #include "clang/Basic/Module.h"
30 #include "clang/Basic/SanitizerBlacklist.h"
31 #include "clang/Basic/XRayLists.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 ObjCMethodDecl;
58 class ObjCImplementationDecl;
59 class ObjCCategoryImplDecl;
60 class ObjCProtocolDecl;
61 class ObjCEncodeExpr;
62 class BlockExpr;
63 class CharUnits;
64 class Decl;
65 class Expr;
66 class Stmt;
67 class InitListExpr;
68 class StringLiteral;
69 class NamedDecl;
70 class ValueDecl;
71 class VarDecl;
72 class LangOptions;
73 class CodeGenOptions;
74 class HeaderSearchOptions;
75 class PreprocessorOptions;
76 class DiagnosticsEngine;
77 class AnnotateAttr;
78 class CXXDestructorDecl;
79 class Module;
80 class CoverageSourceInfo;
81 
82 namespace CodeGen {
83 
84 class CallArgList;
85 class CodeGenFunction;
86 class CodeGenTBAA;
87 class CGCXXABI;
88 class CGDebugInfo;
89 class CGObjCRuntime;
90 class CGOpenCLRuntime;
91 class CGOpenMPRuntime;
92 class CGCUDARuntime;
93 class BlockFieldFlags;
94 class FunctionArgList;
95 class CoverageMappingModuleGen;
96 class TargetCodeGenInfo;
97 
98 enum ForDefinition_t : bool {
99   NotForDefinition = false,
100   ForDefinition = true
101 };
102 
103 struct OrderGlobalInits {
104   unsigned int priority;
105   unsigned int lex_order;
106   OrderGlobalInits(unsigned int p, unsigned int l)
107       : priority(p), lex_order(l) {}
108 
109   bool operator==(const OrderGlobalInits &RHS) const {
110     return priority == RHS.priority && lex_order == RHS.lex_order;
111   }
112 
113   bool operator<(const OrderGlobalInits &RHS) const {
114     return std::tie(priority, lex_order) <
115            std::tie(RHS.priority, RHS.lex_order);
116   }
117 };
118 
119 struct ObjCEntrypoints {
120   ObjCEntrypoints() { memset(this, 0, sizeof(*this)); }
121 
122     /// void objc_autoreleasePoolPop(void*);
123   llvm::Constant *objc_autoreleasePoolPop;
124 
125   /// void *objc_autoreleasePoolPush(void);
126   llvm::Constant *objc_autoreleasePoolPush;
127 
128   /// id objc_autorelease(id);
129   llvm::Constant *objc_autorelease;
130 
131   /// id objc_autoreleaseReturnValue(id);
132   llvm::Constant *objc_autoreleaseReturnValue;
133 
134   /// void objc_copyWeak(id *dest, id *src);
135   llvm::Constant *objc_copyWeak;
136 
137   /// void objc_destroyWeak(id*);
138   llvm::Constant *objc_destroyWeak;
139 
140   /// id objc_initWeak(id*, id);
141   llvm::Constant *objc_initWeak;
142 
143   /// id objc_loadWeak(id*);
144   llvm::Constant *objc_loadWeak;
145 
146   /// id objc_loadWeakRetained(id*);
147   llvm::Constant *objc_loadWeakRetained;
148 
149   /// void objc_moveWeak(id *dest, id *src);
150   llvm::Constant *objc_moveWeak;
151 
152   /// id objc_retain(id);
153   llvm::Constant *objc_retain;
154 
155   /// id objc_retainAutorelease(id);
156   llvm::Constant *objc_retainAutorelease;
157 
158   /// id objc_retainAutoreleaseReturnValue(id);
159   llvm::Constant *objc_retainAutoreleaseReturnValue;
160 
161   /// id objc_retainAutoreleasedReturnValue(id);
162   llvm::Constant *objc_retainAutoreleasedReturnValue;
163 
164   /// id objc_retainBlock(id);
165   llvm::Constant *objc_retainBlock;
166 
167   /// void objc_release(id);
168   llvm::Constant *objc_release;
169 
170   /// void objc_storeStrong(id*, id);
171   llvm::Constant *objc_storeStrong;
172 
173   /// id objc_storeWeak(id*, id);
174   llvm::Constant *objc_storeWeak;
175 
176   /// id objc_unsafeClaimAutoreleasedReturnValue(id);
177   llvm::Constant *objc_unsafeClaimAutoreleasedReturnValue;
178 
179   /// A void(void) inline asm to use to mark that the return value of
180   /// a call will be immediately retain.
181   llvm::InlineAsm *retainAutoreleasedReturnValueMarker;
182 
183   /// void clang.arc.use(...);
184   llvm::Constant *clang_arc_use;
185 };
186 
187 /// This class records statistics on instrumentation based profiling.
188 class InstrProfStats {
189   uint32_t VisitedInMainFile;
190   uint32_t MissingInMainFile;
191   uint32_t Visited;
192   uint32_t Missing;
193   uint32_t Mismatched;
194 
195 public:
196   InstrProfStats()
197       : VisitedInMainFile(0), MissingInMainFile(0), Visited(0), Missing(0),
198         Mismatched(0) {}
199   /// Record that we've visited a function and whether or not that function was
200   /// in the main source file.
201   void addVisited(bool MainFile) {
202     if (MainFile)
203       ++VisitedInMainFile;
204     ++Visited;
205   }
206   /// Record that a function we've visited has no profile data.
207   void addMissing(bool MainFile) {
208     if (MainFile)
209       ++MissingInMainFile;
210     ++Missing;
211   }
212   /// Record that a function we've visited has mismatched profile data.
213   void addMismatched(bool MainFile) { ++Mismatched; }
214   /// Whether or not the stats we've gathered indicate any potential problems.
215   bool hasDiagnostics() { return Missing || Mismatched; }
216   /// Report potential problems we've found to \c Diags.
217   void reportDiagnostics(DiagnosticsEngine &Diags, StringRef MainFile);
218 };
219 
220 /// A pair of helper functions for a __block variable.
221 class BlockByrefHelpers : public llvm::FoldingSetNode {
222   // MSVC requires this type to be complete in order to process this
223   // header.
224 public:
225   llvm::Constant *CopyHelper;
226   llvm::Constant *DisposeHelper;
227 
228   /// The alignment of the field.  This is important because
229   /// different offsets to the field within the byref struct need to
230   /// have different helper functions.
231   CharUnits Alignment;
232 
233   BlockByrefHelpers(CharUnits alignment) : Alignment(alignment) {}
234   BlockByrefHelpers(const BlockByrefHelpers &) = default;
235   virtual ~BlockByrefHelpers();
236 
237   void Profile(llvm::FoldingSetNodeID &id) const {
238     id.AddInteger(Alignment.getQuantity());
239     profileImpl(id);
240   }
241   virtual void profileImpl(llvm::FoldingSetNodeID &id) const = 0;
242 
243   virtual bool needsCopy() const { return true; }
244   virtual void emitCopy(CodeGenFunction &CGF, Address dest, Address src) = 0;
245 
246   virtual bool needsDispose() const { return true; }
247   virtual void emitDispose(CodeGenFunction &CGF, Address field) = 0;
248 };
249 
250 /// This class organizes the cross-function state that is used while generating
251 /// LLVM code.
252 class CodeGenModule : public CodeGenTypeCache {
253   CodeGenModule(const CodeGenModule &) = delete;
254   void operator=(const CodeGenModule &) = delete;
255 
256 public:
257   struct Structor {
258     Structor() : Priority(0), Initializer(nullptr), AssociatedData(nullptr) {}
259     Structor(int Priority, llvm::Constant *Initializer,
260              llvm::Constant *AssociatedData)
261         : Priority(Priority), Initializer(Initializer),
262           AssociatedData(AssociatedData) {}
263     int Priority;
264     llvm::Constant *Initializer;
265     llvm::Constant *AssociatedData;
266   };
267 
268   typedef std::vector<Structor> CtorList;
269 
270 private:
271   ASTContext &Context;
272   const LangOptions &LangOpts;
273   const HeaderSearchOptions &HeaderSearchOpts; // Only used for debug info.
274   const PreprocessorOptions &PreprocessorOpts; // Only used for debug info.
275   const CodeGenOptions &CodeGenOpts;
276   llvm::Module &TheModule;
277   DiagnosticsEngine &Diags;
278   const TargetInfo &Target;
279   std::unique_ptr<CGCXXABI> ABI;
280   llvm::LLVMContext &VMContext;
281 
282   std::unique_ptr<CodeGenTBAA> TBAA;
283 
284   mutable std::unique_ptr<TargetCodeGenInfo> TheTargetCodeGenInfo;
285 
286   // This should not be moved earlier, since its initialization depends on some
287   // of the previous reference members being already initialized and also checks
288   // if TheTargetCodeGenInfo is NULL
289   CodeGenTypes Types;
290 
291   /// Holds information about C++ vtables.
292   CodeGenVTables VTables;
293 
294   std::unique_ptr<CGObjCRuntime> ObjCRuntime;
295   std::unique_ptr<CGOpenCLRuntime> OpenCLRuntime;
296   std::unique_ptr<CGOpenMPRuntime> OpenMPRuntime;
297   std::unique_ptr<CGCUDARuntime> CUDARuntime;
298   std::unique_ptr<CGDebugInfo> DebugInfo;
299   std::unique_ptr<ObjCEntrypoints> ObjCData;
300   llvm::MDNode *NoObjCARCExceptionsMetadata = nullptr;
301   std::unique_ptr<llvm::IndexedInstrProfReader> PGOReader;
302   InstrProfStats PGOStats;
303   std::unique_ptr<llvm::SanitizerStatReport> SanStats;
304 
305   // A set of references that have only been seen via a weakref so far. This is
306   // used to remove the weak of the reference if we ever see a direct reference
307   // or a definition.
308   llvm::SmallPtrSet<llvm::GlobalValue*, 10> WeakRefReferences;
309 
310   /// This contains all the decls which have definitions but/ which are deferred
311   /// for emission and therefore should only be output if they are actually
312   /// used. If a decl is in this, then it is known to have not been referenced
313   /// yet.
314   std::map<StringRef, GlobalDecl> DeferredDecls;
315 
316   /// This is a list of deferred decls which we have seen that *are* actually
317   /// referenced. These get code generated when the module is done.
318   std::vector<GlobalDecl> DeferredDeclsToEmit;
319   void addDeferredDeclToEmit(GlobalDecl GD) {
320     DeferredDeclsToEmit.emplace_back(GD);
321   }
322 
323   /// List of alias we have emitted. Used to make sure that what they point to
324   /// is defined once we get to the end of the of the translation unit.
325   std::vector<GlobalDecl> Aliases;
326 
327   typedef llvm::StringMap<llvm::TrackingVH<llvm::Constant> > ReplacementsTy;
328   ReplacementsTy Replacements;
329 
330   /// List of global values to be replaced with something else. Used when we
331   /// want to replace a GlobalValue but can't identify it by its mangled name
332   /// anymore (because the name is already taken).
333   llvm::SmallVector<std::pair<llvm::GlobalValue *, llvm::Constant *>, 8>
334     GlobalValReplacements;
335 
336   /// Set of global decls for which we already diagnosed mangled name conflict.
337   /// Required to not issue a warning (on a mangling conflict) multiple times
338   /// for the same decl.
339   llvm::DenseSet<GlobalDecl> DiagnosedConflictingDefinitions;
340 
341   /// A queue of (optional) vtables to consider emitting.
342   std::vector<const CXXRecordDecl*> DeferredVTables;
343 
344   /// A queue of (optional) vtables that may be emitted opportunistically.
345   std::vector<const CXXRecordDecl *> OpportunisticVTables;
346 
347   /// List of global values which are required to be present in the object file;
348   /// bitcast to i8*. This is used for forcing visibility of symbols which may
349   /// otherwise be optimized out.
350   std::vector<llvm::WeakTrackingVH> LLVMUsed;
351   std::vector<llvm::WeakTrackingVH> LLVMCompilerUsed;
352 
353   /// Store the list of global constructors and their respective priorities to
354   /// be emitted when the translation unit is complete.
355   CtorList GlobalCtors;
356 
357   /// Store the list of global destructors and their respective priorities to be
358   /// emitted when the translation unit is complete.
359   CtorList GlobalDtors;
360 
361   /// An ordered map of canonical GlobalDecls to their mangled names.
362   llvm::MapVector<GlobalDecl, StringRef> MangledDeclNames;
363   llvm::StringMap<GlobalDecl, llvm::BumpPtrAllocator> Manglings;
364 
365   /// Global annotations.
366   std::vector<llvm::Constant*> Annotations;
367 
368   /// Map used to get unique annotation strings.
369   llvm::StringMap<llvm::Constant*> AnnotationStrings;
370 
371   llvm::StringMap<llvm::GlobalVariable *> CFConstantStringMap;
372 
373   llvm::DenseMap<llvm::Constant *, llvm::GlobalVariable *> ConstantStringMap;
374   llvm::DenseMap<const Decl*, llvm::Constant *> StaticLocalDeclMap;
375   llvm::DenseMap<const Decl*, llvm::GlobalVariable*> StaticLocalDeclGuardMap;
376   llvm::DenseMap<const Expr*, llvm::Constant *> MaterializedGlobalTemporaryMap;
377 
378   llvm::DenseMap<QualType, llvm::Constant *> AtomicSetterHelperFnMap;
379   llvm::DenseMap<QualType, llvm::Constant *> AtomicGetterHelperFnMap;
380 
381   /// Map used to get unique type descriptor constants for sanitizers.
382   llvm::DenseMap<QualType, llvm::Constant *> TypeDescriptorMap;
383 
384   /// Map used to track internal linkage functions declared within
385   /// extern "C" regions.
386   typedef llvm::MapVector<IdentifierInfo *,
387                           llvm::GlobalValue *> StaticExternCMap;
388   StaticExternCMap StaticExternCValues;
389 
390   /// \brief thread_local variables defined or used in this TU.
391   std::vector<const VarDecl *> CXXThreadLocals;
392 
393   /// \brief thread_local variables with initializers that need to run
394   /// before any thread_local variable in this TU is odr-used.
395   std::vector<llvm::Function *> CXXThreadLocalInits;
396   std::vector<const VarDecl *> CXXThreadLocalInitVars;
397 
398   /// Global variables with initializers that need to run before main.
399   std::vector<llvm::Function *> CXXGlobalInits;
400 
401   /// When a C++ decl with an initializer is deferred, null is
402   /// appended to CXXGlobalInits, and the index of that null is placed
403   /// here so that the initializer will be performed in the correct
404   /// order. Once the decl is emitted, the index is replaced with ~0U to ensure
405   /// that we don't re-emit the initializer.
406   llvm::DenseMap<const Decl*, unsigned> DelayedCXXInitPosition;
407 
408   typedef std::pair<OrderGlobalInits, llvm::Function*> GlobalInitData;
409 
410   struct GlobalInitPriorityCmp {
411     bool operator()(const GlobalInitData &LHS,
412                     const GlobalInitData &RHS) const {
413       return LHS.first.priority < RHS.first.priority;
414     }
415   };
416 
417   /// Global variables with initializers whose order of initialization is set by
418   /// init_priority attribute.
419   SmallVector<GlobalInitData, 8> PrioritizedCXXGlobalInits;
420 
421   /// Global destructor functions and arguments that need to run on termination.
422   std::vector<std::pair<llvm::WeakTrackingVH, llvm::Constant *>> CXXGlobalDtors;
423 
424   /// \brief The complete set of modules that has been imported.
425   llvm::SetVector<clang::Module *> ImportedModules;
426 
427   /// \brief The set of modules for which the module initializers
428   /// have been emitted.
429   llvm::SmallPtrSet<clang::Module *, 16> EmittedModuleInitializers;
430 
431   /// \brief A vector of metadata strings.
432   SmallVector<llvm::MDNode *, 16> LinkerOptionsMetadata;
433 
434   /// @name Cache for Objective-C runtime types
435   /// @{
436 
437   /// Cached reference to the class for constant strings. This value has type
438   /// int * but is actually an Obj-C class pointer.
439   llvm::WeakTrackingVH CFConstantStringClassRef;
440 
441   /// \brief The type used to describe the state of a fast enumeration in
442   /// Objective-C's for..in loop.
443   QualType ObjCFastEnumerationStateType;
444 
445   /// @}
446 
447   /// Lazily create the Objective-C runtime
448   void createObjCRuntime();
449 
450   void createOpenCLRuntime();
451   void createOpenMPRuntime();
452   void createCUDARuntime();
453 
454   bool isTriviallyRecursive(const FunctionDecl *F);
455   bool shouldEmitFunction(GlobalDecl GD);
456   bool shouldOpportunisticallyEmitVTables();
457   /// Map used to be sure we don't emit the same CompoundLiteral twice.
458   llvm::DenseMap<const CompoundLiteralExpr *, llvm::GlobalVariable *>
459       EmittedCompoundLiterals;
460 
461   /// Map of the global blocks we've emitted, so that we don't have to re-emit
462   /// them if the constexpr evaluator gets aggressive.
463   llvm::DenseMap<const BlockExpr *, llvm::Constant *> EmittedGlobalBlocks;
464 
465   /// @name Cache for Blocks Runtime Globals
466   /// @{
467 
468   llvm::Constant *NSConcreteGlobalBlock = nullptr;
469   llvm::Constant *NSConcreteStackBlock = nullptr;
470 
471   llvm::Constant *BlockObjectAssign = nullptr;
472   llvm::Constant *BlockObjectDispose = nullptr;
473 
474   llvm::Type *BlockDescriptorType = nullptr;
475   llvm::Type *GenericBlockLiteralType = nullptr;
476 
477   struct {
478     int GlobalUniqueCount;
479   } Block;
480 
481   /// void @llvm.lifetime.start(i64 %size, i8* nocapture <ptr>)
482   llvm::Constant *LifetimeStartFn = nullptr;
483 
484   /// void @llvm.lifetime.end(i64 %size, i8* nocapture <ptr>)
485   llvm::Constant *LifetimeEndFn = nullptr;
486 
487   GlobalDecl initializedGlobalDecl;
488 
489   std::unique_ptr<SanitizerMetadata> SanitizerMD;
490 
491   /// @}
492 
493   llvm::DenseMap<const Decl *, bool> DeferredEmptyCoverageMappingDecls;
494 
495   std::unique_ptr<CoverageMappingModuleGen> CoverageMapping;
496 
497   /// Mapping from canonical types to their metadata identifiers. We need to
498   /// maintain this mapping because identifiers may be formed from distinct
499   /// MDNodes.
500   llvm::DenseMap<QualType, llvm::Metadata *> MetadataIdMap;
501 
502 public:
503   CodeGenModule(ASTContext &C, const HeaderSearchOptions &headersearchopts,
504                 const PreprocessorOptions &ppopts,
505                 const CodeGenOptions &CodeGenOpts, llvm::Module &M,
506                 DiagnosticsEngine &Diags,
507                 CoverageSourceInfo *CoverageInfo = nullptr);
508 
509   ~CodeGenModule();
510 
511   void clear();
512 
513   /// Finalize LLVM code generation.
514   void Release();
515 
516   /// Return true if we should emit location information for expressions.
517   bool getExpressionLocationsEnabled() const;
518 
519   /// Return a reference to the configured Objective-C runtime.
520   CGObjCRuntime &getObjCRuntime() {
521     if (!ObjCRuntime) createObjCRuntime();
522     return *ObjCRuntime;
523   }
524 
525   /// Return true iff an Objective-C runtime has been configured.
526   bool hasObjCRuntime() { return !!ObjCRuntime; }
527 
528   /// Return a reference to the configured OpenCL runtime.
529   CGOpenCLRuntime &getOpenCLRuntime() {
530     assert(OpenCLRuntime != nullptr);
531     return *OpenCLRuntime;
532   }
533 
534   /// Return a reference to the configured OpenMP runtime.
535   CGOpenMPRuntime &getOpenMPRuntime() {
536     assert(OpenMPRuntime != nullptr);
537     return *OpenMPRuntime;
538   }
539 
540   /// Return a reference to the configured CUDA runtime.
541   CGCUDARuntime &getCUDARuntime() {
542     assert(CUDARuntime != nullptr);
543     return *CUDARuntime;
544   }
545 
546   ObjCEntrypoints &getObjCEntrypoints() const {
547     assert(ObjCData != nullptr);
548     return *ObjCData;
549   }
550 
551   // Version checking function, used to implement ObjC's @available:
552   // i32 @__isOSVersionAtLeast(i32, i32, i32)
553   llvm::Constant *IsOSVersionAtLeastFn = nullptr;
554 
555   InstrProfStats &getPGOStats() { return PGOStats; }
556   llvm::IndexedInstrProfReader *getPGOReader() const { return PGOReader.get(); }
557 
558   CoverageMappingModuleGen *getCoverageMapping() const {
559     return CoverageMapping.get();
560   }
561 
562   llvm::Constant *getStaticLocalDeclAddress(const VarDecl *D) {
563     return StaticLocalDeclMap[D];
564   }
565   void setStaticLocalDeclAddress(const VarDecl *D,
566                                  llvm::Constant *C) {
567     StaticLocalDeclMap[D] = C;
568   }
569 
570   llvm::Constant *
571   getOrCreateStaticVarDecl(const VarDecl &D,
572                            llvm::GlobalValue::LinkageTypes Linkage);
573 
574   llvm::GlobalVariable *getStaticLocalDeclGuardAddress(const VarDecl *D) {
575     return StaticLocalDeclGuardMap[D];
576   }
577   void setStaticLocalDeclGuardAddress(const VarDecl *D,
578                                       llvm::GlobalVariable *C) {
579     StaticLocalDeclGuardMap[D] = C;
580   }
581 
582   bool lookupRepresentativeDecl(StringRef MangledName,
583                                 GlobalDecl &Result) const;
584 
585   llvm::Constant *getAtomicSetterHelperFnMap(QualType Ty) {
586     return AtomicSetterHelperFnMap[Ty];
587   }
588   void setAtomicSetterHelperFnMap(QualType Ty,
589                             llvm::Constant *Fn) {
590     AtomicSetterHelperFnMap[Ty] = Fn;
591   }
592 
593   llvm::Constant *getAtomicGetterHelperFnMap(QualType Ty) {
594     return AtomicGetterHelperFnMap[Ty];
595   }
596   void setAtomicGetterHelperFnMap(QualType Ty,
597                             llvm::Constant *Fn) {
598     AtomicGetterHelperFnMap[Ty] = Fn;
599   }
600 
601   llvm::Constant *getTypeDescriptorFromMap(QualType Ty) {
602     return TypeDescriptorMap[Ty];
603   }
604   void setTypeDescriptorInMap(QualType Ty, llvm::Constant *C) {
605     TypeDescriptorMap[Ty] = C;
606   }
607 
608   CGDebugInfo *getModuleDebugInfo() { return DebugInfo.get(); }
609 
610   llvm::MDNode *getNoObjCARCExceptionsMetadata() {
611     if (!NoObjCARCExceptionsMetadata)
612       NoObjCARCExceptionsMetadata = llvm::MDNode::get(getLLVMContext(), None);
613     return NoObjCARCExceptionsMetadata;
614   }
615 
616   ASTContext &getContext() const { return Context; }
617   const LangOptions &getLangOpts() const { return LangOpts; }
618   const HeaderSearchOptions &getHeaderSearchOpts()
619     const { return HeaderSearchOpts; }
620   const PreprocessorOptions &getPreprocessorOpts()
621     const { return PreprocessorOpts; }
622   const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; }
623   llvm::Module &getModule() const { return TheModule; }
624   DiagnosticsEngine &getDiags() const { return Diags; }
625   const llvm::DataLayout &getDataLayout() const {
626     return TheModule.getDataLayout();
627   }
628   const TargetInfo &getTarget() const { return Target; }
629   const llvm::Triple &getTriple() const { return Target.getTriple(); }
630   bool supportsCOMDAT() const;
631   void maybeSetTrivialComdat(const Decl &D, llvm::GlobalObject &GO);
632 
633   CGCXXABI &getCXXABI() const { return *ABI; }
634   llvm::LLVMContext &getLLVMContext() { return VMContext; }
635 
636   bool shouldUseTBAA() const { return TBAA != nullptr; }
637 
638   const TargetCodeGenInfo &getTargetCodeGenInfo();
639 
640   CodeGenTypes &getTypes() { return Types; }
641 
642   CodeGenVTables &getVTables() { return VTables; }
643 
644   ItaniumVTableContext &getItaniumVTableContext() {
645     return VTables.getItaniumVTableContext();
646   }
647 
648   MicrosoftVTableContext &getMicrosoftVTableContext() {
649     return VTables.getMicrosoftVTableContext();
650   }
651 
652   CtorList &getGlobalCtors() { return GlobalCtors; }
653   CtorList &getGlobalDtors() { return GlobalDtors; }
654 
655   llvm::MDNode *getTBAAInfo(QualType QTy);
656   llvm::MDNode *getTBAAInfoForVTablePtr();
657   llvm::MDNode *getTBAAStructInfo(QualType QTy);
658   /// Return the path-aware tag for given base type, access node and offset.
659   llvm::MDNode *getTBAAStructTagInfo(QualType BaseTy, llvm::MDNode *AccessN,
660                                      uint64_t O);
661 
662   bool isTypeConstant(QualType QTy, bool ExcludeCtorDtor);
663 
664   bool isPaddedAtomicType(QualType type);
665   bool isPaddedAtomicType(const AtomicType *type);
666 
667   /// Decorate the instruction with a TBAA tag. For scalar TBAA, the tag
668   /// is the same as the type. For struct-path aware TBAA, the tag
669   /// is different from the type: base type, access type and offset.
670   /// When ConvertTypeToTag is true, we create a tag based on the scalar type.
671   void DecorateInstructionWithTBAA(llvm::Instruction *Inst,
672                                    llvm::MDNode *TBAAInfo,
673                                    bool ConvertTypeToTag = true);
674 
675   /// Adds !invariant.barrier !tag to instruction
676   void DecorateInstructionWithInvariantGroup(llvm::Instruction *I,
677                                              const CXXRecordDecl *RD);
678 
679   /// Emit the given number of characters as a value of type size_t.
680   llvm::ConstantInt *getSize(CharUnits numChars);
681 
682   /// Set the visibility for the given LLVM GlobalValue.
683   void setGlobalVisibility(llvm::GlobalValue *GV, const NamedDecl *D) const;
684 
685   /// Set the TLS mode for the given LLVM GlobalValue for the thread-local
686   /// variable declaration D.
687   void setTLSMode(llvm::GlobalValue *GV, const VarDecl &D) const;
688 
689   static llvm::GlobalValue::VisibilityTypes GetLLVMVisibility(Visibility V) {
690     switch (V) {
691     case DefaultVisibility:   return llvm::GlobalValue::DefaultVisibility;
692     case HiddenVisibility:    return llvm::GlobalValue::HiddenVisibility;
693     case ProtectedVisibility: return llvm::GlobalValue::ProtectedVisibility;
694     }
695     llvm_unreachable("unknown visibility!");
696   }
697 
698   llvm::Constant *GetAddrOfGlobal(GlobalDecl GD,
699                                   ForDefinition_t IsForDefinition
700                                     = NotForDefinition);
701 
702   /// Will return a global variable of the given type. If a variable with a
703   /// different type already exists then a new  variable with the right type
704   /// will be created and all uses of the old variable will be replaced with a
705   /// bitcast to the new variable.
706   llvm::GlobalVariable *
707   CreateOrReplaceCXXRuntimeVariable(StringRef Name, llvm::Type *Ty,
708                                     llvm::GlobalValue::LinkageTypes Linkage);
709 
710   llvm::Function *
711   CreateGlobalInitOrDestructFunction(llvm::FunctionType *ty, const Twine &name,
712                                      const CGFunctionInfo &FI,
713                                      SourceLocation Loc = SourceLocation(),
714                                      bool TLS = false);
715 
716   /// Return the AST address space of the underlying global variable for D, as
717   /// determined by its declaration. Normally this is the same as the address
718   /// space of D's type, but in CUDA, address spaces are associated with
719   /// declarations, not types. If D is nullptr, return the default address
720   /// space for global variable.
721   ///
722   /// For languages without explicit address spaces, if D has default address
723   /// space, target-specific global or constant address space may be returned.
724   unsigned GetGlobalVarAddressSpace(const VarDecl *D);
725 
726   /// Return the llvm::Constant for the address of the given global variable.
727   /// If Ty is non-null and if the global doesn't exist, then it will be created
728   /// with the specified type instead of whatever the normal requested type
729   /// would be. If IsForDefinition is true, it is guranteed that an actual
730   /// global with type Ty will be returned, not conversion of a variable with
731   /// the same mangled name but some other type.
732   llvm::Constant *GetAddrOfGlobalVar(const VarDecl *D,
733                                      llvm::Type *Ty = nullptr,
734                                      ForDefinition_t IsForDefinition
735                                        = NotForDefinition);
736 
737   /// Return the address of the given function. If Ty is non-null, then this
738   /// function will use the specified type if it has to create it.
739   llvm::Constant *GetAddrOfFunction(GlobalDecl GD, llvm::Type *Ty = nullptr,
740                                     bool ForVTable = false,
741                                     bool DontDefer = false,
742                                     ForDefinition_t IsForDefinition
743                                       = NotForDefinition);
744 
745   /// Get the address of the RTTI descriptor for the given type.
746   llvm::Constant *GetAddrOfRTTIDescriptor(QualType Ty, bool ForEH = false);
747 
748   /// Get the address of a uuid descriptor .
749   ConstantAddress GetAddrOfUuidDescriptor(const CXXUuidofExpr* E);
750 
751   /// Get the address of the thunk for the given global decl.
752   llvm::Constant *GetAddrOfThunk(GlobalDecl GD, const ThunkInfo &Thunk);
753 
754   /// Get a reference to the target of VD.
755   ConstantAddress GetWeakRefReference(const ValueDecl *VD);
756 
757   /// Returns the assumed alignment of an opaque pointer to the given class.
758   CharUnits getClassPointerAlignment(const CXXRecordDecl *CD);
759 
760   /// Returns the assumed alignment of a virtual base of a class.
761   CharUnits getVBaseAlignment(CharUnits DerivedAlign,
762                               const CXXRecordDecl *Derived,
763                               const CXXRecordDecl *VBase);
764 
765   /// Given a class pointer with an actual known alignment, and the
766   /// expected alignment of an object at a dynamic offset w.r.t that
767   /// pointer, return the alignment to assume at the offset.
768   CharUnits getDynamicOffsetAlignment(CharUnits ActualAlign,
769                                       const CXXRecordDecl *Class,
770                                       CharUnits ExpectedTargetAlign);
771 
772   CharUnits
773   computeNonVirtualBaseClassOffset(const CXXRecordDecl *DerivedClass,
774                                    CastExpr::path_const_iterator Start,
775                                    CastExpr::path_const_iterator End);
776 
777   /// Returns the offset from a derived class to  a class. Returns null if the
778   /// offset is 0.
779   llvm::Constant *
780   GetNonVirtualBaseClassOffset(const CXXRecordDecl *ClassDecl,
781                                CastExpr::path_const_iterator PathBegin,
782                                CastExpr::path_const_iterator PathEnd);
783 
784   llvm::FoldingSet<BlockByrefHelpers> ByrefHelpersCache;
785 
786   /// Fetches the global unique block count.
787   int getUniqueBlockCount() { return ++Block.GlobalUniqueCount; }
788 
789   /// Fetches the type of a generic block descriptor.
790   llvm::Type *getBlockDescriptorType();
791 
792   /// The type of a generic block literal.
793   llvm::Type *getGenericBlockLiteralType();
794 
795   /// Gets the address of a block which requires no captures.
796   llvm::Constant *GetAddrOfGlobalBlock(const BlockExpr *BE, StringRef Name);
797 
798   /// Returns the address of a block which requires no caputres, or null if
799   /// we've yet to emit the block for BE.
800   llvm::Constant *getAddrOfGlobalBlockIfEmitted(const BlockExpr *BE) {
801     return EmittedGlobalBlocks.lookup(BE);
802   }
803 
804   /// Notes that BE's global block is available via Addr. Asserts that BE
805   /// isn't already emitted.
806   void setAddrOfGlobalBlock(const BlockExpr *BE, llvm::Constant *Addr);
807 
808   /// Return a pointer to a constant CFString object for the given string.
809   ConstantAddress GetAddrOfConstantCFString(const StringLiteral *Literal);
810 
811   /// Return a pointer to a constant NSString object for the given string. Or a
812   /// user defined String object as defined via
813   /// -fconstant-string-class=class_name option.
814   ConstantAddress GetAddrOfConstantString(const StringLiteral *Literal);
815 
816   /// Return a constant array for the given string.
817   llvm::Constant *GetConstantArrayFromStringLiteral(const StringLiteral *E);
818 
819   /// Return a pointer to a constant array for the given string literal.
820   ConstantAddress
821   GetAddrOfConstantStringFromLiteral(const StringLiteral *S,
822                                      StringRef Name = ".str");
823 
824   /// Return a pointer to a constant array for the given ObjCEncodeExpr node.
825   ConstantAddress
826   GetAddrOfConstantStringFromObjCEncode(const ObjCEncodeExpr *);
827 
828   /// Returns a pointer to a character array containing the literal and a
829   /// terminating '\0' character. The result has pointer to array type.
830   ///
831   /// \param GlobalName If provided, the name to use for the global (if one is
832   /// created).
833   ConstantAddress
834   GetAddrOfConstantCString(const std::string &Str,
835                            const char *GlobalName = nullptr);
836 
837   /// Returns a pointer to a constant global variable for the given file-scope
838   /// compound literal expression.
839   ConstantAddress GetAddrOfConstantCompoundLiteral(const CompoundLiteralExpr*E);
840 
841   /// If it's been emitted already, returns the GlobalVariable corresponding to
842   /// a compound literal. Otherwise, returns null.
843   llvm::GlobalVariable *
844   getAddrOfConstantCompoundLiteralIfEmitted(const CompoundLiteralExpr *E);
845 
846   /// Notes that CLE's GlobalVariable is GV. Asserts that CLE isn't already
847   /// emitted.
848   void setAddrOfConstantCompoundLiteral(const CompoundLiteralExpr *CLE,
849                                         llvm::GlobalVariable *GV);
850 
851   /// \brief Returns a pointer to a global variable representing a temporary
852   /// with static or thread storage duration.
853   ConstantAddress GetAddrOfGlobalTemporary(const MaterializeTemporaryExpr *E,
854                                            const Expr *Inner);
855 
856   /// \brief Retrieve the record type that describes the state of an
857   /// Objective-C fast enumeration loop (for..in).
858   QualType getObjCFastEnumerationStateType();
859 
860   // Produce code for this constructor/destructor. This method doesn't try
861   // to apply any ABI rules about which other constructors/destructors
862   // are needed or if they are alias to each other.
863   llvm::Function *codegenCXXStructor(const CXXMethodDecl *MD,
864                                      StructorType Type);
865 
866   /// Return the address of the constructor/destructor of the given type.
867   llvm::Constant *
868   getAddrOfCXXStructor(const CXXMethodDecl *MD, StructorType Type,
869                        const CGFunctionInfo *FnInfo = nullptr,
870                        llvm::FunctionType *FnType = nullptr,
871                        bool DontDefer = false,
872                        ForDefinition_t IsForDefinition = NotForDefinition);
873 
874   /// Given a builtin id for a function like "__builtin_fabsf", return a
875   /// Function* for "fabsf".
876   llvm::Constant *getBuiltinLibFunction(const FunctionDecl *FD,
877                                         unsigned BuiltinID);
878 
879   llvm::Function *getIntrinsic(unsigned IID, ArrayRef<llvm::Type*> Tys = None);
880 
881   /// Emit code for a single top level declaration.
882   void EmitTopLevelDecl(Decl *D);
883 
884   /// \brief Stored a deferred empty coverage mapping for an unused
885   /// and thus uninstrumented top level declaration.
886   void AddDeferredUnusedCoverageMapping(Decl *D);
887 
888   /// \brief Remove the deferred empty coverage mapping as this
889   /// declaration is actually instrumented.
890   void ClearUnusedCoverageMapping(const Decl *D);
891 
892   /// \brief Emit all the deferred coverage mappings
893   /// for the uninstrumented functions.
894   void EmitDeferredUnusedCoverageMappings();
895 
896   /// Tell the consumer that this variable has been instantiated.
897   void HandleCXXStaticMemberVarInstantiation(VarDecl *VD);
898 
899   /// \brief If the declaration has internal linkage but is inside an
900   /// extern "C" linkage specification, prepare to emit an alias for it
901   /// to the expected name.
902   template<typename SomeDecl>
903   void MaybeHandleStaticInExternC(const SomeDecl *D, llvm::GlobalValue *GV);
904 
905   /// Add a global to a list to be added to the llvm.used metadata.
906   void addUsedGlobal(llvm::GlobalValue *GV);
907 
908   /// Add a global to a list to be added to the llvm.compiler.used metadata.
909   void addCompilerUsedGlobal(llvm::GlobalValue *GV);
910 
911   /// Add a destructor and object to add to the C++ global destructor function.
912   void AddCXXDtorEntry(llvm::Constant *DtorFn, llvm::Constant *Object) {
913     CXXGlobalDtors.emplace_back(DtorFn, Object);
914   }
915 
916   /// Create a new runtime function with the specified type and name.
917   llvm::Constant *
918   CreateRuntimeFunction(llvm::FunctionType *Ty, StringRef Name,
919                         llvm::AttributeList ExtraAttrs = llvm::AttributeList(),
920                         bool Local = false);
921 
922   /// Create a new compiler builtin function with the specified type and name.
923   llvm::Constant *
924   CreateBuiltinFunction(llvm::FunctionType *Ty, StringRef Name,
925                         llvm::AttributeList ExtraAttrs = llvm::AttributeList());
926   /// Create a new runtime global variable with the specified type and name.
927   llvm::Constant *CreateRuntimeVariable(llvm::Type *Ty,
928                                         StringRef Name);
929 
930   ///@name Custom Blocks Runtime Interfaces
931   ///@{
932 
933   llvm::Constant *getNSConcreteGlobalBlock();
934   llvm::Constant *getNSConcreteStackBlock();
935   llvm::Constant *getBlockObjectAssign();
936   llvm::Constant *getBlockObjectDispose();
937 
938   ///@}
939 
940   llvm::Constant *getLLVMLifetimeStartFn();
941   llvm::Constant *getLLVMLifetimeEndFn();
942 
943   // Make sure that this type is translated.
944   void UpdateCompletedType(const TagDecl *TD);
945 
946   llvm::Constant *getMemberPointerConstant(const UnaryOperator *e);
947 
948   /// \brief Emit type info if type of an expression is a variably modified
949   /// type. Also emit proper debug info for cast types.
950   void EmitExplicitCastExprType(const ExplicitCastExpr *E,
951                                 CodeGenFunction *CGF = nullptr);
952 
953   /// Return the result of value-initializing the given type, i.e. a null
954   /// expression of the given type.  This is usually, but not always, an LLVM
955   /// null constant.
956   llvm::Constant *EmitNullConstant(QualType T);
957 
958   /// Return a null constant appropriate for zero-initializing a base class with
959   /// the given type. This is usually, but not always, an LLVM null constant.
960   llvm::Constant *EmitNullConstantForBase(const CXXRecordDecl *Record);
961 
962   /// Emit a general error that something can't be done.
963   void Error(SourceLocation loc, StringRef error);
964 
965   /// Print out an error that codegen doesn't support the specified stmt yet.
966   void ErrorUnsupported(const Stmt *S, const char *Type);
967 
968   /// Print out an error that codegen doesn't support the specified decl yet.
969   void ErrorUnsupported(const Decl *D, const char *Type);
970 
971   /// Set the attributes on the LLVM function for the given decl and function
972   /// info. This applies attributes necessary for handling the ABI as well as
973   /// user specified attributes like section.
974   void SetInternalFunctionAttributes(const Decl *D, llvm::Function *F,
975                                      const CGFunctionInfo &FI);
976 
977   /// Set the LLVM function attributes (sext, zext, etc).
978   void SetLLVMFunctionAttributes(const Decl *D,
979                                  const CGFunctionInfo &Info,
980                                  llvm::Function *F);
981 
982   /// Set the LLVM function attributes which only apply to a function
983   /// definition.
984   void SetLLVMFunctionAttributesForDefinition(const Decl *D, llvm::Function *F);
985 
986   /// Return true iff the given type uses 'sret' when used as a return type.
987   bool ReturnTypeUsesSRet(const CGFunctionInfo &FI);
988 
989   /// Return true iff the given type uses an argument slot when 'sret' is used
990   /// as a return type.
991   bool ReturnSlotInterferesWithArgs(const CGFunctionInfo &FI);
992 
993   /// Return true iff the given type uses 'fpret' when used as a return type.
994   bool ReturnTypeUsesFPRet(QualType ResultType);
995 
996   /// Return true iff the given type uses 'fp2ret' when used as a return type.
997   bool ReturnTypeUsesFP2Ret(QualType ResultType);
998 
999   /// Get the LLVM attributes and calling convention to use for a particular
1000   /// function type.
1001   ///
1002   /// \param Name - The function name.
1003   /// \param Info - The function type information.
1004   /// \param CalleeInfo - The callee information these attributes are being
1005   /// constructed for. If valid, the attributes applied to this decl may
1006   /// contribute to the function attributes and calling convention.
1007   /// \param Attrs [out] - On return, the attribute list to use.
1008   /// \param CallingConv [out] - On return, the LLVM calling convention to use.
1009   void ConstructAttributeList(StringRef Name, const CGFunctionInfo &Info,
1010                               CGCalleeInfo CalleeInfo,
1011                               llvm::AttributeList &Attrs, unsigned &CallingConv,
1012                               bool AttrOnCallSite);
1013 
1014   /// Adds attributes to F according to our CodeGenOptions and LangOptions, as
1015   /// though we had emitted it ourselves.  We remove any attributes on F that
1016   /// conflict with the attributes we add here.
1017   ///
1018   /// This is useful for adding attrs to bitcode modules that you want to link
1019   /// with but don't control, such as CUDA's libdevice.  When linking with such
1020   /// a bitcode library, you might want to set e.g. its functions'
1021   /// "unsafe-fp-math" attribute to match the attr of the functions you're
1022   /// codegen'ing.  Otherwise, LLVM will interpret the bitcode module's lack of
1023   /// unsafe-fp-math attrs as tantamount to unsafe-fp-math=false, and then LLVM
1024   /// will propagate unsafe-fp-math=false up to every transitive caller of a
1025   /// function in the bitcode library!
1026   ///
1027   /// With the exception of fast-math attrs, this will only make the attributes
1028   /// on the function more conservative.  But it's unsafe to call this on a
1029   /// function which relies on particular fast-math attributes for correctness.
1030   /// It's up to you to ensure that this is safe.
1031   void AddDefaultFnAttrs(llvm::Function &F);
1032 
1033   // Fills in the supplied string map with the set of target features for the
1034   // passed in function.
1035   void getFunctionFeatureMap(llvm::StringMap<bool> &FeatureMap,
1036                              const FunctionDecl *FD);
1037 
1038   StringRef getMangledName(GlobalDecl GD);
1039   StringRef getBlockMangledName(GlobalDecl GD, const BlockDecl *BD);
1040 
1041   void EmitTentativeDefinition(const VarDecl *D);
1042 
1043   void EmitVTable(CXXRecordDecl *Class);
1044 
1045   void RefreshTypeCacheForClass(const CXXRecordDecl *Class);
1046 
1047   /// \brief Appends Opts to the "llvm.linker.options" metadata value.
1048   void AppendLinkerOptions(StringRef Opts);
1049 
1050   /// \brief Appends a detect mismatch command to the linker options.
1051   void AddDetectMismatch(StringRef Name, StringRef Value);
1052 
1053   /// \brief Appends a dependent lib to the "llvm.linker.options" metadata
1054   /// value.
1055   void AddDependentLib(StringRef Lib);
1056 
1057   llvm::GlobalVariable::LinkageTypes getFunctionLinkage(GlobalDecl GD);
1058 
1059   void setFunctionLinkage(GlobalDecl GD, llvm::Function *F) {
1060     F->setLinkage(getFunctionLinkage(GD));
1061   }
1062 
1063   /// Set the DLL storage class on F.
1064   void setFunctionDLLStorageClass(GlobalDecl GD, llvm::Function *F);
1065 
1066   /// Return the appropriate linkage for the vtable, VTT, and type information
1067   /// of the given class.
1068   llvm::GlobalVariable::LinkageTypes getVTableLinkage(const CXXRecordDecl *RD);
1069 
1070   /// Return the store size, in character units, of the given LLVM type.
1071   CharUnits GetTargetTypeStoreSize(llvm::Type *Ty) const;
1072 
1073   /// Returns LLVM linkage for a declarator.
1074   llvm::GlobalValue::LinkageTypes
1075   getLLVMLinkageForDeclarator(const DeclaratorDecl *D, GVALinkage Linkage,
1076                               bool IsConstantVariable);
1077 
1078   /// Returns LLVM linkage for a declarator.
1079   llvm::GlobalValue::LinkageTypes
1080   getLLVMLinkageVarDefinition(const VarDecl *VD, bool IsConstant);
1081 
1082   /// Emit all the global annotations.
1083   void EmitGlobalAnnotations();
1084 
1085   /// Emit an annotation string.
1086   llvm::Constant *EmitAnnotationString(StringRef Str);
1087 
1088   /// Emit the annotation's translation unit.
1089   llvm::Constant *EmitAnnotationUnit(SourceLocation Loc);
1090 
1091   /// Emit the annotation line number.
1092   llvm::Constant *EmitAnnotationLineNo(SourceLocation L);
1093 
1094   /// Generate the llvm::ConstantStruct which contains the annotation
1095   /// information for a given GlobalValue. The annotation struct is
1096   /// {i8 *, i8 *, i8 *, i32}. The first field is a constant expression, the
1097   /// GlobalValue being annotated. The second field is the constant string
1098   /// created from the AnnotateAttr's annotation. The third field is a constant
1099   /// string containing the name of the translation unit. The fourth field is
1100   /// the line number in the file of the annotated value declaration.
1101   llvm::Constant *EmitAnnotateAttr(llvm::GlobalValue *GV,
1102                                    const AnnotateAttr *AA,
1103                                    SourceLocation L);
1104 
1105   /// Add global annotations that are set on D, for the global GV. Those
1106   /// annotations are emitted during finalization of the LLVM code.
1107   void AddGlobalAnnotations(const ValueDecl *D, llvm::GlobalValue *GV);
1108 
1109   bool isInSanitizerBlacklist(llvm::Function *Fn, SourceLocation Loc) const;
1110 
1111   bool isInSanitizerBlacklist(llvm::GlobalVariable *GV, SourceLocation Loc,
1112                               QualType Ty,
1113                               StringRef Category = StringRef()) const;
1114 
1115   /// Imbue XRay attributes to a function, applying the always/never attribute
1116   /// lists in the process. Returns true if we did imbue attributes this way,
1117   /// false otherwise.
1118   bool imbueXRayAttrs(llvm::Function *Fn, SourceLocation Loc,
1119                       StringRef Category = StringRef()) const;
1120 
1121   SanitizerMetadata *getSanitizerMetadata() {
1122     return SanitizerMD.get();
1123   }
1124 
1125   void addDeferredVTable(const CXXRecordDecl *RD) {
1126     DeferredVTables.push_back(RD);
1127   }
1128 
1129   /// Emit code for a singal global function or var decl. Forward declarations
1130   /// are emitted lazily.
1131   void EmitGlobal(GlobalDecl D);
1132 
1133   bool TryEmitDefinitionAsAlias(GlobalDecl Alias, GlobalDecl Target,
1134                                 bool InEveryTU);
1135   bool TryEmitBaseDestructorAsAlias(const CXXDestructorDecl *D);
1136 
1137   /// Set attributes for a global definition.
1138   void setFunctionDefinitionAttributes(const FunctionDecl *D,
1139                                        llvm::Function *F);
1140 
1141   llvm::GlobalValue *GetGlobalValue(StringRef Ref);
1142 
1143   /// Set attributes which are common to any form of a global definition (alias,
1144   /// Objective-C method, function, global variable).
1145   ///
1146   /// NOTE: This should only be called for definitions.
1147   void SetCommonAttributes(const Decl *D, llvm::GlobalValue *GV);
1148 
1149   /// Set attributes which must be preserved by an alias. This includes common
1150   /// attributes (i.e. it includes a call to SetCommonAttributes).
1151   ///
1152   /// NOTE: This should only be called for definitions.
1153   void setAliasAttributes(const Decl *D, llvm::GlobalValue *GV);
1154 
1155   void addReplacement(StringRef Name, llvm::Constant *C);
1156 
1157   void addGlobalValReplacement(llvm::GlobalValue *GV, llvm::Constant *C);
1158 
1159   /// \brief Emit a code for threadprivate directive.
1160   /// \param D Threadprivate declaration.
1161   void EmitOMPThreadPrivateDecl(const OMPThreadPrivateDecl *D);
1162 
1163   /// \brief Emit a code for declare reduction construct.
1164   void EmitOMPDeclareReduction(const OMPDeclareReductionDecl *D,
1165                                CodeGenFunction *CGF = nullptr);
1166 
1167   /// Returns whether the given record has hidden LTO visibility and therefore
1168   /// may participate in (single-module) CFI and whole-program vtable
1169   /// optimization.
1170   bool HasHiddenLTOVisibility(const CXXRecordDecl *RD);
1171 
1172   /// Emit type metadata for the given vtable using the given layout.
1173   void EmitVTableTypeMetadata(llvm::GlobalVariable *VTable,
1174                               const VTableLayout &VTLayout);
1175 
1176   /// Generate a cross-DSO type identifier for MD.
1177   llvm::ConstantInt *CreateCrossDsoCfiTypeId(llvm::Metadata *MD);
1178 
1179   /// Create a metadata identifier for the given type. This may either be an
1180   /// MDString (for external identifiers) or a distinct unnamed MDNode (for
1181   /// internal identifiers).
1182   llvm::Metadata *CreateMetadataIdentifierForType(QualType T);
1183 
1184   /// Create and attach type metadata to the given function.
1185   void CreateFunctionTypeMetadata(const FunctionDecl *FD, llvm::Function *F);
1186 
1187   /// Returns whether this module needs the "all-vtables" type identifier.
1188   bool NeedAllVtablesTypeId() const;
1189 
1190   /// Create and attach type metadata for the given vtable.
1191   void AddVTableTypeMetadata(llvm::GlobalVariable *VTable, CharUnits Offset,
1192                              const CXXRecordDecl *RD);
1193 
1194   /// \brief Get the declaration of std::terminate for the platform.
1195   llvm::Constant *getTerminateFn();
1196 
1197   llvm::SanitizerStatReport &getSanStats();
1198 
1199   llvm::Value *
1200   createOpenCLIntToSamplerConversion(const Expr *E, CodeGenFunction &CGF);
1201 
1202   /// Get target specific null pointer.
1203   /// \param T is the LLVM type of the null pointer.
1204   /// \param QT is the clang QualType of the null pointer.
1205   llvm::Constant *getNullPointer(llvm::PointerType *T, QualType QT);
1206 
1207 private:
1208   llvm::Constant *GetOrCreateLLVMFunction(
1209       StringRef MangledName, llvm::Type *Ty, GlobalDecl D, bool ForVTable,
1210       bool DontDefer = false, bool IsThunk = false,
1211       llvm::AttributeList ExtraAttrs = llvm::AttributeList(),
1212       ForDefinition_t IsForDefinition = NotForDefinition);
1213 
1214   llvm::Constant *GetOrCreateLLVMGlobal(StringRef MangledName,
1215                                         llvm::PointerType *PTy,
1216                                         const VarDecl *D,
1217                                         ForDefinition_t IsForDefinition
1218                                           = NotForDefinition);
1219 
1220   void setNonAliasAttributes(const Decl *D, llvm::GlobalObject *GO);
1221 
1222   /// Set function attributes for a function declaration.
1223   void SetFunctionAttributes(GlobalDecl GD, llvm::Function *F,
1224                              bool IsIncompleteFunction, bool IsThunk,
1225                              ForDefinition_t IsForDefinition);
1226 
1227   void EmitGlobalDefinition(GlobalDecl D, llvm::GlobalValue *GV = nullptr);
1228 
1229   void EmitGlobalFunctionDefinition(GlobalDecl GD, llvm::GlobalValue *GV);
1230   void EmitGlobalVarDefinition(const VarDecl *D, bool IsTentative = false);
1231   void EmitAliasDefinition(GlobalDecl GD);
1232   void emitIFuncDefinition(GlobalDecl GD);
1233   void EmitObjCPropertyImplementations(const ObjCImplementationDecl *D);
1234   void EmitObjCIvarInitializations(ObjCImplementationDecl *D);
1235 
1236   // C++ related functions.
1237 
1238   void EmitDeclContext(const DeclContext *DC);
1239   void EmitLinkageSpec(const LinkageSpecDecl *D);
1240 
1241   /// \brief Emit the function that initializes C++ thread_local variables.
1242   void EmitCXXThreadLocalInitFunc();
1243 
1244   /// Emit the function that initializes C++ globals.
1245   void EmitCXXGlobalInitFunc();
1246 
1247   /// Emit the function that destroys C++ globals.
1248   void EmitCXXGlobalDtorFunc();
1249 
1250   /// Emit the function that initializes the specified global (if PerformInit is
1251   /// true) and registers its destructor.
1252   void EmitCXXGlobalVarDeclInitFunc(const VarDecl *D,
1253                                     llvm::GlobalVariable *Addr,
1254                                     bool PerformInit);
1255 
1256   void EmitPointerToInitFunc(const VarDecl *VD, llvm::GlobalVariable *Addr,
1257                              llvm::Function *InitFunc, InitSegAttr *ISA);
1258 
1259   // FIXME: Hardcoding priority here is gross.
1260   void AddGlobalCtor(llvm::Function *Ctor, int Priority = 65535,
1261                      llvm::Constant *AssociatedData = nullptr);
1262   void AddGlobalDtor(llvm::Function *Dtor, int Priority = 65535);
1263 
1264   /// EmitCtorList - Generates a global array of functions and priorities using
1265   /// the given list and name. This array will have appending linkage and is
1266   /// suitable for use as a LLVM constructor or destructor array. Clears Fns.
1267   void EmitCtorList(CtorList &Fns, const char *GlobalName);
1268 
1269   /// Emit any needed decls for which code generation was deferred.
1270   void EmitDeferred();
1271 
1272   /// Try to emit external vtables as available_externally if they have emitted
1273   /// all inlined virtual functions.  It runs after EmitDeferred() and therefore
1274   /// is not allowed to create new references to things that need to be emitted
1275   /// lazily.
1276   void EmitVTablesOpportunistically();
1277 
1278   /// Call replaceAllUsesWith on all pairs in Replacements.
1279   void applyReplacements();
1280 
1281   /// Call replaceAllUsesWith on all pairs in GlobalValReplacements.
1282   void applyGlobalValReplacements();
1283 
1284   void checkAliases();
1285 
1286   /// Emit any vtables which we deferred and still have a use for.
1287   void EmitDeferredVTables();
1288 
1289   /// Emit a dummy function that reference a CoreFoundation symbol when
1290   /// @available is used on Darwin.
1291   void emitAtAvailableLinkGuard();
1292 
1293   /// Emit the llvm.used and llvm.compiler.used metadata.
1294   void emitLLVMUsed();
1295 
1296   /// \brief Emit the link options introduced by imported modules.
1297   void EmitModuleLinkOptions();
1298 
1299   /// \brief Emit aliases for internal-linkage declarations inside "C" language
1300   /// linkage specifications, giving them the "expected" name where possible.
1301   void EmitStaticExternCAliases();
1302 
1303   void EmitDeclMetadata();
1304 
1305   /// \brief Emit the Clang version as llvm.ident metadata.
1306   void EmitVersionIdentMetadata();
1307 
1308   /// Emits target specific Metadata for global declarations.
1309   void EmitTargetMetadata();
1310 
1311   /// Emits OpenCL specific Metadata e.g. OpenCL version.
1312   void EmitOpenCLMetadata();
1313 
1314   /// Emit the llvm.gcov metadata used to tell LLVM where to emit the .gcno and
1315   /// .gcda files in a way that persists in .bc files.
1316   void EmitCoverageFile();
1317 
1318   /// Emits the initializer for a uuidof string.
1319   llvm::Constant *EmitUuidofInitializer(StringRef uuidstr);
1320 
1321   /// Determine whether the definition must be emitted; if this returns \c
1322   /// false, the definition can be emitted lazily if it's used.
1323   bool MustBeEmitted(const ValueDecl *D);
1324 
1325   /// Determine whether the definition can be emitted eagerly, or should be
1326   /// delayed until the end of the translation unit. This is relevant for
1327   /// definitions whose linkage can change, e.g. implicit function instantions
1328   /// which may later be explicitly instantiated.
1329   bool MayBeEmittedEagerly(const ValueDecl *D);
1330 
1331   /// Check whether we can use a "simpler", more core exceptions personality
1332   /// function.
1333   void SimplifyPersonality();
1334 
1335   /// Helper function for ConstructAttributeList and AddDefaultFnAttrs.
1336   /// Constructs an AttrList for a function with the given properties.
1337   void ConstructDefaultFnAttrList(StringRef Name, bool HasOptnone,
1338                                   bool AttrOnCallSite,
1339                                   llvm::AttrBuilder &FuncAttrs);
1340 };
1341 
1342 }  // end namespace CodeGen
1343 }  // end namespace clang
1344 
1345 #endif // LLVM_CLANG_LIB_CODEGEN_CODEGENMODULE_H
1346