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