blob: b1585a3078f6881f30c6c01d8c1577bfd608e3aa [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"
John McCall92b7f702010-03-11 07:50:04 +000018#include "clang/AST/DeclFriend.h"
Douglas Gregoraaba5e32009-02-04 19:02:06 +000019#include "clang/AST/DeclObjC.h"
20#include "clang/AST/DeclTemplate.h"
John McCall0c01d182010-03-24 05:22:00 +000021#include "clang/AST/DependentDiagnostic.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000022#include "clang/AST/ExternalASTSource.h"
Eli Friedman56d29372008-06-07 16:52:53 +000023#include "clang/AST/ASTContext.h"
Douglas Gregor44b43212008-12-11 16:49:14 +000024#include "clang/AST/Type.h"
Sebastian Redld3a413d2009-04-26 20:35:05 +000025#include "clang/AST/Stmt.h"
26#include "clang/AST/StmtCXX.h"
Eli Friedman56d29372008-06-07 16:52:53 +000027#include "llvm/ADT/DenseMap.h"
Chris Lattner49f28ca2009-03-05 08:00:35 +000028#include "llvm/Support/raw_ostream.h"
Douglas Gregor6ed40e32008-12-23 21:05:05 +000029#include <algorithm>
Chris Lattner3daed522009-03-02 22:20:04 +000030#include <cstdio>
Douglas Gregor3fc749d2008-12-23 00:26:44 +000031#include <vector>
Eli Friedman56d29372008-06-07 16:52:53 +000032using namespace clang;
33
34//===----------------------------------------------------------------------===//
35// Statistics
36//===----------------------------------------------------------------------===//
37
Douglas Gregor64650af2009-02-02 23:39:07 +000038#define DECL(Derived, Base) static int n##Derived##s = 0;
39#include "clang/AST/DeclNodes.def"
Eli Friedman56d29372008-06-07 16:52:53 +000040
41static bool StatSwitch = false;
42
Eli Friedman56d29372008-06-07 16:52:53 +000043const char *Decl::getDeclKindName() const {
44 switch (DeclKind) {
Douglas Gregor64650af2009-02-02 23:39:07 +000045 default: assert(0 && "Declaration not in DeclNodes.def!");
46#define DECL(Derived, Base) case Derived: return #Derived;
47#include "clang/AST/DeclNodes.def"
Eli Friedman56d29372008-06-07 16:52:53 +000048 }
49}
50
Douglas Gregor42738572010-03-05 00:26:45 +000051void Decl::setInvalidDecl(bool Invalid) {
52 InvalidDecl = Invalid;
53 if (Invalid) {
54 // Defensive maneuver for ill-formed code: we're likely not to make it to
55 // a point where we set the access specifier, so default it to "public"
56 // to avoid triggering asserts elsewhere in the front end.
57 setAccess(AS_public);
58 }
59}
60
Steve Naroff0a473932009-01-20 19:53:53 +000061const char *DeclContext::getDeclKindName() const {
62 switch (DeclKind) {
Douglas Gregor64650af2009-02-02 23:39:07 +000063 default: assert(0 && "Declaration context not in DeclNodes.def!");
Argyrios Kyrtzidis1ad4dd72009-02-16 14:28:33 +000064#define DECL(Derived, Base) case Decl::Derived: return #Derived;
Douglas Gregor64650af2009-02-02 23:39:07 +000065#include "clang/AST/DeclNodes.def"
Steve Naroff0a473932009-01-20 19:53:53 +000066 }
67}
68
Eli Friedman56d29372008-06-07 16:52:53 +000069bool Decl::CollectingStats(bool Enable) {
Kovarththanan Rajaratnam2024f4d2009-11-29 14:54:35 +000070 if (Enable) StatSwitch = true;
Eli Friedman56d29372008-06-07 16:52:53 +000071 return StatSwitch;
72}
73
74void Decl::PrintStats() {
75 fprintf(stderr, "*** Decl Stats:\n");
Mike Stump1eb44332009-09-09 15:08:12 +000076
Douglas Gregor64650af2009-02-02 23:39:07 +000077 int totalDecls = 0;
78#define DECL(Derived, Base) totalDecls += n##Derived##s;
79#include "clang/AST/DeclNodes.def"
80 fprintf(stderr, " %d decls total.\n", totalDecls);
Mike Stump1eb44332009-09-09 15:08:12 +000081
Douglas Gregor64650af2009-02-02 23:39:07 +000082 int totalBytes = 0;
83#define DECL(Derived, Base) \
84 if (n##Derived##s > 0) { \
85 totalBytes += (int)(n##Derived##s * sizeof(Derived##Decl)); \
86 fprintf(stderr, " %d " #Derived " decls, %d each (%d bytes)\n", \
87 n##Derived##s, (int)sizeof(Derived##Decl), \
88 (int)(n##Derived##s * sizeof(Derived##Decl))); \
89 }
90#include "clang/AST/DeclNodes.def"
Mike Stump1eb44332009-09-09 15:08:12 +000091
Douglas Gregor64650af2009-02-02 23:39:07 +000092 fprintf(stderr, "Total bytes = %d\n", totalBytes);
Eli Friedman56d29372008-06-07 16:52:53 +000093}
94
95void Decl::addDeclKind(Kind k) {
96 switch (k) {
Douglas Gregor64650af2009-02-02 23:39:07 +000097 default: assert(0 && "Declaration not in DeclNodes.def!");
98#define DECL(Derived, Base) case Derived: ++n##Derived##s; break;
99#include "clang/AST/DeclNodes.def"
Eli Friedman56d29372008-06-07 16:52:53 +0000100 }
101}
102
Anders Carlsson67e33202009-06-13 00:08:58 +0000103bool Decl::isTemplateParameterPack() const {
104 if (const TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(this))
105 return TTP->isParameterPack();
Mike Stump1eb44332009-09-09 15:08:12 +0000106
Anders Carlsson67e33202009-06-13 00:08:58 +0000107 return false;
108}
109
Douglas Gregore53060f2009-06-25 22:08:12 +0000110bool Decl::isFunctionOrFunctionTemplate() const {
John McCall9488ea12009-11-17 05:59:44 +0000111 if (const UsingShadowDecl *UD = dyn_cast<UsingShadowDecl>(this))
Anders Carlsson58badb72009-06-26 05:26:50 +0000112 return UD->getTargetDecl()->isFunctionOrFunctionTemplate();
Mike Stump1eb44332009-09-09 15:08:12 +0000113
Douglas Gregore53060f2009-06-25 22:08:12 +0000114 return isa<FunctionDecl>(this) || isa<FunctionTemplateDecl>(this);
115}
116
Douglas Gregor79c22782010-01-16 20:21:20 +0000117bool Decl::isDefinedOutsideFunctionOrMethod() const {
118 for (const DeclContext *DC = getDeclContext();
119 DC && !DC->isTranslationUnit();
120 DC = DC->getParent())
121 if (DC->isFunctionOrMethod())
122 return false;
123
124 return true;
125}
126
127
Eli Friedman56d29372008-06-07 16:52:53 +0000128//===----------------------------------------------------------------------===//
Chris Lattner49f28ca2009-03-05 08:00:35 +0000129// PrettyStackTraceDecl Implementation
130//===----------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +0000131
Chris Lattner49f28ca2009-03-05 08:00:35 +0000132void PrettyStackTraceDecl::print(llvm::raw_ostream &OS) const {
133 SourceLocation TheLoc = Loc;
134 if (TheLoc.isInvalid() && TheDecl)
135 TheLoc = TheDecl->getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000136
Chris Lattner49f28ca2009-03-05 08:00:35 +0000137 if (TheLoc.isValid()) {
138 TheLoc.print(OS, SM);
139 OS << ": ";
140 }
141
142 OS << Message;
143
Daniel Dunbarc5236562009-11-21 09:05:59 +0000144 if (const NamedDecl *DN = dyn_cast_or_null<NamedDecl>(TheDecl))
Chris Lattner49f28ca2009-03-05 08:00:35 +0000145 OS << " '" << DN->getQualifiedNameAsString() << '\'';
146 OS << '\n';
147}
Mike Stump1eb44332009-09-09 15:08:12 +0000148
Chris Lattner49f28ca2009-03-05 08:00:35 +0000149//===----------------------------------------------------------------------===//
Eli Friedman56d29372008-06-07 16:52:53 +0000150// Decl Implementation
151//===----------------------------------------------------------------------===//
152
Chris Lattner769dbdf2009-03-27 20:18:19 +0000153// Out-of-line virtual method providing a home for Decl.
154Decl::~Decl() {
Chris Lattner769dbdf2009-03-27 20:18:19 +0000155 assert(!HasAttrs && "attributes should have been freed by Destroy");
156}
157
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000158void Decl::setDeclContext(DeclContext *DC) {
159 if (isOutOfSemaDC())
160 delete getMultipleDC();
Mike Stump1eb44332009-09-09 15:08:12 +0000161
Chris Lattneree219fd2009-03-29 06:06:59 +0000162 DeclCtx = DC;
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000163}
164
165void Decl::setLexicalDeclContext(DeclContext *DC) {
166 if (DC == getLexicalDeclContext())
167 return;
168
169 if (isInSemaDC()) {
Ted Kremenek94a39002009-12-01 00:07:10 +0000170 MultipleDC *MDC = new (getASTContext()) MultipleDC();
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000171 MDC->SemanticDC = getDeclContext();
172 MDC->LexicalDC = DC;
Chris Lattneree219fd2009-03-29 06:06:59 +0000173 DeclCtx = MDC;
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000174 } else {
175 getMultipleDC()->LexicalDC = DC;
176 }
177}
178
John McCall9aeed322009-10-01 00:25:31 +0000179bool Decl::isInAnonymousNamespace() const {
180 const DeclContext *DC = getDeclContext();
181 do {
182 if (const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(DC))
183 if (ND->isAnonymousNamespace())
184 return true;
185 } while ((DC = DC->getParent()));
186
187 return false;
188}
189
Argyrios Kyrtzidis3708b3d2009-06-29 17:38:40 +0000190TranslationUnitDecl *Decl::getTranslationUnitDecl() {
Argyrios Kyrtzidis9b346692009-06-30 02:34:53 +0000191 if (TranslationUnitDecl *TUD = dyn_cast<TranslationUnitDecl>(this))
192 return TUD;
193
Argyrios Kyrtzidis3708b3d2009-06-29 17:38:40 +0000194 DeclContext *DC = getDeclContext();
195 assert(DC && "This decl is not contained in a translation unit!");
Mike Stump1eb44332009-09-09 15:08:12 +0000196
Argyrios Kyrtzidis3708b3d2009-06-29 17:38:40 +0000197 while (!DC->isTranslationUnit()) {
198 DC = DC->getParent();
199 assert(DC && "This decl is not contained in a translation unit!");
200 }
Mike Stump1eb44332009-09-09 15:08:12 +0000201
Argyrios Kyrtzidis3708b3d2009-06-29 17:38:40 +0000202 return cast<TranslationUnitDecl>(DC);
203}
204
205ASTContext &Decl::getASTContext() const {
Mike Stump1eb44332009-09-09 15:08:12 +0000206 return getTranslationUnitDecl()->getASTContext();
Argyrios Kyrtzidis3708b3d2009-06-29 17:38:40 +0000207}
208
Tanya Lattner12ead492010-02-17 02:17:21 +0000209bool Decl::isUsed() const {
210 if (Used)
211 return true;
212
213 // Check for used attribute.
214 if (hasAttr<UsedAttr>())
215 return true;
216
217 // Check redeclarations for used attribute.
218 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) {
219 if (I->hasAttr<UsedAttr>() || I->Used)
220 return true;
221 }
222
223 return false;
224}
225
226
Chris Lattner769dbdf2009-03-27 20:18:19 +0000227unsigned Decl::getIdentifierNamespaceForKind(Kind DeclKind) {
228 switch (DeclKind) {
John McCall9488ea12009-11-17 05:59:44 +0000229 case Function:
230 case CXXMethod:
231 case CXXConstructor:
232 case CXXDestructor:
233 case CXXConversion:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000234 case Typedef:
235 case EnumConstant:
236 case Var:
237 case ImplicitParam:
238 case ParmVar:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000239 case NonTypeTemplateParm:
240 case ObjCMethod:
241 case ObjCContainer:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000242 case ObjCInterface:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000243 case ObjCProperty:
244 case ObjCCompatibleAlias:
245 return IDNS_Ordinary;
John McCall3f9a8a62009-08-11 06:59:38 +0000246
John McCall9488ea12009-11-17 05:59:44 +0000247 case UsingShadow:
248 return 0; // we'll actually overwrite this later
249
John McCall7ba107a2009-11-18 02:36:19 +0000250 case UnresolvedUsingValue:
251 case UnresolvedUsingTypename:
252 return IDNS_Ordinary | IDNS_Using;
John McCall9488ea12009-11-17 05:59:44 +0000253
254 case Using:
255 return IDNS_Using;
256
Chris Lattner769dbdf2009-03-27 20:18:19 +0000257 case ObjCProtocol:
Douglas Gregor8fc463a2009-04-24 00:11:27 +0000258 return IDNS_ObjCProtocol;
Mike Stump1eb44332009-09-09 15:08:12 +0000259
Chris Lattner769dbdf2009-03-27 20:18:19 +0000260 case Field:
261 case ObjCAtDefsField:
262 case ObjCIvar:
263 return IDNS_Member;
Mike Stump1eb44332009-09-09 15:08:12 +0000264
Chris Lattner769dbdf2009-03-27 20:18:19 +0000265 case Record:
266 case CXXRecord:
267 case Enum:
268 case TemplateTypeParm:
269 return IDNS_Tag;
Mike Stump1eb44332009-09-09 15:08:12 +0000270
Chris Lattner769dbdf2009-03-27 20:18:19 +0000271 case Namespace:
272 case Template:
273 case FunctionTemplate:
274 case ClassTemplate:
275 case TemplateTemplateParm:
Anders Carlssonfaf0e872009-03-28 23:02:53 +0000276 case NamespaceAlias:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000277 return IDNS_Tag | IDNS_Ordinary;
Mike Stump1eb44332009-09-09 15:08:12 +0000278
Chris Lattner769dbdf2009-03-27 20:18:19 +0000279 // Never have names.
John McCall02cace72009-08-28 07:59:38 +0000280 case Friend:
John McCalldd4a3b02009-09-16 22:47:08 +0000281 case FriendTemplate:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000282 case LinkageSpec:
283 case FileScopeAsm:
284 case StaticAssert:
285 case ObjCClass:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000286 case ObjCPropertyImpl:
287 case ObjCForwardProtocol:
288 case Block:
289 case TranslationUnit:
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000290
Chris Lattner769dbdf2009-03-27 20:18:19 +0000291 case UsingDirective:
292 case ClassTemplateSpecialization:
Douglas Gregorc8ab2562009-05-31 09:31:02 +0000293 case ClassTemplatePartialSpecialization:
Douglas Gregorbd4187b2010-04-22 23:19:50 +0000294 case ObjCImplementation:
295 case ObjCCategory:
296 case ObjCCategoryImpl:
297 // Never looked up by name.
Chris Lattner769dbdf2009-03-27 20:18:19 +0000298 return 0;
299 }
John McCall9488ea12009-11-17 05:59:44 +0000300
301 return 0;
Eli Friedman56d29372008-06-07 16:52:53 +0000302}
303
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000304void Decl::addAttr(Attr *NewAttr) {
305 Attr *&ExistingAttr = getASTContext().getDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000306
307 NewAttr->setNext(ExistingAttr);
308 ExistingAttr = NewAttr;
Mike Stump1eb44332009-09-09 15:08:12 +0000309
Eli Friedman56d29372008-06-07 16:52:53 +0000310 HasAttrs = true;
311}
312
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000313void Decl::invalidateAttrs() {
Eli Friedman56d29372008-06-07 16:52:53 +0000314 if (!HasAttrs) return;
Mike Stump1eb44332009-09-09 15:08:12 +0000315
Eli Friedman56d29372008-06-07 16:52:53 +0000316 HasAttrs = false;
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000317 getASTContext().eraseDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000318}
319
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000320const Attr *Decl::getAttrsImpl() const {
Mike Stump1eb44332009-09-09 15:08:12 +0000321 assert(HasAttrs && "getAttrs() should verify this!");
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000322 return getASTContext().getDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000323}
324
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000325void Decl::swapAttrs(Decl *RHS) {
Eli Friedman56d29372008-06-07 16:52:53 +0000326 bool HasLHSAttr = this->HasAttrs;
327 bool HasRHSAttr = RHS->HasAttrs;
Mike Stump1eb44332009-09-09 15:08:12 +0000328
Eli Friedman56d29372008-06-07 16:52:53 +0000329 // Usually, neither decl has attrs, nothing to do.
330 if (!HasLHSAttr && !HasRHSAttr) return;
Mike Stump1eb44332009-09-09 15:08:12 +0000331
Eli Friedman56d29372008-06-07 16:52:53 +0000332 // If 'this' has no attrs, swap the other way.
333 if (!HasLHSAttr)
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000334 return RHS->swapAttrs(this);
Mike Stump1eb44332009-09-09 15:08:12 +0000335
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000336 ASTContext &Context = getASTContext();
Mike Stump1eb44332009-09-09 15:08:12 +0000337
Eli Friedman56d29372008-06-07 16:52:53 +0000338 // Handle the case when both decls have attrs.
339 if (HasRHSAttr) {
Douglas Gregor68584ed2009-06-18 16:11:24 +0000340 std::swap(Context.getDeclAttrs(this), Context.getDeclAttrs(RHS));
Eli Friedman56d29372008-06-07 16:52:53 +0000341 return;
342 }
Mike Stump1eb44332009-09-09 15:08:12 +0000343
Eli Friedman56d29372008-06-07 16:52:53 +0000344 // Otherwise, LHS has an attr and RHS doesn't.
Douglas Gregor68584ed2009-06-18 16:11:24 +0000345 Context.getDeclAttrs(RHS) = Context.getDeclAttrs(this);
346 Context.eraseDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000347 this->HasAttrs = false;
348 RHS->HasAttrs = true;
349}
350
351
Chris Lattnercc581472009-03-04 06:05:19 +0000352void Decl::Destroy(ASTContext &C) {
353 // Free attributes for this decl.
354 if (HasAttrs) {
Douglas Gregor68584ed2009-06-18 16:11:24 +0000355 C.getDeclAttrs(this)->Destroy(C);
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000356 invalidateAttrs();
Chris Lattnercc581472009-03-04 06:05:19 +0000357 HasAttrs = false;
358 }
Mike Stump1eb44332009-09-09 15:08:12 +0000359
Douglas Gregora0fc55f2009-01-13 19:47:12 +0000360#if 0
Douglas Gregor00ad0ef2009-01-20 04:25:11 +0000361 // FIXME: Once ownership is fully understood, we can enable this code
362 if (DeclContext *DC = dyn_cast<DeclContext>(this))
363 DC->decls_begin()->Destroy(C);
Eli Friedman56d29372008-06-07 16:52:53 +0000364
Chris Lattner244a67d2009-03-28 06:04:26 +0000365 // Observe the unrolled recursion. By setting N->NextDeclInContext = 0x0
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000366 // within the loop, only the Destroy method for the first Decl
367 // will deallocate all of the Decls in a chain.
Mike Stump1eb44332009-09-09 15:08:12 +0000368
Chris Lattner244a67d2009-03-28 06:04:26 +0000369 Decl* N = getNextDeclInContext();
Mike Stump1eb44332009-09-09 15:08:12 +0000370
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000371 while (N) {
Chris Lattner244a67d2009-03-28 06:04:26 +0000372 Decl* Tmp = N->getNextDeclInContext();
373 N->NextDeclInContext = 0;
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000374 N->Destroy(C);
375 N = Tmp;
Mike Stump1eb44332009-09-09 15:08:12 +0000376 }
Douglas Gregora0fc55f2009-01-13 19:47:12 +0000377
Ted Kremenek94a39002009-12-01 00:07:10 +0000378 if (isOutOfSemaDC())
379 delete (C) getMultipleDC();
380
Eli Friedman56d29372008-06-07 16:52:53 +0000381 this->~Decl();
Steve Naroff3e970492009-01-27 21:25:57 +0000382 C.Deallocate((void *)this);
Ted Kremenek94a39002009-12-01 00:07:10 +0000383#endif
Eli Friedman56d29372008-06-07 16:52:53 +0000384}
385
Argyrios Kyrtzidis42220c52008-10-12 16:14:48 +0000386Decl *Decl::castFromDeclContext (const DeclContext *D) {
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000387 Decl::Kind DK = D->getDeclKind();
388 switch(DK) {
389#define DECL_CONTEXT(Name) \
390 case Decl::Name: \
391 return static_cast<Name##Decl*>(const_cast<DeclContext*>(D));
392#define DECL_CONTEXT_BASE(Name)
393#include "clang/AST/DeclNodes.def"
394 default:
395#define DECL_CONTEXT_BASE(Name) \
396 if (DK >= Decl::Name##First && DK <= Decl::Name##Last) \
397 return static_cast<Name##Decl*>(const_cast<DeclContext*>(D));
398#include "clang/AST/DeclNodes.def"
399 assert(false && "a decl that inherits DeclContext isn't handled");
400 return 0;
401 }
Argyrios Kyrtzidis42220c52008-10-12 16:14:48 +0000402}
403
404DeclContext *Decl::castToDeclContext(const Decl *D) {
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000405 Decl::Kind DK = D->getKind();
406 switch(DK) {
407#define DECL_CONTEXT(Name) \
408 case Decl::Name: \
409 return static_cast<Name##Decl*>(const_cast<Decl*>(D));
410#define DECL_CONTEXT_BASE(Name)
411#include "clang/AST/DeclNodes.def"
412 default:
413#define DECL_CONTEXT_BASE(Name) \
414 if (DK >= Decl::Name##First && DK <= Decl::Name##Last) \
415 return static_cast<Name##Decl*>(const_cast<Decl*>(D));
416#include "clang/AST/DeclNodes.def"
417 assert(false && "a decl that inherits DeclContext isn't handled");
418 return 0;
419 }
Argyrios Kyrtzidis42220c52008-10-12 16:14:48 +0000420}
421
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000422CompoundStmt* Decl::getCompoundBody() const {
423 return dyn_cast_or_null<CompoundStmt>(getBody());
Sebastian Redld3a413d2009-04-26 20:35:05 +0000424}
425
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000426SourceLocation Decl::getBodyRBrace() const {
427 Stmt *Body = getBody();
Sebastian Redld3a413d2009-04-26 20:35:05 +0000428 if (!Body)
429 return SourceLocation();
430 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Body))
431 return CS->getRBracLoc();
432 assert(isa<CXXTryStmt>(Body) &&
433 "Body can only be CompoundStmt or CXXTryStmt");
434 return cast<CXXTryStmt>(Body)->getSourceRange().getEnd();
435}
436
Anders Carlsson1329c272009-03-25 23:38:06 +0000437#ifndef NDEBUG
438void Decl::CheckAccessDeclContext() const {
John McCall46460a62010-01-20 21:53:11 +0000439 // Suppress this check if any of the following hold:
440 // 1. this is the translation unit (and thus has no parent)
441 // 2. this is a template parameter (and thus doesn't belong to its context)
442 // 3. this is a ParmVarDecl (which can be in a record context during
443 // the brief period between its creation and the creation of the
444 // FunctionDecl)
445 // 4. the context is not a record
Anders Carlsson35eda442009-08-29 20:47:47 +0000446 if (isa<TranslationUnitDecl>(this) ||
Douglas Gregorfdd8ab12010-02-22 17:53:38 +0000447 !isa<CXXRecordDecl>(getDeclContext()) ||
448 isInvalidDecl())
Anders Carlsson35eda442009-08-29 20:47:47 +0000449 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000450
451 assert(Access != AS_none &&
Anders Carlsson1329c272009-03-25 23:38:06 +0000452 "Access specifier is AS_none inside a record decl");
453}
454
455#endif
456
Eli Friedman56d29372008-06-07 16:52:53 +0000457//===----------------------------------------------------------------------===//
458// DeclContext Implementation
459//===----------------------------------------------------------------------===//
460
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000461bool DeclContext::classof(const Decl *D) {
462 switch (D->getKind()) {
463#define DECL_CONTEXT(Name) case Decl::Name:
464#define DECL_CONTEXT_BASE(Name)
465#include "clang/AST/DeclNodes.def"
466 return true;
467 default:
468#define DECL_CONTEXT_BASE(Name) \
469 if (D->getKind() >= Decl::Name##First && \
470 D->getKind() <= Decl::Name##Last) \
471 return true;
472#include "clang/AST/DeclNodes.def"
473 return false;
474 }
475}
476
Douglas Gregor44b43212008-12-11 16:49:14 +0000477DeclContext::~DeclContext() {
Ted Kremenek3478eb62010-02-11 07:12:28 +0000478 // FIXME: Currently ~ASTContext will delete the StoredDeclsMaps because
479 // ~DeclContext() is not guaranteed to be called when ASTContext uses
480 // a BumpPtrAllocator.
John McCall0c01d182010-03-24 05:22:00 +0000481 // delete LookupPtr;
Douglas Gregor44b43212008-12-11 16:49:14 +0000482}
483
484void DeclContext::DestroyDecls(ASTContext &C) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000485 for (decl_iterator D = decls_begin(); D != decls_end(); )
Douglas Gregor00ad0ef2009-01-20 04:25:11 +0000486 (*D++)->Destroy(C);
Douglas Gregor44b43212008-12-11 16:49:14 +0000487}
488
Douglas Gregore942bbe2009-09-10 16:57:35 +0000489/// \brief Find the parent context of this context that will be
490/// used for unqualified name lookup.
491///
492/// Generally, the parent lookup context is the semantic context. However, for
493/// a friend function the parent lookup context is the lexical context, which
494/// is the class in which the friend is declared.
495DeclContext *DeclContext::getLookupParent() {
496 // FIXME: Find a better way to identify friends
497 if (isa<FunctionDecl>(this))
498 if (getParent()->getLookupContext()->isFileContext() &&
499 getLexicalParent()->getLookupContext()->isRecord())
500 return getLexicalParent();
501
502 return getParent();
503}
504
Douglas Gregorbc221632009-05-28 16:34:51 +0000505bool DeclContext::isDependentContext() const {
506 if (isFileContext())
507 return false;
508
Douglas Gregorc8ab2562009-05-31 09:31:02 +0000509 if (isa<ClassTemplatePartialSpecializationDecl>(this))
510 return true;
511
Douglas Gregorbc221632009-05-28 16:34:51 +0000512 if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(this))
513 if (Record->getDescribedClassTemplate())
514 return true;
515
John McCall0c01d182010-03-24 05:22:00 +0000516 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(this)) {
Douglas Gregorbc221632009-05-28 16:34:51 +0000517 if (Function->getDescribedFunctionTemplate())
518 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000519
John McCall0c01d182010-03-24 05:22:00 +0000520 // Friend function declarations are dependent if their *lexical*
521 // context is dependent.
522 if (cast<Decl>(this)->getFriendObjectKind())
523 return getLexicalParent()->isDependentContext();
524 }
525
Douglas Gregorbc221632009-05-28 16:34:51 +0000526 return getParent() && getParent()->isDependentContext();
527}
528
Douglas Gregor074149e2009-01-05 19:45:36 +0000529bool DeclContext::isTransparentContext() const {
530 if (DeclKind == Decl::Enum)
531 return true; // FIXME: Check for C++0x scoped enums
532 else if (DeclKind == Decl::LinkageSpec)
533 return true;
Douglas Gregor65100792009-02-26 00:02:51 +0000534 else if (DeclKind >= Decl::RecordFirst && DeclKind <= Decl::RecordLast)
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000535 return cast<RecordDecl>(this)->isAnonymousStructOrUnion();
Douglas Gregor074149e2009-01-05 19:45:36 +0000536 else if (DeclKind == Decl::Namespace)
537 return false; // FIXME: Check for C++0x inline namespaces
538
539 return false;
540}
541
Douglas Gregor6dd38da2009-08-27 06:03:53 +0000542bool DeclContext::Encloses(DeclContext *DC) {
543 if (getPrimaryContext() != this)
544 return getPrimaryContext()->Encloses(DC);
Mike Stump1eb44332009-09-09 15:08:12 +0000545
Douglas Gregor6dd38da2009-08-27 06:03:53 +0000546 for (; DC; DC = DC->getParent())
547 if (DC->getPrimaryContext() == this)
548 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000549 return false;
Douglas Gregor6dd38da2009-08-27 06:03:53 +0000550}
551
Steve Naroff0701bbb2009-01-08 17:28:14 +0000552DeclContext *DeclContext::getPrimaryContext() {
Douglas Gregor44b43212008-12-11 16:49:14 +0000553 switch (DeclKind) {
Douglas Gregor44b43212008-12-11 16:49:14 +0000554 case Decl::TranslationUnit:
Douglas Gregor074149e2009-01-05 19:45:36 +0000555 case Decl::LinkageSpec:
Mike Stump1eb44332009-09-09 15:08:12 +0000556 case Decl::Block:
Douglas Gregor44b43212008-12-11 16:49:14 +0000557 // There is only one DeclContext for these entities.
558 return this;
559
560 case Decl::Namespace:
561 // The original namespace is our primary context.
562 return static_cast<NamespaceDecl*>(this)->getOriginalNamespace();
563
Douglas Gregor44b43212008-12-11 16:49:14 +0000564 case Decl::ObjCMethod:
565 return this;
566
567 case Decl::ObjCInterface:
Steve Naroff0701bbb2009-01-08 17:28:14 +0000568 case Decl::ObjCProtocol:
569 case Decl::ObjCCategory:
Douglas Gregor44b43212008-12-11 16:49:14 +0000570 // FIXME: Can Objective-C interfaces be forward-declared?
571 return this;
572
Steve Naroff0701bbb2009-01-08 17:28:14 +0000573 case Decl::ObjCImplementation:
574 case Decl::ObjCCategoryImpl:
575 return this;
576
Douglas Gregor44b43212008-12-11 16:49:14 +0000577 default:
Douglas Gregorcc636682009-02-17 23:15:12 +0000578 if (DeclKind >= Decl::TagFirst && DeclKind <= Decl::TagLast) {
579 // If this is a tag type that has a definition or is currently
580 // being defined, that definition is our primary context.
John McCall3cb0ebd2010-03-10 03:28:59 +0000581 TagDecl *Tag = cast<TagDecl>(this);
582 assert(isa<TagType>(Tag->TypeForDecl) ||
583 isa<InjectedClassNameType>(Tag->TypeForDecl));
584
585 if (TagDecl *Def = Tag->getDefinition())
586 return Def;
587
588 if (!isa<InjectedClassNameType>(Tag->TypeForDecl)) {
589 const TagType *TagTy = cast<TagType>(Tag->TypeForDecl);
590 if (TagTy->isBeingDefined())
591 // FIXME: is it necessarily being defined in the decl
592 // that owns the type?
593 return TagTy->getDecl();
594 }
595
596 return Tag;
Douglas Gregorcc636682009-02-17 23:15:12 +0000597 }
598
Douglas Gregor44b43212008-12-11 16:49:14 +0000599 assert(DeclKind >= Decl::FunctionFirst && DeclKind <= Decl::FunctionLast &&
600 "Unknown DeclContext kind");
601 return this;
602 }
603}
604
605DeclContext *DeclContext::getNextContext() {
606 switch (DeclKind) {
Douglas Gregor44b43212008-12-11 16:49:14 +0000607 case Decl::Namespace:
608 // Return the next namespace
609 return static_cast<NamespaceDecl*>(this)->getNextNamespace();
610
611 default:
Douglas Gregor44b43212008-12-11 16:49:14 +0000612 return 0;
613 }
614}
615
Douglas Gregor2cf26342009-04-09 22:27:44 +0000616/// \brief Load the declarations within this lexical storage from an
617/// external source.
Mike Stump1eb44332009-09-09 15:08:12 +0000618void
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000619DeclContext::LoadLexicalDeclsFromExternalStorage() const {
620 ExternalASTSource *Source = getParentASTContext().getExternalSource();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000621 assert(hasExternalLexicalStorage() && Source && "No external storage?");
622
Eli Friedmanb0156ea2009-04-27 23:43:36 +0000623 llvm::SmallVector<uint32_t, 64> Decls;
Mike Stump1eb44332009-09-09 15:08:12 +0000624 if (Source->ReadDeclsLexicallyInContext(const_cast<DeclContext *>(this),
Douglas Gregor2cf26342009-04-09 22:27:44 +0000625 Decls))
626 return;
627
628 // There is no longer any lexical storage in this context
629 ExternalLexicalStorage = false;
630
631 if (Decls.empty())
632 return;
633
634 // Resolve all of the declaration IDs into declarations, building up
635 // a chain of declarations via the Decl::NextDeclInContext field.
636 Decl *FirstNewDecl = 0;
637 Decl *PrevDecl = 0;
638 for (unsigned I = 0, N = Decls.size(); I != N; ++I) {
639 Decl *D = Source->GetDecl(Decls[I]);
640 if (PrevDecl)
641 PrevDecl->NextDeclInContext = D;
642 else
643 FirstNewDecl = D;
644
645 PrevDecl = D;
646 }
647
648 // Splice the newly-read declarations into the beginning of the list
649 // of declarations.
650 PrevDecl->NextDeclInContext = FirstDecl;
651 FirstDecl = FirstNewDecl;
652 if (!LastDecl)
653 LastDecl = PrevDecl;
654}
655
Mike Stump1eb44332009-09-09 15:08:12 +0000656void
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000657DeclContext::LoadVisibleDeclsFromExternalStorage() const {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000658 DeclContext *This = const_cast<DeclContext *>(this);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000659 ExternalASTSource *Source = getParentASTContext().getExternalSource();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000660 assert(hasExternalVisibleStorage() && Source && "No external storage?");
661
662 llvm::SmallVector<VisibleDeclaration, 64> Decls;
663 if (Source->ReadDeclsVisibleInContext(This, Decls))
664 return;
665
666 // There is no longer any visible storage in this context
667 ExternalVisibleStorage = false;
668
669 // Load the declaration IDs for all of the names visible in this
670 // context.
671 assert(!LookupPtr && "Have a lookup map before de-serialization?");
John McCall0c01d182010-03-24 05:22:00 +0000672 StoredDeclsMap *Map = CreateStoredDeclsMap(getParentASTContext());
Douglas Gregor2cf26342009-04-09 22:27:44 +0000673 for (unsigned I = 0, N = Decls.size(); I != N; ++I) {
674 (*Map)[Decls[I].Name].setFromDeclIDs(Decls[I].Declarations);
675 }
676}
677
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000678DeclContext::decl_iterator DeclContext::decls_begin() const {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000679 if (hasExternalLexicalStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000680 LoadLexicalDeclsFromExternalStorage();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000681
682 // FIXME: Check whether we need to load some declarations from
683 // external storage.
Mike Stump1eb44332009-09-09 15:08:12 +0000684 return decl_iterator(FirstDecl);
Douglas Gregor6ab35242009-04-09 21:40:53 +0000685}
686
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000687DeclContext::decl_iterator DeclContext::decls_end() const {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000688 if (hasExternalLexicalStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000689 LoadLexicalDeclsFromExternalStorage();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000690
Mike Stump1eb44332009-09-09 15:08:12 +0000691 return decl_iterator();
Douglas Gregor6ab35242009-04-09 21:40:53 +0000692}
693
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000694bool DeclContext::decls_empty() const {
Douglas Gregor8038d512009-04-10 17:25:41 +0000695 if (hasExternalLexicalStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000696 LoadLexicalDeclsFromExternalStorage();
Douglas Gregor8038d512009-04-10 17:25:41 +0000697
698 return !FirstDecl;
699}
700
John McCall9f54ad42009-12-10 09:41:52 +0000701void DeclContext::removeDecl(Decl *D) {
702 assert(D->getLexicalDeclContext() == this &&
703 "decl being removed from non-lexical context");
704 assert((D->NextDeclInContext || D == LastDecl) &&
705 "decl is not in decls list");
706
707 // Remove D from the decl chain. This is O(n) but hopefully rare.
708 if (D == FirstDecl) {
709 if (D == LastDecl)
710 FirstDecl = LastDecl = 0;
711 else
712 FirstDecl = D->NextDeclInContext;
713 } else {
714 for (Decl *I = FirstDecl; true; I = I->NextDeclInContext) {
715 assert(I && "decl not found in linked list");
716 if (I->NextDeclInContext == D) {
717 I->NextDeclInContext = D->NextDeclInContext;
718 if (D == LastDecl) LastDecl = I;
719 break;
720 }
721 }
722 }
723
724 // Mark that D is no longer in the decl chain.
725 D->NextDeclInContext = 0;
726
727 // Remove D from the lookup table if necessary.
728 if (isa<NamedDecl>(D)) {
729 NamedDecl *ND = cast<NamedDecl>(D);
730
John McCall0c01d182010-03-24 05:22:00 +0000731 StoredDeclsMap *Map = getPrimaryContext()->LookupPtr;
732 if (!Map) return;
John McCall9f54ad42009-12-10 09:41:52 +0000733
John McCall9f54ad42009-12-10 09:41:52 +0000734 StoredDeclsMap::iterator Pos = Map->find(ND->getDeclName());
735 assert(Pos != Map->end() && "no lookup entry for decl");
736 Pos->second.remove(ND);
737 }
738}
739
John McCall3f9a8a62009-08-11 06:59:38 +0000740void DeclContext::addHiddenDecl(Decl *D) {
Chris Lattner7f0be132009-02-20 00:56:18 +0000741 assert(D->getLexicalDeclContext() == this &&
742 "Decl inserted into wrong lexical context");
Mike Stump1eb44332009-09-09 15:08:12 +0000743 assert(!D->getNextDeclInContext() && D != LastDecl &&
Douglas Gregor6037fcb2009-01-09 19:42:16 +0000744 "Decl already inserted into a DeclContext");
745
746 if (FirstDecl) {
Chris Lattner244a67d2009-03-28 06:04:26 +0000747 LastDecl->NextDeclInContext = D;
Douglas Gregor6037fcb2009-01-09 19:42:16 +0000748 LastDecl = D;
749 } else {
750 FirstDecl = LastDecl = D;
751 }
John McCall3f9a8a62009-08-11 06:59:38 +0000752}
753
754void DeclContext::addDecl(Decl *D) {
755 addHiddenDecl(D);
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000756
757 if (NamedDecl *ND = dyn_cast<NamedDecl>(D))
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000758 ND->getDeclContext()->makeDeclVisibleInContext(ND);
Douglas Gregor44b43212008-12-11 16:49:14 +0000759}
760
Douglas Gregor074149e2009-01-05 19:45:36 +0000761/// buildLookup - Build the lookup data structure with all of the
762/// declarations in DCtx (and any other contexts linked to it or
763/// transparent contexts nested within it).
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000764void DeclContext::buildLookup(DeclContext *DCtx) {
Douglas Gregor074149e2009-01-05 19:45:36 +0000765 for (; DCtx; DCtx = DCtx->getNextContext()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000766 for (decl_iterator D = DCtx->decls_begin(),
767 DEnd = DCtx->decls_end();
Douglas Gregor4f3b8f82009-01-06 07:17:58 +0000768 D != DEnd; ++D) {
John McCall3f9a8a62009-08-11 06:59:38 +0000769 // Insert this declaration into the lookup structure, but only
770 // if it's semantically in its decl context. During non-lazy
771 // lookup building, this is implicitly enforced by addDecl.
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000772 if (NamedDecl *ND = dyn_cast<NamedDecl>(*D))
John McCall3f9a8a62009-08-11 06:59:38 +0000773 if (D->getDeclContext() == DCtx)
774 makeDeclVisibleInContextImpl(ND);
Douglas Gregor074149e2009-01-05 19:45:36 +0000775
Ted Kremenekc32b1d82009-11-17 22:58:30 +0000776 // Insert any forward-declared Objective-C interfaces into the lookup
777 // data structure.
778 if (ObjCClassDecl *Class = dyn_cast<ObjCClassDecl>(*D))
779 for (ObjCClassDecl::iterator I = Class->begin(), IEnd = Class->end();
780 I != IEnd; ++I)
Ted Kremenek321c22f2009-11-18 00:28:11 +0000781 makeDeclVisibleInContextImpl(I->getInterface());
Ted Kremenekc32b1d82009-11-17 22:58:30 +0000782
Douglas Gregor074149e2009-01-05 19:45:36 +0000783 // If this declaration is itself a transparent declaration context,
784 // add its members (recursively).
785 if (DeclContext *InnerCtx = dyn_cast<DeclContext>(*D))
786 if (InnerCtx->isTransparentContext())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000787 buildLookup(InnerCtx->getPrimaryContext());
Douglas Gregor074149e2009-01-05 19:45:36 +0000788 }
789 }
790}
791
Mike Stump1eb44332009-09-09 15:08:12 +0000792DeclContext::lookup_result
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000793DeclContext::lookup(DeclarationName Name) {
Steve Naroff0701bbb2009-01-08 17:28:14 +0000794 DeclContext *PrimaryContext = getPrimaryContext();
Douglas Gregor44b43212008-12-11 16:49:14 +0000795 if (PrimaryContext != this)
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000796 return PrimaryContext->lookup(Name);
Douglas Gregor44b43212008-12-11 16:49:14 +0000797
Douglas Gregor2cf26342009-04-09 22:27:44 +0000798 if (hasExternalVisibleStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000799 LoadVisibleDeclsFromExternalStorage();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000800
Douglas Gregor3fc749d2008-12-23 00:26:44 +0000801 /// If there is no lookup data structure, build one now by walking
Douglas Gregor44b43212008-12-11 16:49:14 +0000802 /// all of the linked DeclContexts (in declaration order!) and
803 /// inserting their values.
Douglas Gregorc36c5402009-04-09 17:29:08 +0000804 if (!LookupPtr) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000805 buildLookup(this);
Douglas Gregor44b43212008-12-11 16:49:14 +0000806
Douglas Gregorc36c5402009-04-09 17:29:08 +0000807 if (!LookupPtr)
Chris Lattner91942502009-02-20 00:55:03 +0000808 return lookup_result(0, 0);
Douglas Gregorc36c5402009-04-09 17:29:08 +0000809 }
Douglas Gregor44b43212008-12-11 16:49:14 +0000810
John McCall0c01d182010-03-24 05:22:00 +0000811 StoredDeclsMap::iterator Pos = LookupPtr->find(Name);
812 if (Pos == LookupPtr->end())
Douglas Gregorc36c5402009-04-09 17:29:08 +0000813 return lookup_result(0, 0);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000814 return Pos->second.getLookupResult(getParentASTContext());
Douglas Gregor44b43212008-12-11 16:49:14 +0000815}
816
Mike Stump1eb44332009-09-09 15:08:12 +0000817DeclContext::lookup_const_result
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000818DeclContext::lookup(DeclarationName Name) const {
819 return const_cast<DeclContext*>(this)->lookup(Name);
Douglas Gregor44b43212008-12-11 16:49:14 +0000820}
821
Chris Lattner0cf2b192009-03-27 19:19:59 +0000822DeclContext *DeclContext::getLookupContext() {
823 DeclContext *Ctx = this;
Douglas Gregor72de6672009-01-08 20:45:30 +0000824 // Skip through transparent contexts.
Douglas Gregorce356072009-01-06 23:51:29 +0000825 while (Ctx->isTransparentContext())
826 Ctx = Ctx->getParent();
827 return Ctx;
828}
829
Douglas Gregor88b70942009-02-25 22:02:03 +0000830DeclContext *DeclContext::getEnclosingNamespaceContext() {
831 DeclContext *Ctx = this;
832 // Skip through non-namespace, non-translation-unit contexts.
833 while (!Ctx->isFileContext() || Ctx->isTransparentContext())
834 Ctx = Ctx->getParent();
835 return Ctx->getPrimaryContext();
836}
837
John McCallab88d972009-08-31 22:39:49 +0000838void DeclContext::makeDeclVisibleInContext(NamedDecl *D, bool Recoverable) {
Douglas Gregorcc636682009-02-17 23:15:12 +0000839 // FIXME: This feels like a hack. Should DeclarationName support
840 // template-ids, or is there a better way to keep specializations
841 // from being visible?
842 if (isa<ClassTemplateSpecializationDecl>(D))
843 return;
Eli Friedman6bc20132009-12-08 05:40:03 +0000844 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
845 if (FD->isFunctionTemplateSpecialization())
846 return;
Douglas Gregorcc636682009-02-17 23:15:12 +0000847
Steve Naroff0701bbb2009-01-08 17:28:14 +0000848 DeclContext *PrimaryContext = getPrimaryContext();
Douglas Gregor44b43212008-12-11 16:49:14 +0000849 if (PrimaryContext != this) {
John McCallab88d972009-08-31 22:39:49 +0000850 PrimaryContext->makeDeclVisibleInContext(D, Recoverable);
Douglas Gregor44b43212008-12-11 16:49:14 +0000851 return;
852 }
853
854 // If we already have a lookup data structure, perform the insertion
855 // into it. Otherwise, be lazy and don't build that structure until
856 // someone asks for it.
John McCallab88d972009-08-31 22:39:49 +0000857 if (LookupPtr || !Recoverable)
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000858 makeDeclVisibleInContextImpl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +0000859
Douglas Gregor074149e2009-01-05 19:45:36 +0000860 // If we are a transparent context, insert into our parent context,
861 // too. This operation is recursive.
862 if (isTransparentContext())
John McCallab88d972009-08-31 22:39:49 +0000863 getParent()->makeDeclVisibleInContext(D, Recoverable);
Douglas Gregor44b43212008-12-11 16:49:14 +0000864}
865
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000866void DeclContext::makeDeclVisibleInContextImpl(NamedDecl *D) {
Douglas Gregor074149e2009-01-05 19:45:36 +0000867 // Skip unnamed declarations.
868 if (!D->getDeclName())
869 return;
870
Douglas Gregorcc636682009-02-17 23:15:12 +0000871 // FIXME: This feels like a hack. Should DeclarationName support
872 // template-ids, or is there a better way to keep specializations
873 // from being visible?
874 if (isa<ClassTemplateSpecializationDecl>(D))
875 return;
876
Ted Kremenek3478eb62010-02-11 07:12:28 +0000877 ASTContext *C = 0;
878 if (!LookupPtr) {
879 C = &getParentASTContext();
John McCall0c01d182010-03-24 05:22:00 +0000880 CreateStoredDeclsMap(*C);
Ted Kremenek3478eb62010-02-11 07:12:28 +0000881 }
Douglas Gregor44b43212008-12-11 16:49:14 +0000882
883 // Insert this declaration into the map.
John McCall0c01d182010-03-24 05:22:00 +0000884 StoredDeclsList &DeclNameEntries = (*LookupPtr)[D->getDeclName()];
Chris Lattner67762a32009-02-20 01:44:05 +0000885 if (DeclNameEntries.isNull()) {
886 DeclNameEntries.setOnlyValue(D);
Chris Lattnerbd6c8002009-02-19 07:00:44 +0000887 return;
Douglas Gregor44b43212008-12-11 16:49:14 +0000888 }
Chris Lattner91942502009-02-20 00:55:03 +0000889
Chris Lattnerbdc3d002009-02-20 01:10:07 +0000890 // If it is possible that this is a redeclaration, check to see if there is
891 // already a decl for which declarationReplaces returns true. If there is
892 // one, just replace it and return.
Ted Kremenek3478eb62010-02-11 07:12:28 +0000893 if (!C)
894 C = &getParentASTContext();
895
896 if (DeclNameEntries.HandleRedeclaration(*C, D))
Chris Lattner67762a32009-02-20 01:44:05 +0000897 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000898
Chris Lattnerbd6c8002009-02-19 07:00:44 +0000899 // Put this declaration into the appropriate slot.
Chris Lattner67762a32009-02-20 01:44:05 +0000900 DeclNameEntries.AddSubsequentDecl(D);
Douglas Gregor44b43212008-12-11 16:49:14 +0000901}
Douglas Gregor2a3009a2009-02-03 19:21:40 +0000902
903/// Returns iterator range [First, Last) of UsingDirectiveDecls stored within
904/// this context.
Mike Stump1eb44332009-09-09 15:08:12 +0000905DeclContext::udir_iterator_range
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000906DeclContext::getUsingDirectives() const {
907 lookup_const_result Result = lookup(UsingDirectiveDecl::getName());
Douglas Gregor2a3009a2009-02-03 19:21:40 +0000908 return udir_iterator_range(reinterpret_cast<udir_iterator>(Result.first),
909 reinterpret_cast<udir_iterator>(Result.second));
910}
Douglas Gregor2cf26342009-04-09 22:27:44 +0000911
912void StoredDeclsList::materializeDecls(ASTContext &Context) {
913 if (isNull())
914 return;
915
916 switch ((DataKind)(Data & 0x03)) {
917 case DK_Decl:
918 case DK_Decl_Vector:
919 break;
920
921 case DK_DeclID: {
922 // Resolve this declaration ID to an actual declaration by
923 // querying the external AST source.
924 unsigned DeclID = Data >> 2;
925
926 ExternalASTSource *Source = Context.getExternalSource();
927 assert(Source && "No external AST source available!");
928
929 Data = reinterpret_cast<uintptr_t>(Source->GetDecl(DeclID));
930 break;
931 }
932
933 case DK_ID_Vector: {
934 // We have a vector of declaration IDs. Resolve all of them to
935 // actual declarations.
936 VectorTy &Vector = *getAsVector();
937 ExternalASTSource *Source = Context.getExternalSource();
938 assert(Source && "No external AST source available!");
939
940 for (unsigned I = 0, N = Vector.size(); I != N; ++I)
941 Vector[I] = reinterpret_cast<uintptr_t>(Source->GetDecl(Vector[I]));
942
943 Data = (Data & ~0x03) | DK_Decl_Vector;
944 break;
945 }
946 }
947}
Ted Kremenek3478eb62010-02-11 07:12:28 +0000948
949//===----------------------------------------------------------------------===//
950// Creation and Destruction of StoredDeclsMaps. //
951//===----------------------------------------------------------------------===//
952
John McCall0c01d182010-03-24 05:22:00 +0000953StoredDeclsMap *DeclContext::CreateStoredDeclsMap(ASTContext &C) const {
954 assert(!LookupPtr && "context already has a decls map");
955 assert(getPrimaryContext() == this &&
956 "creating decls map on non-primary context");
957
958 StoredDeclsMap *M;
959 bool Dependent = isDependentContext();
960 if (Dependent)
961 M = new DependentStoredDeclsMap();
962 else
963 M = new StoredDeclsMap();
964 M->Previous = C.LastSDM;
965 C.LastSDM = llvm::PointerIntPair<StoredDeclsMap*,1>(M, Dependent);
966 LookupPtr = M;
Ted Kremenek3478eb62010-02-11 07:12:28 +0000967 return M;
968}
969
970void ASTContext::ReleaseDeclContextMaps() {
John McCall0c01d182010-03-24 05:22:00 +0000971 // It's okay to delete DependentStoredDeclsMaps via a StoredDeclsMap
972 // pointer because the subclass doesn't add anything that needs to
973 // be deleted.
974
975 StoredDeclsMap::DestroyAll(LastSDM.getPointer(), LastSDM.getInt());
976}
977
978void StoredDeclsMap::DestroyAll(StoredDeclsMap *Map, bool Dependent) {
979 while (Map) {
980 // Advance the iteration before we invalidate memory.
981 llvm::PointerIntPair<StoredDeclsMap*,1> Next = Map->Previous;
982
983 if (Dependent)
984 delete static_cast<DependentStoredDeclsMap*>(Map);
985 else
986 delete Map;
987
988 Map = Next.getPointer();
989 Dependent = Next.getInt();
990 }
991}
992
John McCall0c01d182010-03-24 05:22:00 +0000993DependentDiagnostic *DependentDiagnostic::Create(ASTContext &C,
994 DeclContext *Parent,
995 const PartialDiagnostic &PDiag) {
996 assert(Parent->isDependentContext()
997 && "cannot iterate dependent diagnostics of non-dependent context");
998 Parent = Parent->getPrimaryContext();
999 if (!Parent->LookupPtr)
1000 Parent->CreateStoredDeclsMap(C);
1001
1002 DependentStoredDeclsMap *Map
1003 = static_cast<DependentStoredDeclsMap*>(Parent->LookupPtr);
1004
Douglas Gregorb8365182010-03-29 23:56:53 +00001005 // Allocate the copy of the PartialDiagnostic via the ASTContext's
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00001006 // BumpPtrAllocator, rather than the ASTContext itself.
Douglas Gregorb8365182010-03-29 23:56:53 +00001007 PartialDiagnostic::Storage *DiagStorage = 0;
1008 if (PDiag.hasStorage())
1009 DiagStorage = new (C) PartialDiagnostic::Storage;
1010
1011 DependentDiagnostic *DD = new (C) DependentDiagnostic(PDiag, DiagStorage);
John McCall0c01d182010-03-24 05:22:00 +00001012
1013 // TODO: Maybe we shouldn't reverse the order during insertion.
1014 DD->NextDiagnostic = Map->FirstDiagnostic;
1015 Map->FirstDiagnostic = DD;
1016
1017 return DD;
Ted Kremenek3478eb62010-02-11 07:12:28 +00001018}