blob: 0ccd6b436b8a81ea8a94fd1270671e68c564ab42 [file] [log] [blame]
Eli Friedman56d29372008-06-07 16:52:53 +00001//===--- DeclBase.cpp - Declaration AST Node Implementation ---------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Decl and DeclContext classes.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/AST/DeclBase.h"
Douglas Gregor64650af2009-02-02 23:39:07 +000015#include "clang/AST/Decl.h"
Douglas Gregorc2ee10d2009-04-07 17:20:56 +000016#include "clang/AST/DeclContextInternals.h"
Argyrios Kyrtzidisd3bb44f2008-06-09 21:05:31 +000017#include "clang/AST/DeclCXX.h"
Douglas Gregoraaba5e32009-02-04 19:02:06 +000018#include "clang/AST/DeclObjC.h"
19#include "clang/AST/DeclTemplate.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000020#include "clang/AST/ExternalASTSource.h"
Eli Friedman56d29372008-06-07 16:52:53 +000021#include "clang/AST/ASTContext.h"
Douglas Gregor44b43212008-12-11 16:49:14 +000022#include "clang/AST/Type.h"
Sebastian Redld3a413d2009-04-26 20:35:05 +000023#include "clang/AST/Stmt.h"
24#include "clang/AST/StmtCXX.h"
Eli Friedman56d29372008-06-07 16:52:53 +000025#include "llvm/ADT/DenseMap.h"
Chris Lattner49f28ca2009-03-05 08:00:35 +000026#include "llvm/Support/raw_ostream.h"
Douglas Gregor6ed40e32008-12-23 21:05:05 +000027#include <algorithm>
Chris Lattner3daed522009-03-02 22:20:04 +000028#include <cstdio>
Douglas Gregor3fc749d2008-12-23 00:26:44 +000029#include <vector>
Eli Friedman56d29372008-06-07 16:52:53 +000030using namespace clang;
31
32//===----------------------------------------------------------------------===//
33// Statistics
34//===----------------------------------------------------------------------===//
35
Douglas Gregor64650af2009-02-02 23:39:07 +000036#define DECL(Derived, Base) static int n##Derived##s = 0;
37#include "clang/AST/DeclNodes.def"
Eli Friedman56d29372008-06-07 16:52:53 +000038
39static bool StatSwitch = false;
40
Eli Friedman56d29372008-06-07 16:52:53 +000041const char *Decl::getDeclKindName() const {
42 switch (DeclKind) {
Douglas Gregor64650af2009-02-02 23:39:07 +000043 default: assert(0 && "Declaration not in DeclNodes.def!");
44#define DECL(Derived, Base) case Derived: return #Derived;
45#include "clang/AST/DeclNodes.def"
Eli Friedman56d29372008-06-07 16:52:53 +000046 }
47}
48
Steve Naroff0a473932009-01-20 19:53:53 +000049const char *DeclContext::getDeclKindName() const {
50 switch (DeclKind) {
Douglas Gregor64650af2009-02-02 23:39:07 +000051 default: assert(0 && "Declaration context not in DeclNodes.def!");
Argyrios Kyrtzidis1ad4dd72009-02-16 14:28:33 +000052#define DECL(Derived, Base) case Decl::Derived: return #Derived;
Douglas Gregor64650af2009-02-02 23:39:07 +000053#include "clang/AST/DeclNodes.def"
Steve Naroff0a473932009-01-20 19:53:53 +000054 }
55}
56
Eli Friedman56d29372008-06-07 16:52:53 +000057bool Decl::CollectingStats(bool Enable) {
58 if (Enable)
59 StatSwitch = true;
60 return StatSwitch;
61}
62
63void Decl::PrintStats() {
64 fprintf(stderr, "*** Decl Stats:\n");
Eli Friedman56d29372008-06-07 16:52:53 +000065
Douglas Gregor64650af2009-02-02 23:39:07 +000066 int totalDecls = 0;
67#define DECL(Derived, Base) totalDecls += n##Derived##s;
68#include "clang/AST/DeclNodes.def"
69 fprintf(stderr, " %d decls total.\n", totalDecls);
70
71 int totalBytes = 0;
72#define DECL(Derived, Base) \
73 if (n##Derived##s > 0) { \
74 totalBytes += (int)(n##Derived##s * sizeof(Derived##Decl)); \
75 fprintf(stderr, " %d " #Derived " decls, %d each (%d bytes)\n", \
76 n##Derived##s, (int)sizeof(Derived##Decl), \
77 (int)(n##Derived##s * sizeof(Derived##Decl))); \
78 }
79#include "clang/AST/DeclNodes.def"
Eli Friedman56d29372008-06-07 16:52:53 +000080
Douglas Gregor64650af2009-02-02 23:39:07 +000081 fprintf(stderr, "Total bytes = %d\n", totalBytes);
Eli Friedman56d29372008-06-07 16:52:53 +000082}
83
84void Decl::addDeclKind(Kind k) {
85 switch (k) {
Douglas Gregor64650af2009-02-02 23:39:07 +000086 default: assert(0 && "Declaration not in DeclNodes.def!");
87#define DECL(Derived, Base) case Derived: ++n##Derived##s; break;
88#include "clang/AST/DeclNodes.def"
Eli Friedman56d29372008-06-07 16:52:53 +000089 }
90}
91
Anders Carlsson67e33202009-06-13 00:08:58 +000092bool Decl::isTemplateParameterPack() const {
93 if (const TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(this))
94 return TTP->isParameterPack();
95
96 return false;
97}
98
Douglas Gregore53060f2009-06-25 22:08:12 +000099bool Decl::isFunctionOrFunctionTemplate() const {
Anders Carlsson58badb72009-06-26 05:26:50 +0000100 if (const UsingDecl *UD = dyn_cast<UsingDecl>(this))
101 return UD->getTargetDecl()->isFunctionOrFunctionTemplate();
102
Douglas Gregore53060f2009-06-25 22:08:12 +0000103 return isa<FunctionDecl>(this) || isa<FunctionTemplateDecl>(this);
104}
105
Eli Friedman56d29372008-06-07 16:52:53 +0000106//===----------------------------------------------------------------------===//
Chris Lattner49f28ca2009-03-05 08:00:35 +0000107// PrettyStackTraceDecl Implementation
108//===----------------------------------------------------------------------===//
109
110void PrettyStackTraceDecl::print(llvm::raw_ostream &OS) const {
111 SourceLocation TheLoc = Loc;
112 if (TheLoc.isInvalid() && TheDecl)
113 TheLoc = TheDecl->getLocation();
114
115 if (TheLoc.isValid()) {
116 TheLoc.print(OS, SM);
117 OS << ": ";
118 }
119
120 OS << Message;
121
122 if (NamedDecl *DN = dyn_cast_or_null<NamedDecl>(TheDecl))
123 OS << " '" << DN->getQualifiedNameAsString() << '\'';
124 OS << '\n';
125}
126
127//===----------------------------------------------------------------------===//
Eli Friedman56d29372008-06-07 16:52:53 +0000128// Decl Implementation
129//===----------------------------------------------------------------------===//
130
Chris Lattner769dbdf2009-03-27 20:18:19 +0000131// Out-of-line virtual method providing a home for Decl.
132Decl::~Decl() {
133 if (isOutOfSemaDC())
134 delete getMultipleDC();
135
136 assert(!HasAttrs && "attributes should have been freed by Destroy");
137}
138
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000139void Decl::setDeclContext(DeclContext *DC) {
140 if (isOutOfSemaDC())
141 delete getMultipleDC();
142
Chris Lattneree219fd2009-03-29 06:06:59 +0000143 DeclCtx = DC;
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000144}
145
146void Decl::setLexicalDeclContext(DeclContext *DC) {
147 if (DC == getLexicalDeclContext())
148 return;
149
150 if (isInSemaDC()) {
151 MultipleDC *MDC = new MultipleDC();
152 MDC->SemanticDC = getDeclContext();
153 MDC->LexicalDC = DC;
Chris Lattneree219fd2009-03-29 06:06:59 +0000154 DeclCtx = MDC;
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000155 } else {
156 getMultipleDC()->LexicalDC = DC;
157 }
158}
159
Argyrios Kyrtzidis3708b3d2009-06-29 17:38:40 +0000160TranslationUnitDecl *Decl::getTranslationUnitDecl() {
161 DeclContext *DC = getDeclContext();
162 assert(DC && "This decl is not contained in a translation unit!");
163
164 while (!DC->isTranslationUnit()) {
165 DC = DC->getParent();
166 assert(DC && "This decl is not contained in a translation unit!");
167 }
168
169 return cast<TranslationUnitDecl>(DC);
170}
171
172ASTContext &Decl::getASTContext() const {
173 return getTranslationUnitDecl()->getASTContext();
174}
175
Chris Lattner769dbdf2009-03-27 20:18:19 +0000176unsigned Decl::getIdentifierNamespaceForKind(Kind DeclKind) {
177 switch (DeclKind) {
178 default:
179 if (DeclKind >= FunctionFirst && DeclKind <= FunctionLast)
180 return IDNS_Ordinary;
181 assert(0 && "Unknown decl kind!");
182 case OverloadedFunction:
183 case Typedef:
184 case EnumConstant:
185 case Var:
186 case ImplicitParam:
187 case ParmVar:
188 case OriginalParmVar:
189 case NonTypeTemplateParm:
Douglas Gregor9cfbe482009-06-20 00:51:54 +0000190 case Using:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000191 case ObjCMethod:
192 case ObjCContainer:
193 case ObjCCategory:
194 case ObjCInterface:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000195 case ObjCProperty:
196 case ObjCCompatibleAlias:
197 return IDNS_Ordinary;
198
199 case ObjCProtocol:
Douglas Gregor8fc463a2009-04-24 00:11:27 +0000200 return IDNS_ObjCProtocol;
Chris Lattner769dbdf2009-03-27 20:18:19 +0000201
Douglas Gregor8fc463a2009-04-24 00:11:27 +0000202 case ObjCImplementation:
203 return IDNS_ObjCImplementation;
204
205 case ObjCCategoryImpl:
206 return IDNS_ObjCCategoryImpl;
207
Chris Lattner769dbdf2009-03-27 20:18:19 +0000208 case Field:
209 case ObjCAtDefsField:
210 case ObjCIvar:
211 return IDNS_Member;
212
213 case Record:
214 case CXXRecord:
215 case Enum:
216 case TemplateTypeParm:
217 return IDNS_Tag;
218
219 case Namespace:
220 case Template:
221 case FunctionTemplate:
222 case ClassTemplate:
223 case TemplateTemplateParm:
Anders Carlssonfaf0e872009-03-28 23:02:53 +0000224 case NamespaceAlias:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000225 return IDNS_Tag | IDNS_Ordinary;
226
227 // Never have names.
228 case LinkageSpec:
229 case FileScopeAsm:
230 case StaticAssert:
231 case ObjCClass:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000232 case ObjCPropertyImpl:
233 case ObjCForwardProtocol:
234 case Block:
235 case TranslationUnit:
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000236
Chris Lattner769dbdf2009-03-27 20:18:19 +0000237 // Aren't looked up?
238 case UsingDirective:
239 case ClassTemplateSpecialization:
Douglas Gregorc8ab2562009-05-31 09:31:02 +0000240 case ClassTemplatePartialSpecialization:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000241 return 0;
242 }
Eli Friedman56d29372008-06-07 16:52:53 +0000243}
244
Douglas Gregor68584ed2009-06-18 16:11:24 +0000245void Decl::addAttr(ASTContext &Context, Attr *NewAttr) {
246 Attr *&ExistingAttr = Context.getDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000247
248 NewAttr->setNext(ExistingAttr);
249 ExistingAttr = NewAttr;
250
251 HasAttrs = true;
252}
253
Douglas Gregor68584ed2009-06-18 16:11:24 +0000254void Decl::invalidateAttrs(ASTContext &Context) {
Eli Friedman56d29372008-06-07 16:52:53 +0000255 if (!HasAttrs) return;
Douglas Gregor68584ed2009-06-18 16:11:24 +0000256
Eli Friedman56d29372008-06-07 16:52:53 +0000257 HasAttrs = false;
Douglas Gregor68584ed2009-06-18 16:11:24 +0000258 Context.eraseDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000259}
260
Douglas Gregor68584ed2009-06-18 16:11:24 +0000261const Attr *Decl::getAttrsImpl(ASTContext &Context) const {
Chris Lattner81abbdd2009-03-21 06:27:31 +0000262 assert(HasAttrs && "getAttrs() should verify this!");
Douglas Gregor68584ed2009-06-18 16:11:24 +0000263 return Context.getDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000264}
265
Douglas Gregor68584ed2009-06-18 16:11:24 +0000266void Decl::swapAttrs(ASTContext &Context, Decl *RHS) {
Eli Friedman56d29372008-06-07 16:52:53 +0000267 bool HasLHSAttr = this->HasAttrs;
268 bool HasRHSAttr = RHS->HasAttrs;
269
270 // Usually, neither decl has attrs, nothing to do.
271 if (!HasLHSAttr && !HasRHSAttr) return;
272
273 // If 'this' has no attrs, swap the other way.
274 if (!HasLHSAttr)
Douglas Gregor68584ed2009-06-18 16:11:24 +0000275 return RHS->swapAttrs(Context, this);
Eli Friedman56d29372008-06-07 16:52:53 +0000276
277 // Handle the case when both decls have attrs.
278 if (HasRHSAttr) {
Douglas Gregor68584ed2009-06-18 16:11:24 +0000279 std::swap(Context.getDeclAttrs(this), Context.getDeclAttrs(RHS));
Eli Friedman56d29372008-06-07 16:52:53 +0000280 return;
281 }
282
283 // Otherwise, LHS has an attr and RHS doesn't.
Douglas Gregor68584ed2009-06-18 16:11:24 +0000284 Context.getDeclAttrs(RHS) = Context.getDeclAttrs(this);
285 Context.eraseDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000286 this->HasAttrs = false;
287 RHS->HasAttrs = true;
288}
289
290
Chris Lattnercc581472009-03-04 06:05:19 +0000291void Decl::Destroy(ASTContext &C) {
292 // Free attributes for this decl.
293 if (HasAttrs) {
Douglas Gregor68584ed2009-06-18 16:11:24 +0000294 C.getDeclAttrs(this)->Destroy(C);
295 invalidateAttrs(C);
Chris Lattnercc581472009-03-04 06:05:19 +0000296 HasAttrs = false;
297 }
298
Douglas Gregora0fc55f2009-01-13 19:47:12 +0000299#if 0
Douglas Gregor00ad0ef2009-01-20 04:25:11 +0000300 // FIXME: Once ownership is fully understood, we can enable this code
301 if (DeclContext *DC = dyn_cast<DeclContext>(this))
302 DC->decls_begin()->Destroy(C);
Eli Friedman56d29372008-06-07 16:52:53 +0000303
Chris Lattner244a67d2009-03-28 06:04:26 +0000304 // Observe the unrolled recursion. By setting N->NextDeclInContext = 0x0
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000305 // within the loop, only the Destroy method for the first Decl
306 // will deallocate all of the Decls in a chain.
307
Chris Lattner244a67d2009-03-28 06:04:26 +0000308 Decl* N = getNextDeclInContext();
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000309
310 while (N) {
Chris Lattner244a67d2009-03-28 06:04:26 +0000311 Decl* Tmp = N->getNextDeclInContext();
312 N->NextDeclInContext = 0;
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000313 N->Destroy(C);
314 N = Tmp;
Eli Friedman56d29372008-06-07 16:52:53 +0000315 }
Douglas Gregora0fc55f2009-01-13 19:47:12 +0000316
Eli Friedman56d29372008-06-07 16:52:53 +0000317 this->~Decl();
Steve Naroff3e970492009-01-27 21:25:57 +0000318 C.Deallocate((void *)this);
Douglas Gregor00ad0ef2009-01-20 04:25:11 +0000319#endif
Eli Friedman56d29372008-06-07 16:52:53 +0000320}
321
Argyrios Kyrtzidis42220c52008-10-12 16:14:48 +0000322Decl *Decl::castFromDeclContext (const DeclContext *D) {
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000323 Decl::Kind DK = D->getDeclKind();
324 switch(DK) {
325#define DECL_CONTEXT(Name) \
326 case Decl::Name: \
327 return static_cast<Name##Decl*>(const_cast<DeclContext*>(D));
328#define DECL_CONTEXT_BASE(Name)
329#include "clang/AST/DeclNodes.def"
330 default:
331#define DECL_CONTEXT_BASE(Name) \
332 if (DK >= Decl::Name##First && DK <= Decl::Name##Last) \
333 return static_cast<Name##Decl*>(const_cast<DeclContext*>(D));
334#include "clang/AST/DeclNodes.def"
335 assert(false && "a decl that inherits DeclContext isn't handled");
336 return 0;
337 }
Argyrios Kyrtzidis42220c52008-10-12 16:14:48 +0000338}
339
340DeclContext *Decl::castToDeclContext(const Decl *D) {
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000341 Decl::Kind DK = D->getKind();
342 switch(DK) {
343#define DECL_CONTEXT(Name) \
344 case Decl::Name: \
345 return static_cast<Name##Decl*>(const_cast<Decl*>(D));
346#define DECL_CONTEXT_BASE(Name)
347#include "clang/AST/DeclNodes.def"
348 default:
349#define DECL_CONTEXT_BASE(Name) \
350 if (DK >= Decl::Name##First && DK <= Decl::Name##Last) \
351 return static_cast<Name##Decl*>(const_cast<Decl*>(D));
352#include "clang/AST/DeclNodes.def"
353 assert(false && "a decl that inherits DeclContext isn't handled");
354 return 0;
355 }
Argyrios Kyrtzidis42220c52008-10-12 16:14:48 +0000356}
357
Sebastian Redld3a413d2009-04-26 20:35:05 +0000358CompoundStmt* Decl::getCompoundBody(ASTContext &Context) const {
359 return dyn_cast_or_null<CompoundStmt>(getBody(Context));
360}
361
362SourceLocation Decl::getBodyRBrace(ASTContext &Context) const {
363 Stmt *Body = getBody(Context);
364 if (!Body)
365 return SourceLocation();
366 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Body))
367 return CS->getRBracLoc();
368 assert(isa<CXXTryStmt>(Body) &&
369 "Body can only be CompoundStmt or CXXTryStmt");
370 return cast<CXXTryStmt>(Body)->getSourceRange().getEnd();
371}
372
Anders Carlsson1329c272009-03-25 23:38:06 +0000373#ifndef NDEBUG
374void Decl::CheckAccessDeclContext() const {
Douglas Gregor5c27f2b2009-04-07 20:58:25 +0000375 assert((Access != AS_none || isa<TranslationUnitDecl>(this) ||
376 !isa<CXXRecordDecl>(getDeclContext())) &&
Anders Carlsson1329c272009-03-25 23:38:06 +0000377 "Access specifier is AS_none inside a record decl");
378}
379
380#endif
381
Eli Friedman56d29372008-06-07 16:52:53 +0000382//===----------------------------------------------------------------------===//
383// DeclContext Implementation
384//===----------------------------------------------------------------------===//
385
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000386bool DeclContext::classof(const Decl *D) {
387 switch (D->getKind()) {
388#define DECL_CONTEXT(Name) case Decl::Name:
389#define DECL_CONTEXT_BASE(Name)
390#include "clang/AST/DeclNodes.def"
391 return true;
392 default:
393#define DECL_CONTEXT_BASE(Name) \
394 if (D->getKind() >= Decl::Name##First && \
395 D->getKind() <= Decl::Name##Last) \
396 return true;
397#include "clang/AST/DeclNodes.def"
398 return false;
399 }
400}
401
Douglas Gregor44b43212008-12-11 16:49:14 +0000402DeclContext::~DeclContext() {
Douglas Gregorc36c5402009-04-09 17:29:08 +0000403 delete static_cast<StoredDeclsMap*>(LookupPtr);
Douglas Gregor44b43212008-12-11 16:49:14 +0000404}
405
406void DeclContext::DestroyDecls(ASTContext &C) {
Douglas Gregor6ab35242009-04-09 21:40:53 +0000407 for (decl_iterator D = decls_begin(C); D != decls_end(C); )
Douglas Gregor00ad0ef2009-01-20 04:25:11 +0000408 (*D++)->Destroy(C);
Douglas Gregor44b43212008-12-11 16:49:14 +0000409}
410
Douglas Gregorbc221632009-05-28 16:34:51 +0000411bool DeclContext::isDependentContext() const {
412 if (isFileContext())
413 return false;
414
Douglas Gregorc8ab2562009-05-31 09:31:02 +0000415 if (isa<ClassTemplatePartialSpecializationDecl>(this))
416 return true;
417
Douglas Gregorbc221632009-05-28 16:34:51 +0000418 if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(this))
419 if (Record->getDescribedClassTemplate())
420 return true;
421
422 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(this))
423 if (Function->getDescribedFunctionTemplate())
424 return true;
425
426 return getParent() && getParent()->isDependentContext();
427}
428
Douglas Gregor074149e2009-01-05 19:45:36 +0000429bool DeclContext::isTransparentContext() const {
430 if (DeclKind == Decl::Enum)
431 return true; // FIXME: Check for C++0x scoped enums
432 else if (DeclKind == Decl::LinkageSpec)
433 return true;
Douglas Gregor65100792009-02-26 00:02:51 +0000434 else if (DeclKind >= Decl::RecordFirst && DeclKind <= Decl::RecordLast)
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000435 return cast<RecordDecl>(this)->isAnonymousStructOrUnion();
Douglas Gregor074149e2009-01-05 19:45:36 +0000436 else if (DeclKind == Decl::Namespace)
437 return false; // FIXME: Check for C++0x inline namespaces
438
439 return false;
440}
441
Steve Naroff0701bbb2009-01-08 17:28:14 +0000442DeclContext *DeclContext::getPrimaryContext() {
Douglas Gregor44b43212008-12-11 16:49:14 +0000443 switch (DeclKind) {
Douglas Gregor44b43212008-12-11 16:49:14 +0000444 case Decl::TranslationUnit:
Douglas Gregor074149e2009-01-05 19:45:36 +0000445 case Decl::LinkageSpec:
446 case Decl::Block:
Douglas Gregor44b43212008-12-11 16:49:14 +0000447 // There is only one DeclContext for these entities.
448 return this;
449
450 case Decl::Namespace:
451 // The original namespace is our primary context.
452 return static_cast<NamespaceDecl*>(this)->getOriginalNamespace();
453
Douglas Gregor44b43212008-12-11 16:49:14 +0000454 case Decl::ObjCMethod:
455 return this;
456
457 case Decl::ObjCInterface:
Steve Naroff0701bbb2009-01-08 17:28:14 +0000458 case Decl::ObjCProtocol:
459 case Decl::ObjCCategory:
Douglas Gregor44b43212008-12-11 16:49:14 +0000460 // FIXME: Can Objective-C interfaces be forward-declared?
461 return this;
462
Steve Naroff0701bbb2009-01-08 17:28:14 +0000463 case Decl::ObjCImplementation:
464 case Decl::ObjCCategoryImpl:
465 return this;
466
Douglas Gregor44b43212008-12-11 16:49:14 +0000467 default:
Douglas Gregorcc636682009-02-17 23:15:12 +0000468 if (DeclKind >= Decl::TagFirst && DeclKind <= Decl::TagLast) {
469 // If this is a tag type that has a definition or is currently
470 // being defined, that definition is our primary context.
Chris Lattner244a67d2009-03-28 06:04:26 +0000471 if (const TagType *TagT =cast<TagDecl>(this)->TypeForDecl->getAsTagType())
Douglas Gregorcc636682009-02-17 23:15:12 +0000472 if (TagT->isBeingDefined() ||
473 (TagT->getDecl() && TagT->getDecl()->isDefinition()))
474 return TagT->getDecl();
475 return this;
476 }
477
Douglas Gregor44b43212008-12-11 16:49:14 +0000478 assert(DeclKind >= Decl::FunctionFirst && DeclKind <= Decl::FunctionLast &&
479 "Unknown DeclContext kind");
480 return this;
481 }
482}
483
484DeclContext *DeclContext::getNextContext() {
485 switch (DeclKind) {
Douglas Gregor44b43212008-12-11 16:49:14 +0000486 case Decl::Namespace:
487 // Return the next namespace
488 return static_cast<NamespaceDecl*>(this)->getNextNamespace();
489
490 default:
Douglas Gregor44b43212008-12-11 16:49:14 +0000491 return 0;
492 }
493}
494
Douglas Gregor2cf26342009-04-09 22:27:44 +0000495/// \brief Load the declarations within this lexical storage from an
496/// external source.
497void
498DeclContext::LoadLexicalDeclsFromExternalStorage(ASTContext &Context) const {
499 ExternalASTSource *Source = Context.getExternalSource();
500 assert(hasExternalLexicalStorage() && Source && "No external storage?");
501
Eli Friedmanb0156ea2009-04-27 23:43:36 +0000502 llvm::SmallVector<uint32_t, 64> Decls;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000503 if (Source->ReadDeclsLexicallyInContext(const_cast<DeclContext *>(this),
504 Decls))
505 return;
506
507 // There is no longer any lexical storage in this context
508 ExternalLexicalStorage = false;
509
510 if (Decls.empty())
511 return;
512
513 // Resolve all of the declaration IDs into declarations, building up
514 // a chain of declarations via the Decl::NextDeclInContext field.
515 Decl *FirstNewDecl = 0;
516 Decl *PrevDecl = 0;
517 for (unsigned I = 0, N = Decls.size(); I != N; ++I) {
518 Decl *D = Source->GetDecl(Decls[I]);
519 if (PrevDecl)
520 PrevDecl->NextDeclInContext = D;
521 else
522 FirstNewDecl = D;
523
524 PrevDecl = D;
525 }
526
527 // Splice the newly-read declarations into the beginning of the list
528 // of declarations.
529 PrevDecl->NextDeclInContext = FirstDecl;
530 FirstDecl = FirstNewDecl;
531 if (!LastDecl)
532 LastDecl = PrevDecl;
533}
534
535void
536DeclContext::LoadVisibleDeclsFromExternalStorage(ASTContext &Context) const {
537 DeclContext *This = const_cast<DeclContext *>(this);
538 ExternalASTSource *Source = Context.getExternalSource();
539 assert(hasExternalVisibleStorage() && Source && "No external storage?");
540
541 llvm::SmallVector<VisibleDeclaration, 64> Decls;
542 if (Source->ReadDeclsVisibleInContext(This, Decls))
543 return;
544
545 // There is no longer any visible storage in this context
546 ExternalVisibleStorage = false;
547
548 // Load the declaration IDs for all of the names visible in this
549 // context.
550 assert(!LookupPtr && "Have a lookup map before de-serialization?");
551 StoredDeclsMap *Map = new StoredDeclsMap;
552 LookupPtr = Map;
553 for (unsigned I = 0, N = Decls.size(); I != N; ++I) {
554 (*Map)[Decls[I].Name].setFromDeclIDs(Decls[I].Declarations);
555 }
556}
557
Douglas Gregor6ab35242009-04-09 21:40:53 +0000558DeclContext::decl_iterator DeclContext::decls_begin(ASTContext &Context) const {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000559 if (hasExternalLexicalStorage())
560 LoadLexicalDeclsFromExternalStorage(Context);
561
562 // FIXME: Check whether we need to load some declarations from
563 // external storage.
Douglas Gregor6ab35242009-04-09 21:40:53 +0000564 return decl_iterator(FirstDecl);
565}
566
567DeclContext::decl_iterator DeclContext::decls_end(ASTContext &Context) const {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000568 if (hasExternalLexicalStorage())
569 LoadLexicalDeclsFromExternalStorage(Context);
570
Douglas Gregor6ab35242009-04-09 21:40:53 +0000571 return decl_iterator();
572}
573
Douglas Gregor8038d512009-04-10 17:25:41 +0000574bool DeclContext::decls_empty(ASTContext &Context) const {
575 if (hasExternalLexicalStorage())
576 LoadLexicalDeclsFromExternalStorage(Context);
577
578 return !FirstDecl;
579}
580
Douglas Gregor6ab35242009-04-09 21:40:53 +0000581void DeclContext::addDecl(ASTContext &Context, Decl *D) {
Chris Lattner7f0be132009-02-20 00:56:18 +0000582 assert(D->getLexicalDeclContext() == this &&
583 "Decl inserted into wrong lexical context");
Chris Lattner244a67d2009-03-28 06:04:26 +0000584 assert(!D->getNextDeclInContext() && D != LastDecl &&
Douglas Gregor6037fcb2009-01-09 19:42:16 +0000585 "Decl already inserted into a DeclContext");
586
587 if (FirstDecl) {
Chris Lattner244a67d2009-03-28 06:04:26 +0000588 LastDecl->NextDeclInContext = D;
Douglas Gregor6037fcb2009-01-09 19:42:16 +0000589 LastDecl = D;
590 } else {
591 FirstDecl = LastDecl = D;
592 }
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000593
594 if (NamedDecl *ND = dyn_cast<NamedDecl>(D))
Douglas Gregor6ab35242009-04-09 21:40:53 +0000595 ND->getDeclContext()->makeDeclVisibleInContext(Context, ND);
Douglas Gregor44b43212008-12-11 16:49:14 +0000596}
597
Douglas Gregor074149e2009-01-05 19:45:36 +0000598/// buildLookup - Build the lookup data structure with all of the
599/// declarations in DCtx (and any other contexts linked to it or
600/// transparent contexts nested within it).
Douglas Gregor6ab35242009-04-09 21:40:53 +0000601void DeclContext::buildLookup(ASTContext &Context, DeclContext *DCtx) {
Douglas Gregor074149e2009-01-05 19:45:36 +0000602 for (; DCtx; DCtx = DCtx->getNextContext()) {
Douglas Gregor6ab35242009-04-09 21:40:53 +0000603 for (decl_iterator D = DCtx->decls_begin(Context),
604 DEnd = DCtx->decls_end(Context);
Douglas Gregor4f3b8f82009-01-06 07:17:58 +0000605 D != DEnd; ++D) {
Douglas Gregor074149e2009-01-05 19:45:36 +0000606 // Insert this declaration into the lookup structure
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000607 if (NamedDecl *ND = dyn_cast<NamedDecl>(*D))
Douglas Gregor6ab35242009-04-09 21:40:53 +0000608 makeDeclVisibleInContextImpl(Context, ND);
Douglas Gregor074149e2009-01-05 19:45:36 +0000609
610 // If this declaration is itself a transparent declaration context,
611 // add its members (recursively).
612 if (DeclContext *InnerCtx = dyn_cast<DeclContext>(*D))
613 if (InnerCtx->isTransparentContext())
Douglas Gregor6ab35242009-04-09 21:40:53 +0000614 buildLookup(Context, InnerCtx->getPrimaryContext());
Douglas Gregor074149e2009-01-05 19:45:36 +0000615 }
616 }
617}
618
Douglas Gregor44b43212008-12-11 16:49:14 +0000619DeclContext::lookup_result
Douglas Gregor6ab35242009-04-09 21:40:53 +0000620DeclContext::lookup(ASTContext &Context, DeclarationName Name) {
Steve Naroff0701bbb2009-01-08 17:28:14 +0000621 DeclContext *PrimaryContext = getPrimaryContext();
Douglas Gregor44b43212008-12-11 16:49:14 +0000622 if (PrimaryContext != this)
Douglas Gregor6ab35242009-04-09 21:40:53 +0000623 return PrimaryContext->lookup(Context, Name);
Douglas Gregor44b43212008-12-11 16:49:14 +0000624
Douglas Gregor2cf26342009-04-09 22:27:44 +0000625 if (hasExternalVisibleStorage())
626 LoadVisibleDeclsFromExternalStorage(Context);
627
Douglas Gregor3fc749d2008-12-23 00:26:44 +0000628 /// If there is no lookup data structure, build one now by walking
Douglas Gregor44b43212008-12-11 16:49:14 +0000629 /// all of the linked DeclContexts (in declaration order!) and
630 /// inserting their values.
Douglas Gregorc36c5402009-04-09 17:29:08 +0000631 if (!LookupPtr) {
Douglas Gregor6ab35242009-04-09 21:40:53 +0000632 buildLookup(Context, this);
Douglas Gregor44b43212008-12-11 16:49:14 +0000633
Douglas Gregorc36c5402009-04-09 17:29:08 +0000634 if (!LookupPtr)
Chris Lattner91942502009-02-20 00:55:03 +0000635 return lookup_result(0, 0);
Douglas Gregorc36c5402009-04-09 17:29:08 +0000636 }
Douglas Gregor44b43212008-12-11 16:49:14 +0000637
Douglas Gregorc36c5402009-04-09 17:29:08 +0000638 StoredDeclsMap *Map = static_cast<StoredDeclsMap*>(LookupPtr);
639 StoredDeclsMap::iterator Pos = Map->find(Name);
640 if (Pos == Map->end())
641 return lookup_result(0, 0);
Douglas Gregor6ab35242009-04-09 21:40:53 +0000642 return Pos->second.getLookupResult(Context);
Douglas Gregor44b43212008-12-11 16:49:14 +0000643}
644
645DeclContext::lookup_const_result
Douglas Gregor6ab35242009-04-09 21:40:53 +0000646DeclContext::lookup(ASTContext &Context, DeclarationName Name) const {
647 return const_cast<DeclContext*>(this)->lookup(Context, Name);
Douglas Gregor44b43212008-12-11 16:49:14 +0000648}
649
Chris Lattner0cf2b192009-03-27 19:19:59 +0000650DeclContext *DeclContext::getLookupContext() {
651 DeclContext *Ctx = this;
Douglas Gregor72de6672009-01-08 20:45:30 +0000652 // Skip through transparent contexts.
Douglas Gregorce356072009-01-06 23:51:29 +0000653 while (Ctx->isTransparentContext())
654 Ctx = Ctx->getParent();
655 return Ctx;
656}
657
Douglas Gregor88b70942009-02-25 22:02:03 +0000658DeclContext *DeclContext::getEnclosingNamespaceContext() {
659 DeclContext *Ctx = this;
660 // Skip through non-namespace, non-translation-unit contexts.
661 while (!Ctx->isFileContext() || Ctx->isTransparentContext())
662 Ctx = Ctx->getParent();
663 return Ctx->getPrimaryContext();
664}
665
Douglas Gregor6ab35242009-04-09 21:40:53 +0000666void DeclContext::makeDeclVisibleInContext(ASTContext &Context, NamedDecl *D) {
Douglas Gregorcc636682009-02-17 23:15:12 +0000667 // FIXME: This feels like a hack. Should DeclarationName support
668 // template-ids, or is there a better way to keep specializations
669 // from being visible?
670 if (isa<ClassTemplateSpecializationDecl>(D))
671 return;
672
Steve Naroff0701bbb2009-01-08 17:28:14 +0000673 DeclContext *PrimaryContext = getPrimaryContext();
Douglas Gregor44b43212008-12-11 16:49:14 +0000674 if (PrimaryContext != this) {
Douglas Gregor6ab35242009-04-09 21:40:53 +0000675 PrimaryContext->makeDeclVisibleInContext(Context, D);
Douglas Gregor44b43212008-12-11 16:49:14 +0000676 return;
677 }
678
679 // If we already have a lookup data structure, perform the insertion
680 // into it. Otherwise, be lazy and don't build that structure until
681 // someone asks for it.
Douglas Gregorc36c5402009-04-09 17:29:08 +0000682 if (LookupPtr)
Douglas Gregor6ab35242009-04-09 21:40:53 +0000683 makeDeclVisibleInContextImpl(Context, D);
Douglas Gregor074149e2009-01-05 19:45:36 +0000684
Douglas Gregor074149e2009-01-05 19:45:36 +0000685 // If we are a transparent context, insert into our parent context,
686 // too. This operation is recursive.
687 if (isTransparentContext())
Douglas Gregor6ab35242009-04-09 21:40:53 +0000688 getParent()->makeDeclVisibleInContext(Context, D);
Douglas Gregor44b43212008-12-11 16:49:14 +0000689}
690
Douglas Gregor6ab35242009-04-09 21:40:53 +0000691void DeclContext::makeDeclVisibleInContextImpl(ASTContext &Context,
692 NamedDecl *D) {
Douglas Gregor074149e2009-01-05 19:45:36 +0000693 // Skip unnamed declarations.
694 if (!D->getDeclName())
695 return;
696
Douglas Gregorcc636682009-02-17 23:15:12 +0000697 // FIXME: This feels like a hack. Should DeclarationName support
698 // template-ids, or is there a better way to keep specializations
699 // from being visible?
700 if (isa<ClassTemplateSpecializationDecl>(D))
701 return;
702
Douglas Gregorc36c5402009-04-09 17:29:08 +0000703 if (!LookupPtr)
704 LookupPtr = new StoredDeclsMap;
Douglas Gregor44b43212008-12-11 16:49:14 +0000705
706 // Insert this declaration into the map.
Douglas Gregorc36c5402009-04-09 17:29:08 +0000707 StoredDeclsMap &Map = *static_cast<StoredDeclsMap*>(LookupPtr);
Chris Lattner67762a32009-02-20 01:44:05 +0000708 StoredDeclsList &DeclNameEntries = Map[D->getDeclName()];
709 if (DeclNameEntries.isNull()) {
710 DeclNameEntries.setOnlyValue(D);
Chris Lattnerbd6c8002009-02-19 07:00:44 +0000711 return;
Douglas Gregor44b43212008-12-11 16:49:14 +0000712 }
Chris Lattner91942502009-02-20 00:55:03 +0000713
Chris Lattnerbdc3d002009-02-20 01:10:07 +0000714 // If it is possible that this is a redeclaration, check to see if there is
715 // already a decl for which declarationReplaces returns true. If there is
716 // one, just replace it and return.
Douglas Gregor6ab35242009-04-09 21:40:53 +0000717 if (DeclNameEntries.HandleRedeclaration(Context, D))
Chris Lattner67762a32009-02-20 01:44:05 +0000718 return;
Chris Lattner91942502009-02-20 00:55:03 +0000719
Chris Lattnerbd6c8002009-02-19 07:00:44 +0000720 // Put this declaration into the appropriate slot.
Chris Lattner67762a32009-02-20 01:44:05 +0000721 DeclNameEntries.AddSubsequentDecl(D);
Douglas Gregor44b43212008-12-11 16:49:14 +0000722}
Douglas Gregor2a3009a2009-02-03 19:21:40 +0000723
724/// Returns iterator range [First, Last) of UsingDirectiveDecls stored within
725/// this context.
Douglas Gregor6ab35242009-04-09 21:40:53 +0000726DeclContext::udir_iterator_range
727DeclContext::getUsingDirectives(ASTContext &Context) const {
728 lookup_const_result Result = lookup(Context, UsingDirectiveDecl::getName());
Douglas Gregor2a3009a2009-02-03 19:21:40 +0000729 return udir_iterator_range(reinterpret_cast<udir_iterator>(Result.first),
730 reinterpret_cast<udir_iterator>(Result.second));
731}
Douglas Gregor2cf26342009-04-09 22:27:44 +0000732
733void StoredDeclsList::materializeDecls(ASTContext &Context) {
734 if (isNull())
735 return;
736
737 switch ((DataKind)(Data & 0x03)) {
738 case DK_Decl:
739 case DK_Decl_Vector:
740 break;
741
742 case DK_DeclID: {
743 // Resolve this declaration ID to an actual declaration by
744 // querying the external AST source.
745 unsigned DeclID = Data >> 2;
746
747 ExternalASTSource *Source = Context.getExternalSource();
748 assert(Source && "No external AST source available!");
749
750 Data = reinterpret_cast<uintptr_t>(Source->GetDecl(DeclID));
751 break;
752 }
753
754 case DK_ID_Vector: {
755 // We have a vector of declaration IDs. Resolve all of them to
756 // actual declarations.
757 VectorTy &Vector = *getAsVector();
758 ExternalASTSource *Source = Context.getExternalSource();
759 assert(Source && "No external AST source available!");
760
761 for (unsigned I = 0, N = Vector.size(); I != N; ++I)
762 Vector[I] = reinterpret_cast<uintptr_t>(Source->GetDecl(Vector[I]));
763
764 Data = (Data & ~0x03) | DK_Decl_Vector;
765 break;
766 }
767 }
768}