blob: 1d1721011b0d601d0d86a394779a57a7655fd38a [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 {
Lauro Ramos Venancio81373352008-02-26 21:41:45 +000089 Init = CGM.EmitConstantExpr(D.getInit(), this);
Devang Patele40daa42007-10-26 17:50:58 +000090 }
91
Oliver Hunt28247232007-12-02 00:11:25 +000092 assert(Init && "Unable to create initialiser for static decl");
Nate Begeman8bd4afe2008-04-19 04:17:09 +000093
Chris Lattner352ffde22008-02-06 04:54:32 +000094 std::string ContextName;
Chris Lattnerc8aa5f12008-04-04 04:07:35 +000095 if (const FunctionDecl * FD = dyn_cast<FunctionDecl>(CurFuncDecl))
96 ContextName = FD->getName();
Chris Lattner352ffde22008-02-06 04:54:32 +000097 else
98 assert(0 && "Unknown context for block var decl"); // FIXME Handle objc.
Nate Begeman8bd4afe2008-04-19 04:17:09 +000099
Eli Friedman26590522008-06-08 01:23:18 +0000100 llvm::GlobalValue *GV =
101 new llvm::GlobalVariable(Init->getType(), false,
102 llvm::GlobalValue::InternalLinkage,
Chris Lattner2621fd12008-05-08 05:58:21 +0000103 Init, ContextName + Separator + D.getName(),
Nate Begeman8bd4afe2008-04-19 04:17:09 +0000104 &CGM.getModule(), 0, Ty.getAddressSpace());
105
Chris Lattner2621fd12008-05-08 05:58:21 +0000106 return GV;
107}
108
109void CodeGenFunction::EmitStaticBlockVarDecl(const VarDecl &D) {
110
111 llvm::Value *&DMEntry = LocalDeclMap[&D];
112 assert(DMEntry == 0 && "Decl already exists in localdeclmap!");
113
114 llvm::GlobalValue *GV = GenerateStaticBlockVarDecl(D, false, ".");
115
Nate Begeman8bd4afe2008-04-19 04:17:09 +0000116 if (const AnnotateAttr *AA = D.getAttr<AnnotateAttr>()) {
117 SourceManager &SM = CGM.getContext().getSourceManager();
118 llvm::Constant *Ann =
119 CGM.EmitAnnotateAttr(GV, AA, SM.getLogicalLineNumber(D.getLocation()));
120 CGM.AddAnnotation(Ann);
121 }
122
Eli Friedman26590522008-06-08 01:23:18 +0000123 const llvm::Type *LTy = CGM.getTypes().ConvertTypeForMem(D.getType());
124 const llvm::Type *LPtrTy =
125 llvm::PointerType::get(LTy, D.getType().getAddressSpace());
126 DMEntry = llvm::ConstantExpr::getBitCast(GV, LPtrTy);
Sanjiv Gupta686226b2008-06-05 08:59:10 +0000127
128 // Emit global variable debug descriptor for static vars.
129 CGDebugInfo *DI = CGM.getDebugInfo();
130 if(DI) {
131 if(D.getLocation().isValid())
132 DI->setLocation(D.getLocation());
133 DI->EmitGlobalVariable(static_cast<llvm::GlobalVariable *>(GV), &D);
134 }
135
Anders Carlsson1a86b332007-10-17 00:52:43 +0000136}
137
Reid Spencer5f016e22007-07-11 17:01:13 +0000138/// EmitLocalBlockVarDecl - Emit code and set up an entry in LocalDeclMap for a
139/// variable declaration with auto, register, or no storage class specifier.
Chris Lattner2621fd12008-05-08 05:58:21 +0000140/// These turn into simple stack objects, or GlobalValues depending on target.
Steve Naroff248a7532008-04-15 22:42:06 +0000141void CodeGenFunction::EmitLocalBlockVarDecl(const VarDecl &D) {
Chris Lattner8bcfc5b2008-04-06 23:10:54 +0000142 QualType Ty = D.getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000143
144 llvm::Value *DeclPtr;
Eli Friedman3c2b3172008-02-15 12:20:59 +0000145 if (Ty->isConstantSizeType()) {
Chris Lattner2621fd12008-05-08 05:58:21 +0000146 if (!Target.useGlobalsForAutomaticVariables()) {
147 // A normal fixed sized variable becomes an alloca in the entry block.
148 const llvm::Type *LTy = ConvertType(Ty);
Eli Friedman77eedd62008-05-31 21:20:41 +0000149 llvm::AllocaInst * Alloc = CreateTempAlloca(LTy, D.getName());
150 unsigned align = getContext().getTypeAlign(Ty);
151 if (const AlignedAttr* AA = D.getAttr<AlignedAttr>())
152 align = std::max(align, AA->getAlignment());
153 Alloc->setAlignment(align >> 3);
154 DeclPtr = Alloc;
Chris Lattner2621fd12008-05-08 05:58:21 +0000155 } else {
156 // Targets that don't support recursion emit locals as globals.
157 const char *Class =
158 D.getStorageClass() == VarDecl::Register ? ".reg." : ".auto.";
159 DeclPtr = GenerateStaticBlockVarDecl(D, true, Class);
160 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000161 } else {
162 // TODO: Create a dynamic alloca.
163 assert(0 && "FIXME: Local VLAs not implemented yet");
164 }
165
166 llvm::Value *&DMEntry = LocalDeclMap[&D];
167 assert(DMEntry == 0 && "Decl already exists in localdeclmap!");
168 DMEntry = DeclPtr;
Sanjiv Guptacc9b1632008-05-30 10:30:31 +0000169
170 // Emit debug info for local var declaration.
171 CGDebugInfo *DI = CGM.getDebugInfo();
172 if(DI) {
173 if(D.getLocation().isValid())
174 DI->setLocation(D.getLocation());
175 DI->EmitDeclare(&D, llvm::dwarf::DW_TAG_auto_variable,
176 DeclPtr, Builder);
177 }
178
Chris Lattner19785962007-07-12 00:39:48 +0000179 // If this local has an initializer, emit it now.
Chris Lattner7f02f722007-08-24 05:35:26 +0000180 if (const Expr *Init = D.getInit()) {
Chris Lattnerd31beb12007-08-26 07:29:23 +0000181 if (!hasAggregateLLVMType(Init->getType())) {
182 llvm::Value *V = EmitScalarExpr(Init);
Chris Lattner8b2f3b72007-08-26 07:30:49 +0000183 Builder.CreateStore(V, DeclPtr, D.getType().isVolatileQualified());
Chris Lattner9b2dc282008-04-04 16:54:41 +0000184 } else if (Init->getType()->isAnyComplexType()) {
Chris Lattner190dbe22007-08-26 16:22:13 +0000185 EmitComplexExprIntoAddr(Init, DeclPtr, D.getType().isVolatileQualified());
Chris Lattner9a19edf2007-08-26 05:13:54 +0000186 } else {
Chris Lattner8b2f3b72007-08-26 07:30:49 +0000187 EmitAggExpr(Init, DeclPtr, D.getType().isVolatileQualified());
Chris Lattner9a19edf2007-08-26 05:13:54 +0000188 }
Chris Lattner7f02f722007-08-24 05:35:26 +0000189 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000190}
191
Chris Lattner2621fd12008-05-08 05:58:21 +0000192/// Emit an alloca (or GlobalValue depending on target)
193/// for the specified parameter and set up LocalDeclMap.
Daniel Dunbarb7ec2462008-08-16 03:19:19 +0000194void CodeGenFunction::EmitParmDecl(const VarDecl &D, llvm::Value *Arg) {
195 // FIXME: Why isn't ImplicitParamDecl a ParmVarDecl?
196 assert(isa<ParmVarDecl>(D) || isa<ImplicitParamDecl>(D) &&
197 "Invalid argument to EmitParmDecl");
Chris Lattner8bcfc5b2008-04-06 23:10:54 +0000198 QualType Ty = D.getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000199
200 llvm::Value *DeclPtr;
Eli Friedman3c2b3172008-02-15 12:20:59 +0000201 if (!Ty->isConstantSizeType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000202 // Variable sized values always are passed by-reference.
203 DeclPtr = Arg;
Chris Lattner2621fd12008-05-08 05:58:21 +0000204 } else if (Target.useGlobalsForAutomaticVariables()) {
205 DeclPtr = GenerateStaticBlockVarDecl(D, true, ".arg.");
Reid Spencer5f016e22007-07-11 17:01:13 +0000206 } else {
Dan Gohmand79a7262008-05-22 22:12:56 +0000207 // A fixed sized single-value variable becomes an alloca in the entry block.
Reid Spencer5f016e22007-07-11 17:01:13 +0000208 const llvm::Type *LTy = ConvertType(Ty);
Dan Gohmand79a7262008-05-22 22:12:56 +0000209 if (LTy->isSingleValueType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000210 // TODO: Alignment
211 DeclPtr = new llvm::AllocaInst(LTy, 0, std::string(D.getName())+".addr",
212 AllocaInsertPt);
213
214 // Store the initial value into the alloca.
Eli Friedman1e692ac2008-06-13 23:01:12 +0000215 Builder.CreateStore(Arg, DeclPtr,Ty.isVolatileQualified());
Reid Spencer5f016e22007-07-11 17:01:13 +0000216 } else {
217 // Otherwise, if this is an aggregate, just use the input pointer.
218 DeclPtr = Arg;
219 }
220 Arg->setName(D.getName());
221 }
222
223 llvm::Value *&DMEntry = LocalDeclMap[&D];
224 assert(DMEntry == 0 && "Decl already exists in localdeclmap!");
225 DMEntry = DeclPtr;
Sanjiv Guptacc9b1632008-05-30 10:30:31 +0000226
227 // Emit debug info for param declaration.
228 CGDebugInfo *DI = CGM.getDebugInfo();
229 if(DI) {
230 if(D.getLocation().isValid())
231 DI->setLocation(D.getLocation());
232 DI->EmitDeclare(&D, llvm::dwarf::DW_TAG_arg_variable,
233 DeclPtr, Builder);
234 }
235
Reid Spencer5f016e22007-07-11 17:01:13 +0000236}
237