blob: 6902d1917a63205acf30776b03b21e56cce8be0c [file] [log] [blame]
Daniel Dunbarbd012ff2008-07-29 23:18:29 +00001//===--- CodeGenModule.h - Per-Module state for LLVM CodeGen ----*- C++ -*-===//
Reid Spencer5f016e22007-07-11 17:01:13 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
Mike Stumpecc90e92009-02-13 19:12:34 +000010// This is the internal per-translation-unit state used for llvm translation.
Reid Spencer5f016e22007-07-11 17:01:13 +000011//
12//===----------------------------------------------------------------------===//
13
Stephen Hines176edba2014-12-01 14:53:08 -080014#ifndef LLVM_CLANG_LIB_CODEGEN_CODEGENMODULE_H
15#define LLVM_CLANG_LIB_CODEGEN_CODEGENMODULE_H
Reid Spencer5f016e22007-07-11 17:01:13 +000016
Chandler Carruth55fc8732012-12-04 09:13:33 +000017#include "CGVTables.h"
18#include "CodeGenTypes.h"
Stephen Hines176edba2014-12-01 14:53:08 -080019#include "SanitizerMetadata.h"
Dan Gohman4f8d1232008-05-22 00:50:06 +000020#include "clang/AST/Attr.h"
Anders Carlsson2a131fb2009-05-05 04:44:02 +000021#include "clang/AST/DeclCXX.h"
Anders Carlsson0ff8baf2009-09-11 00:07:24 +000022#include "clang/AST/DeclObjC.h"
Peter Collingbournefd05ca02011-06-14 04:02:39 +000023#include "clang/AST/GlobalDecl.h"
Peter Collingbourne14110472011-01-13 18:57:25 +000024#include "clang/AST/Mangle.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000025#include "clang/Basic/ABI.h"
26#include "clang/Basic/LangOptions.h"
Douglas Gregorb6cbe512013-01-14 17:21:00 +000027#include "clang/Basic/Module.h"
Stephen Hines176edba2014-12-01 14:53:08 -080028#include "clang/Basic/SanitizerBlacklist.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000029#include "llvm/ADT/DenseMap.h"
Douglas Gregorb6cbe512013-01-14 17:21:00 +000030#include "llvm/ADT/SetVector.h"
Rafael Espindola6a836702010-03-04 18:17:24 +000031#include "llvm/ADT/SmallPtrSet.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000032#include "llvm/ADT/StringMap.h"
John McCallbd7370a2013-02-28 19:01:20 +000033#include "llvm/IR/CallingConv.h"
Chandler Carruth3b844ba2013-01-02 11:45:17 +000034#include "llvm/IR/Module.h"
Stephen Hines651f13c2014-04-23 16:59:28 -070035#include "llvm/IR/ValueHandle.h"
Anders Carlssonb723f752009-01-04 02:08:04 +000036
Reid Spencer5f016e22007-07-11 17:01:13 +000037namespace llvm {
Stephen Hines6bcf27b2014-05-29 04:14:42 -070038class Module;
39class Constant;
40class ConstantInt;
41class Function;
42class GlobalValue;
43class DataLayout;
44class FunctionType;
45class LLVMContext;
46class IndexedInstrProfReader;
Reid Spencer5f016e22007-07-11 17:01:13 +000047}
48
49namespace clang {
Stephen Hines6bcf27b2014-05-29 04:14:42 -070050class TargetCodeGenInfo;
51class ASTContext;
52class AtomicType;
53class FunctionDecl;
54class IdentifierInfo;
55class ObjCMethodDecl;
56class ObjCImplementationDecl;
57class ObjCCategoryImplDecl;
58class ObjCProtocolDecl;
59class ObjCEncodeExpr;
60class BlockExpr;
61class CharUnits;
62class Decl;
63class Expr;
64class Stmt;
65class InitListExpr;
66class StringLiteral;
67class NamedDecl;
68class ValueDecl;
69class VarDecl;
70class LangOptions;
71class CodeGenOptions;
72class DiagnosticsEngine;
73class AnnotateAttr;
74class CXXDestructorDecl;
Stephen Hines6bcf27b2014-05-29 04:14:42 -070075class Module;
Stephen Hines176edba2014-12-01 14:53:08 -080076class CoverageSourceInfo;
Mike Stumpecc90e92009-02-13 19:12:34 +000077
Reid Spencer5f016e22007-07-11 17:01:13 +000078namespace CodeGen {
79
Stephen Hines6bcf27b2014-05-29 04:14:42 -070080class CallArgList;
81class CodeGenFunction;
82class CodeGenTBAA;
83class CGCXXABI;
84class CGDebugInfo;
85class CGObjCRuntime;
86class CGOpenCLRuntime;
87class CGOpenMPRuntime;
88class CGCUDARuntime;
89class BlockFieldFlags;
90class FunctionArgList;
Stephen Hines176edba2014-12-01 14:53:08 -080091class CoverageMappingModuleGen;
Stephen Hines651f13c2014-04-23 16:59:28 -070092
Stephen Hines6bcf27b2014-05-29 04:14:42 -070093struct OrderGlobalInits {
94 unsigned int priority;
95 unsigned int lex_order;
96 OrderGlobalInits(unsigned int p, unsigned int l)
Chris Lattnerec2830d2010-06-27 06:32:58 +000097 : priority(p), lex_order(l) {}
Stephen Hines6bcf27b2014-05-29 04:14:42 -070098
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
109struct 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;
Chris Lattnerec2830d2010-06-27 06:32:58 +0000126 };
John McCall5936e332011-02-15 09:22:45 +0000127
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700128 /// void* in address space 0
129 union {
130 llvm::PointerType *VoidPtrTy;
131 llvm::PointerType *Int8PtrTy;
John McCall5936e332011-02-15 09:22:45 +0000132 };
John McCallf85e1932011-06-15 23:02:42 +0000133
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700134 /// 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; }
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700153 llvm::CallingConv::ID BuiltinCC;
154 llvm::CallingConv::ID getBuiltinCC() const { return BuiltinCC; }
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700155};
156
John McCallf85e1932011-06-15 23:02:42 +0000157struct 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
166struct 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;
John McCallb6a60792013-03-23 02:35:54 +0000220
221 /// void clang.arc.use(...);
222 llvm::Constant *clang_arc_use;
John McCallf85e1932011-06-15 23:02:42 +0000223};
Will Dietz4f45bc02013-01-18 11:30:38 +0000224
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700225/// This class records statistics on instrumentation based profiling.
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700226class InstrProfStats {
227 uint32_t VisitedInMainFile;
228 uint32_t MissingInMainFile;
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700229 uint32_t Visited;
230 uint32_t Missing;
231 uint32_t Mismatched;
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700232
233public:
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);
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700256};
257
258/// This class organizes the cross-function state that is used while generating
259/// LLVM code.
John McCall5936e332011-02-15 09:22:45 +0000260class CodeGenModule : public CodeGenTypeCache {
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700261 CodeGenModule(const CodeGenModule &) = delete;
262 void operator=(const CodeGenModule &) = delete;
Anders Carlsson8a219ce2009-02-24 04:21:31 +0000263
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700264public:
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700265 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;
Daniel Dunbar6bfed7e2008-08-01 00:01:51 +0000277
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700278private:
Reid Spencer5f016e22007-07-11 17:01:13 +0000279 ASTContext &Context;
David Blaikie4e4d0842012-03-11 07:00:24 +0000280 const LangOptions &LangOpts;
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000281 const CodeGenOptions &CodeGenOpts;
Reid Spencer5f016e22007-07-11 17:01:13 +0000282 llvm::Module &TheModule;
David Blaikied6471f72011-09-25 23:23:43 +0000283 DiagnosticsEngine &Diags;
John McCall64aa4b32013-04-16 22:48:15 +0000284 const llvm::DataLayout &TheDataLayout;
285 const TargetInfo &Target;
Stephen Hines651f13c2014-04-23 16:59:28 -0700286 std::unique_ptr<CGCXXABI> ABI;
John McCall64aa4b32013-04-16 22:48:15 +0000287 llvm::LLVMContext &VMContext;
Anders Carlssonb5404912009-10-07 01:06:45 +0000288
John McCall64aa4b32013-04-16 22:48:15 +0000289 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
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700298 /// Holds information about C++ vtables.
Anders Carlssonaf440352010-03-23 04:11:45 +0000299 CodeGenVTables VTables;
Douglas Gregore17ad2f2010-04-08 16:07:47 +0000300
Peter Collingbournee9265232011-07-27 20:29:46 +0000301 CGObjCRuntime* ObjCRuntime;
Peter Collingbourne8c25fc52011-09-19 21:14:35 +0000302 CGOpenCLRuntime* OpenCLRuntime;
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700303 CGOpenMPRuntime* OpenMPRuntime;
Peter Collingbourne6c0aa5f2011-10-06 18:29:37 +0000304 CGCUDARuntime* CUDARuntime;
Ted Kremenek815c78f2008-08-05 18:50:11 +0000305 CGDebugInfo* DebugInfo;
John McCallf85e1932011-06-15 23:02:42 +0000306 ARCEntrypoints *ARCData;
Dan Gohmanb49bd272012-02-16 00:57:37 +0000307 llvm::MDNode *NoObjCARCExceptionsMetadata;
John McCallf85e1932011-06-15 23:02:42 +0000308 RREntrypoints *RRData;
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700309 std::unique_ptr<llvm::IndexedInstrProfReader> PGOReader;
310 InstrProfStats PGOStats;
Daniel Dunbar9986eab2008-07-30 16:32:24 +0000311
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700312 // 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.
Rafael Espindola6a836702010-03-04 18:17:24 +0000315 llvm::SmallPtrSet<llvm::GlobalValue*, 10> WeakRefReferences;
316
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700317 /// 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.
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700321 std::map<StringRef, GlobalDecl> DeferredDecls;
Daniel Dunbar02698712009-02-13 20:29:50 +0000322
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700323 /// 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.
Stephen Hines651f13c2014-04-23 16:59:28 -0700325 struct DeferredGlobal {
326 DeferredGlobal(llvm::GlobalValue *GV, GlobalDecl GD) : GV(GV), GD(GD) {}
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700327 llvm::TrackingVH<llvm::GlobalValue> GV;
Stephen Hines651f13c2014-04-23 16:59:28 -0700328 GlobalDecl GD;
329 };
330 std::vector<DeferredGlobal> DeferredDeclsToEmit;
331 void addDeferredDeclToEmit(llvm::GlobalValue *GV, GlobalDecl GD) {
332 DeferredDeclsToEmit.push_back(DeferredGlobal(GV, GD));
333 }
Daniel Dunbar03f5ad92009-04-15 22:08:45 +0000334
Rafael Espindolad2054982013-10-22 19:26:13 +0000335 /// 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
Rafael Espindola61a0a752013-11-05 21:37:29 +0000339 typedef llvm::StringMap<llvm::TrackingVH<llvm::Constant> > ReplacementsTy;
340 ReplacementsTy Replacements;
341
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700342 /// A queue of (optional) vtables to consider emitting.
John McCalld5617ee2013-01-25 22:31:03 +0000343 std::vector<const CXXRecordDecl*> DeferredVTables;
344
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700345 /// 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.
Chris Lattner35f38a22009-03-31 22:37:52 +0000348 std::vector<llvm::WeakVH> LLVMUsed;
Stephen Hines651f13c2014-04-23 16:59:28 -0700349 std::vector<llvm::WeakVH> LLVMCompilerUsed;
Mike Stumpecc90e92009-02-13 19:12:34 +0000350
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700351 /// Store the list of global constructors and their respective priorities to
352 /// be emitted when the translation unit is complete.
Daniel Dunbar6bfed7e2008-08-01 00:01:51 +0000353 CtorList GlobalCtors;
354
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700355 /// Store the list of global destructors and their respective priorities to be
356 /// emitted when the translation unit is complete.
Daniel Dunbar6bfed7e2008-08-01 00:01:51 +0000357 CtorList GlobalDtors;
358
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700359 /// An ordered map of canonical GlobalDecls to their mangled names.
360 llvm::MapVector<GlobalDecl, StringRef> MangledDeclNames;
361 llvm::StringMap<GlobalDecl, llvm::BumpPtrAllocator> Manglings;
362
Julien Lerouge77f68bb2011-09-09 22:41:49 +0000363 /// Global annotations.
Nate Begeman532485c2008-04-18 23:43:57 +0000364 std::vector<llvm::Constant*> Annotations;
Mike Stumpecc90e92009-02-13 19:12:34 +0000365
Julien Lerouge77f68bb2011-09-09 22:41:49 +0000366 /// Map used to get unique annotation strings.
367 llvm::StringMap<llvm::Constant*> AnnotationStrings;
368
Anders Carlssonc9e20912007-08-21 00:21:21 +0000369 llvm::StringMap<llvm::Constant*> CFConstantStringMap;
Stephen Hines651f13c2014-04-23 16:59:28 -0700370
Stephen Hines176edba2014-12-01 14:53:08 -0800371 llvm::DenseMap<llvm::Constant *, llvm::GlobalVariable *> ConstantStringMap;
Eli Friedman71cba342012-03-09 03:27:46 +0000372 llvm::DenseMap<const Decl*, llvm::Constant *> StaticLocalDeclMap;
John McCall355bba72012-03-30 21:00:39 +0000373 llvm::DenseMap<const Decl*, llvm::GlobalVariable*> StaticLocalDeclGuardMap;
Richard Smith211c8dd2013-06-05 00:46:14 +0000374 llvm::DenseMap<const Expr*, llvm::Constant *> MaterializedGlobalTemporaryMap;
375
Fariborz Jahanianb08cfb32012-01-08 19:13:23 +0000376 llvm::DenseMap<QualType, llvm::Constant *> AtomicSetterHelperFnMap;
377 llvm::DenseMap<QualType, llvm::Constant *> AtomicGetterHelperFnMap;
Daniel Dunbar3e9df992008-08-23 18:37:06 +0000378
Will Dietz562d45c2013-11-08 01:09:22 +0000379 /// Map used to get unique type descriptor constants for sanitizers.
380 llvm::DenseMap<QualType, llvm::Constant *> TypeDescriptorMap;
381
Richard Smith00249372013-04-06 05:00:46 +0000382 /// Map used to track internal linkage functions declared within
383 /// extern "C" regions.
Richard Smith84083b72013-04-13 01:28:18 +0000384 typedef llvm::MapVector<IdentifierInfo *,
385 llvm::GlobalValue *> StaticExternCMap;
Richard Smith00249372013-04-06 05:00:46 +0000386 StaticExternCMap StaticExternCValues;
387
Richard Smithb80a16e2013-04-19 16:42:07 +0000388 /// \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.
Stephen Hines176edba2014-12-01 14:53:08 -0800394 std::vector<llvm::Function *> CXXThreadLocalInits;
395 std::vector<llvm::GlobalVariable *> CXXThreadLocalInitVars;
Richard Smithb80a16e2013-04-19 16:42:07 +0000396
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700397 /// Global variables with initializers that need to run before main.
Stephen Hines176edba2014-12-01 14:53:08 -0800398 std::vector<llvm::Function *> CXXGlobalInits;
John McCallbf40cb52010-07-15 23:40:35 +0000399
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.
404 llvm::DenseMap<const Decl*, unsigned> DelayedCXXInitPosition;
Fariborz Jahanian9f967c52010-06-21 18:45:05 +0000405
Anton Korobeynikov4179ddd2012-11-06 22:44:45 +0000406 typedef std::pair<OrderGlobalInits, llvm::Function*> GlobalInitData;
407
408 struct GlobalInitPriorityCmp {
409 bool operator()(const GlobalInitData &LHS,
410 const GlobalInitData &RHS) const {
411 return LHS.first.priority < RHS.first.priority;
412 }
413 };
414
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700415 /// Global variables with initializers whose order of initialization is set by
416 /// init_priority attribute.
Anton Korobeynikov4179ddd2012-11-06 22:44:45 +0000417 SmallVector<GlobalInitData, 8> PrioritizedCXXGlobalInits;
Mike Stump1eb44332009-09-09 15:08:12 +0000418
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700419 /// Global destructor functions and arguments that need to run on termination.
Chris Lattner810112e2010-06-19 05:52:45 +0000420 std::vector<std::pair<llvm::WeakVH,llvm::Constant*> > CXXGlobalDtors;
Daniel Dunbarefb0fa92010-03-20 04:15:41 +0000421
Douglas Gregorb6cbe512013-01-14 17:21:00 +0000422 /// \brief The complete set of modules that has been imported.
423 llvm::SetVector<clang::Module *> ImportedModules;
424
Reid Kleckner3190ca92013-05-08 13:44:39 +0000425 /// \brief A vector of metadata strings.
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700426 SmallVector<llvm::Metadata *, 16> LinkerOptionsMetadata;
Reid Kleckner3190ca92013-05-08 13:44:39 +0000427
Douglas Gregor45c4ea72011-08-09 15:54:21 +0000428 /// @name Cache for Objective-C runtime types
429 /// @{
430
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700431 /// Cached reference to the class for constant strings. This value has type
432 /// int * but is actually an Obj-C class pointer.
Fariborz Jahanian428edb72013-04-16 15:25:39 +0000433 llvm::WeakVH CFConstantStringClassRef;
Mike Stump1eb44332009-09-09 15:08:12 +0000434
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700435 /// Cached reference to the class for constant strings. This value has type
436 /// int * but is actually an Obj-C class pointer.
Fariborz Jahanian428edb72013-04-16 15:25:39 +0000437 llvm::WeakVH ConstantStringClassRef;
Fariborz Jahanian2bb5dda2010-04-23 17:41:07 +0000438
Douglas Gregor45c4ea72011-08-09 15:54:21 +0000439 /// \brief The LLVM type corresponding to NSConstantString.
440 llvm::StructType *NSConstantStringType;
441
Douglas Gregor0815b572011-08-09 17:23:49 +0000442 /// \brief The type used to describe the state of a fast enumeration in
443 /// Objective-C's for..in loop.
444 QualType ObjCFastEnumerationStateType;
445
Douglas Gregor45c4ea72011-08-09 15:54:21 +0000446 /// @}
447
David Chisnall0d13f6f2010-01-23 02:40:42 +0000448 /// Lazily create the Objective-C runtime
449 void createObjCRuntime();
450
Peter Collingbourne8c25fc52011-09-19 21:14:35 +0000451 void createOpenCLRuntime();
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700452 void createOpenMPRuntime();
Peter Collingbourne6c0aa5f2011-10-06 18:29:37 +0000453 void createCUDARuntime();
Peter Collingbourne8c25fc52011-09-19 21:14:35 +0000454
Rafael Espindolabcf6b982011-12-19 14:41:01 +0000455 bool isTriviallyRecursive(const FunctionDecl *F);
Peter Collingbourne144a31f2013-06-05 17:49:37 +0000456 bool shouldEmitFunction(GlobalDecl GD);
Daniel Dunbar673431a2010-07-16 00:00:15 +0000457
458 /// @name Cache for Blocks Runtime Globals
459 /// @{
460
461 llvm::Constant *NSConcreteGlobalBlock;
462 llvm::Constant *NSConcreteStackBlock;
Daniel Dunbar754b9fb2010-07-16 00:00:19 +0000463
Daniel Dunbar673431a2010-07-16 00:00:15 +0000464 llvm::Constant *BlockObjectAssign;
465 llvm::Constant *BlockObjectDispose;
466
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000467 llvm::Type *BlockDescriptorType;
468 llvm::Type *GenericBlockLiteralType;
John McCalld16c2cf2011-02-08 08:22:06 +0000469
470 struct {
471 int GlobalUniqueCount;
472 } Block;
Will Dietz4f45bc02013-01-18 11:30:38 +0000473
Nadav Rotem495cfa42013-03-23 06:43:35 +0000474 /// void @llvm.lifetime.start(i64 %size, i8* nocapture <ptr>)
475 llvm::Constant *LifetimeStartFn;
476
477 /// void @llvm.lifetime.end(i64 %size, i8* nocapture <ptr>)
478 llvm::Constant *LifetimeEndFn;
479
Fariborz Jahanian4904bf42012-06-26 16:06:38 +0000480 GlobalDecl initializedGlobalDecl;
John McCalld16c2cf2011-02-08 08:22:06 +0000481
Stephen Hines176edba2014-12-01 14:53:08 -0800482 std::unique_ptr<SanitizerMetadata> SanitizerMD;
Will Dietz4f45bc02013-01-18 11:30:38 +0000483
Daniel Dunbar673431a2010-07-16 00:00:15 +0000484 /// @}
Stephen Hines176edba2014-12-01 14:53:08 -0800485
486 llvm::DenseMap<const Decl *, bool> DeferredEmptyCoverageMappingDecls;
487
488 std::unique_ptr<CoverageMappingModuleGen> CoverageMapping;
Reid Spencer5f016e22007-07-11 17:01:13 +0000489public:
Chandler Carruth2811ccf2009-11-12 17:24:48 +0000490 CodeGenModule(ASTContext &C, const CodeGenOptions &CodeGenOpts,
John McCall3abae092013-04-16 22:48:20 +0000491 llvm::Module &M, const llvm::DataLayout &TD,
Stephen Hines176edba2014-12-01 14:53:08 -0800492 DiagnosticsEngine &Diags,
493 CoverageSourceInfo *CoverageInfo = nullptr);
Ted Kremenek815c78f2008-08-05 18:50:11 +0000494
Chris Lattner2b94fe32008-03-01 08:45:05 +0000495 ~CodeGenModule();
Mike Stumpecc90e92009-02-13 19:12:34 +0000496
Stephen Hines651f13c2014-04-23 16:59:28 -0700497 void clear();
498
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700499 /// Finalize LLVM code generation.
Ted Kremenek815c78f2008-08-05 18:50:11 +0000500 void Release();
Daniel Dunbar208ff5e2008-08-11 18:12:00 +0000501
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700502 /// Return a reference to the configured Objective-C runtime.
Mike Stumpecc90e92009-02-13 19:12:34 +0000503 CGObjCRuntime &getObjCRuntime() {
Peter Collingbournee9265232011-07-27 20:29:46 +0000504 if (!ObjCRuntime) createObjCRuntime();
505 return *ObjCRuntime;
Daniel Dunbar208ff5e2008-08-11 18:12:00 +0000506 }
Mike Stumpecc90e92009-02-13 19:12:34 +0000507
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700508 /// Return true iff an Objective-C runtime has been configured.
Peter Collingbournee9265232011-07-27 20:29:46 +0000509 bool hasObjCRuntime() { return !!ObjCRuntime; }
Daniel Dunbar208ff5e2008-08-11 18:12:00 +0000510
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700511 /// Return a reference to the configured OpenCL runtime.
Peter Collingbourne8c25fc52011-09-19 21:14:35 +0000512 CGOpenCLRuntime &getOpenCLRuntime() {
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700513 assert(OpenCLRuntime != nullptr);
Peter Collingbourne8c25fc52011-09-19 21:14:35 +0000514 return *OpenCLRuntime;
515 }
516
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700517 /// Return a reference to the configured OpenMP runtime.
518 CGOpenMPRuntime &getOpenMPRuntime() {
519 assert(OpenMPRuntime != nullptr);
520 return *OpenMPRuntime;
521 }
522
523 /// Return a reference to the configured CUDA runtime.
Peter Collingbourne6c0aa5f2011-10-06 18:29:37 +0000524 CGCUDARuntime &getCUDARuntime() {
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700525 assert(CUDARuntime != nullptr);
Peter Collingbourne6c0aa5f2011-10-06 18:29:37 +0000526 return *CUDARuntime;
527 }
528
John McCallf85e1932011-06-15 23:02:42 +0000529 ARCEntrypoints &getARCEntrypoints() const {
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700530 assert(getLangOpts().ObjCAutoRefCount && ARCData != nullptr);
John McCallf85e1932011-06-15 23:02:42 +0000531 return *ARCData;
532 }
533
534 RREntrypoints &getRREntrypoints() const {
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700535 assert(RRData != nullptr);
John McCallf85e1932011-06-15 23:02:42 +0000536 return *RRData;
537 }
538
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700539 InstrProfStats &getPGOStats() { return PGOStats; }
540 llvm::IndexedInstrProfReader *getPGOReader() const { return PGOReader.get(); }
Stephen Hines651f13c2014-04-23 16:59:28 -0700541
Stephen Hines176edba2014-12-01 14:53:08 -0800542 CoverageMappingModuleGen *getCoverageMapping() const {
543 return CoverageMapping.get();
544 }
545
Eli Friedman71cba342012-03-09 03:27:46 +0000546 llvm::Constant *getStaticLocalDeclAddress(const VarDecl *D) {
547 return StaticLocalDeclMap[D];
Fariborz Jahanian65ad5a42010-04-18 21:01:23 +0000548 }
Fariborz Jahanian63326a52010-04-19 18:15:02 +0000549 void setStaticLocalDeclAddress(const VarDecl *D,
Eli Friedman71cba342012-03-09 03:27:46 +0000550 llvm::Constant *C) {
551 StaticLocalDeclMap[D] = C;
Fariborz Jahanian65ad5a42010-04-18 21:01:23 +0000552 }
553
Stephen Hines176edba2014-12-01 14:53:08 -0800554 llvm::Constant *
555 getOrCreateStaticVarDecl(const VarDecl &D,
556 llvm::GlobalValue::LinkageTypes Linkage);
557
John McCall355bba72012-03-30 21:00:39 +0000558 llvm::GlobalVariable *getStaticLocalDeclGuardAddress(const VarDecl *D) {
559 return StaticLocalDeclGuardMap[D];
560 }
561 void setStaticLocalDeclGuardAddress(const VarDecl *D,
562 llvm::GlobalVariable *C) {
563 StaticLocalDeclGuardMap[D] = C;
564 }
565
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700566 bool lookupRepresentativeDecl(StringRef MangledName,
567 GlobalDecl &Result) const;
568
Fariborz Jahanianb08cfb32012-01-08 19:13:23 +0000569 llvm::Constant *getAtomicSetterHelperFnMap(QualType Ty) {
570 return AtomicSetterHelperFnMap[Ty];
Fariborz Jahaniancd93b962012-01-06 22:33:54 +0000571 }
Fariborz Jahanianb08cfb32012-01-08 19:13:23 +0000572 void setAtomicSetterHelperFnMap(QualType Ty,
Fariborz Jahaniancd93b962012-01-06 22:33:54 +0000573 llvm::Constant *Fn) {
Fariborz Jahanianb08cfb32012-01-08 19:13:23 +0000574 AtomicSetterHelperFnMap[Ty] = Fn;
575 }
576
577 llvm::Constant *getAtomicGetterHelperFnMap(QualType Ty) {
578 return AtomicGetterHelperFnMap[Ty];
579 }
580 void setAtomicGetterHelperFnMap(QualType Ty,
581 llvm::Constant *Fn) {
582 AtomicGetterHelperFnMap[Ty] = Fn;
Fariborz Jahaniancd93b962012-01-06 22:33:54 +0000583 }
584
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700585 llvm::Constant *getTypeDescriptorFromMap(QualType Ty) {
Will Dietz562d45c2013-11-08 01:09:22 +0000586 return TypeDescriptorMap[Ty];
587 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700588 void setTypeDescriptorInMap(QualType Ty, llvm::Constant *C) {
Will Dietz562d45c2013-11-08 01:09:22 +0000589 TypeDescriptorMap[Ty] = C;
590 }
591
Devang Patelaa112892011-03-07 18:45:56 +0000592 CGDebugInfo *getModuleDebugInfo() { return DebugInfo; }
Devang Patel5de7a0e2011-03-07 18:29:53 +0000593
Dan Gohmanb49bd272012-02-16 00:57:37 +0000594 llvm::MDNode *getNoObjCARCExceptionsMetadata() {
595 if (!NoObjCARCExceptionsMetadata)
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700596 NoObjCARCExceptionsMetadata = llvm::MDNode::get(getLLVMContext(), None);
Dan Gohmanb49bd272012-02-16 00:57:37 +0000597 return NoObjCARCExceptionsMetadata;
598 }
599
Reid Spencer5f016e22007-07-11 17:01:13 +0000600 ASTContext &getContext() const { return Context; }
David Blaikie4e4d0842012-03-11 07:00:24 +0000601 const LangOptions &getLangOpts() const { return LangOpts; }
John McCall64aa4b32013-04-16 22:48:15 +0000602 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; }
Reid Spencer5f016e22007-07-11 17:01:13 +0000603 llvm::Module &getModule() const { return TheModule; }
David Blaikied6471f72011-09-25 23:23:43 +0000604 DiagnosticsEngine &getDiags() const { return Diags; }
Micah Villmow25a6a842012-10-08 16:25:52 +0000605 const llvm::DataLayout &getDataLayout() const { return TheDataLayout; }
John McCall64aa4b32013-04-16 22:48:15 +0000606 const TargetInfo &getTarget() const { return Target; }
Stephen Hines176edba2014-12-01 14:53:08 -0800607 const llvm::Triple &getTriple() const;
608 bool supportsCOMDAT() const;
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700609 void maybeSetTrivialComdat(const Decl &D, llvm::GlobalObject &GO);
Stephen Hines176edba2014-12-01 14:53:08 -0800610
Stephen Hines651f13c2014-04-23 16:59:28 -0700611 CGCXXABI &getCXXABI() const { return *ABI; }
Owen Andersona1cf15f2009-07-14 23:10:40 +0000612 llvm::LLVMContext &getLLVMContext() { return VMContext; }
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700613
614 bool shouldUseTBAA() const { return TBAA != nullptr; }
John McCallbc7fbf02011-02-26 08:07:02 +0000615
John McCall64aa4b32013-04-16 22:48:15 +0000616 const TargetCodeGenInfo &getTargetCodeGenInfo();
617
618 CodeGenTypes &getTypes() { return Types; }
619
620 CodeGenVTables &getVTables() { return VTables; }
Timur Iskhodzhanov8f189a92013-08-21 06:25:03 +0000621
Timur Iskhodzhanov5f0db582013-11-05 15:54:58 +0000622 ItaniumVTableContext &getItaniumVTableContext() {
623 return VTables.getItaniumVTableContext();
Timur Iskhodzhanovf0746582013-10-09 11:33:51 +0000624 }
John McCall64aa4b32013-04-16 22:48:15 +0000625
Timur Iskhodzhanov5f0db582013-11-05 15:54:58 +0000626 MicrosoftVTableContext &getMicrosoftVTableContext() {
627 return VTables.getMicrosoftVTableContext();
Timur Iskhodzhanov8f189a92013-08-21 06:25:03 +0000628 }
629
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700630 CtorList &getGlobalCtors() { return GlobalCtors; }
631 CtorList &getGlobalDtors() { return GlobalDtors; }
632
Dan Gohman3d5aff52010-10-14 23:06:10 +0000633 llvm::MDNode *getTBAAInfo(QualType QTy);
Kostya Serebryany8cb4a072012-03-26 17:03:51 +0000634 llvm::MDNode *getTBAAInfoForVTablePtr();
Dan Gohmanb22c7dc2012-09-28 21:58:29 +0000635 llvm::MDNode *getTBAAStructInfo(QualType QTy);
Manman Renb37a73d2013-04-04 21:53:22 +0000636 /// Return the MDNode in the type DAG for the given struct type.
637 llvm::MDNode *getTBAAStructTypeInfo(QualType QTy);
638 /// Return the path-aware tag for given base type, access node and offset.
639 llvm::MDNode *getTBAAStructTagInfo(QualType BaseTy, llvm::MDNode *AccessN,
640 uint64_t O);
Dan Gohman3d5aff52010-10-14 23:06:10 +0000641
Richard Smitha9b21d22012-02-17 06:48:11 +0000642 bool isTypeConstant(QualType QTy, bool ExcludeCtorDtor);
643
John McCall9eda3ab2013-03-07 21:37:17 +0000644 bool isPaddedAtomicType(QualType type);
645 bool isPaddedAtomicType(const AtomicType *type);
646
Manman Renca835182013-04-11 23:02:56 +0000647 /// Decorate the instruction with a TBAA tag. For scalar TBAA, the tag
648 /// is the same as the type. For struct-path aware TBAA, the tag
649 /// is different from the type: base type, access type and offset.
650 /// When ConvertTypeToTag is true, we create a tag based on the scalar type.
651 void DecorateInstruction(llvm::Instruction *Inst,
652 llvm::MDNode *TBAAInfo,
653 bool ConvertTypeToTag = true);
Dan Gohman3d5aff52010-10-14 23:06:10 +0000654
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700655 /// Emit the given number of characters as a value of type size_t.
John McCallbc8d40d2011-06-24 21:55:10 +0000656 llvm::ConstantInt *getSize(CharUnits numChars);
657
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700658 /// Set the visibility for the given LLVM GlobalValue.
Anders Carlsson0ffeaad2011-01-29 19:39:23 +0000659 void setGlobalVisibility(llvm::GlobalValue *GV, const NamedDecl *D) const;
Daniel Dunbar04d40782009-04-14 06:00:08 +0000660
Stephen Hines176edba2014-12-01 14:53:08 -0800661 /// Set the TLS mode for the given LLVM GlobalValue for the thread-local
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700662 /// variable declaration D.
Stephen Hines176edba2014-12-01 14:53:08 -0800663 void setTLSMode(llvm::GlobalValue *GV, const VarDecl &D) const;
Hans Wennborgde981f32012-06-28 08:01:44 +0000664
Anders Carlssonc7e98fa2011-01-29 20:59:35 +0000665 static llvm::GlobalValue::VisibilityTypes GetLLVMVisibility(Visibility V) {
666 switch (V) {
667 case DefaultVisibility: return llvm::GlobalValue::DefaultVisibility;
668 case HiddenVisibility: return llvm::GlobalValue::HiddenVisibility;
669 case ProtectedVisibility: return llvm::GlobalValue::ProtectedVisibility;
670 }
671 llvm_unreachable("unknown visibility!");
Anders Carlssonc7e98fa2011-01-29 20:59:35 +0000672 }
673
John McCalld46f9852010-02-19 01:32:20 +0000674 llvm::Constant *GetAddrOfGlobal(GlobalDecl GD) {
675 if (isa<CXXConstructorDecl>(GD.getDecl()))
Stephen Hines176edba2014-12-01 14:53:08 -0800676 return getAddrOfCXXStructor(cast<CXXConstructorDecl>(GD.getDecl()),
677 getFromCtorType(GD.getCtorType()));
John McCalld46f9852010-02-19 01:32:20 +0000678 else if (isa<CXXDestructorDecl>(GD.getDecl()))
Stephen Hines176edba2014-12-01 14:53:08 -0800679 return getAddrOfCXXStructor(cast<CXXDestructorDecl>(GD.getDecl()),
680 getFromDtorType(GD.getDtorType()));
John McCalld46f9852010-02-19 01:32:20 +0000681 else if (isa<FunctionDecl>(GD.getDecl()))
682 return GetAddrOfFunction(GD);
683 else
684 return GetAddrOfGlobalVar(cast<VarDecl>(GD.getDecl()));
685 }
686
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700687 /// Will return a global variable of the given type. If a variable with a
688 /// different type already exists then a new variable with the right type
689 /// will be created and all uses of the old variable will be replaced with a
690 /// bitcast to the new variable.
Anders Carlsson3bd62022011-01-29 18:20:20 +0000691 llvm::GlobalVariable *
Chris Lattner686775d2011-07-20 06:58:45 +0000692 CreateOrReplaceCXXRuntimeVariable(StringRef Name, llvm::Type *Ty,
Anders Carlsson3bd62022011-01-29 18:20:20 +0000693 llvm::GlobalValue::LinkageTypes Linkage);
694
Stephen Hines176edba2014-12-01 14:53:08 -0800695 llvm::Function *
696 CreateGlobalInitOrDestructFunction(llvm::FunctionType *ty, const Twine &name,
697 SourceLocation Loc = SourceLocation(),
698 bool TLS = false);
699
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700700 /// Return the address space of the underlying global variable for D, as
701 /// determined by its declaration. Normally this is the same as the address
702 /// space of D's type, but in CUDA, address spaces are associated with
703 /// declarations, not types.
Peter Collingbourne4dc34eb2012-05-20 21:08:35 +0000704 unsigned GetGlobalVarAddressSpace(const VarDecl *D, unsigned AddrSpace);
705
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700706 /// Return the llvm::Constant for the address of the given global variable.
707 /// If Ty is non-null and if the global doesn't exist, then it will be greated
708 /// with the specified type instead of whatever the normal requested type
709 /// would be.
Chris Lattner570585c2009-03-21 09:16:30 +0000710 llvm::Constant *GetAddrOfGlobalVar(const VarDecl *D,
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700711 llvm::Type *Ty = nullptr);
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000712
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700713 /// Return the address of the given function. If Ty is non-null, then this
714 /// function will use the specified type if it has to create it.
Stephen Hines651f13c2014-04-23 16:59:28 -0700715 llvm::Constant *GetAddrOfFunction(GlobalDecl GD, llvm::Type *Ty = 0,
716 bool ForVTable = false,
717 bool DontDefer = false);
Daniel Dunbar61432932008-08-13 23:20:05 +0000718
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700719 /// Get the address of the RTTI descriptor for the given type.
John McCall9dffe6f2010-04-30 01:15:21 +0000720 llvm::Constant *GetAddrOfRTTIDescriptor(QualType Ty, bool ForEH = false);
Anders Carlsson31b7f522009-12-11 02:46:30 +0000721
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700722 /// Get the address of a uuid descriptor .
Nico Weberc5f80462012-10-11 10:13:44 +0000723 llvm::Constant *GetAddrOfUuidDescriptor(const CXXUuidofExpr* E);
724
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700725 /// Get the address of the thunk for the given global decl.
Anders Carlsson84c49e42011-02-06 17:15:43 +0000726 llvm::Constant *GetAddrOfThunk(GlobalDecl GD, const ThunkInfo &Thunk);
Anders Carlsson19879c92010-03-23 17:17:29 +0000727
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700728 /// Get a reference to the target of VD.
Rafael Espindola6a836702010-03-04 18:17:24 +0000729 llvm::Constant *GetWeakRefReference(const ValueDecl *VD);
730
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700731 /// Returns the offset from a derived class to a class. Returns null if the
732 /// offset is 0.
Anders Carlssona04efdf2010-04-24 21:23:59 +0000733 llvm::Constant *
734 GetNonVirtualBaseClassOffset(const CXXRecordDecl *ClassDecl,
John McCallf871d0c2010-08-07 06:22:56 +0000735 CastExpr::path_const_iterator PathBegin,
736 CastExpr::path_const_iterator PathEnd);
John McCalld16c2cf2011-02-08 08:22:06 +0000737
John McCallf0c11f72011-03-31 08:03:29 +0000738 /// A pair of helper functions for a __block variable.
739 class ByrefHelpers : public llvm::FoldingSetNode {
740 public:
741 llvm::Constant *CopyHelper;
742 llvm::Constant *DisposeHelper;
743
744 /// The alignment of the field. This is important because
745 /// different offsets to the field within the byref struct need to
746 /// have different helper functions.
747 CharUnits Alignment;
748
749 ByrefHelpers(CharUnits alignment) : Alignment(alignment) {}
750 virtual ~ByrefHelpers();
751
752 void Profile(llvm::FoldingSetNodeID &id) const {
753 id.AddInteger(Alignment.getQuantity());
754 profileImpl(id);
755 }
756 virtual void profileImpl(llvm::FoldingSetNodeID &id) const = 0;
757
758 virtual bool needsCopy() const { return true; }
759 virtual void emitCopy(CodeGenFunction &CGF,
760 llvm::Value *dest, llvm::Value *src) = 0;
761
762 virtual bool needsDispose() const { return true; }
763 virtual void emitDispose(CodeGenFunction &CGF, llvm::Value *field) = 0;
764 };
765
766 llvm::FoldingSet<ByrefHelpers> ByrefHelpersCache;
John McCalld16c2cf2011-02-08 08:22:06 +0000767
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700768 /// Fetches the global unique block count.
John McCall8178df32011-02-22 22:38:33 +0000769 int getUniqueBlockCount() { return ++Block.GlobalUniqueCount; }
Fariborz Jahanian4904bf42012-06-26 16:06:38 +0000770
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700771 /// Fetches the type of a generic block descriptor.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000772 llvm::Type *getBlockDescriptorType();
John McCalld16c2cf2011-02-08 08:22:06 +0000773
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700774 /// The type of a generic block literal.
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000775 llvm::Type *getGenericBlockLiteralType();
John McCalld16c2cf2011-02-08 08:22:06 +0000776
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700777 /// Gets the address of a block which requires no captures.
John McCalld16c2cf2011-02-08 08:22:06 +0000778 llvm::Constant *GetAddrOfGlobalBlock(const BlockExpr *BE, const char *);
Anders Carlssona04efdf2010-04-24 21:23:59 +0000779
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700780 /// Return a pointer to a constant CFString object for the given string.
Steve Naroff8d4141f2009-04-01 13:55:36 +0000781 llvm::Constant *GetAddrOfConstantCFString(const StringLiteral *Literal);
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700782
783 /// Return a pointer to a constant NSString object for the given string. Or a
784 /// user defined String object as defined via
Fariborz Jahanian4c733072010-10-19 17:19:29 +0000785 /// -fconstant-string-class=class_name option.
786 llvm::Constant *GetAddrOfConstantString(const StringLiteral *Literal);
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000787
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700788 /// Return a constant array for the given string.
Eli Friedman64f45a22011-11-01 02:23:42 +0000789 llvm::Constant *GetConstantArrayFromStringLiteral(const StringLiteral *E);
790
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700791 /// Return a pointer to a constant array for the given string literal.
Stephen Hines176edba2014-12-01 14:53:08 -0800792 llvm::GlobalVariable *
793 GetAddrOfConstantStringFromLiteral(const StringLiteral *S,
794 StringRef Name = ".str");
Daniel Dunbar1e049762008-08-10 20:25:57 +0000795
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700796 /// Return a pointer to a constant array for the given ObjCEncodeExpr node.
Stephen Hines176edba2014-12-01 14:53:08 -0800797 llvm::GlobalVariable *
798 GetAddrOfConstantStringFromObjCEncode(const ObjCEncodeExpr *);
Mike Stump1eb44332009-09-09 15:08:12 +0000799
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700800 /// Returns a pointer to a character array containing the literal and a
801 /// terminating '\0' character. The result has pointer to array type.
Daniel Dunbar5fabf9d2008-10-17 21:56:50 +0000802 ///
Mike Stumpecc90e92009-02-13 19:12:34 +0000803 /// \param GlobalName If provided, the name to use for the global (if one is
804 /// created).
Stephen Hines176edba2014-12-01 14:53:08 -0800805 llvm::GlobalVariable *
806 GetAddrOfConstantCString(const std::string &Str,
807 const char *GlobalName = nullptr,
808 unsigned Alignment = 0);
Richard Smith7401cf52011-11-22 22:48:32 +0000809
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700810 /// Returns a pointer to a constant global variable for the given file-scope
811 /// compound literal expression.
Richard Smith7401cf52011-11-22 22:48:32 +0000812 llvm::Constant *GetAddrOfConstantCompoundLiteral(const CompoundLiteralExpr*E);
Richard Smith211c8dd2013-06-05 00:46:14 +0000813
814 /// \brief Returns a pointer to a global variable representing a temporary
815 /// with static or thread storage duration.
816 llvm::Constant *GetAddrOfGlobalTemporary(const MaterializeTemporaryExpr *E,
817 const Expr *Inner);
818
Douglas Gregor0815b572011-08-09 17:23:49 +0000819 /// \brief Retrieve the record type that describes the state of an
820 /// Objective-C fast enumeration loop (for..in).
821 QualType getObjCFastEnumerationStateType();
Anders Carlsson27ae5362009-04-17 01:58:57 +0000822
Stephen Hines176edba2014-12-01 14:53:08 -0800823 // Produce code for this constructor/destructor. This method doesn't try
824 // to apply any ABI rules about which other constructors/destructors
825 // are needed or if they are alias to each other.
826 llvm::Function *codegenCXXStructor(const CXXMethodDecl *MD,
827 StructorType Type);
828
829 /// Return the address of the constructor/destructor of the given type.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700830 llvm::GlobalValue *
Stephen Hines176edba2014-12-01 14:53:08 -0800831 getAddrOfCXXStructor(const CXXMethodDecl *MD, StructorType Type,
832 const CGFunctionInfo *FnInfo = nullptr,
833 llvm::FunctionType *FnType = nullptr,
834 bool DontDefer = false);
Mike Stump1eb44332009-09-09 15:08:12 +0000835
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700836 /// Given a builtin id for a function like "__builtin_fabsf", return a
837 /// Function* for "fabsf".
Daniel Dunbar34771b52009-09-14 04:33:21 +0000838 llvm::Value *getBuiltinLibFunction(const FunctionDecl *FD,
839 unsigned BuiltinID);
Daniel Dunbar61432932008-08-13 23:20:05 +0000840
Dmitri Gribenko55431692013-05-05 00:41:58 +0000841 llvm::Function *getIntrinsic(unsigned IID, ArrayRef<llvm::Type*> Tys = None);
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000842
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700843 /// Emit code for a single top level declaration.
Daniel Dunbar41071de2008-08-15 23:26:23 +0000844 void EmitTopLevelDecl(Decl *D);
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000845
Stephen Hines176edba2014-12-01 14:53:08 -0800846 /// \brief Stored a deferred empty coverage mapping for an unused
847 /// and thus uninstrumented top level declaration.
848 void AddDeferredUnusedCoverageMapping(Decl *D);
849
850 /// \brief Remove the deferred empty coverage mapping as this
851 /// declaration is actually instrumented.
852 void ClearUnusedCoverageMapping(const Decl *D);
853
854 /// \brief Emit all the deferred coverage mappings
855 /// for the uninstrumented functions.
856 void EmitDeferredUnusedCoverageMappings();
857
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700858 /// Tell the consumer that this variable has been instantiated.
Rafael Espindola02503932012-03-08 15:51:03 +0000859 void HandleCXXStaticMemberVarInstantiation(VarDecl *VD);
Rafael Espindola234fe652012-03-05 10:54:55 +0000860
Richard Smith00249372013-04-06 05:00:46 +0000861 /// \brief If the declaration has internal linkage but is inside an
862 /// extern "C" linkage specification, prepare to emit an alias for it
863 /// to the expected name.
864 template<typename SomeDecl>
865 void MaybeHandleStaticInExternC(const SomeDecl *D, llvm::GlobalValue *GV);
866
Stephen Hines651f13c2014-04-23 16:59:28 -0700867 /// Add a global to a list to be added to the llvm.used metadata.
868 void addUsedGlobal(llvm::GlobalValue *GV);
869
870 /// Add a global to a list to be added to the llvm.compiler.used metadata.
871 void addCompilerUsedGlobal(llvm::GlobalValue *GV);
Daniel Dunbar02698712009-02-13 20:29:50 +0000872
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700873 /// Add a destructor and object to add to the C++ global destructor function.
Chris Lattner810112e2010-06-19 05:52:45 +0000874 void AddCXXDtorEntry(llvm::Constant *DtorFn, llvm::Constant *Object) {
875 CXXGlobalDtors.push_back(std::make_pair(DtorFn, Object));
876 }
Daniel Dunbarefb0fa92010-03-20 04:15:41 +0000877
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700878 /// Create a new runtime function with the specified type and name.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000879 llvm::Constant *CreateRuntimeFunction(llvm::FunctionType *Ty,
Chris Lattner686775d2011-07-20 06:58:45 +0000880 StringRef Name,
Bill Wendlingc4c62fd2013-01-31 00:30:05 +0000881 llvm::AttributeSet ExtraAttrs =
882 llvm::AttributeSet());
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700883 /// Create a new compiler builtin function with the specified type and name.
884 llvm::Constant *CreateBuiltinFunction(llvm::FunctionType *Ty,
885 StringRef Name,
886 llvm::AttributeSet ExtraAttrs =
887 llvm::AttributeSet());
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700888 /// Create a new runtime global variable with the specified type and name.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000889 llvm::Constant *CreateRuntimeVariable(llvm::Type *Ty,
Chris Lattner686775d2011-07-20 06:58:45 +0000890 StringRef Name);
Daniel Dunbarf1968f22008-10-01 00:49:24 +0000891
Daniel Dunbar673431a2010-07-16 00:00:15 +0000892 ///@name Custom Blocks Runtime Interfaces
893 ///@{
894
895 llvm::Constant *getNSConcreteGlobalBlock();
896 llvm::Constant *getNSConcreteStackBlock();
897 llvm::Constant *getBlockObjectAssign();
898 llvm::Constant *getBlockObjectDispose();
899
900 ///@}
901
Nadav Rotem495cfa42013-03-23 06:43:35 +0000902 llvm::Constant *getLLVMLifetimeStartFn();
903 llvm::Constant *getLLVMLifetimeEndFn();
904
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700905 // Make sure that this type is translated.
Devang Patele80d5672011-03-23 16:29:39 +0000906 void UpdateCompletedType(const TagDecl *TD);
Daniel Dunbard60f2fb2009-02-17 18:43:32 +0000907
John McCall5808ce42011-02-03 08:15:49 +0000908 llvm::Constant *getMemberPointerConstant(const UnaryOperator *e);
909
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700910 /// Try to emit the initializer for the given declaration as a constant;
911 /// returns 0 if the expression cannot be emitted as a constant.
912 llvm::Constant *EmitConstantInit(const VarDecl &D,
913 CodeGenFunction *CGF = nullptr);
Richard Smith2d6a5672012-01-14 04:30:29 +0000914
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700915 /// Try to emit the given expression as a constant; returns 0 if the
916 /// expression cannot be emitted as a constant.
Anders Carlssone9352cc2009-04-08 04:48:15 +0000917 llvm::Constant *EmitConstantExpr(const Expr *E, QualType DestType,
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700918 CodeGenFunction *CGF = nullptr);
Daniel Dunbard60f2fb2009-02-17 18:43:32 +0000919
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700920 /// Emit the given constant value as a constant, in the type's scalar
921 /// representation.
Richard Smith2d6a5672012-01-14 04:30:29 +0000922 llvm::Constant *EmitConstantValue(const APValue &Value, QualType DestType,
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700923 CodeGenFunction *CGF = nullptr);
Richard Smith2d6a5672012-01-14 04:30:29 +0000924
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700925 /// Emit the given constant value as a constant, in the type's memory
926 /// representation.
Richard Smitha3ca41f2012-03-02 23:27:11 +0000927 llvm::Constant *EmitConstantValueForMemory(const APValue &Value,
928 QualType DestType,
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700929 CodeGenFunction *CGF = nullptr);
Richard Smitha3ca41f2012-03-02 23:27:11 +0000930
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700931 /// Return the result of value-initializing the given type, i.e. a null
932 /// expression of the given type. This is usually, but not always, an LLVM
933 /// null constant.
Eli Friedman0f593122009-04-13 21:47:26 +0000934 llvm::Constant *EmitNullConstant(QualType T);
935
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700936 /// Return a null constant appropriate for zero-initializing a base class with
937 /// the given type. This is usually, but not always, an LLVM null constant.
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000938 llvm::Constant *EmitNullConstantForBase(const CXXRecordDecl *Record);
939
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700940 /// Emit a general error that something can't be done.
Chandler Carruth0f30a122012-03-30 19:44:53 +0000941 void Error(SourceLocation loc, StringRef error);
John McCall32096692011-03-18 02:56:14 +0000942
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700943 /// Print out an error that codegen doesn't support the specified stmt yet.
David Blaikie0a1c8622013-08-19 21:02:26 +0000944 void ErrorUnsupported(const Stmt *S, const char *Type);
Mike Stumpecc90e92009-02-13 19:12:34 +0000945
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700946 /// Print out an error that codegen doesn't support the specified decl yet.
David Blaikie0a1c8622013-08-19 21:02:26 +0000947 void ErrorUnsupported(const Decl *D, const char *Type);
Dan Gohman4f8d1232008-05-22 00:50:06 +0000948
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700949 /// Set the attributes on the LLVM function for the given decl and function
950 /// info. This applies attributes necessary for handling the ABI as well as
951 /// user specified attributes like section.
Daniel Dunbar0e4f40e2009-04-17 00:48:04 +0000952 void SetInternalFunctionAttributes(const Decl *D, llvm::Function *F,
953 const CGFunctionInfo &FI);
Daniel Dunbarf80519b2008-09-04 23:41:35 +0000954
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700955 /// Set the LLVM function attributes (sext, zext, etc).
Daniel Dunbar7dbd8192009-04-14 07:08:30 +0000956 void SetLLVMFunctionAttributes(const Decl *D,
957 const CGFunctionInfo &Info,
958 llvm::Function *F);
Daniel Dunbarb7688072008-09-10 00:41:16 +0000959
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700960 /// Set the LLVM function attributes which only apply to a function
Stephen Hines176edba2014-12-01 14:53:08 -0800961 /// definition.
Daniel Dunbar7c65e992009-04-14 08:05:55 +0000962 void SetLLVMFunctionAttributesForDefinition(const Decl *D, llvm::Function *F);
963
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700964 /// Return true iff the given type uses 'sret' when used as a return type.
Daniel Dunbardacf9dd2010-07-14 23:39:36 +0000965 bool ReturnTypeUsesSRet(const CGFunctionInfo &FI);
966
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700967 /// Return true iff the given type uses an argument slot when 'sret' is used
968 /// as a return type.
Stephen Hines651f13c2014-04-23 16:59:28 -0700969 bool ReturnSlotInterferesWithArgs(const CGFunctionInfo &FI);
970
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700971 /// Return true iff the given type uses 'fpret' when used as a return type.
Daniel Dunbardacf9dd2010-07-14 23:39:36 +0000972 bool ReturnTypeUsesFPRet(QualType ResultType);
Daniel Dunbarb7688072008-09-10 00:41:16 +0000973
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700974 /// Return true iff the given type uses 'fp2ret' when used as a return type.
Anders Carlssoneea64802011-10-31 16:27:11 +0000975 bool ReturnTypeUsesFP2Ret(QualType ResultType);
976
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700977 /// Get the LLVM attributes and calling convention to use for a particular
978 /// function type.
Daniel Dunbarca6408c2009-09-12 00:59:20 +0000979 ///
980 /// \param Info - The function type information.
981 /// \param TargetDecl - The decl these attributes are being constructed
982 /// for. If supplied the attributes applied to this decl may contribute to the
983 /// function attributes and calling convention.
984 /// \param PAL [out] - On return, the attribute list to use.
985 /// \param CallingConv [out] - On return, the LLVM calling convention to use.
Daniel Dunbar88b53962009-02-02 22:03:45 +0000986 void ConstructAttributeList(const CGFunctionInfo &Info,
987 const Decl *TargetDecl,
Daniel Dunbarca6408c2009-09-12 00:59:20 +0000988 AttributeListType &PAL,
Bill Wendling94236e72013-02-22 00:13:35 +0000989 unsigned &CallingConv,
990 bool AttrOnCallSite);
Daniel Dunbarb7688072008-09-10 00:41:16 +0000991
Chris Lattner686775d2011-07-20 06:58:45 +0000992 StringRef getMangledName(GlobalDecl GD);
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700993 StringRef getBlockMangledName(GlobalDecl GD, const BlockDecl *BD);
Douglas Gregorb6c8c8b2009-04-21 17:11:58 +0000994
995 void EmitTentativeDefinition(const VarDecl *D);
Mike Stumpf1216772009-07-31 18:25:34 +0000996
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700997 void EmitVTable(CXXRecordDecl *Class);
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000998
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700999 /// Emit the RTTI descriptors for the builtin types.
Timur Iskhodzhanova53d7a02013-09-27 14:48:01 +00001000 void EmitFundamentalRTTIDescriptors();
1001
Reid Kleckner3190ca92013-05-08 13:44:39 +00001002 /// \brief Appends Opts to the "Linker Options" metadata value.
1003 void AppendLinkerOptions(StringRef Opts);
1004
Benjamin Kramer785f1e72013-06-04 09:13:21 +00001005 /// \brief Appends a detect mismatch command to the linker options.
Aaron Ballmana7ff62f2013-06-04 02:07:14 +00001006 void AddDetectMismatch(StringRef Name, StringRef Value);
1007
Reid Kleckner3190ca92013-05-08 13:44:39 +00001008 /// \brief Appends a dependent lib to the "Linker Options" metadata value.
1009 void AddDependentLib(StringRef Lib);
1010
Peter Collingbourne144a31f2013-06-05 17:49:37 +00001011 llvm::GlobalVariable::LinkageTypes getFunctionLinkage(GlobalDecl GD);
John McCalld46f9852010-02-19 01:32:20 +00001012
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001013 void setFunctionLinkage(GlobalDecl GD, llvm::Function *F) {
1014 F->setLinkage(getFunctionLinkage(GD));
John McCall8b242332010-05-25 04:30:21 +00001015 }
1016
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001017 /// Return the appropriate linkage for the vtable, VTT, and type information
1018 /// of the given class.
Anders Carlsson3a717f72011-01-24 02:04:33 +00001019 llvm::GlobalVariable::LinkageTypes getVTableLinkage(const CXXRecordDecl *RD);
Ken Dyck687cc4a2010-01-26 13:48:07 +00001020
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001021 /// Return the store size, in character units, of the given LLVM type.
Chris Lattner2acc6e32011-07-18 04:24:23 +00001022 CharUnits GetTargetTypeStoreSize(llvm::Type *Ty) const;
Fariborz Jahanian354e7122010-10-27 16:21:54 +00001023
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001024 /// Returns LLVM linkage for a declarator.
1025 llvm::GlobalValue::LinkageTypes
1026 getLLVMLinkageForDeclarator(const DeclaratorDecl *D, GVALinkage Linkage,
1027 bool IsConstantVariable);
1028
1029 /// Returns LLVM linkage for a declarator.
1030 llvm::GlobalValue::LinkageTypes
1031 getLLVMLinkageVarDefinition(const VarDecl *VD, bool IsConstant);
1032
Julien Lerouge77f68bb2011-09-09 22:41:49 +00001033 /// Emit all the global annotations.
1034 void EmitGlobalAnnotations();
1035
1036 /// Emit an annotation string.
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00001037 llvm::Constant *EmitAnnotationString(StringRef Str);
Julien Lerouge77f68bb2011-09-09 22:41:49 +00001038
1039 /// Emit the annotation's translation unit.
1040 llvm::Constant *EmitAnnotationUnit(SourceLocation Loc);
1041
1042 /// Emit the annotation line number.
1043 llvm::Constant *EmitAnnotationLineNo(SourceLocation L);
1044
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001045 /// Generate the llvm::ConstantStruct which contains the annotation
1046 /// information for a given GlobalValue. The annotation struct is
Julien Lerouge77f68bb2011-09-09 22:41:49 +00001047 /// {i8 *, i8 *, i8 *, i32}. The first field is a constant expression, the
1048 /// GlobalValue being annotated. The second field is the constant string
1049 /// created from the AnnotateAttr's annotation. The third field is a constant
1050 /// string containing the name of the translation unit. The fourth field is
1051 /// the line number in the file of the annotated value declaration.
1052 llvm::Constant *EmitAnnotateAttr(llvm::GlobalValue *GV,
1053 const AnnotateAttr *AA,
1054 SourceLocation L);
1055
1056 /// Add global annotations that are set on D, for the global GV. Those
1057 /// annotations are emitted during finalization of the LLVM code.
1058 void AddGlobalAnnotations(const ValueDecl *D, llvm::GlobalValue *GV);
1059
Stephen Hines176edba2014-12-01 14:53:08 -08001060 bool isInSanitizerBlacklist(llvm::Function *Fn, SourceLocation Loc) const;
Will Dietz4f45bc02013-01-18 11:30:38 +00001061
Stephen Hines176edba2014-12-01 14:53:08 -08001062 bool isInSanitizerBlacklist(llvm::GlobalVariable *GV, SourceLocation Loc,
1063 QualType Ty,
1064 StringRef Category = StringRef()) const;
1065
1066 SanitizerMetadata *getSanitizerMetadata() {
1067 return SanitizerMD.get();
1068 }
Will Dietz4f45bc02013-01-18 11:30:38 +00001069
John McCalld5617ee2013-01-25 22:31:03 +00001070 void addDeferredVTable(const CXXRecordDecl *RD) {
1071 DeferredVTables.push_back(RD);
1072 }
1073
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001074 /// Emit code for a singal global function or var decl. Forward declarations
1075 /// are emitted lazily.
Reid Klecknera4130ba2013-07-22 13:51:44 +00001076 void EmitGlobal(GlobalDecl D);
1077
Stephen Hines176edba2014-12-01 14:53:08 -08001078 bool TryEmitDefinitionAsAlias(GlobalDecl Alias, GlobalDecl Target,
1079 bool InEveryTU);
1080 bool TryEmitBaseDestructorAsAlias(const CXXDestructorDecl *D);
1081
1082 /// Set attributes for a global definition.
1083 void setFunctionDefinitionAttributes(const FunctionDecl *D,
1084 llvm::Function *F);
1085
Chris Lattner686775d2011-07-20 06:58:45 +00001086 llvm::GlobalValue *GetGlobalValue(StringRef Ref);
Mike Stump1eb44332009-09-09 15:08:12 +00001087
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001088 /// Set attributes which are common to any form of a global definition (alias,
1089 /// Objective-C method, function, global variable).
Daniel Dunbar7dbd8192009-04-14 07:08:30 +00001090 ///
Daniel Dunbar7c65e992009-04-14 08:05:55 +00001091 /// NOTE: This should only be called for definitions.
1092 void SetCommonAttributes(const Decl *D, llvm::GlobalValue *GV);
Daniel Dunbarf80519b2008-09-04 23:41:35 +00001093
Stephen Hines176edba2014-12-01 14:53:08 -08001094 /// Set attributes which must be preserved by an alias. This includes common
1095 /// attributes (i.e. it includes a call to SetCommonAttributes).
1096 ///
1097 /// NOTE: This should only be called for definitions.
1098 void setAliasAttributes(const Decl *D, llvm::GlobalValue *GV);
1099
1100 void addReplacement(StringRef Name, llvm::Constant *C);
1101
1102 /// \brief Emit a code for threadprivate directive.
1103 /// \param D Threadprivate declaration.
1104 void EmitOMPThreadPrivateDecl(const OMPThreadPrivateDecl *D);
1105
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001106 /// Emit bit set entries for the given vtable using the given layout if
1107 /// vptr CFI is enabled.
1108 void EmitVTableBitSetEntries(llvm::GlobalVariable *VTable,
1109 const VTableLayout &VTLayout);
1110
Stephen Hines176edba2014-12-01 14:53:08 -08001111private:
1112 llvm::Constant *
1113 GetOrCreateLLVMFunction(StringRef MangledName, llvm::Type *Ty, GlobalDecl D,
1114 bool ForVTable, bool DontDefer = false,
1115 bool IsThunk = false,
1116 llvm::AttributeSet ExtraAttrs = llvm::AttributeSet());
1117
1118 llvm::Constant *GetOrCreateLLVMGlobal(StringRef MangledName,
1119 llvm::PointerType *PTy,
1120 const VarDecl *D);
1121
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001122 void setNonAliasAttributes(const Decl *D, llvm::GlobalObject *GO);
Mike Stump1eb44332009-09-09 15:08:12 +00001123
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001124 /// Set function attributes for a function declaration.
Stephen Hines176edba2014-12-01 14:53:08 -08001125 void SetFunctionAttributes(GlobalDecl GD, llvm::Function *F,
1126 bool IsIncompleteFunction, bool IsThunk);
Nuno Lopesd4cbda62008-06-08 15:45:52 +00001127
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001128 void EmitGlobalDefinition(GlobalDecl D, llvm::GlobalValue *GV = nullptr);
Daniel Dunbard5d31802009-02-19 07:15:39 +00001129
Stephen Hines651f13c2014-04-23 16:59:28 -07001130 void EmitGlobalFunctionDefinition(GlobalDecl GD, llvm::GlobalValue *GV);
Daniel Dunbarbd012ff2008-07-29 23:18:29 +00001131 void EmitGlobalVarDefinition(const VarDecl *D);
John McCallf746aa62010-03-19 23:29:14 +00001132 void EmitAliasDefinition(GlobalDecl GD);
Daniel Dunbaraf05bb92008-08-26 08:29:31 +00001133 void EmitObjCPropertyImplementations(const ObjCImplementationDecl *D);
Fariborz Jahanian109dfc62010-04-28 21:28:56 +00001134 void EmitObjCIvarInitializations(ObjCImplementationDecl *D);
Fariborz Jahanian354e7122010-10-27 16:21:54 +00001135
Anders Carlsson95d4e5d2009-04-15 15:55:24 +00001136 // C++ related functions.
Mike Stump1eb44332009-09-09 15:08:12 +00001137
Anders Carlsson984e0682009-04-01 00:58:25 +00001138 void EmitNamespace(const NamespaceDecl *D);
Anders Carlsson91e20dd2009-04-02 05:55:18 +00001139 void EmitLinkageSpec(const LinkageSpecDecl *D);
Adrian Prantl0a050f72013-05-09 23:16:27 +00001140 void CompleteDIClassType(const CXXMethodDecl* D);
Anders Carlsson95d4e5d2009-04-15 15:55:24 +00001141
Richard Smithb80a16e2013-04-19 16:42:07 +00001142 /// \brief Emit the function that initializes C++ thread_local variables.
1143 void EmitCXXThreadLocalInitFunc();
1144
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001145 /// Emit the function that initializes C++ globals.
Anders Carlsson89ed31d2009-08-08 23:24:23 +00001146 void EmitCXXGlobalInitFunc();
Eli Friedman6c6bda32010-01-08 00:50:11 +00001147
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001148 /// Emit the function that destroys C++ globals.
Daniel Dunbarefb0fa92010-03-20 04:15:41 +00001149 void EmitCXXGlobalDtorFunc();
1150
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001151 /// Emit the function that initializes the specified global (if PerformInit is
1152 /// true) and registers its destructor.
John McCall3030eb82010-11-06 09:44:32 +00001153 void EmitCXXGlobalVarDeclInitFunc(const VarDecl *D,
Richard Smith7ca48502012-02-13 22:16:19 +00001154 llvm::GlobalVariable *Addr,
1155 bool PerformInit);
Eli Friedman6c6bda32010-01-08 00:50:11 +00001156
Stephen Hines176edba2014-12-01 14:53:08 -08001157 void EmitPointerToInitFunc(const VarDecl *VD, llvm::GlobalVariable *Addr,
1158 llvm::Function *InitFunc, InitSegAttr *ISA);
1159
Daniel Dunbar6bfed7e2008-08-01 00:01:51 +00001160 // FIXME: Hardcoding priority here is gross.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001161 void AddGlobalCtor(llvm::Function *Ctor, int Priority = 65535,
1162 llvm::Constant *AssociatedData = 0);
1163 void AddGlobalDtor(llvm::Function *Dtor, int Priority = 65535);
Daniel Dunbarbd012ff2008-07-29 23:18:29 +00001164
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001165 /// Generates a global array of functions and priorities using the given list
1166 /// and name. This array will have appending linkage and is suitable for use
1167 /// as a LLVM constructor or destructor array.
Daniel Dunbar6bfed7e2008-08-01 00:01:51 +00001168 void EmitCtorList(const CtorList &Fns, const char *GlobalName);
1169
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001170 /// Emit the RTTI descriptors for the given type.
Rafael Espindolad1a5c312010-03-27 02:52:14 +00001171 void EmitFundamentalRTTIDescriptor(QualType Type);
1172
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001173 /// Emit any needed decls for which code generation was deferred.
Dmitri Gribenkoc4a77902012-11-15 14:28:07 +00001174 void EmitDeferred();
Daniel Dunbar02698712009-02-13 20:29:50 +00001175
Rafael Espindola61a0a752013-11-05 21:37:29 +00001176 /// Call replaceAllUsesWith on all pairs in Replacements.
1177 void applyReplacements();
1178
Rafael Espindolad2054982013-10-22 19:26:13 +00001179 void checkAliases();
1180
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001181 /// Emit any vtables which we deferred and still have a use for.
John McCalld5617ee2013-01-25 22:31:03 +00001182 void EmitDeferredVTables();
1183
Stephen Hines651f13c2014-04-23 16:59:28 -07001184 /// Emit the llvm.used and llvm.compiler.used metadata.
1185 void emitLLVMUsed();
Daniel Dunbarf1968f22008-10-01 00:49:24 +00001186
Douglas Gregor858afb32013-01-14 20:53:57 +00001187 /// \brief Emit the link options introduced by imported modules.
1188 void EmitModuleLinkOptions();
1189
Richard Smith00249372013-04-06 05:00:46 +00001190 /// \brief Emit aliases for internal-linkage declarations inside "C" language
1191 /// linkage specifications, giving them the "expected" name where possible.
1192 void EmitStaticExternCAliases();
1193
John McCall744016d2010-07-06 23:57:41 +00001194 void EmitDeclMetadata();
1195
Rafael Espindola9686f122013-10-16 19:28:50 +00001196 /// \brief Emit the Clang version as llvm.ident metadata.
1197 void EmitVersionIdentMetadata();
1198
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001199 /// Emits target specific Metadata for global declarations.
1200 void EmitTargetMetadata();
1201
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001202 /// Emit the llvm.gcov metadata used to tell LLVM where to emit the .gcno and
1203 /// .gcda files in a way that persists in .bc files.
Nick Lewycky3dc05412011-05-05 00:08:20 +00001204 void EmitCoverageFile();
Nick Lewycky5ea4f442011-05-04 20:46:58 +00001205
Nico Weberc5f80462012-10-11 10:13:44 +00001206 /// Emits the initializer for a uuidof string.
Stephen Hines176edba2014-12-01 14:53:08 -08001207 llvm::Constant *EmitUuidofInitializer(StringRef uuidstr);
Nico Weberc5f80462012-10-11 10:13:44 +00001208
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001209 /// Determine whether the definition must be emitted; if this returns \c
1210 /// false, the definition can be emitted lazily if it's used.
1211 bool MustBeEmitted(const ValueDecl *D);
1212
1213 /// Determine whether the definition can be emitted eagerly, or should be
1214 /// delayed until the end of the translation unit. This is relevant for
1215 /// definitions whose linkage can change, e.g. implicit function instantions
1216 /// which may later be explicitly instantiated.
1217 bool MayBeEmittedEagerly(const ValueDecl *D);
John McCallb2593832010-09-16 06:16:50 +00001218
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001219 /// Check whether we can use a "simpler", more core exceptions personality
1220 /// function.
John McCallb2593832010-09-16 06:16:50 +00001221 void SimplifyPersonality();
Reid Spencer5f016e22007-07-11 17:01:13 +00001222};
1223} // end namespace CodeGen
1224} // end namespace clang
1225
1226#endif