blob: a837b6369c320d8a42febb270d08318526243df0 [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//
10// This is the internal per-translation-unit state used for llvm translation.
11//
12//===----------------------------------------------------------------------===//
13
Chris Lattneref52a2f2008-02-29 17:10:38 +000014#ifndef CLANG_CODEGEN_CODEGENMODULE_H
15#define CLANG_CODEGEN_CODEGENMODULE_H
Reid Spencer5f016e22007-07-11 17:01:13 +000016
17#include "CodeGenTypes.h"
Dan Gohman4f8d1232008-05-22 00:50:06 +000018#include "clang/AST/Attr.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000019#include "llvm/ADT/DenseMap.h"
Anders Carlssonc9e20912007-08-21 00:21:21 +000020#include "llvm/ADT/StringMap.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021
22namespace llvm {
23 class Module;
24 class Constant;
25 class Function;
Nate Begeman8bd4afe2008-04-19 04:17:09 +000026 class GlobalValue;
Devang Patel7a4718e2007-10-31 20:01:01 +000027 class TargetData;
Eli Friedmanff4a2d92008-06-01 15:54:49 +000028 class FunctionType;
Reid Spencer5f016e22007-07-11 17:01:13 +000029}
30
31namespace clang {
32 class ASTContext;
33 class FunctionDecl;
Chris Lattner391d77a2008-03-30 23:03:07 +000034 class ObjCMethodDecl;
Anton Korobeynikov20ff3102008-06-01 14:13:53 +000035 class ObjCImplementationDecl;
36 class ObjCCategoryImplDecl;
37 class ObjCProtocolDecl;
Reid Spencer5f016e22007-07-11 17:01:13 +000038 class Decl;
Oliver Hunt28247232007-12-02 00:11:25 +000039 class Expr;
Chris Lattner2c8569d2007-12-02 07:19:18 +000040 class Stmt;
Daniel Dunbar1e049762008-08-10 20:25:57 +000041 class StringLiteral;
Nate Begeman1a1d92a2008-04-20 20:38:08 +000042 class NamedDecl;
Daniel Dunbarbd012ff2008-07-29 23:18:29 +000043 class ValueDecl;
Chris Lattner2b9d2ca2007-12-18 08:16:44 +000044 class VarDecl;
Chris Lattner45e8cbd2007-11-28 05:34:05 +000045 struct LangOptions;
Chris Lattnerfb97b032007-12-02 01:40:18 +000046 class Diagnostic;
Nate Begeman8bd4afe2008-04-19 04:17:09 +000047 class AnnotateAttr;
Reid Spencer5f016e22007-07-11 17:01:13 +000048
49namespace CodeGen {
50
Lauro Ramos Venancio81373352008-02-26 21:41:45 +000051 class CodeGenFunction;
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000052 class CGDebugInfo;
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +000053 class CGObjCRuntime;
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000054
Reid Spencer5f016e22007-07-11 17:01:13 +000055/// CodeGenModule - This class organizes the cross-module state that is used
56/// while generating LLVM code.
57class CodeGenModule {
Daniel Dunbar6bfed7e2008-08-01 00:01:51 +000058 typedef std::vector< std::pair<llvm::Constant*, int> > CtorList;
59
Reid Spencer5f016e22007-07-11 17:01:13 +000060 ASTContext &Context;
Chris Lattner45e8cbd2007-11-28 05:34:05 +000061 const LangOptions &Features;
Reid Spencer5f016e22007-07-11 17:01:13 +000062 llvm::Module &TheModule;
Devang Patel7a4718e2007-10-31 20:01:01 +000063 const llvm::TargetData &TheTargetData;
Chris Lattnerfb97b032007-12-02 01:40:18 +000064 Diagnostic &Diags;
Reid Spencer5f016e22007-07-11 17:01:13 +000065 CodeGenTypes Types;
Ted Kremenek815c78f2008-08-05 18:50:11 +000066 CGObjCRuntime* Runtime;
67 CGDebugInfo* DebugInfo;
Reid Spencer5f016e22007-07-11 17:01:13 +000068
69 llvm::Function *MemCpyFn;
Eli Friedman0c995092008-05-26 12:59:39 +000070 llvm::Function *MemMoveFn;
Lauro Ramos Venancio41ef30e2008-02-19 22:01:01 +000071 llvm::Function *MemSetFn;
Daniel Dunbar9986eab2008-07-30 16:32:24 +000072
Daniel Dunbar3c827a72008-08-05 23:31:02 +000073 /// GlobalDeclMap - Mapping of decl names global variables we have
Daniel Dunbar9986eab2008-07-30 16:32:24 +000074 /// already emitted. Note that the entries in this map are the
Daniel Dunbar3c827a72008-08-05 23:31:02 +000075 /// actual globals and therefore may not be of the same type as the
76 /// decl, they should be bitcasted on retrieval. Also note that the
77 /// globals are keyed on their source name, not the global name
78 /// (which may change with attributes such as asm-labels).
79 llvm::StringMap<llvm::GlobalValue*> GlobalDeclMap;
Daniel Dunbarbd012ff2008-07-29 23:18:29 +000080
81 /// List of static global for which code generation is delayed. When
82 /// the translation unit has been fully processed we will lazily
83 /// emit definitions for only the decls that were actually used.
84 /// This should contain only Function and Var decls, and only those
85 /// which actually define something.
86 std::vector<const ValueDecl*> StaticDecls;
Nate Begeman4c13b7a2008-04-20 06:29:50 +000087
Daniel Dunbar6bfed7e2008-08-01 00:01:51 +000088 /// GlobalCtors - Store the list of global constructors and their
89 /// respective priorities to be emitted when the translation unit is
90 /// complete.
91 CtorList GlobalCtors;
92
93 /// GlobalDtors - Store the list of global destructors and their
94 /// respective priorities to be emitted when the translation unit is
95 /// complete.
96 CtorList GlobalDtors;
97
Nate Begeman532485c2008-04-18 23:43:57 +000098 std::vector<llvm::Constant*> Annotations;
Chris Lattner45e8cbd2007-11-28 05:34:05 +000099
Anders Carlssonc9e20912007-08-21 00:21:21 +0000100 llvm::StringMap<llvm::Constant*> CFConstantStringMap;
Chris Lattner45e8cbd2007-11-28 05:34:05 +0000101 llvm::StringMap<llvm::Constant*> ConstantStringMap;
Anders Carlssonc9e20912007-08-21 00:21:21 +0000102 llvm::Constant *CFConstantStringClassRef;
Chris Lattnerbef20ac2007-08-31 04:31:45 +0000103
104 std::vector<llvm::Function *> BuiltinFunctions;
Reid Spencer5f016e22007-07-11 17:01:13 +0000105public:
Chris Lattner45e8cbd2007-11-28 05:34:05 +0000106 CodeGenModule(ASTContext &C, const LangOptions &Features, llvm::Module &M,
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000107 const llvm::TargetData &TD, Diagnostic &Diags,
Daniel Dunbarf77ac862008-08-11 21:35:06 +0000108 bool GenerateDebugInfo);
Ted Kremenek815c78f2008-08-05 18:50:11 +0000109
Chris Lattner2b94fe32008-03-01 08:45:05 +0000110 ~CodeGenModule();
Reid Spencer5f016e22007-07-11 17:01:13 +0000111
Ted Kremenek815c78f2008-08-05 18:50:11 +0000112 /// Release - Finalize LLVM code generation.
113 void Release();
Daniel Dunbar208ff5e2008-08-11 18:12:00 +0000114
115 /// getObjCRuntime() - Return a reference to the configured
116 /// Objective-C runtime.
117 CGObjCRuntime &getObjCRuntime() {
118 assert(Runtime && "No Objective-C runtime has been configured.");
119 return *Runtime;
120 }
Ted Kremenek815c78f2008-08-05 18:50:11 +0000121
Daniel Dunbar208ff5e2008-08-11 18:12:00 +0000122 /// hasObjCRuntime() - Return true iff an Objective-C runtime has
123 /// been configured.
124 bool hasObjCRuntime() { return !!Runtime; }
125
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000126 CGDebugInfo *getDebugInfo() { return DebugInfo; }
Reid Spencer5f016e22007-07-11 17:01:13 +0000127 ASTContext &getContext() const { return Context; }
Chris Lattner45e8cbd2007-11-28 05:34:05 +0000128 const LangOptions &getLangOptions() const { return Features; }
Reid Spencer5f016e22007-07-11 17:01:13 +0000129 llvm::Module &getModule() const { return TheModule; }
130 CodeGenTypes &getTypes() { return Types; }
Chris Lattnerfb97b032007-12-02 01:40:18 +0000131 Diagnostic &getDiags() const { return Diags; }
Chris Lattner8f925282008-01-03 06:36:51 +0000132 const llvm::TargetData &getTargetData() const { return TheTargetData; }
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000133
134 /// GetAddrOfGlobalVar - Return the llvm::Constant for the address
135 /// of the given global variable.
136 llvm::Constant *GetAddrOfGlobalVar(const VarDecl *D);
137
138 /// GetAddrOfFunction - Return the llvm::Constant for the address
139 /// of the given function.
140 llvm::Constant *GetAddrOfFunction(const FunctionDecl *D);
Chris Lattner58c3f9e2007-12-02 06:27:33 +0000141
Chris Lattnerbef20ac2007-08-31 04:31:45 +0000142 /// getBuiltinLibFunction - Given a builtin id for a function like
143 /// "__builtin_fabsf", return a Function* for "fabsf".
144 ///
145 llvm::Function *getBuiltinLibFunction(unsigned BuiltinID);
Anders Carlssonc9e20912007-08-21 00:21:21 +0000146 llvm::Constant *GetAddrOfConstantCFString(const std::string& str);
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000147
Daniel Dunbar1e049762008-08-10 20:25:57 +0000148 /// getStringForStringLiteral - Return the appropriate bytes for a
149 /// string literal, properly padded to match the literal type.
150 std::string getStringForStringLiteral(const StringLiteral *E);
151
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000152 /// GetAddrOfConstantString -- returns a pointer to the character
153 /// array containing the literal. The result is pointer to array type.
Chris Lattner45e8cbd2007-11-28 05:34:05 +0000154 llvm::Constant *GetAddrOfConstantString(const std::string& str);
Reid Spencer5f016e22007-07-11 17:01:13 +0000155 llvm::Function *getMemCpyFn();
Eli Friedman0c995092008-05-26 12:59:39 +0000156 llvm::Function *getMemMoveFn();
Lauro Ramos Venancio41ef30e2008-02-19 22:01:01 +0000157 llvm::Function *getMemSetFn();
Chris Lattner7acda7c2007-12-18 00:25:38 +0000158 llvm::Function *getIntrinsic(unsigned IID, const llvm::Type **Tys = 0,
159 unsigned NumTys = 0);
Chris Lattnerbef20ac2007-08-31 04:31:45 +0000160
Chris Lattner391d77a2008-03-30 23:03:07 +0000161 void EmitObjCMethod(const ObjCMethodDecl *OMD);
Anton Korobeynikov20ff3102008-06-01 14:13:53 +0000162 void EmitObjCCategoryImpl(const ObjCCategoryImplDecl *OCD);
163 void EmitObjCClassImplementation(const ObjCImplementationDecl *OID);
164 void EmitObjCProtocolImplementation(const ObjCProtocolDecl *PD);
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000165
166 /// EmitGlobal - Emit code for a singal global function or var
167 /// decl. Forward declarations are emitted lazily.
168 void EmitGlobal(const ValueDecl *D);
169
170 void AddAnnotation(llvm::Constant *C) { Annotations.push_back(C); }
171
Chris Lattnerc5b88062008-02-06 05:08:19 +0000172 void UpdateCompletedType(const TagDecl *D);
Lauro Ramos Venancio81373352008-02-26 21:41:45 +0000173 llvm::Constant *EmitConstantExpr(const Expr *E, CodeGenFunction *CGF = 0);
Nate Begeman8bd4afe2008-04-19 04:17:09 +0000174 llvm::Constant *EmitAnnotateAttr(llvm::GlobalValue *GV,
175 const AnnotateAttr *AA, unsigned LineNo);
Anders Carlsson3b1d57b2008-01-26 01:36:00 +0000176
Chris Lattner2c8569d2007-12-02 07:19:18 +0000177 /// WarnUnsupported - Print out a warning that codegen doesn't support the
178 /// specified stmt yet.
Anders Carlsson3b1d57b2008-01-26 01:36:00 +0000179
Chris Lattner2c8569d2007-12-02 07:19:18 +0000180 void WarnUnsupported(const Stmt *S, const char *Type);
181
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000182 /// WarnUnsupported - Print out a warning that codegen doesn't support the
183 /// specified decl yet.
184 void WarnUnsupported(const Decl *D, const char *Type);
185
Dan Gohman4f8d1232008-05-22 00:50:06 +0000186 /// setVisibility - Set the visibility for the given LLVM GlobalValue
187 /// according to the given clang AST visibility value.
188 static void setVisibility(llvm::GlobalValue *GV,
189 VisibilityAttr::VisibilityTypes);
190
Chris Lattner9cd4fe42007-12-02 07:09:19 +0000191private:
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000192 void SetFunctionAttributes(const FunctionDecl *FD,
193 llvm::Function *F,
194 const llvm::FunctionType *FTy);
Nuno Lopesd4cbda62008-06-08 15:45:52 +0000195
196 void SetGlobalValueAttributes(const FunctionDecl *FD,
197 llvm::GlobalValue *GV);
Chris Lattner9cd4fe42007-12-02 07:09:19 +0000198
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000199 void EmitGlobalDefinition(const ValueDecl *D);
200 llvm::GlobalValue *EmitForwardFunctionDefinition(const FunctionDecl *D);
201 void EmitGlobalFunctionDefinition(const FunctionDecl *D);
202 void EmitGlobalVarDefinition(const VarDecl *D);
Daniel Dunbar6bfed7e2008-08-01 00:01:51 +0000203
204 // FIXME: Hardcoding priority here is gross.
205 void AddGlobalCtor(llvm::Function * Ctor, int Priority=65535);
206 void AddGlobalDtor(llvm::Function * Dtor, int Priority=65535);
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000207
Daniel Dunbar6bfed7e2008-08-01 00:01:51 +0000208 /// EmitCtorList - Generates a global array of functions and
209 /// priorities using the given list and name. This array will have
210 /// appending linkage and is suitable for use as a LLVM constructor
211 /// or destructor array.
212 void EmitCtorList(const CtorList &Fns, const char *GlobalName);
213
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000214 void EmitAnnotations(void);
215 void EmitStatics(void);
216
Reid Spencer5f016e22007-07-11 17:01:13 +0000217};
218} // end namespace CodeGen
219} // end namespace clang
220
221#endif