blob: a82324834b8de8c9988e92d92da7a386acdc96f9 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- CodeGenModule.cpp - Emit LLVM Code from ASTs for a Module --------===//
2//
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 coordinates the per-module state used while generating code.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenModule.h"
Chris Lattnerbd360642009-03-26 05:00:52 +000015#include "CGDebugInfo.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000016#include "CodeGenFunction.h"
Daniel Dunbar0dbe2272008-09-08 21:33:45 +000017#include "CGCall.h"
Daniel Dunbaraf2f62c2008-08-13 00:59:25 +000018#include "CGObjCRuntime.h"
Douglas Gregor5f2bfd42009-02-13 00:10:09 +000019#include "Mangle.h"
Chris Lattnerbd360642009-03-26 05:00:52 +000020#include "clang/Frontend/CompileOptions.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021#include "clang/AST/ASTContext.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000022#include "clang/AST/DeclObjC.h"
Chris Lattner21ef7ae2008-11-04 16:51:42 +000023#include "clang/AST/DeclCXX.h"
Chris Lattner1b63e4f2009-06-14 01:54:56 +000024#include "clang/Basic/Builtins.h"
Chris Lattner2c8569d2007-12-02 07:19:18 +000025#include "clang/Basic/Diagnostic.h"
Nate Begeman8bd4afe2008-04-19 04:17:09 +000026#include "clang/Basic/SourceManager.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000027#include "clang/Basic/TargetInfo.h"
Steve Naroffe9b7d8a2009-04-01 15:50:34 +000028#include "clang/Basic/ConvertUTF.h"
Nate Begemanec9426c2008-03-09 03:09:36 +000029#include "llvm/CallingConv.h"
Chris Lattnerbef20ac2007-08-31 04:31:45 +000030#include "llvm/Module.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000031#include "llvm/Intrinsics.h"
Anton Korobeynikov20ff3102008-06-01 14:13:53 +000032#include "llvm/Target/TargetData.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000033using namespace clang;
34using namespace CodeGen;
35
36
Chris Lattnerbd360642009-03-26 05:00:52 +000037CodeGenModule::CodeGenModule(ASTContext &C, const CompileOptions &compileOpts,
Chris Lattnerfb97b032007-12-02 01:40:18 +000038 llvm::Module &M, const llvm::TargetData &TD,
Chris Lattnerbd360642009-03-26 05:00:52 +000039 Diagnostic &diags)
40 : BlockModule(C, M, TD, Types, *this), Context(C),
41 Features(C.getLangOptions()), CompileOpts(compileOpts), TheModule(M),
Mike Stump2a998142009-03-04 18:17:45 +000042 TheTargetData(TD), Diags(diags), Types(C, M, TD), Runtime(0),
43 MemCpyFn(0), MemMoveFn(0), MemSetFn(0), CFConstantStringClassRef(0) {
Daniel Dunbar208ff5e2008-08-11 18:12:00 +000044
Chris Lattner3c8f1532009-03-21 07:12:05 +000045 if (!Features.ObjC1)
46 Runtime = 0;
47 else if (!Features.NeXTRuntime)
48 Runtime = CreateGNUObjCRuntime(*this);
49 else if (Features.ObjCNonFragileABI)
50 Runtime = CreateMacNonFragileABIObjCRuntime(*this);
51 else
52 Runtime = CreateMacObjCRuntime(*this);
Sanjiv Guptae8b9f5b2008-05-08 08:54:20 +000053
54 // If debug info generation is enabled, create the CGDebugInfo object.
Chris Lattnerbd360642009-03-26 05:00:52 +000055 DebugInfo = CompileOpts.DebugInfo ? new CGDebugInfo(this) : 0;
Chris Lattner2b94fe32008-03-01 08:45:05 +000056}
57
58CodeGenModule::~CodeGenModule() {
Ted Kremenek815c78f2008-08-05 18:50:11 +000059 delete Runtime;
60 delete DebugInfo;
61}
62
63void CodeGenModule::Release() {
Chris Lattner82227ff2009-03-22 21:21:57 +000064 EmitDeferred();
Daniel Dunbar208ff5e2008-08-11 18:12:00 +000065 if (Runtime)
66 if (llvm::Function *ObjCInitFunction = Runtime->ModuleInitFunction())
67 AddGlobalCtor(ObjCInitFunction);
Daniel Dunbar6bfed7e2008-08-01 00:01:51 +000068 EmitCtorList(GlobalCtors, "llvm.global_ctors");
69 EmitCtorList(GlobalDtors, "llvm.global_dtors");
Nate Begeman532485c2008-04-18 23:43:57 +000070 EmitAnnotations();
Daniel Dunbar02698712009-02-13 20:29:50 +000071 EmitLLVMUsed();
Daniel Dunbarf1968f22008-10-01 00:49:24 +000072}
73
Daniel Dunbar488e9932008-08-16 00:56:44 +000074/// ErrorUnsupported - Print out an error that codegen doesn't support the
Chris Lattner2c8569d2007-12-02 07:19:18 +000075/// specified stmt yet.
Daniel Dunbar90df4b62008-09-04 03:43:08 +000076void CodeGenModule::ErrorUnsupported(const Stmt *S, const char *Type,
77 bool OmitOnError) {
78 if (OmitOnError && getDiags().hasErrorOccurred())
79 return;
Daniel Dunbar488e9932008-08-16 00:56:44 +000080 unsigned DiagID = getDiags().getCustomDiagID(Diagnostic::Error,
Daniel Dunbar56b80012009-02-06 19:18:03 +000081 "cannot compile this %0 yet");
Chris Lattner2c8569d2007-12-02 07:19:18 +000082 std::string Msg = Type;
Chris Lattner0a14eee2008-11-18 07:04:44 +000083 getDiags().Report(Context.getFullLoc(S->getLocStart()), DiagID)
84 << Msg << S->getSourceRange();
Chris Lattner2c8569d2007-12-02 07:19:18 +000085}
Chris Lattner58c3f9e2007-12-02 06:27:33 +000086
Daniel Dunbar488e9932008-08-16 00:56:44 +000087/// ErrorUnsupported - Print out an error that codegen doesn't support the
Chris Lattnerc6fdc342008-01-12 07:05:38 +000088/// specified decl yet.
Daniel Dunbar90df4b62008-09-04 03:43:08 +000089void CodeGenModule::ErrorUnsupported(const Decl *D, const char *Type,
90 bool OmitOnError) {
91 if (OmitOnError && getDiags().hasErrorOccurred())
92 return;
Daniel Dunbar488e9932008-08-16 00:56:44 +000093 unsigned DiagID = getDiags().getCustomDiagID(Diagnostic::Error,
Daniel Dunbar56b80012009-02-06 19:18:03 +000094 "cannot compile this %0 yet");
Chris Lattnerc6fdc342008-01-12 07:05:38 +000095 std::string Msg = Type;
Chris Lattner0a14eee2008-11-18 07:04:44 +000096 getDiags().Report(Context.getFullLoc(D->getLocation()), DiagID) << Msg;
Chris Lattnerc6fdc342008-01-12 07:05:38 +000097}
98
Daniel Dunbar04d40782009-04-14 06:00:08 +000099LangOptions::VisibilityMode
100CodeGenModule::getDeclVisibilityMode(const Decl *D) const {
101 if (const VarDecl *VD = dyn_cast<VarDecl>(D))
102 if (VD->getStorageClass() == VarDecl::PrivateExtern)
103 return LangOptions::Hidden;
104
Douglas Gregor68584ed2009-06-18 16:11:24 +0000105 if (const VisibilityAttr *attr = D->getAttr<VisibilityAttr>(getContext())) {
Daniel Dunbar04d40782009-04-14 06:00:08 +0000106 switch (attr->getVisibility()) {
107 default: assert(0 && "Unknown visibility!");
108 case VisibilityAttr::DefaultVisibility:
109 return LangOptions::Default;
110 case VisibilityAttr::HiddenVisibility:
111 return LangOptions::Hidden;
112 case VisibilityAttr::ProtectedVisibility:
113 return LangOptions::Protected;
114 }
115 }
116
117 return getLangOptions().getVisibilityMode();
118}
119
120void CodeGenModule::setGlobalVisibility(llvm::GlobalValue *GV,
121 const Decl *D) const {
122 // Internal definitions always have default visibility.
Chris Lattnerdf102fc2009-04-14 05:27:13 +0000123 if (GV->hasLocalLinkage()) {
Daniel Dunbar7e714cd2009-04-10 20:26:50 +0000124 GV->setVisibility(llvm::GlobalValue::DefaultVisibility);
Daniel Dunbar6ab187a2009-04-07 05:48:37 +0000125 return;
Daniel Dunbar7e714cd2009-04-10 20:26:50 +0000126 }
Daniel Dunbar6ab187a2009-04-07 05:48:37 +0000127
Daniel Dunbar04d40782009-04-14 06:00:08 +0000128 switch (getDeclVisibilityMode(D)) {
Dan Gohman4f8d1232008-05-22 00:50:06 +0000129 default: assert(0 && "Unknown visibility!");
Daniel Dunbar04d40782009-04-14 06:00:08 +0000130 case LangOptions::Default:
131 return GV->setVisibility(llvm::GlobalValue::DefaultVisibility);
132 case LangOptions::Hidden:
133 return GV->setVisibility(llvm::GlobalValue::HiddenVisibility);
134 case LangOptions::Protected:
135 return GV->setVisibility(llvm::GlobalValue::ProtectedVisibility);
Dan Gohman4f8d1232008-05-22 00:50:06 +0000136 }
137}
138
Anders Carlsson2a131fb2009-05-05 04:44:02 +0000139const char *CodeGenModule::getMangledName(const GlobalDecl &GD) {
140 const NamedDecl *ND = GD.getDecl();
141
142 if (const CXXConstructorDecl *D = dyn_cast<CXXConstructorDecl>(ND))
143 return getMangledCXXCtorName(D, GD.getCtorType());
144 if (const CXXDestructorDecl *D = dyn_cast<CXXDestructorDecl>(ND))
145 return getMangledCXXDtorName(D, GD.getDtorType());
146
147 return getMangledName(ND);
148}
149
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000150/// \brief Retrieves the mangled name for the given declaration.
151///
152/// If the given declaration requires a mangled name, returns an
Chris Lattnerc50689b2009-03-21 06:31:09 +0000153/// const char* containing the mangled name. Otherwise, returns
154/// the unmangled name.
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000155///
Douglas Gregor6ec36682009-02-18 23:53:56 +0000156const char *CodeGenModule::getMangledName(const NamedDecl *ND) {
Chris Lattnerc50689b2009-03-21 06:31:09 +0000157 // In C, functions with no attributes never need to be mangled. Fastpath them.
158 if (!getLangOptions().CPlusPlus && !ND->hasAttrs()) {
159 assert(ND->getIdentifier() && "Attempt to mangle unnamed decl.");
Chris Lattner3c8f1532009-03-21 07:12:05 +0000160 return ND->getNameAsCString();
Chris Lattnerc50689b2009-03-21 06:31:09 +0000161 }
162
Douglas Gregor6ec36682009-02-18 23:53:56 +0000163 llvm::SmallString<256> Name;
164 llvm::raw_svector_ostream Out(Name);
Daniel Dunbarfe345572009-03-05 22:59:19 +0000165 if (!mangleName(ND, Context, Out)) {
166 assert(ND->getIdentifier() && "Attempt to mangle unnamed decl.");
Chris Lattner3c8f1532009-03-21 07:12:05 +0000167 return ND->getNameAsCString();
Daniel Dunbarfe345572009-03-05 22:59:19 +0000168 }
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000169
Douglas Gregor6ec36682009-02-18 23:53:56 +0000170 Name += '\0';
Anders Carlsson95d4e5d2009-04-15 15:55:24 +0000171 return UniqueMangledName(Name.begin(), Name.end());
172}
173
174const char *CodeGenModule::UniqueMangledName(const char *NameStart,
175 const char *NameEnd) {
176 assert(*(NameEnd - 1) == '\0' && "Mangled name must be null terminated!");
177
178 return MangledNames.GetOrCreateValue(NameStart, NameEnd).getKeyData();
Douglas Gregor5f2bfd42009-02-13 00:10:09 +0000179}
180
Chris Lattner6d397602008-03-14 17:18:18 +0000181/// AddGlobalCtor - Add a function to the list that will be called before
182/// main() runs.
Daniel Dunbar6bfed7e2008-08-01 00:01:51 +0000183void CodeGenModule::AddGlobalCtor(llvm::Function * Ctor, int Priority) {
Daniel Dunbar49988882009-01-13 02:25:00 +0000184 // FIXME: Type coercion of void()* types.
Daniel Dunbar6bfed7e2008-08-01 00:01:51 +0000185 GlobalCtors.push_back(std::make_pair(Ctor, Priority));
Chris Lattner6d397602008-03-14 17:18:18 +0000186}
187
Daniel Dunbar6bfed7e2008-08-01 00:01:51 +0000188/// AddGlobalDtor - Add a function to the list that will be called
189/// when the module is unloaded.
190void CodeGenModule::AddGlobalDtor(llvm::Function * Dtor, int Priority) {
Daniel Dunbar49988882009-01-13 02:25:00 +0000191 // FIXME: Type coercion of void()* types.
Daniel Dunbar6bfed7e2008-08-01 00:01:51 +0000192 GlobalDtors.push_back(std::make_pair(Dtor, Priority));
193}
194
195void CodeGenModule::EmitCtorList(const CtorList &Fns, const char *GlobalName) {
196 // Ctor function type is void()*.
197 llvm::FunctionType* CtorFTy =
198 llvm::FunctionType::get(llvm::Type::VoidTy,
199 std::vector<const llvm::Type*>(),
200 false);
201 llvm::Type *CtorPFTy = llvm::PointerType::getUnqual(CtorFTy);
202
203 // Get the type of a ctor entry, { i32, void ()* }.
Chris Lattner572cf092008-03-19 05:24:56 +0000204 llvm::StructType* CtorStructTy =
Daniel Dunbar6bfed7e2008-08-01 00:01:51 +0000205 llvm::StructType::get(llvm::Type::Int32Ty,
206 llvm::PointerType::getUnqual(CtorFTy), NULL);
Chris Lattner6d397602008-03-14 17:18:18 +0000207
Daniel Dunbar6bfed7e2008-08-01 00:01:51 +0000208 // Construct the constructor and destructor arrays.
209 std::vector<llvm::Constant*> Ctors;
210 for (CtorList::const_iterator I = Fns.begin(), E = Fns.end(); I != E; ++I) {
211 std::vector<llvm::Constant*> S;
212 S.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, I->second, false));
213 S.push_back(llvm::ConstantExpr::getBitCast(I->first, CtorPFTy));
214 Ctors.push_back(llvm::ConstantStruct::get(CtorStructTy, S));
Chris Lattner6d397602008-03-14 17:18:18 +0000215 }
Daniel Dunbar6bfed7e2008-08-01 00:01:51 +0000216
217 if (!Ctors.empty()) {
218 llvm::ArrayType *AT = llvm::ArrayType::get(CtorStructTy, Ctors.size());
219 new llvm::GlobalVariable(AT, false,
220 llvm::GlobalValue::AppendingLinkage,
221 llvm::ConstantArray::get(AT, Ctors),
222 GlobalName,
223 &TheModule);
224 }
Chris Lattner6d397602008-03-14 17:18:18 +0000225}
226
Nate Begeman532485c2008-04-18 23:43:57 +0000227void CodeGenModule::EmitAnnotations() {
228 if (Annotations.empty())
229 return;
230
231 // Create a new global variable for the ConstantStruct in the Module.
232 llvm::Constant *Array =
233 llvm::ConstantArray::get(llvm::ArrayType::get(Annotations[0]->getType(),
234 Annotations.size()),
235 Annotations);
236 llvm::GlobalValue *gv =
237 new llvm::GlobalVariable(Array->getType(), false,
238 llvm::GlobalValue::AppendingLinkage, Array,
239 "llvm.global.annotations", &TheModule);
240 gv->setSection("llvm.metadata");
241}
242
Chris Lattner86daeee2009-04-14 16:44:36 +0000243static CodeGenModule::GVALinkage
Douglas Gregor68584ed2009-06-18 16:11:24 +0000244GetLinkageForFunction(ASTContext &Context, const FunctionDecl *FD,
245 const LangOptions &Features) {
Anders Carlsson167b8242009-05-15 18:35:39 +0000246 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
247 // C++ member functions defined inside the class are always inline.
Argyrios Kyrtzidisf5cecfb2009-06-17 22:49:50 +0000248 if (MD->isInline() || !MD->isOutOfLine())
Anders Carlsson167b8242009-05-15 18:35:39 +0000249 return CodeGenModule::GVA_CXXInline;
250
251 return CodeGenModule::GVA_StrongExternal;
252 }
253
Eli Friedman43907e82009-05-03 19:01:39 +0000254 // "static" functions get internal linkage.
Eli Friedman5e222132009-05-03 18:13:43 +0000255 if (FD->getStorageClass() == FunctionDecl::Static)
Daniel Dunbar7c65e992009-04-14 08:05:55 +0000256 return CodeGenModule::GVA_Internal;
257
Chris Lattner005eedc2009-05-12 20:26:52 +0000258 if (!FD->isInline())
Chris Lattnercbb8fc12009-04-14 20:25:53 +0000259 return CodeGenModule::GVA_StrongExternal;
Chris Lattner86daeee2009-04-14 16:44:36 +0000260
Chris Lattnerd55a71d2009-04-22 00:03:30 +0000261 // If the inline function explicitly has the GNU inline attribute on it, or if
262 // this is C89 mode, we use to GNU semantics.
Douglas Gregor9f9bf252009-04-28 06:37:30 +0000263 if (!Features.C99 && !Features.CPlusPlus) {
Chris Lattnerd55a71d2009-04-22 00:03:30 +0000264 // extern inline in GNU mode is like C99 inline.
Douglas Gregor9f9bf252009-04-28 06:37:30 +0000265 if (FD->getStorageClass() == FunctionDecl::Extern)
266 return CodeGenModule::GVA_C99Inline;
267 // Normal inline is a strong symbol.
268 return CodeGenModule::GVA_StrongExternal;
Douglas Gregor68584ed2009-06-18 16:11:24 +0000269 } else if (FD->hasActiveGNUInlineAttribute(Context)) {
Douglas Gregor9f9bf252009-04-28 06:37:30 +0000270 // GCC in C99 mode seems to use a different decision-making
271 // process for extern inline, which factors in previous
272 // declarations.
Douglas Gregor68584ed2009-06-18 16:11:24 +0000273 if (FD->isExternGNUInline(Context))
Chris Lattnerd55a71d2009-04-22 00:03:30 +0000274 return CodeGenModule::GVA_C99Inline;
275 // Normal inline is a strong symbol.
Chris Lattnercbb8fc12009-04-14 20:25:53 +0000276 return CodeGenModule::GVA_StrongExternal;
Chris Lattnerd55a71d2009-04-22 00:03:30 +0000277 }
Chris Lattnercbb8fc12009-04-14 20:25:53 +0000278
Chris Lattner86daeee2009-04-14 16:44:36 +0000279 // The definition of inline changes based on the language. Note that we
280 // have already handled "static inline" above, with the GVA_Internal case.
Chris Lattnercbb8fc12009-04-14 20:25:53 +0000281 if (Features.CPlusPlus) // inline and extern inline.
Chris Lattner86daeee2009-04-14 16:44:36 +0000282 return CodeGenModule::GVA_CXXInline;
283
Chris Lattnerd55a71d2009-04-22 00:03:30 +0000284 assert(Features.C99 && "Must be in C99 mode if not in C89 or C++ mode");
Douglas Gregorb3efa982009-04-23 18:22:55 +0000285 if (FD->isC99InlineDefinition())
286 return CodeGenModule::GVA_C99Inline;
287
288 return CodeGenModule::GVA_StrongExternal;
Daniel Dunbar7c65e992009-04-14 08:05:55 +0000289}
290
291/// SetFunctionDefinitionAttributes - Set attributes for a global.
Daniel Dunbarb97b6922009-04-14 06:19:49 +0000292///
Mike Stumpf5408fe2009-05-16 07:57:57 +0000293/// FIXME: This is currently only done for aliases and functions, but not for
294/// variables (these details are set in EmitGlobalVarDefinition for variables).
Daniel Dunbar7c65e992009-04-14 08:05:55 +0000295void CodeGenModule::SetFunctionDefinitionAttributes(const FunctionDecl *D,
296 llvm::GlobalValue *GV) {
Douglas Gregor68584ed2009-06-18 16:11:24 +0000297 GVALinkage Linkage = GetLinkageForFunction(getContext(), D, Features);
Daniel Dunbar7c65e992009-04-14 08:05:55 +0000298
Daniel Dunbar55d6f502009-04-14 07:19:20 +0000299 if (Linkage == GVA_Internal) {
Chris Lattner9f942792009-04-14 05:33:52 +0000300 GV->setLinkage(llvm::Function::InternalLinkage);
Douglas Gregor68584ed2009-06-18 16:11:24 +0000301 } else if (D->hasAttr<DLLExportAttr>(getContext())) {
Daniel Dunbar7c65e992009-04-14 08:05:55 +0000302 GV->setLinkage(llvm::Function::DLLExportLinkage);
Douglas Gregor68584ed2009-06-18 16:11:24 +0000303 } else if (D->hasAttr<WeakAttr>(getContext())) {
Chris Lattner44b0bc02009-04-14 06:04:17 +0000304 GV->setLinkage(llvm::Function::WeakAnyLinkage);
Chris Lattnercbb8fc12009-04-14 20:25:53 +0000305 } else if (Linkage == GVA_C99Inline) {
306 // In C99 mode, 'inline' functions are guaranteed to have a strong
307 // definition somewhere else, so we can use available_externally linkage.
Chris Lattnerd9d049a2009-04-14 06:27:57 +0000308 GV->setLinkage(llvm::Function::AvailableExternallyLinkage);
Chris Lattner86daeee2009-04-14 16:44:36 +0000309 } else if (Linkage == GVA_CXXInline) {
310 // In C++, the compiler has to emit a definition in every translation unit
311 // that references the function. We should use linkonce_odr because
312 // a) if all references in this translation unit are optimized away, we
313 // don't need to codegen it. b) if the function persists, it needs to be
314 // merged with other definitions. c) C++ has the ODR, so we know the
315 // definition is dependable.
316 GV->setLinkage(llvm::Function::LinkOnceODRLinkage);
Daniel Dunbar7c65e992009-04-14 08:05:55 +0000317 } else {
Chris Lattnercbb8fc12009-04-14 20:25:53 +0000318 assert(Linkage == GVA_StrongExternal);
319 // Otherwise, we have strong external linkage.
Daniel Dunbar7c65e992009-04-14 08:05:55 +0000320 GV->setLinkage(llvm::Function::ExternalLinkage);
Daniel Dunbar0dbe2272008-09-08 21:33:45 +0000321 }
Nuno Lopesd4cbda62008-06-08 15:45:52 +0000322
Daniel Dunbar7c65e992009-04-14 08:05:55 +0000323 SetCommonAttributes(D, GV);
Nuno Lopesd4cbda62008-06-08 15:45:52 +0000324}
325
Daniel Dunbar7dbd8192009-04-14 07:08:30 +0000326void CodeGenModule::SetLLVMFunctionAttributes(const Decl *D,
327 const CGFunctionInfo &Info,
328 llvm::Function *F) {
Devang Patel761d7f72008-09-25 21:02:23 +0000329 AttributeListType AttributeList;
Daniel Dunbar88b53962009-02-02 22:03:45 +0000330 ConstructAttributeList(Info, D, AttributeList);
Eli Friedmanc134fcb2008-06-04 19:41:28 +0000331
Devang Patel761d7f72008-09-25 21:02:23 +0000332 F->setAttributes(llvm::AttrListPtr::get(AttributeList.begin(),
333 AttributeList.size()));
Eli Friedmanff4a2d92008-06-01 15:54:49 +0000334
335 // Set the appropriate calling convention for the Function.
Douglas Gregor68584ed2009-06-18 16:11:24 +0000336 if (D->hasAttr<FastCallAttr>(getContext()))
Anton Korobeynikovf1c9c092008-11-11 20:21:14 +0000337 F->setCallingConv(llvm::CallingConv::X86_FastCall);
338
Douglas Gregor68584ed2009-06-18 16:11:24 +0000339 if (D->hasAttr<StdCallAttr>(getContext()))
Anton Korobeynikovf1c9c092008-11-11 20:21:14 +0000340 F->setCallingConv(llvm::CallingConv::X86_StdCall);
Daniel Dunbarf80519b2008-09-04 23:41:35 +0000341}
342
Daniel Dunbar7c65e992009-04-14 08:05:55 +0000343void CodeGenModule::SetLLVMFunctionAttributesForDefinition(const Decl *D,
344 llvm::Function *F) {
Daniel Dunbar74ac74a2009-03-02 04:58:03 +0000345 if (!Features.Exceptions && !Features.ObjCNonFragileABI)
Daniel Dunbarf93349f2008-09-27 07:16:42 +0000346 F->addFnAttr(llvm::Attribute::NoUnwind);
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000347
Douglas Gregor68584ed2009-06-18 16:11:24 +0000348 if (D->hasAttr<AlwaysInlineAttr>(getContext()))
Daniel Dunbaraf668b02008-10-28 00:17:57 +0000349 F->addFnAttr(llvm::Attribute::AlwaysInline);
Anders Carlsson81ebbde2009-02-19 19:22:11 +0000350
Douglas Gregor68584ed2009-06-18 16:11:24 +0000351 if (D->hasAttr<NoinlineAttr>(getContext()))
Anders Carlsson81ebbde2009-02-19 19:22:11 +0000352 F->addFnAttr(llvm::Attribute::NoInline);
Daniel Dunbarf80519b2008-09-04 23:41:35 +0000353}
354
Daniel Dunbar7c65e992009-04-14 08:05:55 +0000355void CodeGenModule::SetCommonAttributes(const Decl *D,
356 llvm::GlobalValue *GV) {
357 setGlobalVisibility(GV, D);
358
Douglas Gregor68584ed2009-06-18 16:11:24 +0000359 if (D->hasAttr<UsedAttr>(getContext()))
Daniel Dunbar7c65e992009-04-14 08:05:55 +0000360 AddUsedGlobal(GV);
361
Douglas Gregor68584ed2009-06-18 16:11:24 +0000362 if (const SectionAttr *SA = D->getAttr<SectionAttr>(getContext()))
Daniel Dunbar7c65e992009-04-14 08:05:55 +0000363 GV->setSection(SA->getName());
364}
365
Daniel Dunbar0e4f40e2009-04-17 00:48:04 +0000366void CodeGenModule::SetInternalFunctionAttributes(const Decl *D,
367 llvm::Function *F,
368 const CGFunctionInfo &FI) {
369 SetLLVMFunctionAttributes(D, FI, F);
370 SetLLVMFunctionAttributesForDefinition(D, F);
Daniel Dunbar7c65e992009-04-14 08:05:55 +0000371
372 F->setLinkage(llvm::Function::InternalLinkage);
373
Daniel Dunbar0e4f40e2009-04-17 00:48:04 +0000374 SetCommonAttributes(D, F);
Daniel Dunbarf80519b2008-09-04 23:41:35 +0000375}
376
377void CodeGenModule::SetFunctionAttributes(const FunctionDecl *FD,
Eli Friedmanc6c14d12009-05-26 01:22:57 +0000378 llvm::Function *F,
379 bool IsIncompleteFunction) {
380 if (!IsIncompleteFunction)
381 SetLLVMFunctionAttributes(FD, getTypes().getFunctionInfo(FD), F);
Daniel Dunbar45c25ba2008-09-10 04:01:49 +0000382
Daniel Dunbar7c65e992009-04-14 08:05:55 +0000383 // Only a few attributes are set on declarations; these may later be
384 // overridden by a definition.
385
Douglas Gregor68584ed2009-06-18 16:11:24 +0000386 if (FD->hasAttr<DLLImportAttr>(getContext())) {
Daniel Dunbar7c65e992009-04-14 08:05:55 +0000387 F->setLinkage(llvm::Function::DLLImportLinkage);
Douglas Gregor68584ed2009-06-18 16:11:24 +0000388 } else if (FD->hasAttr<WeakAttr>(getContext()) ||
389 FD->hasAttr<WeakImportAttr>(getContext())) {
Daniel Dunbar7c65e992009-04-14 08:05:55 +0000390 // "extern_weak" is overloaded in LLVM; we probably should have
391 // separate linkage types for this.
392 F->setLinkage(llvm::Function::ExternalWeakLinkage);
393 } else {
394 F->setLinkage(llvm::Function::ExternalLinkage);
395 }
396
Douglas Gregor68584ed2009-06-18 16:11:24 +0000397 if (const SectionAttr *SA = FD->getAttr<SectionAttr>(getContext()))
Daniel Dunbar7c65e992009-04-14 08:05:55 +0000398 F->setSection(SA->getName());
Daniel Dunbar219df662008-09-08 23:44:31 +0000399}
400
Daniel Dunbar02698712009-02-13 20:29:50 +0000401void CodeGenModule::AddUsedGlobal(llvm::GlobalValue *GV) {
402 assert(!GV->isDeclaration() &&
403 "Only globals with definition can force usage.");
Chris Lattner35f38a22009-03-31 22:37:52 +0000404 LLVMUsed.push_back(GV);
Daniel Dunbar02698712009-02-13 20:29:50 +0000405}
406
407void CodeGenModule::EmitLLVMUsed() {
408 // Don't create llvm.used if there is no need.
Fariborz Jahanianc38e9af2009-06-23 21:47:46 +0000409 // FIXME. Runtime indicates that there might be more 'used' symbols; but not
410 // necessariy. So, this test is not accurate for emptiness.
411 if (LLVMUsed.empty() && !Runtime)
Daniel Dunbar02698712009-02-13 20:29:50 +0000412 return;
413
Chris Lattner35f38a22009-03-31 22:37:52 +0000414 llvm::Type *i8PTy = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
Chris Lattner35f38a22009-03-31 22:37:52 +0000415
416 // Convert LLVMUsed to what ConstantArray needs.
417 std::vector<llvm::Constant*> UsedArray;
418 UsedArray.resize(LLVMUsed.size());
419 for (unsigned i = 0, e = LLVMUsed.size(); i != e; ++i) {
420 UsedArray[i] =
421 llvm::ConstantExpr::getBitCast(cast<llvm::Constant>(&*LLVMUsed[i]), i8PTy);
422 }
423
Fariborz Jahanianc38e9af2009-06-23 21:47:46 +0000424 if (Runtime)
425 Runtime->MergeMetadataGlobals(UsedArray);
426 if (UsedArray.empty())
427 return;
428 llvm::ArrayType *ATy = llvm::ArrayType::get(i8PTy, UsedArray.size());
429
Daniel Dunbar02698712009-02-13 20:29:50 +0000430 llvm::GlobalVariable *GV =
431 new llvm::GlobalVariable(ATy, false,
432 llvm::GlobalValue::AppendingLinkage,
Chris Lattner35f38a22009-03-31 22:37:52 +0000433 llvm::ConstantArray::get(ATy, UsedArray),
Daniel Dunbar02698712009-02-13 20:29:50 +0000434 "llvm.used", &getModule());
435
436 GV->setSection("llvm.metadata");
437}
438
439void CodeGenModule::EmitDeferred() {
Chris Lattner67b00522009-03-21 09:44:56 +0000440 // Emit code for any potentially referenced deferred decls. Since a
441 // previously unused static decl may become used during the generation of code
442 // for a static function, iterate until no changes are made.
443 while (!DeferredDeclsToEmit.empty()) {
Anders Carlsson2a131fb2009-05-05 04:44:02 +0000444 GlobalDecl D = DeferredDeclsToEmit.back();
Chris Lattner67b00522009-03-21 09:44:56 +0000445 DeferredDeclsToEmit.pop_back();
446
447 // The mangled name for the decl must have been emitted in GlobalDeclMap.
448 // Look it up to see if it was defined with a stronger definition (e.g. an
449 // extern inline function with a strong function redefinition). If so,
450 // just ignore the deferred decl.
451 llvm::GlobalValue *CGRef = GlobalDeclMap[getMangledName(D)];
452 assert(CGRef && "Deferred decl wasn't referenced?");
Anders Carlssonb723f752009-01-04 02:08:04 +0000453
Chris Lattner67b00522009-03-21 09:44:56 +0000454 if (!CGRef->isDeclaration())
455 continue;
456
457 // Otherwise, emit the definition and move on to the next one.
458 EmitGlobalDefinition(D);
459 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000460}
461
Nate Begeman8bd4afe2008-04-19 04:17:09 +0000462/// EmitAnnotateAttr - Generate the llvm::ConstantStruct which contains the
463/// annotation information for a given GlobalValue. The annotation struct is
464/// {i8 *, i8 *, i8 *, i32}. The first field is a constant expression, the
Daniel Dunbar3c827a72008-08-05 23:31:02 +0000465/// GlobalValue being annotated. The second field is the constant string
Nate Begeman8bd4afe2008-04-19 04:17:09 +0000466/// created from the AnnotateAttr's annotation. The third field is a constant
467/// string containing the name of the translation unit. The fourth field is
468/// the line number in the file of the annotated value declaration.
469///
470/// FIXME: this does not unique the annotation string constants, as llvm-gcc
471/// appears to.
472///
473llvm::Constant *CodeGenModule::EmitAnnotateAttr(llvm::GlobalValue *GV,
474 const AnnotateAttr *AA,
475 unsigned LineNo) {
476 llvm::Module *M = &getModule();
477
478 // get [N x i8] constants for the annotation string, and the filename string
479 // which are the 2nd and 3rd elements of the global annotation structure.
480 const llvm::Type *SBP = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
481 llvm::Constant *anno = llvm::ConstantArray::get(AA->getAnnotation(), true);
482 llvm::Constant *unit = llvm::ConstantArray::get(M->getModuleIdentifier(),
483 true);
484
485 // Get the two global values corresponding to the ConstantArrays we just
486 // created to hold the bytes of the strings.
Daniel Dunbar8e5c2b82009-03-31 23:42:16 +0000487 const char *StringPrefix = getContext().Target.getStringSymbolPrefix(true);
Nate Begeman8bd4afe2008-04-19 04:17:09 +0000488 llvm::GlobalValue *annoGV =
489 new llvm::GlobalVariable(anno->getType(), false,
490 llvm::GlobalValue::InternalLinkage, anno,
Daniel Dunbar8e5c2b82009-03-31 23:42:16 +0000491 GV->getName() + StringPrefix, M);
Nate Begeman8bd4afe2008-04-19 04:17:09 +0000492 // translation unit name string, emitted into the llvm.metadata section.
493 llvm::GlobalValue *unitGV =
494 new llvm::GlobalVariable(unit->getType(), false,
Daniel Dunbar8e5c2b82009-03-31 23:42:16 +0000495 llvm::GlobalValue::InternalLinkage, unit,
496 StringPrefix, M);
Nate Begeman8bd4afe2008-04-19 04:17:09 +0000497
Daniel Dunbar57d5cee2009-04-14 22:41:13 +0000498 // Create the ConstantStruct for the global annotation.
Nate Begeman8bd4afe2008-04-19 04:17:09 +0000499 llvm::Constant *Fields[4] = {
500 llvm::ConstantExpr::getBitCast(GV, SBP),
501 llvm::ConstantExpr::getBitCast(annoGV, SBP),
502 llvm::ConstantExpr::getBitCast(unitGV, SBP),
503 llvm::ConstantInt::get(llvm::Type::Int32Ty, LineNo)
504 };
505 return llvm::ConstantStruct::get(Fields, 4, false);
506}
507
Daniel Dunbar73241df2009-02-13 21:18:01 +0000508bool CodeGenModule::MayDeferGeneration(const ValueDecl *Global) {
Daniel Dunbar5c61d972009-02-13 22:08:43 +0000509 // Never defer when EmitAllDecls is specified or the decl has
510 // attribute used.
Douglas Gregor68584ed2009-06-18 16:11:24 +0000511 if (Features.EmitAllDecls || Global->hasAttr<UsedAttr>(getContext()))
Daniel Dunbar73241df2009-02-13 21:18:01 +0000512 return false;
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000513
514 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(Global)) {
Daniel Dunbar73241df2009-02-13 21:18:01 +0000515 // Constructors and destructors should never be deferred.
Douglas Gregor68584ed2009-06-18 16:11:24 +0000516 if (FD->hasAttr<ConstructorAttr>(getContext()) ||
517 FD->hasAttr<DestructorAttr>(getContext()))
Daniel Dunbar73241df2009-02-13 21:18:01 +0000518 return false;
519
Douglas Gregor68584ed2009-06-18 16:11:24 +0000520 GVALinkage Linkage = GetLinkageForFunction(getContext(), FD, Features);
Chris Lattnerdbb5a372009-04-14 06:44:48 +0000521
522 // static, static inline, always_inline, and extern inline functions can
Chris Lattner86daeee2009-04-14 16:44:36 +0000523 // always be deferred. Normal inline functions can be deferred in C99/C++.
Chris Lattnercbb8fc12009-04-14 20:25:53 +0000524 if (Linkage == GVA_Internal || Linkage == GVA_C99Inline ||
525 Linkage == GVA_CXXInline)
Chris Lattnerdbb5a372009-04-14 06:44:48 +0000526 return true;
Chris Lattnerdbb5a372009-04-14 06:44:48 +0000527 return false;
Daniel Dunbar73241df2009-02-13 21:18:01 +0000528 }
Chris Lattnerdbb5a372009-04-14 06:44:48 +0000529
530 const VarDecl *VD = cast<VarDecl>(Global);
531 assert(VD->isFileVarDecl() && "Invalid decl");
Douglas Gregorb6c8c8b2009-04-21 17:11:58 +0000532
Chris Lattnerdbb5a372009-04-14 06:44:48 +0000533 return VD->getStorageClass() == VarDecl::Static;
Daniel Dunbar73241df2009-02-13 21:18:01 +0000534}
535
Chris Lattnerb4880ba2009-05-12 21:21:08 +0000536void CodeGenModule::EmitGlobal(GlobalDecl GD) {
Anders Carlsson2a131fb2009-05-05 04:44:02 +0000537 const ValueDecl *Global = GD.getDecl();
538
Chris Lattnerbd532712009-03-22 21:47:11 +0000539 // If this is an alias definition (which otherwise looks like a declaration)
540 // emit it now.
Douglas Gregor68584ed2009-06-18 16:11:24 +0000541 if (Global->hasAttr<AliasAttr>(getContext()))
Chris Lattnerbd532712009-03-22 21:47:11 +0000542 return EmitAliasDefinition(Global);
Daniel Dunbar219df662008-09-08 23:44:31 +0000543
Chris Lattner67b00522009-03-21 09:44:56 +0000544 // Ignore declarations, they will be emitted on their first use.
Daniel Dunbar5e1e1f92009-03-19 08:27:24 +0000545 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(Global)) {
Daniel Dunbar73241df2009-02-13 21:18:01 +0000546 // Forward declarations are emitted lazily on first use.
547 if (!FD->isThisDeclarationADefinition())
548 return;
Daniel Dunbar02698712009-02-13 20:29:50 +0000549 } else {
550 const VarDecl *VD = cast<VarDecl>(Global);
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000551 assert(VD->isFileVarDecl() && "Cannot emit local var decl as global.");
552
Douglas Gregorb6c8c8b2009-04-21 17:11:58 +0000553 // In C++, if this is marked "extern", defer code generation.
Anders Carlsson2928c212009-05-16 21:02:39 +0000554 if (getLangOptions().CPlusPlus && !VD->getInit() &&
555 (VD->getStorageClass() == VarDecl::Extern ||
556 VD->isExternC(getContext())))
Daniel Dunbar73241df2009-02-13 21:18:01 +0000557 return;
Douglas Gregorb6c8c8b2009-04-21 17:11:58 +0000558
559 // In C, if this isn't a definition, defer code generation.
560 if (!getLangOptions().CPlusPlus && !VD->getInit())
561 return;
Nate Begeman4c13b7a2008-04-20 06:29:50 +0000562 }
563
Chris Lattner67b00522009-03-21 09:44:56 +0000564 // Defer code generation when possible if this is a static definition, inline
565 // function etc. These we only want to emit if they are used.
Daniel Dunbar73241df2009-02-13 21:18:01 +0000566 if (MayDeferGeneration(Global)) {
Chris Lattner67b00522009-03-21 09:44:56 +0000567 // If the value has already been used, add it directly to the
568 // DeferredDeclsToEmit list.
Anders Carlsson2a131fb2009-05-05 04:44:02 +0000569 const char *MangledName = getMangledName(GD);
Chris Lattner67b00522009-03-21 09:44:56 +0000570 if (GlobalDeclMap.count(MangledName))
Anders Carlsson2a131fb2009-05-05 04:44:02 +0000571 DeferredDeclsToEmit.push_back(GD);
Chris Lattner67b00522009-03-21 09:44:56 +0000572 else {
573 // Otherwise, remember that we saw a deferred decl with this name. The
574 // first use of the mangled name will cause it to move into
575 // DeferredDeclsToEmit.
Anders Carlsson2a131fb2009-05-05 04:44:02 +0000576 DeferredDecls[MangledName] = GD;
Chris Lattner67b00522009-03-21 09:44:56 +0000577 }
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000578 return;
579 }
580
581 // Otherwise emit the definition.
Anders Carlsson2a131fb2009-05-05 04:44:02 +0000582 EmitGlobalDefinition(GD);
Nate Begeman4c13b7a2008-04-20 06:29:50 +0000583}
584
Chris Lattnerb4880ba2009-05-12 21:21:08 +0000585void CodeGenModule::EmitGlobalDefinition(GlobalDecl GD) {
Anders Carlsson2a131fb2009-05-05 04:44:02 +0000586 const ValueDecl *D = GD.getDecl();
587
588 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(D))
589 EmitCXXConstructor(CD, GD.getCtorType());
Anders Carlsson7267c162009-05-29 21:03:38 +0000590 else if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(D))
591 EmitCXXDestructor(DD, GD.getDtorType());
Chris Lattnerb4880ba2009-05-12 21:21:08 +0000592 else if (isa<FunctionDecl>(D))
593 EmitGlobalFunctionDefinition(GD);
Anders Carlsson2a131fb2009-05-05 04:44:02 +0000594 else if (const VarDecl *VD = dyn_cast<VarDecl>(D))
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000595 EmitGlobalVarDefinition(VD);
Anders Carlsson2a131fb2009-05-05 04:44:02 +0000596 else {
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000597 assert(0 && "Invalid argument to EmitGlobalDefinition()");
598 }
599}
600
Chris Lattner74391b42009-03-22 21:03:39 +0000601/// GetOrCreateLLVMFunction - If the specified mangled name is not in the
602/// module, create and return an llvm Function with the specified type. If there
603/// is something in the module with the specified name, return it potentially
604/// bitcasted to the right type.
605///
606/// If D is non-null, it specifies a decl that correspond to this. This is used
607/// to set the attributes on the function when it is first created.
608llvm::Constant *CodeGenModule::GetOrCreateLLVMFunction(const char *MangledName,
609 const llvm::Type *Ty,
Chris Lattnerb4880ba2009-05-12 21:21:08 +0000610 GlobalDecl D) {
Chris Lattner0558e792009-03-21 09:25:43 +0000611 // Lookup the entry, lazily creating it if necessary.
Chris Lattner0558e792009-03-21 09:25:43 +0000612 llvm::GlobalValue *&Entry = GlobalDeclMap[MangledName];
613 if (Entry) {
614 if (Entry->getType()->getElementType() == Ty)
615 return Entry;
616
617 // Make sure the result is of the correct type.
618 const llvm::Type *PTy = llvm::PointerType::getUnqual(Ty);
619 return llvm::ConstantExpr::getBitCast(Entry, PTy);
620 }
621
Chris Lattner67b00522009-03-21 09:44:56 +0000622 // This is the first use or definition of a mangled name. If there is a
623 // deferred decl with this name, remember that we need to emit it at the end
624 // of the file.
Anders Carlsson2a131fb2009-05-05 04:44:02 +0000625 llvm::DenseMap<const char*, GlobalDecl>::iterator DDI =
Chris Lattner9fa959d2009-05-12 20:58:15 +0000626 DeferredDecls.find(MangledName);
Chris Lattner67b00522009-03-21 09:44:56 +0000627 if (DDI != DeferredDecls.end()) {
628 // Move the potentially referenced deferred decl to the DeferredDeclsToEmit
629 // list, and remove it from DeferredDecls (since we don't need it anymore).
630 DeferredDeclsToEmit.push_back(DDI->second);
631 DeferredDecls.erase(DDI);
Chris Lattnerb4880ba2009-05-12 21:21:08 +0000632 } else if (const FunctionDecl *FD = cast_or_null<FunctionDecl>(D.getDecl())) {
Chris Lattner0c337ed2009-05-12 21:02:27 +0000633 // If this the first reference to a C++ inline function in a class, queue up
634 // the deferred function body for emission. These are not seen as
635 // top-level declarations.
Chris Lattnerb4880ba2009-05-12 21:21:08 +0000636 if (FD->isThisDeclarationADefinition() && MayDeferGeneration(FD))
637 DeferredDeclsToEmit.push_back(D);
Chris Lattner67b00522009-03-21 09:44:56 +0000638 }
639
Chris Lattner0558e792009-03-21 09:25:43 +0000640 // This function doesn't have a complete type (for example, the return
641 // type is an incomplete struct). Use a fake type instead, and make
642 // sure not to try to set attributes.
Eli Friedmanc6c14d12009-05-26 01:22:57 +0000643 bool IsIncompleteFunction = false;
Chris Lattner0558e792009-03-21 09:25:43 +0000644 if (!isa<llvm::FunctionType>(Ty)) {
645 Ty = llvm::FunctionType::get(llvm::Type::VoidTy,
646 std::vector<const llvm::Type*>(), false);
Eli Friedmanc6c14d12009-05-26 01:22:57 +0000647 IsIncompleteFunction = true;
Chris Lattner0558e792009-03-21 09:25:43 +0000648 }
649 llvm::Function *F = llvm::Function::Create(cast<llvm::FunctionType>(Ty),
650 llvm::Function::ExternalLinkage,
Chris Lattnerd9726782009-03-22 00:12:30 +0000651 "", &getModule());
652 F->setName(MangledName);
Eli Friedmanc6c14d12009-05-26 01:22:57 +0000653 if (D.getDecl())
654 SetFunctionAttributes(cast<FunctionDecl>(D.getDecl()), F,
655 IsIncompleteFunction);
Chris Lattner0558e792009-03-21 09:25:43 +0000656 Entry = F;
657 return F;
658}
659
Chris Lattner74391b42009-03-22 21:03:39 +0000660/// GetAddrOfFunction - Return the address of the given function. If Ty is
661/// non-null, then this function will use the specified type if it has to
662/// create it (this occurs when we see a definition of the function).
Chris Lattnerb4880ba2009-05-12 21:21:08 +0000663llvm::Constant *CodeGenModule::GetAddrOfFunction(GlobalDecl GD,
Chris Lattner74391b42009-03-22 21:03:39 +0000664 const llvm::Type *Ty) {
665 // If there was no specific requested type, just convert it now.
666 if (!Ty)
Chris Lattnerb4880ba2009-05-12 21:21:08 +0000667 Ty = getTypes().ConvertType(GD.getDecl()->getType());
668 return GetOrCreateLLVMFunction(getMangledName(GD.getDecl()), Ty, GD);
Chris Lattner74391b42009-03-22 21:03:39 +0000669}
Eli Friedman77ba7082008-05-30 19:50:47 +0000670
Chris Lattner74391b42009-03-22 21:03:39 +0000671/// CreateRuntimeFunction - Create a new runtime function with the specified
672/// type and name.
673llvm::Constant *
674CodeGenModule::CreateRuntimeFunction(const llvm::FunctionType *FTy,
675 const char *Name) {
676 // Convert Name to be a uniqued string from the IdentifierInfo table.
677 Name = getContext().Idents.get(Name).getName();
Chris Lattnerb4880ba2009-05-12 21:21:08 +0000678 return GetOrCreateLLVMFunction(Name, FTy, GlobalDecl());
Chris Lattner74391b42009-03-22 21:03:39 +0000679}
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000680
Chris Lattner74391b42009-03-22 21:03:39 +0000681/// GetOrCreateLLVMGlobal - If the specified mangled name is not in the module,
682/// create and return an llvm GlobalVariable with the specified type. If there
683/// is something in the module with the specified name, return it potentially
684/// bitcasted to the right type.
685///
686/// If D is non-null, it specifies a decl that correspond to this. This is used
687/// to set the attributes on the global when it is first created.
688llvm::Constant *CodeGenModule::GetOrCreateLLVMGlobal(const char *MangledName,
689 const llvm::PointerType*Ty,
690 const VarDecl *D) {
Daniel Dunbar3c827a72008-08-05 23:31:02 +0000691 // Lookup the entry, lazily creating it if necessary.
Chris Lattner5d4f5c72009-03-21 08:06:59 +0000692 llvm::GlobalValue *&Entry = GlobalDeclMap[MangledName];
Chris Lattner99b53612009-03-21 08:03:33 +0000693 if (Entry) {
Chris Lattner74391b42009-03-22 21:03:39 +0000694 if (Entry->getType() == Ty)
Chris Lattner570585c2009-03-21 09:16:30 +0000695 return Entry;
696
Chris Lattner99b53612009-03-21 08:03:33 +0000697 // Make sure the result is of the correct type.
Chris Lattner74391b42009-03-22 21:03:39 +0000698 return llvm::ConstantExpr::getBitCast(Entry, Ty);
Daniel Dunbar49988882009-01-13 02:25:00 +0000699 }
Chris Lattner67b00522009-03-21 09:44:56 +0000700
701 // This is the first use or definition of a mangled name. If there is a
702 // deferred decl with this name, remember that we need to emit it at the end
703 // of the file.
Anders Carlsson2a131fb2009-05-05 04:44:02 +0000704 llvm::DenseMap<const char*, GlobalDecl>::iterator DDI =
Chris Lattner67b00522009-03-21 09:44:56 +0000705 DeferredDecls.find(MangledName);
706 if (DDI != DeferredDecls.end()) {
707 // Move the potentially referenced deferred decl to the DeferredDeclsToEmit
708 // list, and remove it from DeferredDecls (since we don't need it anymore).
709 DeferredDeclsToEmit.push_back(DDI->second);
710 DeferredDecls.erase(DDI);
711 }
712
Chris Lattner99b53612009-03-21 08:03:33 +0000713 llvm::GlobalVariable *GV =
Chris Lattner74391b42009-03-22 21:03:39 +0000714 new llvm::GlobalVariable(Ty->getElementType(), false,
Chris Lattner99b53612009-03-21 08:03:33 +0000715 llvm::GlobalValue::ExternalLinkage,
Chris Lattnerd9726782009-03-22 00:12:30 +0000716 0, "", &getModule(),
Eli Friedman56ebe502009-04-19 21:05:03 +0000717 false, Ty->getAddressSpace());
Chris Lattnerd9726782009-03-22 00:12:30 +0000718 GV->setName(MangledName);
Chris Lattner99b53612009-03-21 08:03:33 +0000719
720 // Handle things which are present even on external declarations.
Chris Lattner74391b42009-03-22 21:03:39 +0000721 if (D) {
Mike Stumpf5408fe2009-05-16 07:57:57 +0000722 // FIXME: This code is overly simple and should be merged with other global
723 // handling.
Chris Lattner74391b42009-03-22 21:03:39 +0000724 GV->setConstant(D->getType().isConstant(Context));
Chris Lattner99b53612009-03-21 08:03:33 +0000725
Chris Lattner74391b42009-03-22 21:03:39 +0000726 // FIXME: Merge with other attribute handling code.
727 if (D->getStorageClass() == VarDecl::PrivateExtern)
Daniel Dunbar04d40782009-04-14 06:00:08 +0000728 GV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Chris Lattner99b53612009-03-21 08:03:33 +0000729
Douglas Gregor68584ed2009-06-18 16:11:24 +0000730 if (D->hasAttr<WeakAttr>(getContext()) ||
731 D->hasAttr<WeakImportAttr>(getContext()))
Chris Lattner74391b42009-03-22 21:03:39 +0000732 GV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage);
Eli Friedman56ebe502009-04-19 21:05:03 +0000733
734 GV->setThreadLocal(D->isThreadSpecified());
Chris Lattner74391b42009-03-22 21:03:39 +0000735 }
736
Chris Lattner99b53612009-03-21 08:03:33 +0000737 return Entry = GV;
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000738}
739
Chris Lattner74391b42009-03-22 21:03:39 +0000740
741/// GetAddrOfGlobalVar - Return the llvm::Constant for the address of the
742/// given global variable. If Ty is non-null and if the global doesn't exist,
743/// then it will be greated with the specified type instead of whatever the
744/// normal requested type would be.
745llvm::Constant *CodeGenModule::GetAddrOfGlobalVar(const VarDecl *D,
746 const llvm::Type *Ty) {
747 assert(D->hasGlobalStorage() && "Not a global variable");
748 QualType ASTTy = D->getType();
749 if (Ty == 0)
750 Ty = getTypes().ConvertTypeForMem(ASTTy);
751
752 const llvm::PointerType *PTy =
753 llvm::PointerType::get(Ty, ASTTy.getAddressSpace());
754 return GetOrCreateLLVMGlobal(getMangledName(D), PTy, D);
755}
756
757/// CreateRuntimeVariable - Create a new runtime global variable with the
758/// specified type and name.
759llvm::Constant *
760CodeGenModule::CreateRuntimeVariable(const llvm::Type *Ty,
761 const char *Name) {
762 // Convert Name to be a uniqued string from the IdentifierInfo table.
763 Name = getContext().Idents.get(Name).getName();
764 return GetOrCreateLLVMGlobal(Name, llvm::PointerType::getUnqual(Ty), 0);
765}
766
Daniel Dunbar03f5ad92009-04-15 22:08:45 +0000767void CodeGenModule::EmitTentativeDefinition(const VarDecl *D) {
768 assert(!D->getInit() && "Cannot emit definite definitions here!");
769
Douglas Gregor7520bd12009-04-21 19:28:58 +0000770 if (MayDeferGeneration(D)) {
771 // If we have not seen a reference to this variable yet, place it
772 // into the deferred declarations table to be emitted if needed
773 // later.
774 const char *MangledName = getMangledName(D);
775 if (GlobalDeclMap.count(MangledName) == 0) {
Anders Carlsson2a131fb2009-05-05 04:44:02 +0000776 DeferredDecls[MangledName] = GlobalDecl(D);
Daniel Dunbar03f5ad92009-04-15 22:08:45 +0000777 return;
Douglas Gregor7520bd12009-04-21 19:28:58 +0000778 }
779 }
780
781 // The tentative definition is the only definition.
Daniel Dunbar03f5ad92009-04-15 22:08:45 +0000782 EmitGlobalVarDefinition(D);
783}
784
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000785void CodeGenModule::EmitGlobalVarDefinition(const VarDecl *D) {
Chris Lattner8f32f712007-07-14 00:23:28 +0000786 llvm::Constant *Init = 0;
Eli Friedman77ba7082008-05-30 19:50:47 +0000787 QualType ASTTy = D->getType();
Chris Lattnerb75863d2009-04-10 00:35:59 +0000788
Chris Lattner8f32f712007-07-14 00:23:28 +0000789 if (D->getInit() == 0) {
Eli Friedmancd5f4aa2008-05-30 20:39:54 +0000790 // This is a tentative definition; tentative definitions are
Daniel Dunbar03f5ad92009-04-15 22:08:45 +0000791 // implicitly initialized with { 0 }.
792 //
793 // Note that tentative definitions are only emitted at the end of
794 // a translation unit, so they should never have incomplete
795 // type. In addition, EmitTentativeDefinition makes sure that we
796 // never attempt to emit a tentative definition if a real one
797 // exists. A use may still exists, however, so we still may need
798 // to do a RAUW.
799 assert(!ASTTy->isIncompleteType() && "Unexpected incomplete type");
800 Init = llvm::Constant::getNullValue(getTypes().ConvertTypeForMem(ASTTy));
Eli Friedman77ba7082008-05-30 19:50:47 +0000801 } else {
Anders Carlssone9352cc2009-04-08 04:48:15 +0000802 Init = EmitConstantExpr(D->getInit(), D->getType());
Eli Friedman6e656f42009-02-20 01:18:21 +0000803 if (!Init) {
Daniel Dunbar232350d2009-02-19 05:36:41 +0000804 ErrorUnsupported(D, "static initializer");
Eli Friedman6e656f42009-02-20 01:18:21 +0000805 QualType T = D->getInit()->getType();
806 Init = llvm::UndefValue::get(getTypes().ConvertType(T));
807 }
Eli Friedman77ba7082008-05-30 19:50:47 +0000808 }
Eli Friedman77ba7082008-05-30 19:50:47 +0000809
Chris Lattner2d584062009-03-21 08:13:05 +0000810 const llvm::Type* InitType = Init->getType();
Chris Lattner570585c2009-03-21 09:16:30 +0000811 llvm::Constant *Entry = GetAddrOfGlobalVar(D, InitType);
Daniel Dunbar3c827a72008-08-05 23:31:02 +0000812
Chris Lattner570585c2009-03-21 09:16:30 +0000813 // Strip off a bitcast if we got one back.
814 if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(Entry)) {
815 assert(CE->getOpcode() == llvm::Instruction::BitCast);
816 Entry = CE->getOperand(0);
817 }
818
819 // Entry is now either a Function or GlobalVariable.
820 llvm::GlobalVariable *GV = dyn_cast<llvm::GlobalVariable>(Entry);
821
Chris Lattner570585c2009-03-21 09:16:30 +0000822 // We have a definition after a declaration with the wrong type.
823 // We must make a new GlobalVariable* and update everything that used OldGV
824 // (a declaration or tentative definition) with the new GlobalVariable*
825 // (which will be a definition).
826 //
827 // This happens if there is a prototype for a global (e.g.
828 // "extern int x[];") and then a definition of a different type (e.g.
829 // "int x[10];"). This also happens when an initializer has a different type
830 // from the type of the global (this happens with unions).
Chris Lattner570585c2009-03-21 09:16:30 +0000831 if (GV == 0 ||
832 GV->getType()->getElementType() != InitType ||
833 GV->getType()->getAddressSpace() != ASTTy.getAddressSpace()) {
834
835 // Remove the old entry from GlobalDeclMap so that we'll create a new one.
836 GlobalDeclMap.erase(getMangledName(D));
Daniel Dunbar232350d2009-02-19 05:36:41 +0000837
Chris Lattner570585c2009-03-21 09:16:30 +0000838 // Make a new global with the correct type, this is now guaranteed to work.
839 GV = cast<llvm::GlobalVariable>(GetAddrOfGlobalVar(D, InitType));
Chris Lattner0558e792009-03-21 09:25:43 +0000840 GV->takeName(cast<llvm::GlobalValue>(Entry));
841
Eli Friedman77ba7082008-05-30 19:50:47 +0000842 // Replace all uses of the old global with the new global
843 llvm::Constant *NewPtrForOldDecl =
Chris Lattner570585c2009-03-21 09:16:30 +0000844 llvm::ConstantExpr::getBitCast(GV, Entry->getType());
845 Entry->replaceAllUsesWith(NewPtrForOldDecl);
Eli Friedman77ba7082008-05-30 19:50:47 +0000846
847 // Erase the old global, since it is no longer used.
Chris Lattner570585c2009-03-21 09:16:30 +0000848 cast<llvm::GlobalValue>(Entry)->eraseFromParent();
Chris Lattner8f32f712007-07-14 00:23:28 +0000849 }
Devang Patel8e53e722007-10-26 16:31:40 +0000850
Douglas Gregor68584ed2009-06-18 16:11:24 +0000851 if (const AnnotateAttr *AA = D->getAttr<AnnotateAttr>(getContext())) {
Nate Begeman8bd4afe2008-04-19 04:17:09 +0000852 SourceManager &SM = Context.getSourceManager();
853 AddAnnotation(EmitAnnotateAttr(GV, AA,
Chris Lattnerf7cf85b2009-01-16 07:36:28 +0000854 SM.getInstantiationLineNumber(D->getLocation())));
Nate Begeman8bd4afe2008-04-19 04:17:09 +0000855 }
856
Chris Lattner88a69ad2007-07-13 05:13:43 +0000857 GV->setInitializer(Init);
Nuno Lopesb381aac2008-09-01 11:33:04 +0000858 GV->setConstant(D->getType().isConstant(Context));
Eli Friedman0de40af2009-02-27 04:11:37 +0000859 GV->setAlignment(getContext().getDeclAlignInBytes(D));
Eli Friedman08d78022008-05-29 11:10:27 +0000860
Chris Lattner88a69ad2007-07-13 05:13:43 +0000861 // Set the llvm linkage type as appropriate.
Chris Lattner8fabd782008-05-04 01:44:26 +0000862 if (D->getStorageClass() == VarDecl::Static)
863 GV->setLinkage(llvm::Function::InternalLinkage);
Douglas Gregor68584ed2009-06-18 16:11:24 +0000864 else if (D->hasAttr<DLLImportAttr>(getContext()))
Chris Lattnerddee4232008-03-03 03:28:21 +0000865 GV->setLinkage(llvm::Function::DLLImportLinkage);
Douglas Gregor68584ed2009-06-18 16:11:24 +0000866 else if (D->hasAttr<DLLExportAttr>(getContext()))
Chris Lattnerddee4232008-03-03 03:28:21 +0000867 GV->setLinkage(llvm::Function::DLLExportLinkage);
Douglas Gregor68584ed2009-06-18 16:11:24 +0000868 else if (D->hasAttr<WeakAttr>(getContext()))
Mike Stump286acbd2009-03-07 16:33:28 +0000869 GV->setLinkage(llvm::GlobalVariable::WeakAnyLinkage);
Daniel Dunbar04d40782009-04-14 06:00:08 +0000870 else if (!CompileOpts.NoCommon &&
871 (!D->hasExternalStorage() && !D->getInit()))
872 GV->setLinkage(llvm::GlobalVariable::CommonLinkage);
Daniel Dunbar7e714cd2009-04-10 20:26:50 +0000873 else
Daniel Dunbar04d40782009-04-14 06:00:08 +0000874 GV->setLinkage(llvm::GlobalVariable::ExternalLinkage);
Daniel Dunbar7e714cd2009-04-10 20:26:50 +0000875
Daniel Dunbar7c65e992009-04-14 08:05:55 +0000876 SetCommonAttributes(D, GV);
Daniel Dunbar04d40782009-04-14 06:00:08 +0000877
Sanjiv Gupta686226b2008-06-05 08:59:10 +0000878 // Emit global variable debug information.
Chris Lattner2d584062009-03-21 08:13:05 +0000879 if (CGDebugInfo *DI = getDebugInfo()) {
Daniel Dunbar66031a52008-10-17 16:15:48 +0000880 DI->setLocation(D->getLocation());
Sanjiv Gupta686226b2008-06-05 08:59:10 +0000881 DI->EmitGlobalVariable(GV, D);
882 }
Chris Lattner88a69ad2007-07-13 05:13:43 +0000883}
Reid Spencer5f016e22007-07-11 17:01:13 +0000884
Chris Lattnerbdb01322009-05-05 06:16:31 +0000885/// ReplaceUsesOfNonProtoTypeWithRealFunction - This function is called when we
886/// implement a function with no prototype, e.g. "int foo() {}". If there are
887/// existing call uses of the old function in the module, this adjusts them to
888/// call the new function directly.
889///
890/// This is not just a cleanup: the always_inline pass requires direct calls to
891/// functions to be able to inline them. If there is a bitcast in the way, it
892/// won't inline them. Instcombine normally deletes these calls, but it isn't
893/// run at -O0.
894static void ReplaceUsesOfNonProtoTypeWithRealFunction(llvm::GlobalValue *Old,
895 llvm::Function *NewFn) {
896 // If we're redefining a global as a function, don't transform it.
897 llvm::Function *OldFn = dyn_cast<llvm::Function>(Old);
898 if (OldFn == 0) return;
899
900 const llvm::Type *NewRetTy = NewFn->getReturnType();
901 llvm::SmallVector<llvm::Value*, 4> ArgList;
902
903 for (llvm::Value::use_iterator UI = OldFn->use_begin(), E = OldFn->use_end();
904 UI != E; ) {
905 // TODO: Do invokes ever occur in C code? If so, we should handle them too.
Chris Lattner08c93a72009-06-04 16:47:43 +0000906 unsigned OpNo = UI.getOperandNo();
Chris Lattnerbdb01322009-05-05 06:16:31 +0000907 llvm::CallInst *CI = dyn_cast<llvm::CallInst>(*UI++);
Chris Lattner08c93a72009-06-04 16:47:43 +0000908 if (!CI || OpNo != 0) continue;
Chris Lattnerbdb01322009-05-05 06:16:31 +0000909
910 // If the return types don't match exactly, and if the call isn't dead, then
911 // we can't transform this call.
912 if (CI->getType() != NewRetTy && !CI->use_empty())
913 continue;
914
915 // If the function was passed too few arguments, don't transform. If extra
916 // arguments were passed, we silently drop them. If any of the types
917 // mismatch, we don't transform.
918 unsigned ArgNo = 0;
919 bool DontTransform = false;
920 for (llvm::Function::arg_iterator AI = NewFn->arg_begin(),
921 E = NewFn->arg_end(); AI != E; ++AI, ++ArgNo) {
922 if (CI->getNumOperands()-1 == ArgNo ||
923 CI->getOperand(ArgNo+1)->getType() != AI->getType()) {
924 DontTransform = true;
925 break;
926 }
927 }
928 if (DontTransform)
929 continue;
930
931 // Okay, we can transform this. Create the new call instruction and copy
932 // over the required information.
933 ArgList.append(CI->op_begin()+1, CI->op_begin()+1+ArgNo);
934 llvm::CallInst *NewCall = llvm::CallInst::Create(NewFn, ArgList.begin(),
935 ArgList.end(), "", CI);
936 ArgList.clear();
937 if (NewCall->getType() != llvm::Type::VoidTy)
938 NewCall->takeName(CI);
939 NewCall->setCallingConv(CI->getCallingConv());
940 NewCall->setAttributes(CI->getAttributes());
941
942 // Finally, remove the old call, replacing any uses with the new one.
943 if (!CI->use_empty())
944 CI->replaceAllUsesWith(NewCall);
945 CI->eraseFromParent();
946 }
947}
948
Daniel Dunbarbd012ff2008-07-29 23:18:29 +0000949
Chris Lattnerb4880ba2009-05-12 21:21:08 +0000950void CodeGenModule::EmitGlobalFunctionDefinition(GlobalDecl GD) {
Anders Carlsson2b77ba82009-04-04 20:47:02 +0000951 const llvm::FunctionType *Ty;
Chris Lattnerb4880ba2009-05-12 21:21:08 +0000952 const FunctionDecl *D = cast<FunctionDecl>(GD.getDecl());
953
Anders Carlsson2b77ba82009-04-04 20:47:02 +0000954 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
955 bool isVariadic = D->getType()->getAsFunctionProtoType()->isVariadic();
956
957 Ty = getTypes().GetFunctionType(getTypes().getFunctionInfo(MD), isVariadic);
958 } else {
959 Ty = cast<llvm::FunctionType>(getTypes().ConvertType(D->getType()));
960
961 // As a special case, make sure that definitions of K&R function
962 // "type foo()" aren't declared as varargs (which forces the backend
963 // to do unnecessary work).
964 if (D->getType()->isFunctionNoProtoType()) {
965 assert(Ty->isVarArg() && "Didn't lower type as expected");
966 // Due to stret, the lowered function could have arguments.
967 // Just create the same type as was lowered by ConvertType
968 // but strip off the varargs bit.
969 std::vector<const llvm::Type*> Args(Ty->param_begin(), Ty->param_end());
970 Ty = llvm::FunctionType::get(Ty->getReturnType(), Args, false);
971 }
Chris Lattnerff75e1d2009-03-22 19:35:37 +0000972 }
Daniel Dunbard5d31802009-02-19 07:15:39 +0000973
Chris Lattner9fa959d2009-05-12 20:58:15 +0000974 // Get or create the prototype for the function.
Chris Lattnerb4880ba2009-05-12 21:21:08 +0000975 llvm::Constant *Entry = GetAddrOfFunction(GD, Ty);
Chris Lattner34809502009-03-21 08:53:37 +0000976
Chris Lattner0558e792009-03-21 09:25:43 +0000977 // Strip off a bitcast if we got one back.
978 if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(Entry)) {
979 assert(CE->getOpcode() == llvm::Instruction::BitCast);
980 Entry = CE->getOperand(0);
981 }
982
983
984 if (cast<llvm::GlobalValue>(Entry)->getType()->getElementType() != Ty) {
Chris Lattnerbdb01322009-05-05 06:16:31 +0000985 llvm::GlobalValue *OldFn = cast<llvm::GlobalValue>(Entry);
986
Daniel Dunbar42745812009-03-09 23:53:08 +0000987 // If the types mismatch then we have to rewrite the definition.
Chris Lattnerbdb01322009-05-05 06:16:31 +0000988 assert(OldFn->isDeclaration() &&
Chris Lattner0558e792009-03-21 09:25:43 +0000989 "Shouldn't replace non-declaration");
Chris Lattner34809502009-03-21 08:53:37 +0000990
Chris Lattner62b33ea2009-03-21 08:38:50 +0000991 // F is the Function* for the one with the wrong type, we must make a new
992 // Function* and update everything that used F (a declaration) with the new
993 // Function* (which will be a definition).
994 //
995 // This happens if there is a prototype for a function
996 // (e.g. "int f()") and then a definition of a different type
997 // (e.g. "int f(int x)"). Start by making a new function of the
998 // correct type, RAUW, then steal the name.
Chris Lattner34809502009-03-21 08:53:37 +0000999 GlobalDeclMap.erase(getMangledName(D));
Chris Lattnerb4880ba2009-05-12 21:21:08 +00001000 llvm::Function *NewFn = cast<llvm::Function>(GetAddrOfFunction(GD, Ty));
Chris Lattnerbdb01322009-05-05 06:16:31 +00001001 NewFn->takeName(OldFn);
1002
1003 // If this is an implementation of a function without a prototype, try to
1004 // replace any existing uses of the function (which may be calls) with uses
1005 // of the new function
Chris Lattner9fa959d2009-05-12 20:58:15 +00001006 if (D->getType()->isFunctionNoProtoType()) {
Chris Lattnerbdb01322009-05-05 06:16:31 +00001007 ReplaceUsesOfNonProtoTypeWithRealFunction(OldFn, NewFn);
Chris Lattner9fa959d2009-05-12 20:58:15 +00001008 OldFn->removeDeadConstantUsers();
1009 }
Chris Lattner62b33ea2009-03-21 08:38:50 +00001010
1011 // Replace uses of F with the Function we will endow with a body.
Chris Lattnerbdb01322009-05-05 06:16:31 +00001012 if (!Entry->use_empty()) {
1013 llvm::Constant *NewPtrForOldDecl =
1014 llvm::ConstantExpr::getBitCast(NewFn, Entry->getType());
1015 Entry->replaceAllUsesWith(NewPtrForOldDecl);
1016 }
Chris Lattner62b33ea2009-03-21 08:38:50 +00001017
1018 // Ok, delete the old function now, which is dead.
Chris Lattnerbdb01322009-05-05 06:16:31 +00001019 OldFn->eraseFromParent();
Chris Lattner62b33ea2009-03-21 08:38:50 +00001020
Chris Lattner0558e792009-03-21 09:25:43 +00001021 Entry = NewFn;
Daniel Dunbarbd012ff2008-07-29 23:18:29 +00001022 }
Chris Lattner0558e792009-03-21 09:25:43 +00001023
1024 llvm::Function *Fn = cast<llvm::Function>(Entry);
Daniel Dunbarbd012ff2008-07-29 23:18:29 +00001025
Daniel Dunbar219df662008-09-08 23:44:31 +00001026 CodeGenFunction(*this).GenerateCode(D, Fn);
Daniel Dunbar6bfed7e2008-08-01 00:01:51 +00001027
Daniel Dunbar7c65e992009-04-14 08:05:55 +00001028 SetFunctionDefinitionAttributes(D, Fn);
1029 SetLLVMFunctionAttributesForDefinition(D, Fn);
Daniel Dunbar219df662008-09-08 23:44:31 +00001030
Douglas Gregor68584ed2009-06-18 16:11:24 +00001031 if (const ConstructorAttr *CA = D->getAttr<ConstructorAttr>(getContext()))
Daniel Dunbar219df662008-09-08 23:44:31 +00001032 AddGlobalCtor(Fn, CA->getPriority());
Douglas Gregor68584ed2009-06-18 16:11:24 +00001033 if (const DestructorAttr *DA = D->getAttr<DestructorAttr>(getContext()))
Daniel Dunbar219df662008-09-08 23:44:31 +00001034 AddGlobalDtor(Fn, DA->getPriority());
Daniel Dunbarbd012ff2008-07-29 23:18:29 +00001035}
1036
Chris Lattnerbd532712009-03-22 21:47:11 +00001037void CodeGenModule::EmitAliasDefinition(const ValueDecl *D) {
Douglas Gregor68584ed2009-06-18 16:11:24 +00001038 const AliasAttr *AA = D->getAttr<AliasAttr>(getContext());
Chris Lattnerbd532712009-03-22 21:47:11 +00001039 assert(AA && "Not an alias?");
1040
1041 const llvm::Type *DeclTy = getTypes().ConvertTypeForMem(D->getType());
1042
1043 // Unique the name through the identifier table.
1044 const char *AliaseeName = AA->getAliasee().c_str();
1045 AliaseeName = getContext().Idents.get(AliaseeName).getName();
1046
1047 // Create a reference to the named value. This ensures that it is emitted
1048 // if a deferred decl.
1049 llvm::Constant *Aliasee;
1050 if (isa<llvm::FunctionType>(DeclTy))
Chris Lattnerb4880ba2009-05-12 21:21:08 +00001051 Aliasee = GetOrCreateLLVMFunction(AliaseeName, DeclTy, GlobalDecl());
Chris Lattnerbd532712009-03-22 21:47:11 +00001052 else
1053 Aliasee = GetOrCreateLLVMGlobal(AliaseeName,
1054 llvm::PointerType::getUnqual(DeclTy), 0);
1055
1056 // Create the new alias itself, but don't set a name yet.
1057 llvm::GlobalValue *GA =
1058 new llvm::GlobalAlias(Aliasee->getType(),
1059 llvm::Function::ExternalLinkage,
1060 "", Aliasee, &getModule());
1061
1062 // See if there is already something with the alias' name in the module.
1063 const char *MangledName = getMangledName(D);
1064 llvm::GlobalValue *&Entry = GlobalDeclMap[MangledName];
1065
1066 if (Entry && !Entry->isDeclaration()) {
1067 // If there is a definition in the module, then it wins over the alias.
1068 // This is dubious, but allow it to be safe. Just ignore the alias.
1069 GA->eraseFromParent();
1070 return;
1071 }
1072
1073 if (Entry) {
1074 // If there is a declaration in the module, then we had an extern followed
1075 // by the alias, as in:
1076 // extern int test6();
1077 // ...
1078 // int test6() __attribute__((alias("test7")));
1079 //
1080 // Remove it and replace uses of it with the alias.
1081
1082 Entry->replaceAllUsesWith(llvm::ConstantExpr::getBitCast(GA,
1083 Entry->getType()));
Chris Lattnerbd532712009-03-22 21:47:11 +00001084 Entry->eraseFromParent();
1085 }
1086
1087 // Now we know that there is no conflict, set the name.
1088 Entry = GA;
1089 GA->setName(MangledName);
1090
Daniel Dunbar7c65e992009-04-14 08:05:55 +00001091 // Set attributes which are particular to an alias; this is a
1092 // specialization of the attributes which may be set on a global
1093 // variable/function.
Douglas Gregor68584ed2009-06-18 16:11:24 +00001094 if (D->hasAttr<DLLExportAttr>(getContext())) {
Daniel Dunbar7c65e992009-04-14 08:05:55 +00001095 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
1096 // The dllexport attribute is ignored for undefined symbols.
Douglas Gregor72971342009-04-18 00:02:19 +00001097 if (FD->getBody(getContext()))
Daniel Dunbar7c65e992009-04-14 08:05:55 +00001098 GA->setLinkage(llvm::Function::DLLExportLinkage);
1099 } else {
1100 GA->setLinkage(llvm::Function::DLLExportLinkage);
1101 }
Douglas Gregor68584ed2009-06-18 16:11:24 +00001102 } else if (D->hasAttr<WeakAttr>(getContext()) ||
1103 D->hasAttr<WeakImportAttr>(getContext())) {
Daniel Dunbar7c65e992009-04-14 08:05:55 +00001104 GA->setLinkage(llvm::Function::WeakAnyLinkage);
1105 }
1106
1107 SetCommonAttributes(D, GA);
Chris Lattnerbd532712009-03-22 21:47:11 +00001108}
1109
Chris Lattnerb808c952009-03-22 21:56:56 +00001110/// getBuiltinLibFunction - Given a builtin id for a function like
1111/// "__builtin_fabsf", return a Function* for "fabsf".
Mike Stumpc136e6c2009-02-27 22:42:30 +00001112llvm::Value *CodeGenModule::getBuiltinLibFunction(unsigned BuiltinID) {
Douglas Gregor3e41d602009-02-13 23:20:09 +00001113 assert((Context.BuiltinInfo.isLibFunction(BuiltinID) ||
1114 Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) &&
1115 "isn't a lib fn");
Chris Lattnerbef20ac2007-08-31 04:31:45 +00001116
Douglas Gregor3e41d602009-02-13 23:20:09 +00001117 // Get the name, skip over the __builtin_ prefix (if necessary).
1118 const char *Name = Context.BuiltinInfo.GetName(BuiltinID);
1119 if (Context.BuiltinInfo.isLibFunction(BuiltinID))
1120 Name += 10;
Chris Lattnerbef20ac2007-08-31 04:31:45 +00001121
1122 // Get the type for the builtin.
Chris Lattner86df27b2009-06-14 00:45:47 +00001123 ASTContext::GetBuiltinTypeError Error;
1124 QualType Type = Context.GetBuiltinType(BuiltinID, Error);
1125 assert(Error == ASTContext::GE_None && "Can't get builtin type");
Douglas Gregor370ab3f2009-02-14 01:52:53 +00001126
Chris Lattnerbef20ac2007-08-31 04:31:45 +00001127 const llvm::FunctionType *Ty =
1128 cast<llvm::FunctionType>(getTypes().ConvertType(Type));
1129
Chris Lattnerb808c952009-03-22 21:56:56 +00001130 // Unique the name through the identifier table.
1131 Name = getContext().Idents.get(Name).getName();
Chris Lattnerbef20ac2007-08-31 04:31:45 +00001132 // FIXME: param attributes for sext/zext etc.
Chris Lattnerb4880ba2009-05-12 21:21:08 +00001133 return GetOrCreateLLVMFunction(Name, Ty, GlobalDecl());
Chris Lattnerbef20ac2007-08-31 04:31:45 +00001134}
1135
Chris Lattner7acda7c2007-12-18 00:25:38 +00001136llvm::Function *CodeGenModule::getIntrinsic(unsigned IID,const llvm::Type **Tys,
1137 unsigned NumTys) {
1138 return llvm::Intrinsic::getDeclaration(&getModule(),
1139 (llvm::Intrinsic::ID)IID, Tys, NumTys);
1140}
Chris Lattnerbef20ac2007-08-31 04:31:45 +00001141
Reid Spencer5f016e22007-07-11 17:01:13 +00001142llvm::Function *CodeGenModule::getMemCpyFn() {
1143 if (MemCpyFn) return MemCpyFn;
Chris Lattner4e8a9e82008-11-21 16:43:15 +00001144 const llvm::Type *IntPtr = TheTargetData.getIntPtrType();
1145 return MemCpyFn = getIntrinsic(llvm::Intrinsic::memcpy, &IntPtr, 1);
Reid Spencer5f016e22007-07-11 17:01:13 +00001146}
Anders Carlssonc9e20912007-08-21 00:21:21 +00001147
Eli Friedman0c995092008-05-26 12:59:39 +00001148llvm::Function *CodeGenModule::getMemMoveFn() {
1149 if (MemMoveFn) return MemMoveFn;
Chris Lattner4e8a9e82008-11-21 16:43:15 +00001150 const llvm::Type *IntPtr = TheTargetData.getIntPtrType();
1151 return MemMoveFn = getIntrinsic(llvm::Intrinsic::memmove, &IntPtr, 1);
Eli Friedman0c995092008-05-26 12:59:39 +00001152}
1153
Lauro Ramos Venancio41ef30e2008-02-19 22:01:01 +00001154llvm::Function *CodeGenModule::getMemSetFn() {
1155 if (MemSetFn) return MemSetFn;
Chris Lattner4e8a9e82008-11-21 16:43:15 +00001156 const llvm::Type *IntPtr = TheTargetData.getIntPtrType();
1157 return MemSetFn = getIntrinsic(llvm::Intrinsic::memset, &IntPtr, 1);
Lauro Ramos Venancio41ef30e2008-02-19 22:01:01 +00001158}
Chris Lattner7acda7c2007-12-18 00:25:38 +00001159
Anders Carlssone3daa762008-11-15 18:54:24 +00001160static void appendFieldAndPadding(CodeGenModule &CGM,
1161 std::vector<llvm::Constant*>& Fields,
Douglas Gregor44b43212008-12-11 16:49:14 +00001162 FieldDecl *FieldD, FieldDecl *NextFieldD,
1163 llvm::Constant* Field,
Chris Lattner3c8f1532009-03-21 07:12:05 +00001164 RecordDecl* RD, const llvm::StructType *STy) {
Anders Carlssone3daa762008-11-15 18:54:24 +00001165 // Append the field.
1166 Fields.push_back(Field);
1167
Douglas Gregor44b43212008-12-11 16:49:14 +00001168 int StructFieldNo = CGM.getTypes().getLLVMFieldNo(FieldD);
Anders Carlssone3daa762008-11-15 18:54:24 +00001169
1170 int NextStructFieldNo;
Douglas Gregor44b43212008-12-11 16:49:14 +00001171 if (!NextFieldD) {
Anders Carlssone3daa762008-11-15 18:54:24 +00001172 NextStructFieldNo = STy->getNumElements();
1173 } else {
Douglas Gregor44b43212008-12-11 16:49:14 +00001174 NextStructFieldNo = CGM.getTypes().getLLVMFieldNo(NextFieldD);
Anders Carlssone3daa762008-11-15 18:54:24 +00001175 }
1176
1177 // Append padding
1178 for (int i = StructFieldNo + 1; i < NextStructFieldNo; i++) {
1179 llvm::Constant *C =
1180 llvm::Constant::getNullValue(STy->getElementType(StructFieldNo + 1));
1181
1182 Fields.push_back(C);
1183 }
1184}
1185
Chris Lattnerbef20ac2007-08-31 04:31:45 +00001186llvm::Constant *CodeGenModule::
Steve Naroff8d4141f2009-04-01 13:55:36 +00001187GetAddrOfConstantCFString(const StringLiteral *Literal) {
Steve Naroffb59212a2009-04-01 21:16:31 +00001188 std::string str;
Chris Lattner271474e2009-04-19 06:59:18 +00001189 unsigned StringLength = 0;
Steve Naroffb59212a2009-04-01 21:16:31 +00001190
Steve Naroffe9b7d8a2009-04-01 15:50:34 +00001191 bool isUTF16 = false;
1192 if (Literal->containsNonAsciiOrNull()) {
1193 // Convert from UTF-8 to UTF-16.
1194 llvm::SmallVector<UTF16, 128> ToBuf(Literal->getByteLength());
1195 const UTF8 *FromPtr = (UTF8 *)Literal->getStrData();
1196 UTF16 *ToPtr = &ToBuf[0];
1197
1198 ConversionResult Result;
1199 Result = ConvertUTF8toUTF16(&FromPtr, FromPtr+Literal->getByteLength(),
1200 &ToPtr, ToPtr+Literal->getByteLength(),
1201 strictConversion);
Steve Naroffaa4a7562009-04-13 19:08:08 +00001202 if (Result == conversionOK) {
1203 // FIXME: Storing UTF-16 in a C string is a hack to test Unicode strings
1204 // without doing more surgery to this routine. Since we aren't explicitly
1205 // checking for endianness here, it's also a bug (when generating code for
1206 // a target that doesn't match the host endianness). Modeling this as an
1207 // i16 array is likely the cleanest solution.
1208 StringLength = ToPtr-&ToBuf[0];
1209 str.assign((char *)&ToBuf[0], StringLength*2);// Twice as many UTF8 chars.
1210 isUTF16 = true;
1211 } else if (Result == sourceIllegal) {
Steve Narofffd942622009-04-13 20:26:29 +00001212 // FIXME: Have Sema::CheckObjCString() validate the UTF-8 string.
Steve Naroffaa4a7562009-04-13 19:08:08 +00001213 str.assign(Literal->getStrData(), Literal->getByteLength());
1214 StringLength = str.length();
1215 } else
1216 assert(Result == conversionOK && "UTF-8 to UTF-16 conversion failed");
Steve Naroffb59212a2009-04-01 21:16:31 +00001217
Steve Naroffb59212a2009-04-01 21:16:31 +00001218 } else {
1219 str.assign(Literal->getStrData(), Literal->getByteLength());
1220 StringLength = str.length();
Steve Naroffe9b7d8a2009-04-01 15:50:34 +00001221 }
Anders Carlssonc9e20912007-08-21 00:21:21 +00001222 llvm::StringMapEntry<llvm::Constant *> &Entry =
1223 CFConstantStringMap.GetOrCreateValue(&str[0], &str[str.length()]);
1224
Daniel Dunbar8e5c2b82009-03-31 23:42:16 +00001225 if (llvm::Constant *C = Entry.getValue())
1226 return C;
Anders Carlssonc9e20912007-08-21 00:21:21 +00001227
Daniel Dunbar3e9df992008-08-23 18:37:06 +00001228 llvm::Constant *Zero = llvm::Constant::getNullValue(llvm::Type::Int32Ty);
1229 llvm::Constant *Zeros[] = { Zero, Zero };
Anders Carlssonc9e20912007-08-21 00:21:21 +00001230
1231 if (!CFConstantStringClassRef) {
1232 const llvm::Type *Ty = getTypes().ConvertType(getContext().IntTy);
1233 Ty = llvm::ArrayType::get(Ty, 0);
Daniel Dunbar3e9df992008-08-23 18:37:06 +00001234
Mike Stumpf5408fe2009-05-16 07:57:57 +00001235 // FIXME: This is fairly broken if __CFConstantStringClassReference is
1236 // already defined, in that it will get renamed and the user will most
1237 // likely see an opaque error message. This is a general issue with relying
1238 // on particular names.
Daniel Dunbar3e9df992008-08-23 18:37:06 +00001239 llvm::GlobalVariable *GV =
Anders Carlssonc9e20912007-08-21 00:21:21 +00001240 new llvm::GlobalVariable(Ty, false,
1241 llvm::GlobalVariable::ExternalLinkage, 0,
1242 "__CFConstantStringClassReference",
1243 &getModule());
Daniel Dunbar3e9df992008-08-23 18:37:06 +00001244
1245 // Decay array -> ptr
1246 CFConstantStringClassRef =
1247 llvm::ConstantExpr::getGetElementPtr(GV, Zeros, 2);
Anders Carlssonc9e20912007-08-21 00:21:21 +00001248 }
1249
Anders Carlssone3daa762008-11-15 18:54:24 +00001250 QualType CFTy = getContext().getCFConstantStringType();
1251 RecordDecl *CFRD = CFTy->getAsRecordType()->getDecl();
Daniel Dunbar3e9df992008-08-23 18:37:06 +00001252
Anders Carlssone3daa762008-11-15 18:54:24 +00001253 const llvm::StructType *STy =
1254 cast<llvm::StructType>(getTypes().ConvertType(CFTy));
1255
1256 std::vector<llvm::Constant*> Fields;
Douglas Gregor6ab35242009-04-09 21:40:53 +00001257 RecordDecl::field_iterator Field = CFRD->field_begin(getContext());
Douglas Gregor44b43212008-12-11 16:49:14 +00001258
Anders Carlssonc9e20912007-08-21 00:21:21 +00001259 // Class pointer.
Douglas Gregor44b43212008-12-11 16:49:14 +00001260 FieldDecl *CurField = *Field++;
1261 FieldDecl *NextField = *Field++;
1262 appendFieldAndPadding(*this, Fields, CurField, NextField,
1263 CFConstantStringClassRef, CFRD, STy);
Anders Carlssonc9e20912007-08-21 00:21:21 +00001264
1265 // Flags.
Douglas Gregor44b43212008-12-11 16:49:14 +00001266 CurField = NextField;
1267 NextField = *Field++;
Daniel Dunbar3e9df992008-08-23 18:37:06 +00001268 const llvm::Type *Ty = getTypes().ConvertType(getContext().UnsignedIntTy);
Douglas Gregor44b43212008-12-11 16:49:14 +00001269 appendFieldAndPadding(*this, Fields, CurField, NextField,
Steve Naroffe9b7d8a2009-04-01 15:50:34 +00001270 isUTF16 ? llvm::ConstantInt::get(Ty, 0x07d0)
1271 : llvm::ConstantInt::get(Ty, 0x07C8),
1272 CFRD, STy);
Anders Carlssonc9e20912007-08-21 00:21:21 +00001273
1274 // String pointer.
Douglas Gregor44b43212008-12-11 16:49:14 +00001275 CurField = NextField;
1276 NextField = *Field++;
Daniel Dunbar3e9df992008-08-23 18:37:06 +00001277 llvm::Constant *C = llvm::ConstantArray::get(str);
Daniel Dunbara9668e02009-04-03 00:57:44 +00001278
1279 const char *Sect, *Prefix;
1280 bool isConstant;
1281 if (isUTF16) {
1282 Prefix = getContext().Target.getUnicodeStringSymbolPrefix();
1283 Sect = getContext().Target.getUnicodeStringSection();
1284 // FIXME: Why does GCC not set constant here?
1285 isConstant = false;
1286 } else {
1287 Prefix = getContext().Target.getStringSymbolPrefix(true);
1288 Sect = getContext().Target.getCFStringDataSection();
1289 // FIXME: -fwritable-strings should probably affect this, but we
1290 // are following gcc here.
1291 isConstant = true;
1292 }
Daniel Dunbar8e5c2b82009-03-31 23:42:16 +00001293 llvm::GlobalVariable *GV =
Daniel Dunbara9668e02009-04-03 00:57:44 +00001294 new llvm::GlobalVariable(C->getType(), isConstant,
Daniel Dunbar8e5c2b82009-03-31 23:42:16 +00001295 llvm::GlobalValue::InternalLinkage,
Daniel Dunbara9668e02009-04-03 00:57:44 +00001296 C, Prefix, &getModule());
1297 if (Sect)
Daniel Dunbar8e5c2b82009-03-31 23:42:16 +00001298 GV->setSection(Sect);
Daniel Dunbara9668e02009-04-03 00:57:44 +00001299 if (isUTF16) {
1300 unsigned Align = getContext().getTypeAlign(getContext().ShortTy)/8;
1301 GV->setAlignment(Align);
1302 }
Douglas Gregor44b43212008-12-11 16:49:14 +00001303 appendFieldAndPadding(*this, Fields, CurField, NextField,
Daniel Dunbar8e5c2b82009-03-31 23:42:16 +00001304 llvm::ConstantExpr::getGetElementPtr(GV, Zeros, 2),
Anders Carlssone3daa762008-11-15 18:54:24 +00001305 CFRD, STy);
Anders Carlssonc9e20912007-08-21 00:21:21 +00001306
1307 // String length.
Douglas Gregor44b43212008-12-11 16:49:14 +00001308 CurField = NextField;
1309 NextField = 0;
Anders Carlssonc9e20912007-08-21 00:21:21 +00001310 Ty = getTypes().ConvertType(getContext().LongTy);
Douglas Gregor44b43212008-12-11 16:49:14 +00001311 appendFieldAndPadding(*this, Fields, CurField, NextField,
Steve Naroffb59212a2009-04-01 21:16:31 +00001312 llvm::ConstantInt::get(Ty, StringLength), CFRD, STy);
Anders Carlssonc9e20912007-08-21 00:21:21 +00001313
1314 // The struct.
Anders Carlssone3daa762008-11-15 18:54:24 +00001315 C = llvm::ConstantStruct::get(STy, Fields);
Daniel Dunbar8e5c2b82009-03-31 23:42:16 +00001316 GV = new llvm::GlobalVariable(C->getType(), true,
1317 llvm::GlobalVariable::InternalLinkage, C,
1318 getContext().Target.getCFStringSymbolPrefix(),
1319 &getModule());
1320 if (const char *Sect = getContext().Target.getCFStringSection())
1321 GV->setSection(Sect);
Anders Carlsson0c678292007-11-01 00:41:52 +00001322 Entry.setValue(GV);
Daniel Dunbar3e9df992008-08-23 18:37:06 +00001323
Anders Carlsson0c678292007-11-01 00:41:52 +00001324 return GV;
Anders Carlssonc9e20912007-08-21 00:21:21 +00001325}
Chris Lattner45e8cbd2007-11-28 05:34:05 +00001326
Daniel Dunbar61432932008-08-13 23:20:05 +00001327/// GetStringForStringLiteral - Return the appropriate bytes for a
Daniel Dunbar1e049762008-08-10 20:25:57 +00001328/// string literal, properly padded to match the literal type.
Daniel Dunbar61432932008-08-13 23:20:05 +00001329std::string CodeGenModule::GetStringForStringLiteral(const StringLiteral *E) {
Daniel Dunbar1e049762008-08-10 20:25:57 +00001330 const char *StrData = E->getStrData();
1331 unsigned Len = E->getByteLength();
1332
1333 const ConstantArrayType *CAT =
1334 getContext().getAsConstantArrayType(E->getType());
1335 assert(CAT && "String isn't pointer or array!");
1336
Chris Lattnerdbb1ecc2009-02-26 23:01:51 +00001337 // Resize the string to the right size.
Daniel Dunbar1e049762008-08-10 20:25:57 +00001338 std::string Str(StrData, StrData+Len);
1339 uint64_t RealLen = CAT->getSize().getZExtValue();
Chris Lattnerdbb1ecc2009-02-26 23:01:51 +00001340
1341 if (E->isWide())
1342 RealLen *= getContext().Target.getWCharWidth()/8;
1343
Daniel Dunbar1e049762008-08-10 20:25:57 +00001344 Str.resize(RealLen, '\0');
1345
1346 return Str;
1347}
1348
Daniel Dunbar61432932008-08-13 23:20:05 +00001349/// GetAddrOfConstantStringFromLiteral - Return a pointer to a
1350/// constant array for the given string literal.
1351llvm::Constant *
1352CodeGenModule::GetAddrOfConstantStringFromLiteral(const StringLiteral *S) {
1353 // FIXME: This can be more efficient.
1354 return GetAddrOfConstantString(GetStringForStringLiteral(S));
1355}
1356
Chris Lattnereaf2bb82009-02-24 22:18:39 +00001357/// GetAddrOfConstantStringFromObjCEncode - Return a pointer to a constant
1358/// array for the given ObjCEncodeExpr node.
1359llvm::Constant *
1360CodeGenModule::GetAddrOfConstantStringFromObjCEncode(const ObjCEncodeExpr *E) {
1361 std::string Str;
1362 getContext().getObjCEncodingForType(E->getEncodedType(), Str);
Eli Friedmana210f352009-03-07 20:17:55 +00001363
1364 return GetAddrOfConstantCString(Str);
Chris Lattnereaf2bb82009-02-24 22:18:39 +00001365}
1366
1367
Chris Lattnera7ad98f2008-02-11 00:02:17 +00001368/// GenerateWritableString -- Creates storage for a string literal.
Chris Lattner45e8cbd2007-11-28 05:34:05 +00001369static llvm::Constant *GenerateStringLiteral(const std::string &str,
1370 bool constant,
Daniel Dunbar5fabf9d2008-10-17 21:56:50 +00001371 CodeGenModule &CGM,
1372 const char *GlobalName) {
Daniel Dunbar61432932008-08-13 23:20:05 +00001373 // Create Constant for this string literal. Don't add a '\0'.
1374 llvm::Constant *C = llvm::ConstantArray::get(str, false);
Chris Lattner45e8cbd2007-11-28 05:34:05 +00001375
1376 // Create a global variable for this string
Chris Lattnereaf2bb82009-02-24 22:18:39 +00001377 return new llvm::GlobalVariable(C->getType(), constant,
1378 llvm::GlobalValue::InternalLinkage,
Daniel Dunbar8e5c2b82009-03-31 23:42:16 +00001379 C, GlobalName, &CGM.getModule());
Chris Lattner45e8cbd2007-11-28 05:34:05 +00001380}
1381
Daniel Dunbar61432932008-08-13 23:20:05 +00001382/// GetAddrOfConstantString - Returns a pointer to a character array
1383/// containing the literal. This contents are exactly that of the
1384/// given string, i.e. it will not be null terminated automatically;
1385/// see GetAddrOfConstantCString. Note that whether the result is
1386/// actually a pointer to an LLVM constant depends on
1387/// Feature.WriteableStrings.
1388///
1389/// The result has pointer to array type.
Daniel Dunbar5fabf9d2008-10-17 21:56:50 +00001390llvm::Constant *CodeGenModule::GetAddrOfConstantString(const std::string &str,
1391 const char *GlobalName) {
Daniel Dunbar8e5c2b82009-03-31 23:42:16 +00001392 bool IsConstant = !Features.WritableStrings;
1393
1394 // Get the default prefix if a name wasn't specified.
1395 if (!GlobalName)
1396 GlobalName = getContext().Target.getStringSymbolPrefix(IsConstant);
1397
1398 // Don't share any string literals if strings aren't constant.
1399 if (!IsConstant)
Daniel Dunbar5fabf9d2008-10-17 21:56:50 +00001400 return GenerateStringLiteral(str, false, *this, GlobalName);
Chris Lattner45e8cbd2007-11-28 05:34:05 +00001401
1402 llvm::StringMapEntry<llvm::Constant *> &Entry =
1403 ConstantStringMap.GetOrCreateValue(&str[0], &str[str.length()]);
1404
1405 if (Entry.getValue())
Chris Lattnereaf2bb82009-02-24 22:18:39 +00001406 return Entry.getValue();
Chris Lattner45e8cbd2007-11-28 05:34:05 +00001407
1408 // Create a global variable for this.
Daniel Dunbar5fabf9d2008-10-17 21:56:50 +00001409 llvm::Constant *C = GenerateStringLiteral(str, true, *this, GlobalName);
Chris Lattner45e8cbd2007-11-28 05:34:05 +00001410 Entry.setValue(C);
1411 return C;
1412}
Daniel Dunbar61432932008-08-13 23:20:05 +00001413
1414/// GetAddrOfConstantCString - Returns a pointer to a character
1415/// array containing the literal and a terminating '\-'
1416/// character. The result has pointer to array type.
Daniel Dunbar5fabf9d2008-10-17 21:56:50 +00001417llvm::Constant *CodeGenModule::GetAddrOfConstantCString(const std::string &str,
1418 const char *GlobalName){
Chris Lattnerc9f29c62008-12-09 19:10:54 +00001419 return GetAddrOfConstantString(str + '\0', GlobalName);
Daniel Dunbar61432932008-08-13 23:20:05 +00001420}
Daniel Dunbar41071de2008-08-15 23:26:23 +00001421
Daniel Dunbaraf05bb92008-08-26 08:29:31 +00001422/// EmitObjCPropertyImplementations - Emit information for synthesized
1423/// properties for an implementation.
1424void CodeGenModule::EmitObjCPropertyImplementations(const
1425 ObjCImplementationDecl *D) {
Douglas Gregor653f1b12009-04-23 01:02:12 +00001426 for (ObjCImplementationDecl::propimpl_iterator
1427 i = D->propimpl_begin(getContext()),
1428 e = D->propimpl_end(getContext()); i != e; ++i) {
Daniel Dunbaraf05bb92008-08-26 08:29:31 +00001429 ObjCPropertyImplDecl *PID = *i;
1430
1431 // Dynamic is just for type-checking.
1432 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) {
1433 ObjCPropertyDecl *PD = PID->getPropertyDecl();
1434
1435 // Determine which methods need to be implemented, some may have
1436 // been overridden. Note that ::isSynthesized is not the method
1437 // we want, that just indicates if the decl came from a
1438 // property. What we want to know is if the method is defined in
1439 // this implementation.
Douglas Gregor653f1b12009-04-23 01:02:12 +00001440 if (!D->getInstanceMethod(getContext(), PD->getGetterName()))
Fariborz Jahanianfef30b52008-12-09 20:23:04 +00001441 CodeGenFunction(*this).GenerateObjCGetter(
1442 const_cast<ObjCImplementationDecl *>(D), PID);
Daniel Dunbaraf05bb92008-08-26 08:29:31 +00001443 if (!PD->isReadOnly() &&
Douglas Gregor653f1b12009-04-23 01:02:12 +00001444 !D->getInstanceMethod(getContext(), PD->getSetterName()))
Fariborz Jahanianfef30b52008-12-09 20:23:04 +00001445 CodeGenFunction(*this).GenerateObjCSetter(
1446 const_cast<ObjCImplementationDecl *>(D), PID);
Daniel Dunbaraf05bb92008-08-26 08:29:31 +00001447 }
1448 }
1449}
1450
Anders Carlsson91e20dd2009-04-02 05:55:18 +00001451/// EmitNamespace - Emit all declarations in a namespace.
Anders Carlsson984e0682009-04-01 00:58:25 +00001452void CodeGenModule::EmitNamespace(const NamespaceDecl *ND) {
Douglas Gregor6ab35242009-04-09 21:40:53 +00001453 for (RecordDecl::decl_iterator I = ND->decls_begin(getContext()),
1454 E = ND->decls_end(getContext());
Anders Carlsson984e0682009-04-01 00:58:25 +00001455 I != E; ++I)
1456 EmitTopLevelDecl(*I);
1457}
1458
Anders Carlsson91e20dd2009-04-02 05:55:18 +00001459// EmitLinkageSpec - Emit all declarations in a linkage spec.
1460void CodeGenModule::EmitLinkageSpec(const LinkageSpecDecl *LSD) {
1461 if (LSD->getLanguage() != LinkageSpecDecl::lang_c) {
1462 ErrorUnsupported(LSD, "linkage spec");
1463 return;
1464 }
1465
Douglas Gregor6ab35242009-04-09 21:40:53 +00001466 for (RecordDecl::decl_iterator I = LSD->decls_begin(getContext()),
1467 E = LSD->decls_end(getContext());
Anders Carlsson91e20dd2009-04-02 05:55:18 +00001468 I != E; ++I)
1469 EmitTopLevelDecl(*I);
1470}
1471
Daniel Dunbar41071de2008-08-15 23:26:23 +00001472/// EmitTopLevelDecl - Emit code for a single top level declaration.
1473void CodeGenModule::EmitTopLevelDecl(Decl *D) {
1474 // If an error has occurred, stop code generation, but continue
1475 // parsing and semantic analysis (to ensure all warnings and errors
1476 // are emitted).
1477 if (Diags.hasErrorOccurred())
1478 return;
1479
Douglas Gregor16e8be22009-06-29 17:30:29 +00001480 // Ignore dependent declarations.
1481 if (D->getDeclContext() && D->getDeclContext()->isDependentContext())
1482 return;
1483
Daniel Dunbar41071de2008-08-15 23:26:23 +00001484 switch (D->getKind()) {
Anders Carlsson2b77ba82009-04-04 20:47:02 +00001485 case Decl::CXXMethod:
Daniel Dunbar41071de2008-08-15 23:26:23 +00001486 case Decl::Function:
Douglas Gregor16e8be22009-06-29 17:30:29 +00001487 // Skip function templates
1488 if (cast<FunctionDecl>(D)->getDescribedFunctionTemplate())
1489 return;
1490
1491 // Fall through
1492
Daniel Dunbar41071de2008-08-15 23:26:23 +00001493 case Decl::Var:
Anders Carlsson2a131fb2009-05-05 04:44:02 +00001494 EmitGlobal(GlobalDecl(cast<ValueDecl>(D)));
Daniel Dunbar41071de2008-08-15 23:26:23 +00001495 break;
1496
Anders Carlsson95d4e5d2009-04-15 15:55:24 +00001497 // C++ Decls
Daniel Dunbar41071de2008-08-15 23:26:23 +00001498 case Decl::Namespace:
Anders Carlsson984e0682009-04-01 00:58:25 +00001499 EmitNamespace(cast<NamespaceDecl>(D));
Daniel Dunbar41071de2008-08-15 23:26:23 +00001500 break;
Douglas Gregor9cfbe482009-06-20 00:51:54 +00001501 // No code generation needed.
1502 case Decl::Using:
1503 break;
Anders Carlsson95d4e5d2009-04-15 15:55:24 +00001504 case Decl::CXXConstructor:
1505 EmitCXXConstructors(cast<CXXConstructorDecl>(D));
1506 break;
Anders Carlsson27ae5362009-04-17 01:58:57 +00001507 case Decl::CXXDestructor:
1508 EmitCXXDestructors(cast<CXXDestructorDecl>(D));
1509 break;
Anders Carlsson36674d22009-06-11 21:22:55 +00001510
1511 case Decl::StaticAssert:
1512 // Nothing to do.
1513 break;
1514
Anders Carlsson95d4e5d2009-04-15 15:55:24 +00001515 // Objective-C Decls
Daniel Dunbar41071de2008-08-15 23:26:23 +00001516
Fariborz Jahanian38e24c72009-03-18 22:33:24 +00001517 // Forward declarations, no (immediate) code generation.
Daniel Dunbar41071de2008-08-15 23:26:23 +00001518 case Decl::ObjCClass:
Daniel Dunbar41071de2008-08-15 23:26:23 +00001519 case Decl::ObjCForwardProtocol:
Fariborz Jahanianb31cb7f2009-03-21 18:06:45 +00001520 case Decl::ObjCCategory:
Chris Lattner285d0db2009-04-01 02:36:43 +00001521 case Decl::ObjCInterface:
Chris Lattner285d0db2009-04-01 02:36:43 +00001522 break;
1523
Daniel Dunbar41071de2008-08-15 23:26:23 +00001524 case Decl::ObjCProtocol:
Fariborz Jahanianb31cb7f2009-03-21 18:06:45 +00001525 Runtime->GenerateProtocol(cast<ObjCProtocolDecl>(D));
Daniel Dunbar41071de2008-08-15 23:26:23 +00001526 break;
1527
1528 case Decl::ObjCCategoryImpl:
Daniel Dunbaraf05bb92008-08-26 08:29:31 +00001529 // Categories have properties but don't support synthesize so we
1530 // can ignore them here.
Daniel Dunbar41071de2008-08-15 23:26:23 +00001531 Runtime->GenerateCategory(cast<ObjCCategoryImplDecl>(D));
1532 break;
1533
Daniel Dunbaraf05bb92008-08-26 08:29:31 +00001534 case Decl::ObjCImplementation: {
1535 ObjCImplementationDecl *OMD = cast<ObjCImplementationDecl>(D);
1536 EmitObjCPropertyImplementations(OMD);
1537 Runtime->GenerateClass(OMD);
Daniel Dunbar41071de2008-08-15 23:26:23 +00001538 break;
Daniel Dunbaraf05bb92008-08-26 08:29:31 +00001539 }
Daniel Dunbar41071de2008-08-15 23:26:23 +00001540 case Decl::ObjCMethod: {
1541 ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(D);
1542 // If this is not a prototype, emit the body.
Douglas Gregor72971342009-04-18 00:02:19 +00001543 if (OMD->getBody(getContext()))
Daniel Dunbar41071de2008-08-15 23:26:23 +00001544 CodeGenFunction(*this).GenerateObjCMethod(OMD);
1545 break;
1546 }
Daniel Dunbar41071de2008-08-15 23:26:23 +00001547 case Decl::ObjCCompatibleAlias:
Fariborz Jahanian305c6582009-01-08 01:10:55 +00001548 // compatibility-alias is a directive and has no code gen.
Daniel Dunbar41071de2008-08-15 23:26:23 +00001549 break;
1550
Anders Carlsson91e20dd2009-04-02 05:55:18 +00001551 case Decl::LinkageSpec:
1552 EmitLinkageSpec(cast<LinkageSpecDecl>(D));
Daniel Dunbar41071de2008-08-15 23:26:23 +00001553 break;
Daniel Dunbar41071de2008-08-15 23:26:23 +00001554
1555 case Decl::FileScopeAsm: {
1556 FileScopeAsmDecl *AD = cast<FileScopeAsmDecl>(D);
1557 std::string AsmString(AD->getAsmString()->getStrData(),
1558 AD->getAsmString()->getByteLength());
1559
1560 const std::string &S = getModule().getModuleInlineAsm();
1561 if (S.empty())
1562 getModule().setModuleInlineAsm(AsmString);
1563 else
1564 getModule().setModuleInlineAsm(S + '\n' + AsmString);
1565 break;
1566 }
1567
1568 default:
Mike Stumpf5408fe2009-05-16 07:57:57 +00001569 // Make sure we handled everything we should, every other kind is a
1570 // non-top-level decl. FIXME: Would be nice to have an isTopLevelDeclKind
1571 // function. Need to recode Decl::Kind to do that easily.
Daniel Dunbar41071de2008-08-15 23:26:23 +00001572 assert(isa<TypeDecl>(D) && "Unsupported decl kind");
1573 }
1574}