blob: e7924fade534e968c0a11f66987185c2abbce0b7 [file] [log] [blame]
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +00001//===--- CodeGenModule.h - Per-Module state for LLVM CodeGen ----*- C++ -*-===//
Chris Lattner4b009652007-07-25 00:24:17 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner959e5be2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner4b009652007-07-25 00:24:17 +00007//
8//===----------------------------------------------------------------------===//
9//
Mike Stumpc1b5a6c2009-02-13 19:12:34 +000010// This is the internal per-translation-unit state used for llvm translation.
Chris Lattner4b009652007-07-25 00:24:17 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner2629b882008-02-29 17:10:38 +000014#ifndef CLANG_CODEGEN_CODEGENMODULE_H
15#define CLANG_CODEGEN_CODEGENMODULE_H
Chris Lattner4b009652007-07-25 00:24:17 +000016
Daniel Dunbar8394fda2009-04-14 06:00:08 +000017#include "clang/Basic/LangOptions.h"
Dan Gohman4751a3a2008-05-22 00:50:06 +000018#include "clang/AST/Attr.h"
Chris Lattnerf04a7562009-03-26 05:00:52 +000019#include "CGBlocks.h"
20#include "CGCall.h"
Anders Carlsson652951a2009-04-15 15:55:24 +000021#include "CGCXX.h"
Chris Lattnerf04a7562009-03-26 05:00:52 +000022#include "CodeGenTypes.h"
Chris Lattner4b009652007-07-25 00:24:17 +000023#include "llvm/ADT/DenseMap.h"
Anders Carlsson36a04872007-08-21 00:21:21 +000024#include "llvm/ADT/StringMap.h"
Douglas Gregor3c3c4542009-02-18 23:53:56 +000025#include "llvm/ADT/StringSet.h"
Chris Lattner4494c0a2009-03-31 22:37:52 +000026#include "llvm/Support/ValueHandle.h"
Anders Carlsson2e427d52009-01-04 02:08:04 +000027#include <list>
28
Chris Lattner4b009652007-07-25 00:24:17 +000029namespace llvm {
30 class Module;
31 class Constant;
32 class Function;
Nate Begeman8a704172008-04-19 04:17:09 +000033 class GlobalValue;
Devang Patela8fccb82007-10-31 20:01:01 +000034 class TargetData;
Eli Friedman9be42212008-06-01 15:54:49 +000035 class FunctionType;
Chris Lattner4b009652007-07-25 00:24:17 +000036}
37
38namespace clang {
39 class ASTContext;
40 class FunctionDecl;
Daniel Dunbarad30be42008-08-25 06:18:57 +000041 class IdentifierInfo;
Chris Lattnerb326b172008-03-30 23:03:07 +000042 class ObjCMethodDecl;
Anton Korobeynikovcd5d08d2008-06-01 14:13:53 +000043 class ObjCImplementationDecl;
44 class ObjCCategoryImplDecl;
45 class ObjCProtocolDecl;
Chris Lattnerc5d32632009-02-24 22:18:39 +000046 class ObjCEncodeExpr;
Anders Carlsson1f1cd392009-02-12 17:55:02 +000047 class BlockExpr;
Chris Lattner4b009652007-07-25 00:24:17 +000048 class Decl;
Oliver Hunt253e0a72007-12-02 00:11:25 +000049 class Expr;
Chris Lattnercf9c9d02007-12-02 07:19:18 +000050 class Stmt;
Daniel Dunbar3c670e12008-08-10 20:25:57 +000051 class StringLiteral;
Nate Begeman91f52012008-04-20 20:38:08 +000052 class NamedDecl;
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +000053 class ValueDecl;
Chris Lattnerd2df2b52007-12-18 08:16:44 +000054 class VarDecl;
Sebastian Redl9cc59542009-03-07 12:16:37 +000055 class LangOptions;
Chris Lattnerf04a7562009-03-26 05:00:52 +000056 class CompileOptions;
Chris Lattner22595b82007-12-02 01:40:18 +000057 class Diagnostic;
Nate Begeman8a704172008-04-19 04:17:09 +000058 class AnnotateAttr;
Anders Carlsson4811c302009-04-17 01:58:57 +000059 class CXXDestructorDecl;
Mike Stumpc1b5a6c2009-02-13 19:12:34 +000060
Chris Lattner4b009652007-07-25 00:24:17 +000061namespace CodeGen {
62
Lauro Ramos Venancio934fb022008-02-26 21:41:45 +000063 class CodeGenFunction;
Sanjiv Gupta40e56a12008-05-08 08:54:20 +000064 class CGDebugInfo;
Daniel Dunbar84bb85f2008-08-13 00:59:25 +000065 class CGObjCRuntime;
Mike Stumpc1b5a6c2009-02-13 19:12:34 +000066
67/// CodeGenModule - This class organizes the cross-function state that is used
68/// while generating LLVM code.
Mike Stump1f010b52009-03-04 18:17:45 +000069class CodeGenModule : public BlockModule {
Anders Carlsson76881382009-02-24 04:21:31 +000070 CodeGenModule(const CodeGenModule&); // DO NOT IMPLEMENT
71 void operator=(const CodeGenModule&); // DO NOT IMPLEMENT
72
Daniel Dunbardd2e9ca2008-08-01 00:01:51 +000073 typedef std::vector< std::pair<llvm::Constant*, int> > CtorList;
74
Chris Lattner4b009652007-07-25 00:24:17 +000075 ASTContext &Context;
Chris Lattnerdb6be562007-11-28 05:34:05 +000076 const LangOptions &Features;
Chris Lattnerf04a7562009-03-26 05:00:52 +000077 const CompileOptions &CompileOpts;
Chris Lattner4b009652007-07-25 00:24:17 +000078 llvm::Module &TheModule;
Devang Patela8fccb82007-10-31 20:01:01 +000079 const llvm::TargetData &TheTargetData;
Chris Lattner22595b82007-12-02 01:40:18 +000080 Diagnostic &Diags;
Chris Lattner4b009652007-07-25 00:24:17 +000081 CodeGenTypes Types;
Ted Kremenek7c65b6c2008-08-05 18:50:11 +000082 CGObjCRuntime* Runtime;
83 CGDebugInfo* DebugInfo;
Chris Lattner4b009652007-07-25 00:24:17 +000084
85 llvm::Function *MemCpyFn;
Eli Friedman8f08a252008-05-26 12:59:39 +000086 llvm::Function *MemMoveFn;
Lauro Ramos Venancioe5bef732008-02-19 22:01:01 +000087 llvm::Function *MemSetFn;
Daniel Dunbar2188c532008-07-30 16:32:24 +000088
Douglas Gregor3c3c4542009-02-18 23:53:56 +000089 /// GlobalDeclMap - Mapping of decl names (represented as unique
90 /// character pointers from either the identifier table or the set
91 /// of mangled names) to global variables we have already
92 /// emitted. Note that the entries in this map are the actual
93 /// globals and therefore may not be of the same type as the decl,
94 /// they should be bitcasted on retrieval. Also note that the
Chris Lattner535998b2009-03-21 07:48:31 +000095 /// globals are keyed on their source mangled name, not the global name
Chris Lattner38837f92009-03-21 09:44:56 +000096 /// (which may change with attributes such as asm-labels). The key
Douglas Gregor3c3c4542009-02-18 23:53:56 +000097 /// to this map should be generated using getMangledName().
Chris Lattner38837f92009-03-21 09:44:56 +000098 ///
99 /// Note that this map always lines up exactly with the contents of the LLVM
100 /// IR symbol table, but this is quicker to query since it is doing uniqued
101 /// pointer lookups instead of full string lookups.
Douglas Gregor3c3c4542009-02-18 23:53:56 +0000102 llvm::DenseMap<const char*, llvm::GlobalValue*> GlobalDeclMap;
103
104 /// \brief Contains the strings used for mangled names.
105 ///
106 /// FIXME: Eventually, this should map from the semantic/canonical
107 /// declaration for each global entity to its mangled name (if it
108 /// has one).
109 llvm::StringSet<> MangledNames;
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +0000110
Chris Lattner38837f92009-03-21 09:44:56 +0000111 /// DeferredDecls - This contains all the decls which have definitions but
112 /// which are deferred for emission and therefore should only be output if
113 /// they are actually used. If a decl is in this, then it is known to have
114 /// not been referenced yet. The key to this map is a uniqued mangled name.
115 llvm::DenseMap<const char*, const ValueDecl*> DeferredDecls;
Daniel Dunbar21f3cf72009-02-13 20:29:50 +0000116
Chris Lattner38837f92009-03-21 09:44:56 +0000117 /// DeferredDeclsToEmit - This is a list of deferred decls which we have seen
118 /// that *are* actually referenced. These get code generated when the module
119 /// is done.
120 std::vector<const ValueDecl*> DeferredDeclsToEmit;
Daniel Dunbarf25d8a92009-04-15 22:08:45 +0000121
122 /// TentativeDefinitions - A list of declarations which are
123 /// tentative definitions. Code generation for these must be
124 /// deferred because they are allowed to have incomplete type when
125 /// they are seen. This also allows us to avoid generating an extra
126 /// common definiton in situations where the tentative definition is
127 /// followed by an actual definition.
128 std::vector<const VarDecl*> TentativeDefinitions;
Chris Lattner38837f92009-03-21 09:44:56 +0000129
Daniel Dunbar21f3cf72009-02-13 20:29:50 +0000130 /// LLVMUsed - List of global values which are required to be
131 /// present in the object file; bitcast to i8*. This is used for
132 /// forcing visibility of symbols which may otherwise be optimized
133 /// out.
Chris Lattner4494c0a2009-03-31 22:37:52 +0000134 std::vector<llvm::WeakVH> LLVMUsed;
Mike Stumpc1b5a6c2009-02-13 19:12:34 +0000135
136 /// GlobalCtors - Store the list of global constructors and their respective
137 /// priorities to be emitted when the translation unit is complete.
Daniel Dunbardd2e9ca2008-08-01 00:01:51 +0000138 CtorList GlobalCtors;
139
Mike Stumpc1b5a6c2009-02-13 19:12:34 +0000140 /// GlobalDtors - Store the list of global destructors and their respective
141 /// priorities to be emitted when the translation unit is complete.
Daniel Dunbardd2e9ca2008-08-01 00:01:51 +0000142 CtorList GlobalDtors;
143
Nate Begeman52da5c72008-04-18 23:43:57 +0000144 std::vector<llvm::Constant*> Annotations;
Mike Stumpc1b5a6c2009-02-13 19:12:34 +0000145
Anders Carlsson36a04872007-08-21 00:21:21 +0000146 llvm::StringMap<llvm::Constant*> CFConstantStringMap;
Chris Lattnerdb6be562007-11-28 05:34:05 +0000147 llvm::StringMap<llvm::Constant*> ConstantStringMap;
Daniel Dunbardbdb9512008-08-23 18:37:06 +0000148
Mike Stumpc1b5a6c2009-02-13 19:12:34 +0000149 /// CFConstantStringClassRef - Cached reference to the class for constant
150 /// strings. This value has type int * but is actually an Obj-C class pointer.
Anders Carlsson36a04872007-08-21 00:21:21 +0000151 llvm::Constant *CFConstantStringClassRef;
Chris Lattner4b009652007-07-25 00:24:17 +0000152public:
Chris Lattnerf04a7562009-03-26 05:00:52 +0000153 CodeGenModule(ASTContext &C, const CompileOptions &CompileOpts,
154 llvm::Module &M, const llvm::TargetData &TD, Diagnostic &Diags);
Ted Kremenek7c65b6c2008-08-05 18:50:11 +0000155
Chris Lattnercbfb5512008-03-01 08:45:05 +0000156 ~CodeGenModule();
Mike Stumpc1b5a6c2009-02-13 19:12:34 +0000157
Ted Kremenek7c65b6c2008-08-05 18:50:11 +0000158 /// Release - Finalize LLVM code generation.
159 void Release();
Daniel Dunbarfc69bde2008-08-11 18:12:00 +0000160
161 /// getObjCRuntime() - Return a reference to the configured
162 /// Objective-C runtime.
Mike Stumpc1b5a6c2009-02-13 19:12:34 +0000163 CGObjCRuntime &getObjCRuntime() {
Daniel Dunbarfc69bde2008-08-11 18:12:00 +0000164 assert(Runtime && "No Objective-C runtime has been configured.");
Mike Stumpc1b5a6c2009-02-13 19:12:34 +0000165 return *Runtime;
Daniel Dunbarfc69bde2008-08-11 18:12:00 +0000166 }
Mike Stumpc1b5a6c2009-02-13 19:12:34 +0000167
Daniel Dunbarfc69bde2008-08-11 18:12:00 +0000168 /// hasObjCRuntime() - Return true iff an Objective-C runtime has
169 /// been configured.
170 bool hasObjCRuntime() { return !!Runtime; }
171
Sanjiv Gupta40e56a12008-05-08 08:54:20 +0000172 CGDebugInfo *getDebugInfo() { return DebugInfo; }
Chris Lattner4b009652007-07-25 00:24:17 +0000173 ASTContext &getContext() const { return Context; }
Devang Patelbcded192009-03-27 23:16:32 +0000174 const CompileOptions &getCompileOpts() const { return CompileOpts; }
Chris Lattnerdb6be562007-11-28 05:34:05 +0000175 const LangOptions &getLangOptions() const { return Features; }
Chris Lattner4b009652007-07-25 00:24:17 +0000176 llvm::Module &getModule() const { return TheModule; }
177 CodeGenTypes &getTypes() { return Types; }
Chris Lattner22595b82007-12-02 01:40:18 +0000178 Diagnostic &getDiags() const { return Diags; }
Chris Lattner17c0cb02008-01-03 06:36:51 +0000179 const llvm::TargetData &getTargetData() const { return TheTargetData; }
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +0000180
Daniel Dunbar8394fda2009-04-14 06:00:08 +0000181 /// getDeclVisibilityMode - Compute the visibility of the decl \arg D.
182 LangOptions::VisibilityMode getDeclVisibilityMode(const Decl *D) const;
183
184 /// setGlobalVisibility - Set the visibility for the given LLVM
185 /// GlobalValue.
186 void setGlobalVisibility(llvm::GlobalValue *GV, const Decl *D) const;
187
Mike Stumpc1b5a6c2009-02-13 19:12:34 +0000188 /// GetAddrOfGlobalVar - Return the llvm::Constant for the address of the
Chris Lattnera6984932009-03-21 09:16:30 +0000189 /// given global variable. If Ty is non-null and if the global doesn't exist,
190 /// then it will be greated with the specified type instead of whatever the
191 /// normal requested type would be.
192 llvm::Constant *GetAddrOfGlobalVar(const VarDecl *D,
193 const llvm::Type *Ty = 0);
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +0000194
Chris Lattnerd26784e2009-03-21 08:53:37 +0000195 /// GetAddrOfFunction - Return the address of the given function. If Ty is
196 /// non-null, then this function will use the specified type if it has to
197 /// create it.
Chris Lattner5dd030f2009-03-21 09:25:43 +0000198 llvm::Constant *GetAddrOfFunction(const FunctionDecl *D,
Chris Lattnerd26784e2009-03-21 08:53:37 +0000199 const llvm::Type *Ty = 0);
Daniel Dunbar31fe9c32008-08-13 23:20:05 +0000200
Mike Stumpc1b5a6c2009-02-13 19:12:34 +0000201 /// GetStringForStringLiteral - Return the appropriate bytes for a string
202 /// literal, properly padded to match the literal type. If only the address of
203 /// a constant is needed consider using GetAddrOfConstantStringLiteral.
Daniel Dunbar31fe9c32008-08-13 23:20:05 +0000204 std::string GetStringForStringLiteral(const StringLiteral *E);
205
Mike Stumpc1b5a6c2009-02-13 19:12:34 +0000206 /// GetAddrOfConstantCFString - Return a pointer to a constant CFString object
207 /// for the given string.
Steve Naroff9a744e52009-04-01 13:55:36 +0000208 llvm::Constant *GetAddrOfConstantCFString(const StringLiteral *Literal);
Chris Lattnera6dcce32008-02-11 00:02:17 +0000209
Mike Stumpc1b5a6c2009-02-13 19:12:34 +0000210 /// GetAddrOfConstantStringFromLiteral - Return a pointer to a constant array
211 /// for the given string literal.
Daniel Dunbar31fe9c32008-08-13 23:20:05 +0000212 llvm::Constant *GetAddrOfConstantStringFromLiteral(const StringLiteral *S);
Daniel Dunbar3c670e12008-08-10 20:25:57 +0000213
Chris Lattnerc5d32632009-02-24 22:18:39 +0000214 /// GetAddrOfConstantStringFromObjCEncode - Return a pointer to a constant
215 /// array for the given ObjCEncodeExpr node.
216 llvm::Constant *GetAddrOfConstantStringFromObjCEncode(const ObjCEncodeExpr *);
217
Daniel Dunbar31fe9c32008-08-13 23:20:05 +0000218 /// GetAddrOfConstantString - Returns a pointer to a character array
Mike Stumpc1b5a6c2009-02-13 19:12:34 +0000219 /// containing the literal. This contents are exactly that of the given
220 /// string, i.e. it will not be null terminated automatically; see
221 /// GetAddrOfConstantCString. Note that whether the result is actually a
222 /// pointer to an LLVM constant depends on Feature.WriteableStrings.
Daniel Dunbar31fe9c32008-08-13 23:20:05 +0000223 ///
224 /// The result has pointer to array type.
Daniel Dunbara70e1d72008-10-17 21:56:50 +0000225 ///
226 /// \param GlobalName If provided, the name to use for the global
227 /// (if one is created).
228 llvm::Constant *GetAddrOfConstantString(const std::string& str,
229 const char *GlobalName=0);
Daniel Dunbar31fe9c32008-08-13 23:20:05 +0000230
Mike Stumpc1b5a6c2009-02-13 19:12:34 +0000231 /// GetAddrOfConstantCString - Returns a pointer to a character array
232 /// containing the literal and a terminating '\0' character. The result has
233 /// pointer to array type.
Daniel Dunbara70e1d72008-10-17 21:56:50 +0000234 ///
Mike Stumpc1b5a6c2009-02-13 19:12:34 +0000235 /// \param GlobalName If provided, the name to use for the global (if one is
236 /// created).
Daniel Dunbara70e1d72008-10-17 21:56:50 +0000237 llvm::Constant *GetAddrOfConstantCString(const std::string &str,
238 const char *GlobalName=0);
Mike Stumpc1b5a6c2009-02-13 19:12:34 +0000239
Anders Carlsson890a9fd2009-04-16 23:57:24 +0000240 /// GetAddrOfCXXConstructor - Return the address of the constructor of the
241 /// given type.
242 llvm::Function *GetAddrOfCXXConstructor(const CXXConstructorDecl *D,
243 CXXCtorType Type);
Anders Carlsson4811c302009-04-17 01:58:57 +0000244
245 /// GetAddrOfCXXDestructor - Return the address of the constructor of the
246 /// given type.
247 llvm::Function *GetAddrOfCXXDestructor(const CXXDestructorDecl *D,
248 CXXDtorType Type);
Anders Carlsson890a9fd2009-04-16 23:57:24 +0000249
Daniel Dunbar27250d32008-08-15 23:26:23 +0000250 /// getBuiltinLibFunction - Given a builtin id for a function like
251 /// "__builtin_fabsf", return a Function* for "fabsf".
Mike Stump96b7a152009-02-27 22:42:30 +0000252 llvm::Value *getBuiltinLibFunction(unsigned BuiltinID);
Daniel Dunbar31fe9c32008-08-13 23:20:05 +0000253
Chris Lattner4b009652007-07-25 00:24:17 +0000254 llvm::Function *getMemCpyFn();
Eli Friedman8f08a252008-05-26 12:59:39 +0000255 llvm::Function *getMemMoveFn();
Lauro Ramos Venancioe5bef732008-02-19 22:01:01 +0000256 llvm::Function *getMemSetFn();
Mike Stumpc1b5a6c2009-02-13 19:12:34 +0000257 llvm::Function *getIntrinsic(unsigned IID, const llvm::Type **Tys = 0,
Chris Lattner4b23f942007-12-18 00:25:38 +0000258 unsigned NumTys = 0);
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +0000259
Daniel Dunbar27250d32008-08-15 23:26:23 +0000260 /// EmitTopLevelDecl - Emit code for a single top level declaration.
261 void EmitTopLevelDecl(Decl *D);
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +0000262
Daniel Dunbar21f3cf72009-02-13 20:29:50 +0000263 /// AddUsedGlobal - Add a global which should be forced to be
264 /// present in the object file; these are emitted to the llvm.used
265 /// metadata global.
266 void AddUsedGlobal(llvm::GlobalValue *GV);
267
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +0000268 void AddAnnotation(llvm::Constant *C) { Annotations.push_back(C); }
269
Chris Lattneraea1aee2009-03-22 21:03:39 +0000270 /// CreateRuntimeFunction - Create a new runtime function with the specified
271 /// type and name.
272 llvm::Constant *CreateRuntimeFunction(const llvm::FunctionType *Ty,
273 const char *Name);
274 /// CreateRuntimeVariable - Create a new runtime global variable with the
275 /// specified type and name.
276 llvm::Constant *CreateRuntimeVariable(const llvm::Type *Ty,
277 const char *Name);
Daniel Dunbar18c2ec62008-10-01 00:49:24 +0000278
Chris Lattner52e809a2009-04-01 02:08:13 +0000279 void UpdateCompletedType(const TagDecl *TD) {
280 // Make sure that this type is translated.
281 Types.UpdateCompletedType(TD);
282 }
Daniel Dunbarf69d19e2009-02-17 18:43:32 +0000283
284 /// EmitConstantExpr - Try to emit the given expression as a
285 /// constant; returns 0 if the expression cannot be emitted as a
286 /// constant.
Anders Carlssone7d97c22009-04-08 04:48:15 +0000287 llvm::Constant *EmitConstantExpr(const Expr *E, QualType DestType,
288 CodeGenFunction *CGF = 0);
Daniel Dunbarf69d19e2009-02-17 18:43:32 +0000289
Eli Friedmanb836cd32009-04-13 21:47:26 +0000290 /// EmitNullConstant - Return the result of value-initializing the given
291 /// type, i.e. a null expression of the given type. This is usually,
292 /// but not always, an LLVM null constant.
293 llvm::Constant *EmitNullConstant(QualType T);
294
Nate Begeman8a704172008-04-19 04:17:09 +0000295 llvm::Constant *EmitAnnotateAttr(llvm::GlobalValue *GV,
296 const AnnotateAttr *AA, unsigned LineNo);
Mike Stumpc1b5a6c2009-02-13 19:12:34 +0000297
Daniel Dunbar9503b782008-08-16 00:56:44 +0000298 /// ErrorUnsupported - Print out an error that codegen doesn't support the
Daniel Dunbar49bddf72008-09-04 03:43:08 +0000299 /// specified stmt yet.
Mike Stumpc1b5a6c2009-02-13 19:12:34 +0000300 /// \param OmitOnError - If true, then this error should only be emitted if no
301 /// other errors have been reported.
302 void ErrorUnsupported(const Stmt *S, const char *Type,
Daniel Dunbar49bddf72008-09-04 03:43:08 +0000303 bool OmitOnError=false);
Mike Stumpc1b5a6c2009-02-13 19:12:34 +0000304
Daniel Dunbar9503b782008-08-16 00:56:44 +0000305 /// ErrorUnsupported - Print out an error that codegen doesn't support the
Chris Lattner806a5f52008-01-12 07:05:38 +0000306 /// specified decl yet.
Mike Stumpc1b5a6c2009-02-13 19:12:34 +0000307 /// \param OmitOnError - If true, then this error should only be emitted if no
308 /// other errors have been reported.
Daniel Dunbar49bddf72008-09-04 03:43:08 +0000309 void ErrorUnsupported(const Decl *D, const char *Type,
310 bool OmitOnError=false);
Dan Gohman4751a3a2008-05-22 00:50:06 +0000311
Daniel Dunbar5b90ae12009-04-17 00:48:04 +0000312 /// SetInternalFunctionAttributes - Set the attributes on the LLVM
313 /// function for the given decl and function info. This applies
314 /// attributes necessary for handling the ABI as well as user
315 /// specified attributes like section.
316 void SetInternalFunctionAttributes(const Decl *D, llvm::Function *F,
317 const CGFunctionInfo &FI);
Daniel Dunbarf2787002008-09-04 23:41:35 +0000318
Daniel Dunbar06cfb132009-04-14 07:08:30 +0000319 /// SetLLVMFunctionAttributes - Set the LLVM function attributes
320 /// (sext, zext, etc).
321 void SetLLVMFunctionAttributes(const Decl *D,
322 const CGFunctionInfo &Info,
323 llvm::Function *F);
Daniel Dunbar3ef2e852008-09-10 00:41:16 +0000324
Daniel Dunbar096948c2009-04-14 08:05:55 +0000325 /// SetLLVMFunctionAttributesForDefinition - Set the LLVM function attributes
326 /// which only apply to a function definintion.
327 void SetLLVMFunctionAttributesForDefinition(const Decl *D, llvm::Function *F);
328
Mike Stumpc1b5a6c2009-02-13 19:12:34 +0000329 /// ReturnTypeUsesSret - Return true iff the given type uses 'sret' when used
330 /// as a return type.
Daniel Dunbar6ee022b2009-02-02 22:03:45 +0000331 bool ReturnTypeUsesSret(const CGFunctionInfo &FI);
Daniel Dunbar3ef2e852008-09-10 00:41:16 +0000332
Daniel Dunbar6ee022b2009-02-02 22:03:45 +0000333 void ConstructAttributeList(const CGFunctionInfo &Info,
334 const Decl *TargetDecl,
Devang Patela85a9ef2008-09-25 21:02:23 +0000335 AttributeListType &PAL);
Daniel Dunbar3ef2e852008-09-10 00:41:16 +0000336
Douglas Gregor3c3c4542009-02-18 23:53:56 +0000337 const char *getMangledName(const NamedDecl *ND);
Anders Carlsson652951a2009-04-15 15:55:24 +0000338 const char *getMangledCXXCtorName(const CXXConstructorDecl *D,
339 CXXCtorType Type);
Anders Carlsson4811c302009-04-17 01:58:57 +0000340 const char *getMangledCXXDtorName(const CXXDestructorDecl *D,
341 CXXDtorType Type);
Anders Carlsson652951a2009-04-15 15:55:24 +0000342
Chris Lattner3f2eb812009-04-14 06:04:17 +0000343 enum GVALinkage {
344 GVA_Internal,
Chris Lattnercf7ce672009-04-14 16:44:36 +0000345 GVA_C99Inline,
346 GVA_CXXInline,
Chris Lattner67104c82009-04-14 20:25:53 +0000347 GVA_StrongExternal
Chris Lattner3f2eb812009-04-14 06:04:17 +0000348 };
349
Chris Lattner1a3c1e22007-12-02 07:09:19 +0000350private:
Anders Carlsson652951a2009-04-15 15:55:24 +0000351 /// UniqueMangledName - Unique a name by (if necessary) inserting it into the
352 /// MangledNames string map.
353 const char *UniqueMangledName(const char *NameStart, const char *NameEnd);
354
Chris Lattneraea1aee2009-03-22 21:03:39 +0000355 llvm::Constant *GetOrCreateLLVMFunction(const char *MangledName,
356 const llvm::Type *Ty,
357 const FunctionDecl *D);
358 llvm::Constant *GetOrCreateLLVMGlobal(const char *MangledName,
359 const llvm::PointerType *PTy,
360 const VarDecl *D);
Chris Lattner3f2eb812009-04-14 06:04:17 +0000361
Daniel Dunbar096948c2009-04-14 08:05:55 +0000362 /// SetCommonAttributes - Set attributes which are common to any
363 /// form of a global definition (alias, Objective-C method,
364 /// function, global variable).
Daniel Dunbar06cfb132009-04-14 07:08:30 +0000365 ///
Daniel Dunbar096948c2009-04-14 08:05:55 +0000366 /// NOTE: This should only be called for definitions.
367 void SetCommonAttributes(const Decl *D, llvm::GlobalValue *GV);
Daniel Dunbarf2787002008-09-04 23:41:35 +0000368
Daniel Dunbar096948c2009-04-14 08:05:55 +0000369 /// SetFunctionDefinitionAttributes - Set attributes for a global definition.
370 void SetFunctionDefinitionAttributes(const FunctionDecl *D,
371 llvm::GlobalValue *GV);
372
Daniel Dunbar06cfb132009-04-14 07:08:30 +0000373 /// SetFunctionAttributes - Set function attributes for a function
374 /// declaration.
Eli Friedman9be42212008-06-01 15:54:49 +0000375 void SetFunctionAttributes(const FunctionDecl *FD,
Daniel Dunbarf2787002008-09-04 23:41:35 +0000376 llvm::Function *F);
Nuno Lopes78534382008-06-08 15:45:52 +0000377
Mike Stumpc1b5a6c2009-02-13 19:12:34 +0000378 /// EmitGlobal - Emit code for a singal global function or var decl. Forward
379 /// declarations are emitted lazily.
Daniel Dunbar27250d32008-08-15 23:26:23 +0000380 void EmitGlobal(const ValueDecl *D);
381
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +0000382 void EmitGlobalDefinition(const ValueDecl *D);
Daniel Dunbar3f197842009-02-19 07:15:39 +0000383
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +0000384 void EmitGlobalFunctionDefinition(const FunctionDecl *D);
Daniel Dunbarf25d8a92009-04-15 22:08:45 +0000385 void EmitTentativeDefinition(const VarDecl *D);
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +0000386 void EmitGlobalVarDefinition(const VarDecl *D);
Chris Lattner89a5b4e2009-03-22 21:47:11 +0000387 void EmitAliasDefinition(const ValueDecl *D);
Daniel Dunbar6b57d432008-08-26 08:29:31 +0000388 void EmitObjCPropertyImplementations(const ObjCImplementationDecl *D);
Anders Carlsson652951a2009-04-15 15:55:24 +0000389
390 // C++ related functions.
391
Anders Carlsson8ff34a62009-04-01 00:58:25 +0000392 void EmitNamespace(const NamespaceDecl *D);
Anders Carlssonb573e462009-04-02 05:55:18 +0000393 void EmitLinkageSpec(const LinkageSpecDecl *D);
Anders Carlsson652951a2009-04-15 15:55:24 +0000394
395 /// EmitCXXConstructors - Emit constructors (base, complete) from a
396 /// C++ constructor Decl.
397 void EmitCXXConstructors(const CXXConstructorDecl *D);
398
399 /// EmitCXXConstructor - Emit a single constructor with the given type from
400 /// a C++ constructor Decl.
401 void EmitCXXConstructor(const CXXConstructorDecl *D, CXXCtorType Type);
Anders Carlsson8ff34a62009-04-01 00:58:25 +0000402
Anders Carlsson4811c302009-04-17 01:58:57 +0000403 /// EmitCXXDestructors - Emit destructors (base, complete) from a
404 /// C++ destructor Decl.
405 void EmitCXXDestructors(const CXXDestructorDecl *D);
406
407 /// EmitCXXDestructor - Emit a single destructor with the given type from
408 /// a C++ destructor Decl.
409 void EmitCXXDestructor(const CXXDestructorDecl *D, CXXDtorType Type);
410
Daniel Dunbardd2e9ca2008-08-01 00:01:51 +0000411 // FIXME: Hardcoding priority here is gross.
412 void AddGlobalCtor(llvm::Function * Ctor, int Priority=65535);
413 void AddGlobalDtor(llvm::Function * Dtor, int Priority=65535);
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +0000414
Mike Stumpc1b5a6c2009-02-13 19:12:34 +0000415 /// EmitCtorList - Generates a global array of functions and priorities using
416 /// the given list and name. This array will have appending linkage and is
417 /// suitable for use as a LLVM constructor or destructor array.
Daniel Dunbardd2e9ca2008-08-01 00:01:51 +0000418 void EmitCtorList(const CtorList &Fns, const char *GlobalName);
419
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +0000420 void EmitAnnotations(void);
Daniel Dunbar21f3cf72009-02-13 20:29:50 +0000421
Daniel Dunbaredf953c2009-03-09 23:53:08 +0000422 /// EmitDeferred - Emit any needed decls for which code generation
423 /// was deferred.
Daniel Dunbar21f3cf72009-02-13 20:29:50 +0000424 void EmitDeferred(void);
425
Daniel Dunbaredf953c2009-03-09 23:53:08 +0000426 /// EmitLLVMUsed - Emit the llvm.used metadata used to force
427 /// references to global which may otherwise be optimized out.
Daniel Dunbar21f3cf72009-02-13 20:29:50 +0000428 void EmitLLVMUsed(void);
Daniel Dunbar18c2ec62008-10-01 00:49:24 +0000429
Daniel Dunbaredf953c2009-03-09 23:53:08 +0000430 /// MayDeferGeneration - Determine if the given decl can be emitted
431 /// lazily; this is only relevant for definitions. The given decl
432 /// must be either a function or var decl.
Daniel Dunbarf3482b32009-02-13 21:18:01 +0000433 bool MayDeferGeneration(const ValueDecl *D);
Chris Lattner4b009652007-07-25 00:24:17 +0000434};
435} // end namespace CodeGen
436} // end namespace clang
437
438#endif