blob: 8ae93110170de4f0661dd43d2b55d724eb37a403 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- Decl.cpp - Declaration AST Node Implementation -------------------===//
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//
Argyrios Kyrtzidise184bae2008-06-04 13:04:04 +000010// This file implements the Decl subclasses.
Reid Spencer5f016e22007-07-11 17:01:13 +000011//
12//===----------------------------------------------------------------------===//
13
14#include "clang/AST/Decl.h"
Chris Lattner6c2b6eb2008-03-15 06:12:44 +000015#include "clang/AST/ASTContext.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000016#include "clang/AST/Stmt.h"
Nuno Lopes99f06ba2008-12-17 23:39:55 +000017#include "clang/AST/Expr.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000018#include "clang/Basic/IdentifierTable.h"
Ted Kremenek27f8a282008-05-20 00:43:19 +000019
Reid Spencer5f016e22007-07-11 17:01:13 +000020using namespace clang;
21
Chris Lattnerd3b90652008-03-15 05:43:15 +000022//===----------------------------------------------------------------------===//
Chris Lattner6c2b6eb2008-03-15 06:12:44 +000023// Decl Allocation/Deallocation Method Implementations
24//===----------------------------------------------------------------------===//
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +000025
Argyrios Kyrtzidisef177822008-04-17 14:40:12 +000026TranslationUnitDecl *TranslationUnitDecl::Create(ASTContext &C) {
27 void *Mem = C.getAllocator().Allocate<TranslationUnitDecl>();
28 return new (Mem) TranslationUnitDecl();
29}
30
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +000031NamespaceDecl *NamespaceDecl::Create(ASTContext &C, DeclContext *DC,
32 SourceLocation L, IdentifierInfo *Id) {
33 void *Mem = C.getAllocator().Allocate<NamespaceDecl>();
34 return new (Mem) NamespaceDecl(DC, L, Id);
35}
36
Ted Kremenekd1ac17a2008-05-20 04:49:55 +000037void NamespaceDecl::Destroy(ASTContext& C) {
38 // NamespaceDecl uses "NextDeclarator" to chain namespace declarations
39 // together. They are all top-level Decls.
40
Ted Kremenekebf27b12008-05-24 15:09:56 +000041 this->~NamespaceDecl();
Ted Kremenekd1ac17a2008-05-20 04:49:55 +000042 C.getAllocator().Deallocate((void *)this);
43}
44
45
Chris Lattner41110242008-06-17 18:05:57 +000046ImplicitParamDecl *ImplicitParamDecl::Create(ASTContext &C, DeclContext *DC,
47 SourceLocation L, IdentifierInfo *Id, QualType T, ScopedDecl *PrevDecl) {
48 void *Mem = C.getAllocator().Allocate<ImplicitParamDecl>();
49 return new (Mem) ImplicitParamDecl(ImplicitParam, DC, L, Id, T, PrevDecl);
50}
51
Chris Lattner9fdf9c62008-04-22 18:39:57 +000052ParmVarDecl *ParmVarDecl::Create(ASTContext &C, DeclContext *DC,
Chris Lattner0ed844b2008-04-04 06:12:32 +000053 SourceLocation L, IdentifierInfo *Id,
54 QualType T, StorageClass S,
Chris Lattner04421082008-04-08 04:40:51 +000055 Expr *DefArg, ScopedDecl *PrevDecl) {
Chris Lattner9e151e12008-03-15 21:10:16 +000056 void *Mem = C.getAllocator().Allocate<ParmVarDecl>();
Fariborz Jahanian4306d3c2008-12-20 23:29:59 +000057 return new (Mem) ParmVarDecl(ParmVar, DC, L, Id, T, S, DefArg, PrevDecl);
58}
59
60QualType ParmVarDecl::getOriginalType() const {
61 if (const ParmVarWithOriginalTypeDecl *PVD =
62 dyn_cast<ParmVarWithOriginalTypeDecl>(this))
63 return PVD->OriginalType;
64 return getType();
Chris Lattner9e151e12008-03-15 21:10:16 +000065}
66
Fariborz Jahanian73da9e42008-12-20 20:56:12 +000067ParmVarWithOriginalTypeDecl *ParmVarWithOriginalTypeDecl::Create(
68 ASTContext &C, DeclContext *DC,
69 SourceLocation L, IdentifierInfo *Id,
70 QualType T, QualType OT, StorageClass S,
71 Expr *DefArg, ScopedDecl *PrevDecl) {
72 void *Mem = C.getAllocator().Allocate<ParmVarWithOriginalTypeDecl>();
73 return new (Mem) ParmVarWithOriginalTypeDecl(DC, L, Id, T, OT, S,
74 DefArg, PrevDecl);
75}
76
Chris Lattner9fdf9c62008-04-22 18:39:57 +000077FunctionDecl *FunctionDecl::Create(ASTContext &C, DeclContext *DC,
Chris Lattner0ed844b2008-04-04 06:12:32 +000078 SourceLocation L,
Douglas Gregor10bd3682008-11-17 22:58:34 +000079 DeclarationName N, QualType T,
Chris Lattnera98e58d2008-03-15 21:24:04 +000080 StorageClass S, bool isInline,
Steve Naroff0eb07bf2008-10-03 00:02:03 +000081 ScopedDecl *PrevDecl,
82 SourceLocation TypeSpecStartLoc) {
Chris Lattnera98e58d2008-03-15 21:24:04 +000083 void *Mem = C.getAllocator().Allocate<FunctionDecl>();
Douglas Gregor10bd3682008-11-17 22:58:34 +000084 return new (Mem) FunctionDecl(Function, DC, L, N, T, S, isInline, PrevDecl,
Steve Naroff0eb07bf2008-10-03 00:02:03 +000085 TypeSpecStartLoc);
Chris Lattnera98e58d2008-03-15 21:24:04 +000086}
87
Steve Naroff090276f2008-10-10 01:28:17 +000088BlockDecl *BlockDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) {
Steve Naroff56ee6892008-10-08 17:01:13 +000089 void *Mem = C.getAllocator().Allocate<BlockDecl>();
Steve Naroff090276f2008-10-10 01:28:17 +000090 return new (Mem) BlockDecl(DC, L);
Steve Naroff56ee6892008-10-08 17:01:13 +000091}
92
Douglas Gregor44b43212008-12-11 16:49:14 +000093FieldDecl *FieldDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L,
94 IdentifierInfo *Id, QualType T, Expr *BW,
95 bool Mutable, ScopedDecl *PrevDecl) {
Chris Lattner8e25d862008-03-16 00:16:02 +000096 void *Mem = C.getAllocator().Allocate<FieldDecl>();
Douglas Gregor44b43212008-12-11 16:49:14 +000097 return new (Mem) FieldDecl(Decl::Field, DC, L, Id, T, BW, Mutable, PrevDecl);
Chris Lattner8e25d862008-03-16 00:16:02 +000098}
99
Douglas Gregor6b3945f2009-01-07 19:46:03 +0000100bool FieldDecl::isAnonymousStructOrUnion() const {
101 if (!isImplicit() || getDeclName())
102 return false;
103
104 if (const RecordType *Record = getType()->getAsRecordType())
105 return Record->getDecl()->isAnonymousStructOrUnion();
106
107 return false;
108}
Chris Lattnera98e58d2008-03-15 21:24:04 +0000109
Chris Lattner0ed844b2008-04-04 06:12:32 +0000110EnumConstantDecl *EnumConstantDecl::Create(ASTContext &C, EnumDecl *CD,
111 SourceLocation L,
Chris Lattnerc63e6602008-03-15 21:32:50 +0000112 IdentifierInfo *Id, QualType T,
113 Expr *E, const llvm::APSInt &V,
114 ScopedDecl *PrevDecl){
Chris Lattner6c2b6eb2008-03-15 06:12:44 +0000115 void *Mem = C.getAllocator().Allocate<EnumConstantDecl>();
Chris Lattner0ed844b2008-04-04 06:12:32 +0000116 return new (Mem) EnumConstantDecl(CD, L, Id, T, E, V, PrevDecl);
Chris Lattner6c2b6eb2008-03-15 06:12:44 +0000117}
118
Ted Kremenekd1ac17a2008-05-20 04:49:55 +0000119void EnumConstantDecl::Destroy(ASTContext& C) {
120 if (Init) Init->Destroy(C);
121 Decl::Destroy(C);
122}
123
Chris Lattner9fdf9c62008-04-22 18:39:57 +0000124TypedefDecl *TypedefDecl::Create(ASTContext &C, DeclContext *DC,
Chris Lattner0ed844b2008-04-04 06:12:32 +0000125 SourceLocation L,
Chris Lattnerc63e6602008-03-15 21:32:50 +0000126 IdentifierInfo *Id, QualType T,
127 ScopedDecl *PD) {
Chris Lattner6c2b6eb2008-03-15 06:12:44 +0000128 void *Mem = C.getAllocator().Allocate<TypedefDecl>();
Chris Lattner9fdf9c62008-04-22 18:39:57 +0000129 return new (Mem) TypedefDecl(DC, L, Id, T, PD);
Chris Lattner6c2b6eb2008-03-15 06:12:44 +0000130}
131
Chris Lattner9fdf9c62008-04-22 18:39:57 +0000132EnumDecl *EnumDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L,
Chris Lattner0ed844b2008-04-04 06:12:32 +0000133 IdentifierInfo *Id,
Douglas Gregor7df7b6b2008-12-15 16:32:14 +0000134 EnumDecl *PrevDecl) {
Chris Lattner6c2b6eb2008-03-15 06:12:44 +0000135 void *Mem = C.getAllocator().Allocate<EnumDecl>();
Douglas Gregor7df7b6b2008-12-15 16:32:14 +0000136 EnumDecl *Enum = new (Mem) EnumDecl(DC, L, Id, 0);
137 C.getTypeDeclType(Enum, PrevDecl);
138 return Enum;
Chris Lattner6c2b6eb2008-03-15 06:12:44 +0000139}
140
Ted Kremenekdf91eca2008-09-02 20:13:32 +0000141void EnumDecl::Destroy(ASTContext& C) {
Ted Kremenekdf91eca2008-09-02 20:13:32 +0000142 Decl::Destroy(C);
143}
144
Douglas Gregor44b43212008-12-11 16:49:14 +0000145void EnumDecl::completeDefinition(ASTContext &C, QualType NewType) {
146 assert(!isDefinition() && "Cannot redefine enums!");
Douglas Gregor44b43212008-12-11 16:49:14 +0000147 IntegerType = NewType;
Douglas Gregor0b7a1582009-01-17 00:42:38 +0000148 TagDecl::completeDefinition();
Douglas Gregor44b43212008-12-11 16:49:14 +0000149}
150
Chris Lattner0ed844b2008-04-04 06:12:32 +0000151FileScopeAsmDecl *FileScopeAsmDecl::Create(ASTContext &C,
152 SourceLocation L,
Chris Lattner8e25d862008-03-16 00:16:02 +0000153 StringLiteral *Str) {
154 void *Mem = C.getAllocator().Allocate<FileScopeAsmDecl>();
155 return new (Mem) FileScopeAsmDecl(L, Str);
156}
157
Chris Lattner6c2b6eb2008-03-15 06:12:44 +0000158//===----------------------------------------------------------------------===//
Argyrios Kyrtzidis52393042008-11-09 23:41:00 +0000159// ScopedDecl Implementation
160//===----------------------------------------------------------------------===//
161
Douglas Gregora8cc8ce2009-01-09 18:51:29 +0000162void ScopedDecl::setDeclContext(DeclContext *DC) {
163 if (isOutOfSemaDC())
164 delete getMultipleDC();
165
166 DeclCtx = reinterpret_cast<uintptr_t>(DC);
167}
168
Argyrios Kyrtzidis52393042008-11-09 23:41:00 +0000169void ScopedDecl::setLexicalDeclContext(DeclContext *DC) {
170 if (DC == getLexicalDeclContext())
171 return;
172
173 if (isInSemaDC()) {
174 MultipleDC *MDC = new MultipleDC();
175 MDC->SemanticDC = getDeclContext();
176 MDC->LexicalDC = DC;
177 DeclCtx = reinterpret_cast<uintptr_t>(MDC) | 0x1;
178 } else {
179 getMultipleDC()->LexicalDC = DC;
180 }
181}
182
183ScopedDecl::~ScopedDecl() {
184 if (isOutOfSemaDC())
185 delete getMultipleDC();
186}
187
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000188bool ScopedDecl::declarationReplaces(NamedDecl *OldD) const {
189 assert(getDeclName() == OldD->getDeclName() && "Declaration name mismatch");
190
191 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(this))
192 // For function declarations, we keep track of redeclarations.
193 return FD->getPreviousDeclaration() == OldD;
194
195 // For non-function declarations, if the declarations are of the
196 // same kind then this must be a redeclaration, or semantic analysis
197 // would not have given us the new declaration.
198 return this->getKind() == OldD->getKind();
199}
200
Argyrios Kyrtzidis52393042008-11-09 23:41:00 +0000201//===----------------------------------------------------------------------===//
Nuno Lopes99f06ba2008-12-17 23:39:55 +0000202// VarDecl Implementation
203//===----------------------------------------------------------------------===//
204
205VarDecl *VarDecl::Create(ASTContext &C, DeclContext *DC,
206 SourceLocation L,
207 IdentifierInfo *Id, QualType T,
208 StorageClass S, ScopedDecl *PrevDecl,
209 SourceLocation TypeSpecStartLoc) {
210 void *Mem = C.getAllocator().Allocate<VarDecl>();
211 return new (Mem) VarDecl(Var, DC, L, Id, T, S, PrevDecl, TypeSpecStartLoc);
212}
213
214void VarDecl::Destroy(ASTContext& C) {
215 this->~VarDecl();
216 C.getAllocator().Deallocate((void *)this);
217}
218
219VarDecl::~VarDecl() {
220 delete getInit();
221}
222
223//===----------------------------------------------------------------------===//
Chris Lattner8a934232008-03-31 00:36:02 +0000224// FunctionDecl Implementation
225//===----------------------------------------------------------------------===//
226
Reid Spencer5f016e22007-07-11 17:01:13 +0000227FunctionDecl::~FunctionDecl() {
228 delete[] ParamInfo;
Douglas Gregorf0097952008-04-21 02:02:58 +0000229}
230
Ted Kremenek27f8a282008-05-20 00:43:19 +0000231void FunctionDecl::Destroy(ASTContext& C) {
Ted Kremenekb65cf412008-05-20 03:56:00 +0000232 if (Body)
233 Body->Destroy(C);
234
235 for (param_iterator I=param_begin(), E=param_end(); I!=E; ++I)
236 (*I)->Destroy(C);
237
Ted Kremenek27f8a282008-05-20 00:43:19 +0000238 Decl::Destroy(C);
239}
240
241
Douglas Gregorf0097952008-04-21 02:02:58 +0000242Stmt *FunctionDecl::getBody(const FunctionDecl *&Definition) const {
243 for (const FunctionDecl *FD = this; FD != 0; FD = FD->PreviousDeclaration) {
244 if (FD->Body) {
245 Definition = FD;
246 return FD->Body;
247 }
248 }
249
250 return 0;
Reid Spencer5f016e22007-07-11 17:01:13 +0000251}
252
Ted Kremenek4f03fd62008-10-29 18:41:34 +0000253// Helper function for FunctionDecl::getNumParams and FunctionDecl::setParams()
254static unsigned getNumTypeParams(QualType T) {
255 const FunctionType *FT = T->getAsFunctionType();
Chris Lattnerd8bdba52008-04-06 23:09:52 +0000256 if (isa<FunctionTypeNoProto>(FT))
Chris Lattnerd3b90652008-03-15 05:43:15 +0000257 return 0;
Chris Lattnerd8bdba52008-04-06 23:09:52 +0000258 return cast<FunctionTypeProto>(FT)->getNumArgs();
Reid Spencer5f016e22007-07-11 17:01:13 +0000259}
260
Ted Kremenek4f03fd62008-10-29 18:41:34 +0000261unsigned FunctionDecl::getNumParams() const {
262 // Can happen if a FunctionDecl is declared using typeof(some_other_func) bar;
263 if (!ParamInfo)
264 return 0;
265
266 return getNumTypeParams(getType());
267}
268
Ted Kremenekfc767612009-01-14 00:42:25 +0000269void FunctionDecl::setParams(ASTContext& C, ParmVarDecl **NewParamInfo,
270 unsigned NumParams) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000271 assert(ParamInfo == 0 && "Already has param info!");
Ted Kremenek4f03fd62008-10-29 18:41:34 +0000272 assert(NumParams == getNumTypeParams(getType()) &&
273 "Parameter count mismatch!");
Reid Spencer5f016e22007-07-11 17:01:13 +0000274
275 // Zero params -> null pointer.
276 if (NumParams) {
Ted Kremenekfc767612009-01-14 00:42:25 +0000277 void *Mem = C.getAllocator().Allocate<ParmVarDecl*>(NumParams);
278 ParamInfo = new (Mem) ParmVarDecl*[NumParams];
Reid Spencer5f016e22007-07-11 17:01:13 +0000279 memcpy(ParamInfo, NewParamInfo, sizeof(ParmVarDecl*)*NumParams);
280 }
281}
282
Chris Lattner8123a952008-04-10 02:22:51 +0000283/// getMinRequiredArguments - Returns the minimum number of arguments
284/// needed to call this function. This may be fewer than the number of
285/// function parameters, if some of the parameters have default
Chris Lattner9e979552008-04-12 23:52:44 +0000286/// arguments (in C++).
Chris Lattner8123a952008-04-10 02:22:51 +0000287unsigned FunctionDecl::getMinRequiredArguments() const {
288 unsigned NumRequiredArgs = getNumParams();
289 while (NumRequiredArgs > 0
290 && getParamDecl(NumRequiredArgs-1)->getDefaultArg())
291 --NumRequiredArgs;
292
293 return NumRequiredArgs;
294}
295
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +0000296/// getOverloadedOperator - Which C++ overloaded operator this
297/// function represents, if any.
298OverloadedOperatorKind FunctionDecl::getOverloadedOperator() const {
Douglas Gregore94ca9e42008-11-18 14:39:36 +0000299 if (getDeclName().getNameKind() == DeclarationName::CXXOperatorName)
300 return getDeclName().getCXXOverloadedOperator();
Douglas Gregor1cd1b1e2008-11-06 22:13:31 +0000301 else
302 return OO_None;
303}
304
Chris Lattner8a934232008-03-31 00:36:02 +0000305//===----------------------------------------------------------------------===//
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000306// TagDecl Implementation
Ted Kremenek4b7c9832008-09-05 17:16:31 +0000307//===----------------------------------------------------------------------===//
308
Douglas Gregor0b7a1582009-01-17 00:42:38 +0000309void TagDecl::startDefinition() {
310 cast<TagType>(TypeForDecl)->decl.setPointer(this);
311 cast<TagType>(TypeForDecl)->decl.setInt(1);
312}
313
314void TagDecl::completeDefinition() {
315 assert((!TypeForDecl ||
316 cast<TagType>(TypeForDecl)->decl.getPointer() == this) &&
317 "Attempt to redefine a tag definition?");
318 IsDefinition = true;
319 cast<TagType>(TypeForDecl)->decl.setPointer(this);
320 cast<TagType>(TypeForDecl)->decl.setInt(0);
321}
322
Ted Kremenek4b7c9832008-09-05 17:16:31 +0000323TagDecl* TagDecl::getDefinition(ASTContext& C) const {
324 QualType T = C.getTypeDeclType(const_cast<TagDecl*>(this));
325 TagDecl* D = cast<TagDecl>(cast<TagType>(T)->getDecl());
326 return D->isDefinition() ? D : 0;
327}
328
329//===----------------------------------------------------------------------===//
Chris Lattner8a934232008-03-31 00:36:02 +0000330// RecordDecl Implementation
331//===----------------------------------------------------------------------===//
Reid Spencer5f016e22007-07-11 17:01:13 +0000332
Argyrios Kyrtzidis35bc0822008-10-15 00:42:39 +0000333RecordDecl::RecordDecl(Kind DK, TagKind TK, DeclContext *DC, SourceLocation L,
Ted Kremenekdf042e62008-09-05 01:34:33 +0000334 IdentifierInfo *Id)
Douglas Gregor72de6672009-01-08 20:45:30 +0000335 : TagDecl(DK, TK, DC, L, Id, 0) {
Ted Kremenek63597922008-09-02 21:12:32 +0000336 HasFlexibleArrayMember = false;
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000337 AnonymousStructOrUnion = false;
Ted Kremenek63597922008-09-02 21:12:32 +0000338 assert(classof(static_cast<Decl*>(this)) && "Invalid Kind!");
Ted Kremenek63597922008-09-02 21:12:32 +0000339}
340
341RecordDecl *RecordDecl::Create(ASTContext &C, TagKind TK, DeclContext *DC,
Ted Kremenek4b7c9832008-09-05 17:16:31 +0000342 SourceLocation L, IdentifierInfo *Id,
343 RecordDecl* PrevDecl) {
Ted Kremenekdf042e62008-09-05 01:34:33 +0000344
Ted Kremenek63597922008-09-02 21:12:32 +0000345 void *Mem = C.getAllocator().Allocate<RecordDecl>();
Argyrios Kyrtzidis35bc0822008-10-15 00:42:39 +0000346 RecordDecl* R = new (Mem) RecordDecl(Record, TK, DC, L, Id);
Ted Kremenek4b7c9832008-09-05 17:16:31 +0000347 C.getTypeDeclType(R, PrevDecl);
348 return R;
Ted Kremenek63597922008-09-02 21:12:32 +0000349}
350
Argyrios Kyrtzidis997b6c62008-08-08 14:08:55 +0000351RecordDecl::~RecordDecl() {
Argyrios Kyrtzidis997b6c62008-08-08 14:08:55 +0000352}
353
354void RecordDecl::Destroy(ASTContext& C) {
Douglas Gregor44b43212008-12-11 16:49:14 +0000355 DeclContext::DestroyDecls(C);
Argyrios Kyrtzidis997b6c62008-08-08 14:08:55 +0000356 TagDecl::Destroy(C);
357}
358
Douglas Gregor44b43212008-12-11 16:49:14 +0000359/// completeDefinition - Notes that the definition of this type is now
360/// complete.
361void RecordDecl::completeDefinition(ASTContext& C) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000362 assert(!isDefinition() && "Cannot redefine record!");
Douglas Gregor0b7a1582009-01-17 00:42:38 +0000363 TagDecl::completeDefinition();
Reid Spencer5f016e22007-07-11 17:01:13 +0000364}
365
Steve Naroff56ee6892008-10-08 17:01:13 +0000366//===----------------------------------------------------------------------===//
367// BlockDecl Implementation
368//===----------------------------------------------------------------------===//
369
370BlockDecl::~BlockDecl() {
371}
372
373void BlockDecl::Destroy(ASTContext& C) {
374 if (Body)
375 Body->Destroy(C);
376
377 for (param_iterator I=param_begin(), E=param_end(); I!=E; ++I)
378 (*I)->Destroy(C);
379
380 Decl::Destroy(C);
381}