blob: 1fb2cf7ae024db2b37e2a9a822c4145b7a2baaa1 [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"
Chris Lattner2b94fe32008-03-01 08:45:05 +000018#include "CGObjCRuntime.h"
Dan Gohman4f8d1232008-05-22 00:50:06 +000019#include "clang/AST/Attr.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include "llvm/ADT/DenseMap.h"
Anders Carlssonc9e20912007-08-21 00:21:21 +000021#include "llvm/ADT/StringMap.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022
23namespace llvm {
24 class Module;
25 class Constant;
26 class Function;
Nate Begeman8bd4afe2008-04-19 04:17:09 +000027 class GlobalValue;
Devang Patel7a4718e2007-10-31 20:01:01 +000028 class TargetData;
Eli Friedmanff4a2d92008-06-01 15:54:49 +000029 class FunctionType;
Reid Spencer5f016e22007-07-11 17:01:13 +000030}
31
32namespace clang {
33 class ASTContext;
34 class FunctionDecl;
Chris Lattner391d77a2008-03-30 23:03:07 +000035 class ObjCMethodDecl;
Anton Korobeynikov20ff3102008-06-01 14:13:53 +000036 class ObjCImplementationDecl;
37 class ObjCCategoryImplDecl;
38 class ObjCProtocolDecl;
Reid Spencer5f016e22007-07-11 17:01:13 +000039 class Decl;
Oliver Hunt28247232007-12-02 00:11:25 +000040 class Expr;
Chris Lattner2c8569d2007-12-02 07:19:18 +000041 class Stmt;
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;
53
Reid Spencer5f016e22007-07-11 17:01:13 +000054/// CodeGenModule - This class organizes the cross-module state that is used
55/// while generating LLVM code.
56class CodeGenModule {
Daniel Dunbar6bfed7e2008-08-01 00:01:51 +000057 typedef std::vector< std::pair<llvm::Constant*, int> > CtorList;
58
Reid Spencer5f016e22007-07-11 17:01:13 +000059 ASTContext &Context;
Chris Lattner45e8cbd2007-11-28 05:34:05 +000060 const LangOptions &Features;
Reid Spencer5f016e22007-07-11 17:01:13 +000061 llvm::Module &TheModule;
Devang Patel7a4718e2007-10-31 20:01:01 +000062 const llvm::TargetData &TheTargetData;
Chris Lattnerfb97b032007-12-02 01:40:18 +000063 Diagnostic &Diags;
Reid Spencer5f016e22007-07-11 17:01:13 +000064 CodeGenTypes Types;
Chris Lattner2b94fe32008-03-01 08:45:05 +000065 CGObjCRuntime *Runtime;
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000066 CGDebugInfo *DebugInfo;
Reid Spencer5f016e22007-07-11 17:01:13 +000067
68 llvm::Function *MemCpyFn;
Eli Friedman0c995092008-05-26 12:59:39 +000069 llvm::Function *MemMoveFn;
Lauro Ramos Venancio41ef30e2008-02-19 22:01:01 +000070 llvm::Function *MemSetFn;
Daniel Dunbar9986eab2008-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 Dunbarbd012ff2008-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 Begeman4c13b7a2008-04-20 06:29:50 +000084
Daniel Dunbar6bfed7e2008-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 Begeman532485c2008-04-18 23:43:57 +000095 std::vector<llvm::Constant*> Annotations;
Chris Lattner45e8cbd2007-11-28 05:34:05 +000096
Anders Carlssonc9e20912007-08-21 00:21:21 +000097 llvm::StringMap<llvm::Constant*> CFConstantStringMap;
Chris Lattner45e8cbd2007-11-28 05:34:05 +000098 llvm::StringMap<llvm::Constant*> ConstantStringMap;
Anders Carlssonc9e20912007-08-21 00:21:21 +000099 llvm::Constant *CFConstantStringClassRef;
Chris Lattnerbef20ac2007-08-31 04:31:45 +0000100
101 std::vector<llvm::Function *> BuiltinFunctions;
Reid Spencer5f016e22007-07-11 17:01:13 +0000102public:
Chris Lattner45e8cbd2007-11-28 05:34:05 +0000103 CodeGenModule(ASTContext &C, const LangOptions &Features, llvm::Module &M,
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000104 const llvm::TargetData &TD, Diagnostic &Diags,
105 bool GenerateDebugInfo);
Chris Lattner2b94fe32008-03-01 08:45:05 +0000106 ~CodeGenModule();
Reid Spencer5f016e22007-07-11 17:01:13 +0000107
Chris Lattner2b94fe32008-03-01 08:45:05 +0000108 CGObjCRuntime *getObjCRuntime() { return Runtime; }
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +0000109 CGDebugInfo *getDebugInfo() { return DebugInfo; }
Reid Spencer5f016e22007-07-11 17:01:13 +0000110 ASTContext &getContext() const { return Context; }
Chris Lattner45e8cbd2007-11-28 05:34:05 +0000111 const LangOptions &getLangOptions() const { return Features; }
Reid Spencer5f016e22007-07-11 17:01:13 +0000112 llvm::Module &getModule() const { return TheModule; }
113 CodeGenTypes &getTypes() { return Types; }
Chris Lattnerfb97b032007-12-02 01:40:18 +0000114 Diagnostic &getDiags() const { return Diags; }
Chris Lattner8f925282008-01-03 06:36:51 +0000115 const llvm::TargetData &getTargetData() const { return TheTargetData; }
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000116
117 /// GetAddrOfGlobalVar - Return the llvm::Constant for the address
118 /// of the given global variable.
119 llvm::Constant *GetAddrOfGlobalVar(const VarDecl *D);
120
121 /// GetAddrOfFunction - Return the llvm::Constant for the address
122 /// of the given function.
123 llvm::Constant *GetAddrOfFunction(const FunctionDecl *D);
Chris Lattner58c3f9e2007-12-02 06:27:33 +0000124
Chris Lattnerbef20ac2007-08-31 04:31:45 +0000125 /// getBuiltinLibFunction - Given a builtin id for a function like
126 /// "__builtin_fabsf", return a Function* for "fabsf".
127 ///
128 llvm::Function *getBuiltinLibFunction(unsigned BuiltinID);
Anders Carlssonc9e20912007-08-21 00:21:21 +0000129 llvm::Constant *GetAddrOfConstantCFString(const std::string& str);
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000130
131 /// GetAddrOfConstantString -- returns a pointer to the character
132 /// array containing the literal. The result is pointer to array type.
Chris Lattner45e8cbd2007-11-28 05:34:05 +0000133 llvm::Constant *GetAddrOfConstantString(const std::string& str);
Reid Spencer5f016e22007-07-11 17:01:13 +0000134 llvm::Function *getMemCpyFn();
Eli Friedman0c995092008-05-26 12:59:39 +0000135 llvm::Function *getMemMoveFn();
Lauro Ramos Venancio41ef30e2008-02-19 22:01:01 +0000136 llvm::Function *getMemSetFn();
Chris Lattner7acda7c2007-12-18 00:25:38 +0000137 llvm::Function *getIntrinsic(unsigned IID, const llvm::Type **Tys = 0,
138 unsigned NumTys = 0);
Chris Lattnerbef20ac2007-08-31 04:31:45 +0000139
Chris Lattner391d77a2008-03-30 23:03:07 +0000140 void EmitObjCMethod(const ObjCMethodDecl *OMD);
Anton Korobeynikov20ff3102008-06-01 14:13:53 +0000141 void EmitObjCCategoryImpl(const ObjCCategoryImplDecl *OCD);
142 void EmitObjCClassImplementation(const ObjCImplementationDecl *OID);
143 void EmitObjCProtocolImplementation(const ObjCProtocolDecl *PD);
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000144
145 /// EmitGlobal - Emit code for a singal global function or var
146 /// decl. Forward declarations are emitted lazily.
147 void EmitGlobal(const ValueDecl *D);
148
149 void AddAnnotation(llvm::Constant *C) { Annotations.push_back(C); }
150
Chris Lattnerc5b88062008-02-06 05:08:19 +0000151 void UpdateCompletedType(const TagDecl *D);
Lauro Ramos Venancio81373352008-02-26 21:41:45 +0000152 llvm::Constant *EmitConstantExpr(const Expr *E, CodeGenFunction *CGF = 0);
Nate Begeman8bd4afe2008-04-19 04:17:09 +0000153 llvm::Constant *EmitAnnotateAttr(llvm::GlobalValue *GV,
154 const AnnotateAttr *AA, unsigned LineNo);
Anders Carlsson3b1d57b2008-01-26 01:36:00 +0000155
Chris Lattner2c8569d2007-12-02 07:19:18 +0000156 /// WarnUnsupported - Print out a warning that codegen doesn't support the
157 /// specified stmt yet.
Anders Carlsson3b1d57b2008-01-26 01:36:00 +0000158
Chris Lattner2c8569d2007-12-02 07:19:18 +0000159 void WarnUnsupported(const Stmt *S, const char *Type);
160
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000161 /// WarnUnsupported - Print out a warning that codegen doesn't support the
162 /// specified decl yet.
163 void WarnUnsupported(const Decl *D, const char *Type);
164
Dan Gohman4f8d1232008-05-22 00:50:06 +0000165 /// setVisibility - Set the visibility for the given LLVM GlobalValue
166 /// according to the given clang AST visibility value.
167 static void setVisibility(llvm::GlobalValue *GV,
168 VisibilityAttr::VisibilityTypes);
169
Chris Lattner9cd4fe42007-12-02 07:09:19 +0000170private:
171 /// ReplaceMapValuesWith - This is a really slow and bad function that
172 /// searches for any entries in GlobalDeclMap that point to OldVal, changing
173 /// them to point to NewVal. This is badbadbad, FIXME!
Daniel Dunbar9986eab2008-07-30 16:32:24 +0000174 void ReplaceMapValuesWith(llvm::GlobalValue *OldVal, llvm::GlobalValue *NewVal);
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000175
176 void SetFunctionAttributes(const FunctionDecl *FD,
177 llvm::Function *F,
178 const llvm::FunctionType *FTy);
Nuno Lopesd4cbda62008-06-08 15:45:52 +0000179
180 void SetGlobalValueAttributes(const FunctionDecl *FD,
181 llvm::GlobalValue *GV);
Chris Lattner9cd4fe42007-12-02 07:09:19 +0000182
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000183 void EmitGlobalDefinition(const ValueDecl *D);
184 llvm::GlobalValue *EmitForwardFunctionDefinition(const FunctionDecl *D);
185 void EmitGlobalFunctionDefinition(const FunctionDecl *D);
186 void EmitGlobalVarDefinition(const VarDecl *D);
Daniel Dunbar6bfed7e2008-08-01 00:01:51 +0000187
188 // FIXME: Hardcoding priority here is gross.
189 void AddGlobalCtor(llvm::Function * Ctor, int Priority=65535);
190 void AddGlobalDtor(llvm::Function * Dtor, int Priority=65535);
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000191
Daniel Dunbar6bfed7e2008-08-01 00:01:51 +0000192 /// EmitCtorList - Generates a global array of functions and
193 /// priorities using the given list and name. This array will have
194 /// appending linkage and is suitable for use as a LLVM constructor
195 /// or destructor array.
196 void EmitCtorList(const CtorList &Fns, const char *GlobalName);
197
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000198 void EmitAnnotations(void);
199 void EmitStatics(void);
200
Reid Spencer5f016e22007-07-11 17:01:13 +0000201};
202} // end namespace CodeGen
203} // end namespace clang
204
205#endif