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