blob: e7085fb5e31ac0a6e148f31969728e124884279d [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"
Reid Spencer5f016e22007-07-11 17:01:13 +000017#include "clang/AST/AST.h"
Nate Begeman8bd4afe2008-04-19 04:17:09 +000018#include "clang/Basic/SourceManager.h"
Chris Lattner2621fd12008-05-08 05:58:21 +000019#include "clang/Basic/TargetInfo.h"
Anders Carlsson1a86b332007-10-17 00:52:43 +000020#include "llvm/GlobalVariable.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021#include "llvm/Type.h"
Sanjiv Guptacc9b1632008-05-30 10:30:31 +000022#include "llvm/Support/Dwarf.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000023using namespace clang;
24using namespace CodeGen;
25
26
27void CodeGenFunction::EmitDecl(const Decl &D) {
Reid Spencer5f016e22007-07-11 17:01:13 +000028 switch (D.getKind()) {
29 default: assert(0 && "Unknown decl kind!");
Chris Lattneraa9fc462007-10-08 21:37:32 +000030 case Decl::ParmVar:
Reid Spencer5f016e22007-07-11 17:01:13 +000031 assert(0 && "Parmdecls should not be in declstmts!");
32 case Decl::Typedef: // typedef int X;
33 case Decl::Function: // void X();
34 case Decl::Struct: // struct X;
35 case Decl::Union: // union X;
36 case Decl::Class: // class X;
37 case Decl::Enum: // enum X;
38 // None of these decls require codegen support.
39 return;
40
Steve Naroff248a7532008-04-15 22:42:06 +000041 case Decl::Var:
42 if (cast<VarDecl>(D).isBlockVarDecl())
43 return EmitBlockVarDecl(cast<VarDecl>(D));
44 assert(0 && "Should not see file-scope variables inside a function!");
45
Reid Spencer5f016e22007-07-11 17:01:13 +000046 case Decl::EnumConstant:
47 return EmitEnumConstantDecl(cast<EnumConstantDecl>(D));
48 }
49}
50
51void CodeGenFunction::EmitEnumConstantDecl(const EnumConstantDecl &D) {
52 assert(0 && "FIXME: Enum constant decls not implemented yet!");
53}
54
55/// EmitBlockVarDecl - This method handles emission of any variable declaration
56/// inside a function, including static vars etc.
Steve Naroff248a7532008-04-15 22:42:06 +000057void CodeGenFunction::EmitBlockVarDecl(const VarDecl &D) {
Reid Spencer5f016e22007-07-11 17:01:13 +000058 switch (D.getStorageClass()) {
59 case VarDecl::Static:
Anders Carlsson1a86b332007-10-17 00:52:43 +000060 return EmitStaticBlockVarDecl(D);
Reid Spencer5f016e22007-07-11 17:01:13 +000061 case VarDecl::Extern:
Lauro Ramos Venanciofea90b82008-02-16 22:30:38 +000062 // Don't emit it now, allow it to be emitted lazily on its first use.
63 return;
Reid Spencer5f016e22007-07-11 17:01:13 +000064 default:
65 assert((D.getStorageClass() == VarDecl::None ||
66 D.getStorageClass() == VarDecl::Auto ||
67 D.getStorageClass() == VarDecl::Register) &&
68 "Unknown storage class");
69 return EmitLocalBlockVarDecl(D);
70 }
71}
72
Chris Lattner2621fd12008-05-08 05:58:21 +000073llvm::GlobalValue *
74CodeGenFunction::GenerateStaticBlockVarDecl(const VarDecl &D,
75 bool NoInit,
76 const char *Separator) {
Chris Lattner8bcfc5b2008-04-06 23:10:54 +000077 QualType Ty = D.getType();
Eli Friedman3c2b3172008-02-15 12:20:59 +000078 assert(Ty->isConstantSizeType() && "VLAs can't be static");
Anders Carlsson1a86b332007-10-17 00:52:43 +000079
Chris Lattner19009e62008-01-09 18:47:25 +000080 const llvm::Type *LTy = CGM.getTypes().ConvertTypeForMem(Ty);
Anders Carlsson1a86b332007-10-17 00:52:43 +000081 llvm::Constant *Init = 0;
Chris Lattner2621fd12008-05-08 05:58:21 +000082 if ((D.getInit() == 0) || NoInit) {
Anders Carlsson1a86b332007-10-17 00:52:43 +000083 Init = llvm::Constant::getNullValue(LTy);
Oliver Hunt28247232007-12-02 00:11:25 +000084 } else {
Lauro Ramos Venancio81373352008-02-26 21:41:45 +000085 Init = CGM.EmitConstantExpr(D.getInit(), this);
Devang Patele40daa42007-10-26 17:50:58 +000086 }
87
Oliver Hunt28247232007-12-02 00:11:25 +000088 assert(Init && "Unable to create initialiser for static decl");
Nate Begeman8bd4afe2008-04-19 04:17:09 +000089
Chris Lattner352ffde22008-02-06 04:54:32 +000090 std::string ContextName;
Chris Lattnerc8aa5f12008-04-04 04:07:35 +000091 if (const FunctionDecl * FD = dyn_cast<FunctionDecl>(CurFuncDecl))
92 ContextName = FD->getName();
Chris Lattner352ffde22008-02-06 04:54:32 +000093 else
94 assert(0 && "Unknown context for block var decl"); // FIXME Handle objc.
Nate Begeman8bd4afe2008-04-19 04:17:09 +000095
Eli Friedman26590522008-06-08 01:23:18 +000096 llvm::GlobalValue *GV =
97 new llvm::GlobalVariable(Init->getType(), false,
98 llvm::GlobalValue::InternalLinkage,
Chris Lattner2621fd12008-05-08 05:58:21 +000099 Init, ContextName + Separator + D.getName(),
Nate Begeman8bd4afe2008-04-19 04:17:09 +0000100 &CGM.getModule(), 0, Ty.getAddressSpace());
101
Chris Lattner2621fd12008-05-08 05:58:21 +0000102 return GV;
103}
104
105void CodeGenFunction::EmitStaticBlockVarDecl(const VarDecl &D) {
106
107 llvm::Value *&DMEntry = LocalDeclMap[&D];
108 assert(DMEntry == 0 && "Decl already exists in localdeclmap!");
109
110 llvm::GlobalValue *GV = GenerateStaticBlockVarDecl(D, false, ".");
111
Nate Begeman8bd4afe2008-04-19 04:17:09 +0000112 if (const AnnotateAttr *AA = D.getAttr<AnnotateAttr>()) {
113 SourceManager &SM = CGM.getContext().getSourceManager();
114 llvm::Constant *Ann =
115 CGM.EmitAnnotateAttr(GV, AA, SM.getLogicalLineNumber(D.getLocation()));
116 CGM.AddAnnotation(Ann);
117 }
118
Eli Friedman26590522008-06-08 01:23:18 +0000119 const llvm::Type *LTy = CGM.getTypes().ConvertTypeForMem(D.getType());
120 const llvm::Type *LPtrTy =
121 llvm::PointerType::get(LTy, D.getType().getAddressSpace());
122 DMEntry = llvm::ConstantExpr::getBitCast(GV, LPtrTy);
Sanjiv Gupta686226b2008-06-05 08:59:10 +0000123
124 // Emit global variable debug descriptor for static vars.
125 CGDebugInfo *DI = CGM.getDebugInfo();
126 if(DI) {
127 if(D.getLocation().isValid())
128 DI->setLocation(D.getLocation());
129 DI->EmitGlobalVariable(static_cast<llvm::GlobalVariable *>(GV), &D);
130 }
131
Anders Carlsson1a86b332007-10-17 00:52:43 +0000132}
133
Reid Spencer5f016e22007-07-11 17:01:13 +0000134/// EmitLocalBlockVarDecl - Emit code and set up an entry in LocalDeclMap for a
135/// variable declaration with auto, register, or no storage class specifier.
Chris Lattner2621fd12008-05-08 05:58:21 +0000136/// These turn into simple stack objects, or GlobalValues depending on target.
Steve Naroff248a7532008-04-15 22:42:06 +0000137void CodeGenFunction::EmitLocalBlockVarDecl(const VarDecl &D) {
Chris Lattner8bcfc5b2008-04-06 23:10:54 +0000138 QualType Ty = D.getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000139
140 llvm::Value *DeclPtr;
Eli Friedman3c2b3172008-02-15 12:20:59 +0000141 if (Ty->isConstantSizeType()) {
Chris Lattner2621fd12008-05-08 05:58:21 +0000142 if (!Target.useGlobalsForAutomaticVariables()) {
143 // A normal fixed sized variable becomes an alloca in the entry block.
144 const llvm::Type *LTy = ConvertType(Ty);
Eli Friedman77eedd62008-05-31 21:20:41 +0000145 llvm::AllocaInst * Alloc = CreateTempAlloca(LTy, D.getName());
146 unsigned align = getContext().getTypeAlign(Ty);
147 if (const AlignedAttr* AA = D.getAttr<AlignedAttr>())
148 align = std::max(align, AA->getAlignment());
149 Alloc->setAlignment(align >> 3);
150 DeclPtr = Alloc;
Chris Lattner2621fd12008-05-08 05:58:21 +0000151 } else {
152 // Targets that don't support recursion emit locals as globals.
153 const char *Class =
154 D.getStorageClass() == VarDecl::Register ? ".reg." : ".auto.";
155 DeclPtr = GenerateStaticBlockVarDecl(D, true, Class);
156 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000157 } else {
158 // TODO: Create a dynamic alloca.
159 assert(0 && "FIXME: Local VLAs not implemented yet");
160 }
161
162 llvm::Value *&DMEntry = LocalDeclMap[&D];
163 assert(DMEntry == 0 && "Decl already exists in localdeclmap!");
164 DMEntry = DeclPtr;
Sanjiv Guptacc9b1632008-05-30 10:30:31 +0000165
166 // Emit debug info for local var declaration.
167 CGDebugInfo *DI = CGM.getDebugInfo();
168 if(DI) {
169 if(D.getLocation().isValid())
170 DI->setLocation(D.getLocation());
171 DI->EmitDeclare(&D, llvm::dwarf::DW_TAG_auto_variable,
172 DeclPtr, Builder);
173 }
174
Chris Lattner19785962007-07-12 00:39:48 +0000175 // If this local has an initializer, emit it now.
Chris Lattner7f02f722007-08-24 05:35:26 +0000176 if (const Expr *Init = D.getInit()) {
Chris Lattnerd31beb12007-08-26 07:29:23 +0000177 if (!hasAggregateLLVMType(Init->getType())) {
178 llvm::Value *V = EmitScalarExpr(Init);
Chris Lattner8b2f3b72007-08-26 07:30:49 +0000179 Builder.CreateStore(V, DeclPtr, D.getType().isVolatileQualified());
Chris Lattner9b2dc282008-04-04 16:54:41 +0000180 } else if (Init->getType()->isAnyComplexType()) {
Chris Lattner190dbe22007-08-26 16:22:13 +0000181 EmitComplexExprIntoAddr(Init, DeclPtr, D.getType().isVolatileQualified());
Chris Lattner9a19edf2007-08-26 05:13:54 +0000182 } else {
Chris Lattner8b2f3b72007-08-26 07:30:49 +0000183 EmitAggExpr(Init, DeclPtr, D.getType().isVolatileQualified());
Chris Lattner9a19edf2007-08-26 05:13:54 +0000184 }
Chris Lattner7f02f722007-08-24 05:35:26 +0000185 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000186}
187
Chris Lattner2621fd12008-05-08 05:58:21 +0000188/// Emit an alloca (or GlobalValue depending on target)
189/// for the specified parameter and set up LocalDeclMap.
Reid Spencer5f016e22007-07-11 17:01:13 +0000190void CodeGenFunction::EmitParmDecl(const ParmVarDecl &D, llvm::Value *Arg) {
Chris Lattner8bcfc5b2008-04-06 23:10:54 +0000191 QualType Ty = D.getType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000192
193 llvm::Value *DeclPtr;
Eli Friedman3c2b3172008-02-15 12:20:59 +0000194 if (!Ty->isConstantSizeType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000195 // Variable sized values always are passed by-reference.
196 DeclPtr = Arg;
Chris Lattner2621fd12008-05-08 05:58:21 +0000197 } else if (Target.useGlobalsForAutomaticVariables()) {
198 DeclPtr = GenerateStaticBlockVarDecl(D, true, ".arg.");
Reid Spencer5f016e22007-07-11 17:01:13 +0000199 } else {
Dan Gohmand79a7262008-05-22 22:12:56 +0000200 // A fixed sized single-value variable becomes an alloca in the entry block.
Reid Spencer5f016e22007-07-11 17:01:13 +0000201 const llvm::Type *LTy = ConvertType(Ty);
Dan Gohmand79a7262008-05-22 22:12:56 +0000202 if (LTy->isSingleValueType()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000203 // TODO: Alignment
204 DeclPtr = new llvm::AllocaInst(LTy, 0, std::string(D.getName())+".addr",
205 AllocaInsertPt);
206
207 // Store the initial value into the alloca.
208 Builder.CreateStore(Arg, DeclPtr);
209 } else {
210 // Otherwise, if this is an aggregate, just use the input pointer.
211 DeclPtr = Arg;
212 }
213 Arg->setName(D.getName());
214 }
215
216 llvm::Value *&DMEntry = LocalDeclMap[&D];
217 assert(DMEntry == 0 && "Decl already exists in localdeclmap!");
218 DMEntry = DeclPtr;
Sanjiv Guptacc9b1632008-05-30 10:30:31 +0000219
220 // Emit debug info for param declaration.
221 CGDebugInfo *DI = CGM.getDebugInfo();
222 if(DI) {
223 if(D.getLocation().isValid())
224 DI->setLocation(D.getLocation());
225 DI->EmitDeclare(&D, llvm::dwarf::DW_TAG_arg_variable,
226 DeclPtr, Builder);
227 }
228
Reid Spencer5f016e22007-07-11 17:01:13 +0000229}
230