blob: c243590955bdd26ca14d89b2c117696823159777 [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//
10// This is the internal per-translation-unit state used for llvm translation.
11//
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
17#include "CodeGenTypes.h"
Chris Lattnercbfb5512008-03-01 08:45:05 +000018#include "CGObjCRuntime.h"
Dan Gohman4751a3a2008-05-22 00:50:06 +000019#include "clang/AST/Attr.h"
Chris Lattner4b009652007-07-25 00:24:17 +000020#include "llvm/ADT/DenseMap.h"
Anders Carlsson36a04872007-08-21 00:21:21 +000021#include "llvm/ADT/StringMap.h"
Chris Lattner4b009652007-07-25 00:24:17 +000022
23namespace llvm {
24 class Module;
25 class Constant;
26 class Function;
Nate Begeman8a704172008-04-19 04:17:09 +000027 class GlobalValue;
Devang Patela8fccb82007-10-31 20:01:01 +000028 class TargetData;
Eli Friedman9be42212008-06-01 15:54:49 +000029 class FunctionType;
Chris Lattner4b009652007-07-25 00:24:17 +000030}
31
32namespace clang {
33 class ASTContext;
34 class FunctionDecl;
Chris Lattnerb326b172008-03-30 23:03:07 +000035 class ObjCMethodDecl;
Anton Korobeynikovcd5d08d2008-06-01 14:13:53 +000036 class ObjCImplementationDecl;
37 class ObjCCategoryImplDecl;
38 class ObjCProtocolDecl;
Chris Lattner4b009652007-07-25 00:24:17 +000039 class Decl;
Oliver Hunt253e0a72007-12-02 00:11:25 +000040 class Expr;
Chris Lattnercf9c9d02007-12-02 07:19:18 +000041 class Stmt;
Nate Begeman91f52012008-04-20 20:38:08 +000042 class NamedDecl;
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +000043 class ValueDecl;
Chris Lattnerd2df2b52007-12-18 08:16:44 +000044 class VarDecl;
Chris Lattnerdb6be562007-11-28 05:34:05 +000045 struct LangOptions;
Chris Lattner22595b82007-12-02 01:40:18 +000046 class Diagnostic;
Nate Begeman8a704172008-04-19 04:17:09 +000047 class AnnotateAttr;
Chris Lattner4b009652007-07-25 00:24:17 +000048
49namespace CodeGen {
50
Lauro Ramos Venancio934fb022008-02-26 21:41:45 +000051 class CodeGenFunction;
Sanjiv Gupta40e56a12008-05-08 08:54:20 +000052 class CGDebugInfo;
53
Chris Lattner4b009652007-07-25 00:24:17 +000054/// CodeGenModule - This class organizes the cross-module state that is used
55/// while generating LLVM code.
56class CodeGenModule {
Daniel Dunbardd2e9ca2008-08-01 00:01:51 +000057 typedef std::vector< std::pair<llvm::Constant*, int> > CtorList;
58
Chris Lattner4b009652007-07-25 00:24:17 +000059 ASTContext &Context;
Chris Lattnerdb6be562007-11-28 05:34:05 +000060 const LangOptions &Features;
Chris Lattner4b009652007-07-25 00:24:17 +000061 llvm::Module &TheModule;
Devang Patela8fccb82007-10-31 20:01:01 +000062 const llvm::TargetData &TheTargetData;
Chris Lattner22595b82007-12-02 01:40:18 +000063 Diagnostic &Diags;
Chris Lattner4b009652007-07-25 00:24:17 +000064 CodeGenTypes Types;
Ted Kremenek7c65b6c2008-08-05 18:50:11 +000065 CGObjCRuntime* Runtime;
66 CGDebugInfo* DebugInfo;
Chris Lattner4b009652007-07-25 00:24:17 +000067
68 llvm::Function *MemCpyFn;
Eli Friedman8f08a252008-05-26 12:59:39 +000069 llvm::Function *MemMoveFn;
Lauro Ramos Venancioe5bef732008-02-19 22:01:01 +000070 llvm::Function *MemSetFn;
Daniel Dunbar2188c532008-07-30 16:32:24 +000071
72 /// GlobalDeclMap - Mapping of decls to global variables we have
73 /// already emitted. Note that the entries in this map are the
74 /// actual global and therefore may not be of the same type as the
75 /// decl, they should be bitcasted on retrieval.
76 llvm::DenseMap<const Decl*, llvm::GlobalValue*> GlobalDeclMap;
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +000077
78 /// List of static global for which code generation is delayed. When
79 /// the translation unit has been fully processed we will lazily
80 /// emit definitions for only the decls that were actually used.
81 /// This should contain only Function and Var decls, and only those
82 /// which actually define something.
83 std::vector<const ValueDecl*> StaticDecls;
Nate Begemanad320b62008-04-20 06:29:50 +000084
Daniel Dunbardd2e9ca2008-08-01 00:01:51 +000085 /// GlobalCtors - Store the list of global constructors and their
86 /// respective priorities to be emitted when the translation unit is
87 /// complete.
88 CtorList GlobalCtors;
89
90 /// GlobalDtors - Store the list of global destructors and their
91 /// respective priorities to be emitted when the translation unit is
92 /// complete.
93 CtorList GlobalDtors;
94
Nate Begeman52da5c72008-04-18 23:43:57 +000095 std::vector<llvm::Constant*> Annotations;
Chris Lattnerdb6be562007-11-28 05:34:05 +000096
Anders Carlsson36a04872007-08-21 00:21:21 +000097 llvm::StringMap<llvm::Constant*> CFConstantStringMap;
Chris Lattnerdb6be562007-11-28 05:34:05 +000098 llvm::StringMap<llvm::Constant*> ConstantStringMap;
Anders Carlsson36a04872007-08-21 00:21:21 +000099 llvm::Constant *CFConstantStringClassRef;
Chris Lattnerab862cc2007-08-31 04:31:45 +0000100
101 std::vector<llvm::Function *> BuiltinFunctions;
Chris Lattner4b009652007-07-25 00:24:17 +0000102public:
Chris Lattnerdb6be562007-11-28 05:34:05 +0000103 CodeGenModule(ASTContext &C, const LangOptions &Features, llvm::Module &M,
Sanjiv Gupta40e56a12008-05-08 08:54:20 +0000104 const llvm::TargetData &TD, Diagnostic &Diags,
105 bool GenerateDebugInfo);
Ted Kremenek7c65b6c2008-08-05 18:50:11 +0000106
Chris Lattnercbfb5512008-03-01 08:45:05 +0000107 ~CodeGenModule();
Chris Lattner4b009652007-07-25 00:24:17 +0000108
Ted Kremenek7c65b6c2008-08-05 18:50:11 +0000109 /// Release - Finalize LLVM code generation.
110 void Release();
111
Chris Lattnercbfb5512008-03-01 08:45:05 +0000112 CGObjCRuntime *getObjCRuntime() { return Runtime; }
Sanjiv Gupta40e56a12008-05-08 08:54:20 +0000113 CGDebugInfo *getDebugInfo() { return DebugInfo; }
Chris Lattner4b009652007-07-25 00:24:17 +0000114 ASTContext &getContext() const { return Context; }
Chris Lattnerdb6be562007-11-28 05:34:05 +0000115 const LangOptions &getLangOptions() const { return Features; }
Chris Lattner4b009652007-07-25 00:24:17 +0000116 llvm::Module &getModule() const { return TheModule; }
117 CodeGenTypes &getTypes() { return Types; }
Chris Lattner22595b82007-12-02 01:40:18 +0000118 Diagnostic &getDiags() const { return Diags; }
Chris Lattner17c0cb02008-01-03 06:36:51 +0000119 const llvm::TargetData &getTargetData() const { return TheTargetData; }
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +0000120
121 /// GetAddrOfGlobalVar - Return the llvm::Constant for the address
122 /// of the given global variable.
123 llvm::Constant *GetAddrOfGlobalVar(const VarDecl *D);
124
125 /// GetAddrOfFunction - Return the llvm::Constant for the address
126 /// of the given function.
127 llvm::Constant *GetAddrOfFunction(const FunctionDecl *D);
Chris Lattner0e4755d2007-12-02 06:27:33 +0000128
Chris Lattnerab862cc2007-08-31 04:31:45 +0000129 /// getBuiltinLibFunction - Given a builtin id for a function like
130 /// "__builtin_fabsf", return a Function* for "fabsf".
131 ///
132 llvm::Function *getBuiltinLibFunction(unsigned BuiltinID);
Anders Carlsson36a04872007-08-21 00:21:21 +0000133 llvm::Constant *GetAddrOfConstantCFString(const std::string& str);
Chris Lattnera6dcce32008-02-11 00:02:17 +0000134
135 /// GetAddrOfConstantString -- returns a pointer to the character
136 /// array containing the literal. The result is pointer to array type.
Chris Lattnerdb6be562007-11-28 05:34:05 +0000137 llvm::Constant *GetAddrOfConstantString(const std::string& str);
Chris Lattner4b009652007-07-25 00:24:17 +0000138 llvm::Function *getMemCpyFn();
Eli Friedman8f08a252008-05-26 12:59:39 +0000139 llvm::Function *getMemMoveFn();
Lauro Ramos Venancioe5bef732008-02-19 22:01:01 +0000140 llvm::Function *getMemSetFn();
Chris Lattner4b23f942007-12-18 00:25:38 +0000141 llvm::Function *getIntrinsic(unsigned IID, const llvm::Type **Tys = 0,
142 unsigned NumTys = 0);
Chris Lattnerab862cc2007-08-31 04:31:45 +0000143
Chris Lattnerb326b172008-03-30 23:03:07 +0000144 void EmitObjCMethod(const ObjCMethodDecl *OMD);
Anton Korobeynikovcd5d08d2008-06-01 14:13:53 +0000145 void EmitObjCCategoryImpl(const ObjCCategoryImplDecl *OCD);
146 void EmitObjCClassImplementation(const ObjCImplementationDecl *OID);
147 void EmitObjCProtocolImplementation(const ObjCProtocolDecl *PD);
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +0000148
149 /// EmitGlobal - Emit code for a singal global function or var
150 /// decl. Forward declarations are emitted lazily.
151 void EmitGlobal(const ValueDecl *D);
152
153 void AddAnnotation(llvm::Constant *C) { Annotations.push_back(C); }
154
Chris Lattner9ec3ca22008-02-06 05:08:19 +0000155 void UpdateCompletedType(const TagDecl *D);
Lauro Ramos Venancio934fb022008-02-26 21:41:45 +0000156 llvm::Constant *EmitConstantExpr(const Expr *E, CodeGenFunction *CGF = 0);
Nate Begeman8a704172008-04-19 04:17:09 +0000157 llvm::Constant *EmitAnnotateAttr(llvm::GlobalValue *GV,
158 const AnnotateAttr *AA, unsigned LineNo);
Anders Carlssond76cead2008-01-26 01:36:00 +0000159
Chris Lattnercf9c9d02007-12-02 07:19:18 +0000160 /// WarnUnsupported - Print out a warning that codegen doesn't support the
161 /// specified stmt yet.
Anders Carlssond76cead2008-01-26 01:36:00 +0000162
Chris Lattnercf9c9d02007-12-02 07:19:18 +0000163 void WarnUnsupported(const Stmt *S, const char *Type);
164
Chris Lattner806a5f52008-01-12 07:05:38 +0000165 /// WarnUnsupported - Print out a warning that codegen doesn't support the
166 /// specified decl yet.
167 void WarnUnsupported(const Decl *D, const char *Type);
168
Dan Gohman4751a3a2008-05-22 00:50:06 +0000169 /// setVisibility - Set the visibility for the given LLVM GlobalValue
170 /// according to the given clang AST visibility value.
171 static void setVisibility(llvm::GlobalValue *GV,
172 VisibilityAttr::VisibilityTypes);
173
Chris Lattner1a3c1e22007-12-02 07:09:19 +0000174private:
175 /// ReplaceMapValuesWith - This is a really slow and bad function that
176 /// searches for any entries in GlobalDeclMap that point to OldVal, changing
177 /// them to point to NewVal. This is badbadbad, FIXME!
Daniel Dunbar2188c532008-07-30 16:32:24 +0000178 void ReplaceMapValuesWith(llvm::GlobalValue *OldVal, llvm::GlobalValue *NewVal);
Eli Friedman9be42212008-06-01 15:54:49 +0000179
180 void SetFunctionAttributes(const FunctionDecl *FD,
181 llvm::Function *F,
182 const llvm::FunctionType *FTy);
Nuno Lopes78534382008-06-08 15:45:52 +0000183
184 void SetGlobalValueAttributes(const FunctionDecl *FD,
185 llvm::GlobalValue *GV);
Chris Lattner1a3c1e22007-12-02 07:09:19 +0000186
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +0000187 void EmitGlobalDefinition(const ValueDecl *D);
188 llvm::GlobalValue *EmitForwardFunctionDefinition(const FunctionDecl *D);
189 void EmitGlobalFunctionDefinition(const FunctionDecl *D);
190 void EmitGlobalVarDefinition(const VarDecl *D);
Daniel Dunbardd2e9ca2008-08-01 00:01:51 +0000191
192 // FIXME: Hardcoding priority here is gross.
193 void AddGlobalCtor(llvm::Function * Ctor, int Priority=65535);
194 void AddGlobalDtor(llvm::Function * Dtor, int Priority=65535);
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +0000195
Daniel Dunbardd2e9ca2008-08-01 00:01:51 +0000196 /// EmitCtorList - Generates a global array of functions and
197 /// priorities using the given list and name. This array will have
198 /// appending linkage and is suitable for use as a LLVM constructor
199 /// or destructor array.
200 void EmitCtorList(const CtorList &Fns, const char *GlobalName);
201
Daniel Dunbar7bf5b3d2008-07-29 23:18:29 +0000202 void EmitAnnotations(void);
203 void EmitStatics(void);
204
Chris Lattner4b009652007-07-25 00:24:17 +0000205};
206} // end namespace CodeGen
207} // end namespace clang
208
209#endif