blob: b60e20fda5ac334469d7b0c96f3389fa4e559292 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- CGDecl.cpp - Emit LLVM Code for declarations ---------------------===//
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 contains code to emit Decl nodes as LLVM code.
11//
12//===----------------------------------------------------------------------===//
13
Sanjiv Guptacc9b1632008-05-30 10:30:31 +000014#include "CGDebugInfo.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000015#include "CodeGenFunction.h"
Anders Carlsson1a86b332007-10-17 00:52:43 +000016#include "CodeGenModule.h"
Daniel Dunbarde7fb842008-08-11 05:00:27 +000017#include "clang/AST/ASTContext.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000018#include "clang/AST/Decl.h"
Nate Begeman8bd4afe2008-04-19 04:17:09 +000019#include "clang/Basic/SourceManager.h"
Chris Lattner2621fd12008-05-08 05:58:21 +000020#include "clang/Basic/TargetInfo.h"
Anders Carlsson1a86b332007-10-17 00:52:43 +000021#include "llvm/GlobalVariable.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022#include "llvm/Type.h"
Sanjiv Guptacc9b1632008-05-30 10:30:31 +000023#include "llvm/Support/Dwarf.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000024using namespace clang;
25using namespace CodeGen;
26
27
28void CodeGenFunction::EmitDecl(const Decl &D) {
Reid Spencer5f016e22007-07-11 17:01:13 +000029 switch (D.getKind()) {
30 default: assert(0 && "Unknown decl kind!");
Chris Lattneraa9fc462007-10-08 21:37:32 +000031 case Decl::ParmVar:
Reid Spencer5f016e22007-07-11 17:01:13 +000032 assert(0 && "Parmdecls should not be in declstmts!");
33 case Decl::Typedef: // typedef int X;
34 case Decl::Function: // void X();
35 case Decl::Struct: // struct X;
36 case Decl::Union: // union X;
37 case Decl::Class: // class X;
38 case Decl::Enum: // enum X;
Argyrios Kyrtzidisa7a6dc02008-06-09 23:42:47 +000039 case Decl::CXXStruct: // struct X; [C++]
40 case Decl::CXXUnion: // union X; [C++]
41 case Decl::CXXClass: // class X; [C++]
Reid Spencer5f016e22007-07-11 17:01:13 +000042 // None of these decls require codegen support.
43 return;
44
Steve Naroff248a7532008-04-15 22:42:06 +000045 case Decl::Var:
46 if (cast<VarDecl>(D).isBlockVarDecl())
47 return EmitBlockVarDecl(cast<VarDecl>(D));
48 assert(0 && "Should not see file-scope variables inside a function!");
49
Reid Spencer5f016e22007-07-11 17:01:13 +000050 case Decl::EnumConstant:
51 return EmitEnumConstantDecl(cast<EnumConstantDecl>(D));
52 }
53}
54
55void CodeGenFunction::EmitEnumConstantDecl(const EnumConstantDecl &D) {
56 assert(0 && "FIXME: Enum constant decls not implemented yet!");
57}
58
59/// EmitBlockVarDecl - This method handles emission of any variable declaration
60/// inside a function, including static vars etc.
Steve Naroff248a7532008-04-15 22:42:06 +000061void CodeGenFunction::EmitBlockVarDecl(const VarDecl &D) {
Reid Spencer5f016e22007-07-11 17:01:13 +000062 switch (D.getStorageClass()) {
63 case VarDecl::Static:
Anders Carlsson1a86b332007-10-17 00:52:43 +000064 return EmitStaticBlockVarDecl(D);
Reid Spencer5f016e22007-07-11 17:01:13 +000065 case VarDecl::Extern:
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +000066 // Don't emit it now, allow it to be emitted lazily on its first use.
67 return;
Reid Spencer5f016e22007-07-11 17:01:13 +000068 default:
69 assert((D.getStorageClass() == VarDecl::None ||
70 D.getStorageClass() == VarDecl::Auto ||
71 D.getStorageClass() == VarDecl::Register) &&
72 "Unknown storage class");
73 return EmitLocalBlockVarDecl(D);
74 }
75}
76
Chris Lattner2621fd12008-05-08 05:58:21 +000077llvm::GlobalValue *
78CodeGenFunction::GenerateStaticBlockVarDecl(const VarDecl &D,
79 bool NoInit,
80 const char *Separator) {
Chris Lattner8bcfc5b2008-04-06 23:10:54 +000081 QualType Ty = D.getType();
Eli Friedman3c2b3172008-02-15 12:20:59 +000082 assert(Ty->isConstantSizeType() && "VLAs can't be static");
Anders Carlsson1a86b332007-10-17 00:52:43 +000083
Chris Lattner19009e62008-01-09 18:47:25 +000084 const llvm::Type *LTy = CGM.getTypes().ConvertTypeForMem(Ty);
Anders Carlsson1a86b332007-10-17 00:52:43 +000085 llvm::Constant *Init = 0;
Chris Lattner2621fd12008-05-08 05:58:21 +000086 if ((D.getInit() == 0) || NoInit) {
Anders Carlsson1a86b332007-10-17 00:52:43 +000087 Init = llvm::Constant::getNullValue(LTy);
Oliver Hunt28247232007-12-02 00:11:25 +000088 } else {
Anders Carlssone1b29ef2008-08-22 16:00:37 +000089 if (D.getInit()->isConstantExpr(getContext(), 0))
90 Init = CGM.EmitConstantExpr(D.getInit(), this);
91 else {
92 assert(getContext().getLangOptions().CPlusPlus &&
93 "only C++ supports non-constant static initializers!");
94 return GenerateStaticCXXBlockVarDecl(D);
95 }
Devang Patele40daa42007-10-26 17:50:58 +000096 }
97
Oliver Hunt28247232007-12-02 00:11:25 +000098 assert(Init && "Unable to create initialiser for static decl");
Nate Begeman8bd4afe2008-04-19 04:17:09 +000099
Chris Lattner352ffde22008-02-06 04:54:32 +0000100 std::string ContextName;
Chris Lattnerc8aa5f12008-04-04 04:07:35 +0000101 if (const FunctionDecl * FD = dyn_cast<FunctionDecl>(CurFuncDecl))
102 ContextName = FD->getName();
Chris Lattner352ffde22008-02-06 04:54:32 +0000103 else
104 assert(0 && "Unknown context for block var decl"); // FIXME Handle objc.
Nate Begeman8bd4afe2008-04-19 04:17:09 +0000105
Eli Friedman26590522008-06-08 01:23:18 +0000106 llvm::GlobalValue *GV =
107 new llvm::GlobalVariable(Init->getType(), false,
108 llvm::GlobalValue::InternalLinkage,
Chris Lattner2621fd12008-05-08 05:58:21 +0000109 Init, ContextName + Separator + D.getName(),
Nate Begeman8bd4afe2008-04-19 04:17:09 +0000110 &CGM.getModule(), 0, Ty.getAddressSpace());
111
Chris Lattner2621fd12008-05-08 05:58:21 +0000112 return GV;
113}
114
115void CodeGenFunction::EmitStaticBlockVarDecl(const VarDecl &D) {
116
117 llvm::Value *&DMEntry = LocalDeclMap[&D];
118 assert(DMEntry == 0 && "Decl already exists in localdeclmap!");
119
120 llvm::GlobalValue *GV = GenerateStaticBlockVarDecl(D, false, ".");
121
Nate Begeman8bd4afe2008-04-19 04:17:09 +0000122 if (const AnnotateAttr *AA = D.getAttr<AnnotateAttr>()) {
123 SourceManager &SM = CGM.getContext().getSourceManager();
124 llvm::Constant *Ann =
125 CGM.EmitAnnotateAttr(GV, AA, SM.getLogicalLineNumber(D.getLocation()));
126 CGM.AddAnnotation(Ann);
127 }
128
Eli Friedman26590522008-06-08 01:23:18 +0000129 const llvm::Type *LTy = CGM.getTypes().ConvertTypeForMem(D.getType());
130 const llvm::Type *LPtrTy =
131 llvm::PointerType::get(LTy, D.getType().getAddressSpace());
132 DMEntry = llvm::ConstantExpr::getBitCast(GV, LPtrTy);
Sanjiv Gupta686226b2008-06-05 08:59:10 +0000133
134 // Emit global variable debug descriptor for static vars.
135 CGDebugInfo *DI = CGM.getDebugInfo();
136 if(DI) {
137 if(D.getLocation().isValid())
138 DI->setLocation(D.getLocation());
139 DI->EmitGlobalVariable(static_cast<llvm::GlobalVariable *>(GV), &D);
140 }
141
Anders Carlsson1a86b332007-10-17 00:52:43 +0000142}
143
Reid Spencer5f016e22007-07-11 17:01:13 +0000144/// EmitLocalBlockVarDecl - Emit code and set up an entry in LocalDeclMap for a
145/// variable declaration with auto, register, or no storage class specifier.
Chris Lattner2621fd12008-05-08 05:58:21 +0000146/// These turn into simple stack objects, or GlobalValues depending on target.
Steve Naroff248a7532008-04-15 22:42:06 +0000147void CodeGenFunction::EmitLocalBlockVarDecl(const VarDecl &D) {
Chris Lattner8bcfc5b2008-04-06 23:10:54 +0000148 QualType Ty = D.getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000149
150 llvm::Value *DeclPtr;
Eli Friedman3c2b3172008-02-15 12:20:59 +0000151 if (Ty->isConstantSizeType()) {
Chris Lattner2621fd12008-05-08 05:58:21 +0000152 if (!Target.useGlobalsForAutomaticVariables()) {
153 // A normal fixed sized variable becomes an alloca in the entry block.
154 const llvm::Type *LTy = ConvertType(Ty);
Eli Friedman77eedd62008-05-31 21:20:41 +0000155 llvm::AllocaInst * Alloc = CreateTempAlloca(LTy, D.getName());
156 unsigned align = getContext().getTypeAlign(Ty);
157 if (const AlignedAttr* AA = D.getAttr<AlignedAttr>())
158 align = std::max(align, AA->getAlignment());
159 Alloc->setAlignment(align >> 3);
160 DeclPtr = Alloc;
Chris Lattner2621fd12008-05-08 05:58:21 +0000161 } else {
162 // Targets that don't support recursion emit locals as globals.
163 const char *Class =
164 D.getStorageClass() == VarDecl::Register ? ".reg." : ".auto.";
165 DeclPtr = GenerateStaticBlockVarDecl(D, true, Class);
166 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000167 } else {
168 // TODO: Create a dynamic alloca.
169 assert(0 && "FIXME: Local VLAs not implemented yet");
170 }
171
172 llvm::Value *&DMEntry = LocalDeclMap[&D];
173 assert(DMEntry == 0 && "Decl already exists in localdeclmap!");
174 DMEntry = DeclPtr;
Sanjiv Guptacc9b1632008-05-30 10:30:31 +0000175
176 // Emit debug info for local var declaration.
177 CGDebugInfo *DI = CGM.getDebugInfo();
178 if(DI) {
179 if(D.getLocation().isValid())
180 DI->setLocation(D.getLocation());
181 DI->EmitDeclare(&D, llvm::dwarf::DW_TAG_auto_variable,
182 DeclPtr, Builder);
183 }
184
Chris Lattner19785962007-07-12 00:39:48 +0000185 // If this local has an initializer, emit it now.
Chris Lattner7f02f722007-08-24 05:35:26 +0000186 if (const Expr *Init = D.getInit()) {
Chris Lattnerd31beb12007-08-26 07:29:23 +0000187 if (!hasAggregateLLVMType(Init->getType())) {
188 llvm::Value *V = EmitScalarExpr(Init);
Chris Lattner8b2f3b72007-08-26 07:30:49 +0000189 Builder.CreateStore(V, DeclPtr, D.getType().isVolatileQualified());
Chris Lattner9b2dc282008-04-04 16:54:41 +0000190 } else if (Init->getType()->isAnyComplexType()) {
Chris Lattner190dbe22007-08-26 16:22:13 +0000191 EmitComplexExprIntoAddr(Init, DeclPtr, D.getType().isVolatileQualified());
Chris Lattner9a19edf2007-08-26 05:13:54 +0000192 } else {
Chris Lattner8b2f3b72007-08-26 07:30:49 +0000193 EmitAggExpr(Init, DeclPtr, D.getType().isVolatileQualified());
Chris Lattner9a19edf2007-08-26 05:13:54 +0000194 }
Chris Lattner7f02f722007-08-24 05:35:26 +0000195 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000196}
197
Chris Lattner2621fd12008-05-08 05:58:21 +0000198/// Emit an alloca (or GlobalValue depending on target)
199/// for the specified parameter and set up LocalDeclMap.
Daniel Dunbarb7ec2462008-08-16 03:19:19 +0000200void CodeGenFunction::EmitParmDecl(const VarDecl &D, llvm::Value *Arg) {
201 // FIXME: Why isn't ImplicitParamDecl a ParmVarDecl?
202 assert(isa<ParmVarDecl>(D) || isa<ImplicitParamDecl>(D) &&
203 "Invalid argument to EmitParmDecl");
Chris Lattner8bcfc5b2008-04-06 23:10:54 +0000204 QualType Ty = D.getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000205
206 llvm::Value *DeclPtr;
Eli Friedman3c2b3172008-02-15 12:20:59 +0000207 if (!Ty->isConstantSizeType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000208 // Variable sized values always are passed by-reference.
209 DeclPtr = Arg;
Chris Lattner2621fd12008-05-08 05:58:21 +0000210 } else if (Target.useGlobalsForAutomaticVariables()) {
211 DeclPtr = GenerateStaticBlockVarDecl(D, true, ".arg.");
Reid Spencer5f016e22007-07-11 17:01:13 +0000212 } else {
Dan Gohmand79a7262008-05-22 22:12:56 +0000213 // A fixed sized single-value variable becomes an alloca in the entry block.
Reid Spencer5f016e22007-07-11 17:01:13 +0000214 const llvm::Type *LTy = ConvertType(Ty);
Dan Gohmand79a7262008-05-22 22:12:56 +0000215 if (LTy->isSingleValueType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000216 // TODO: Alignment
217 DeclPtr = new llvm::AllocaInst(LTy, 0, std::string(D.getName())+".addr",
218 AllocaInsertPt);
219
220 // Store the initial value into the alloca.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000221 Builder.CreateStore(Arg, DeclPtr,Ty.isVolatileQualified());
Reid Spencer5f016e22007-07-11 17:01:13 +0000222 } else {
223 // Otherwise, if this is an aggregate, just use the input pointer.
224 DeclPtr = Arg;
225 }
226 Arg->setName(D.getName());
227 }
228
229 llvm::Value *&DMEntry = LocalDeclMap[&D];
230 assert(DMEntry == 0 && "Decl already exists in localdeclmap!");
231 DMEntry = DeclPtr;
Sanjiv Guptacc9b1632008-05-30 10:30:31 +0000232
233 // Emit debug info for param declaration.
234 CGDebugInfo *DI = CGM.getDebugInfo();
235 if(DI) {
236 if(D.getLocation().isValid())
237 DI->setLocation(D.getLocation());
238 DI->EmitDeclare(&D, llvm::dwarf::DW_TAG_arg_variable,
239 DeclPtr, Builder);
240 }
241
Reid Spencer5f016e22007-07-11 17:01:13 +0000242}
243