blob: 9e92855681b4691a1334ebecfdfaffea4f8a2cb1 [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
Douglas Gregor8fc463a2009-04-24 00:11:27 +0000260 case ObjCImplementation:
261 return IDNS_ObjCImplementation;
262
Fariborz Jahanian737061f2009-12-11 00:26:36 +0000263 case ObjCCategory:
Douglas Gregor8fc463a2009-04-24 00:11:27 +0000264 case ObjCCategoryImpl:
Fariborz Jahanian737061f2009-12-11 00:26:36 +0000265 return IDNS_ObjCCategoryName;
Douglas Gregor8fc463a2009-04-24 00:11:27 +0000266
Chris Lattner769dbdf2009-03-27 20:18:19 +0000267 case Field:
268 case ObjCAtDefsField:
269 case ObjCIvar:
270 return IDNS_Member;
Mike Stump1eb44332009-09-09 15:08:12 +0000271
Chris Lattner769dbdf2009-03-27 20:18:19 +0000272 case Record:
273 case CXXRecord:
274 case Enum:
275 case TemplateTypeParm:
276 return IDNS_Tag;
Mike Stump1eb44332009-09-09 15:08:12 +0000277
Chris Lattner769dbdf2009-03-27 20:18:19 +0000278 case Namespace:
279 case Template:
280 case FunctionTemplate:
281 case ClassTemplate:
282 case TemplateTemplateParm:
Anders Carlssonfaf0e872009-03-28 23:02:53 +0000283 case NamespaceAlias:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000284 return IDNS_Tag | IDNS_Ordinary;
Mike Stump1eb44332009-09-09 15:08:12 +0000285
Chris Lattner769dbdf2009-03-27 20:18:19 +0000286 // Never have names.
John McCall02cace72009-08-28 07:59:38 +0000287 case Friend:
John McCalldd4a3b02009-09-16 22:47:08 +0000288 case FriendTemplate:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000289 case LinkageSpec:
290 case FileScopeAsm:
291 case StaticAssert:
292 case ObjCClass:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000293 case ObjCPropertyImpl:
294 case ObjCForwardProtocol:
295 case Block:
296 case TranslationUnit:
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000297
Chris Lattner769dbdf2009-03-27 20:18:19 +0000298 // Aren't looked up?
299 case UsingDirective:
300 case ClassTemplateSpecialization:
Douglas Gregorc8ab2562009-05-31 09:31:02 +0000301 case ClassTemplatePartialSpecialization:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000302 return 0;
303 }
John McCall9488ea12009-11-17 05:59:44 +0000304
305 return 0;
Eli Friedman56d29372008-06-07 16:52:53 +0000306}
307
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000308void Decl::addAttr(Attr *NewAttr) {
309 Attr *&ExistingAttr = getASTContext().getDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000310
311 NewAttr->setNext(ExistingAttr);
312 ExistingAttr = NewAttr;
Mike Stump1eb44332009-09-09 15:08:12 +0000313
Eli Friedman56d29372008-06-07 16:52:53 +0000314 HasAttrs = true;
315}
316
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000317void Decl::invalidateAttrs() {
Eli Friedman56d29372008-06-07 16:52:53 +0000318 if (!HasAttrs) return;
Mike Stump1eb44332009-09-09 15:08:12 +0000319
Eli Friedman56d29372008-06-07 16:52:53 +0000320 HasAttrs = false;
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000321 getASTContext().eraseDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000322}
323
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000324const Attr *Decl::getAttrsImpl() const {
Mike Stump1eb44332009-09-09 15:08:12 +0000325 assert(HasAttrs && "getAttrs() should verify this!");
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000326 return getASTContext().getDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000327}
328
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000329void Decl::swapAttrs(Decl *RHS) {
Eli Friedman56d29372008-06-07 16:52:53 +0000330 bool HasLHSAttr = this->HasAttrs;
331 bool HasRHSAttr = RHS->HasAttrs;
Mike Stump1eb44332009-09-09 15:08:12 +0000332
Eli Friedman56d29372008-06-07 16:52:53 +0000333 // Usually, neither decl has attrs, nothing to do.
334 if (!HasLHSAttr && !HasRHSAttr) return;
Mike Stump1eb44332009-09-09 15:08:12 +0000335
Eli Friedman56d29372008-06-07 16:52:53 +0000336 // If 'this' has no attrs, swap the other way.
337 if (!HasLHSAttr)
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000338 return RHS->swapAttrs(this);
Mike Stump1eb44332009-09-09 15:08:12 +0000339
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000340 ASTContext &Context = getASTContext();
Mike Stump1eb44332009-09-09 15:08:12 +0000341
Eli Friedman56d29372008-06-07 16:52:53 +0000342 // Handle the case when both decls have attrs.
343 if (HasRHSAttr) {
Douglas Gregor68584ed2009-06-18 16:11:24 +0000344 std::swap(Context.getDeclAttrs(this), Context.getDeclAttrs(RHS));
Eli Friedman56d29372008-06-07 16:52:53 +0000345 return;
346 }
Mike Stump1eb44332009-09-09 15:08:12 +0000347
Eli Friedman56d29372008-06-07 16:52:53 +0000348 // Otherwise, LHS has an attr and RHS doesn't.
Douglas Gregor68584ed2009-06-18 16:11:24 +0000349 Context.getDeclAttrs(RHS) = Context.getDeclAttrs(this);
350 Context.eraseDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000351 this->HasAttrs = false;
352 RHS->HasAttrs = true;
353}
354
355
Chris Lattnercc581472009-03-04 06:05:19 +0000356void Decl::Destroy(ASTContext &C) {
357 // Free attributes for this decl.
358 if (HasAttrs) {
Douglas Gregor68584ed2009-06-18 16:11:24 +0000359 C.getDeclAttrs(this)->Destroy(C);
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000360 invalidateAttrs();
Chris Lattnercc581472009-03-04 06:05:19 +0000361 HasAttrs = false;
362 }
Mike Stump1eb44332009-09-09 15:08:12 +0000363
Douglas Gregora0fc55f2009-01-13 19:47:12 +0000364#if 0
Douglas Gregor00ad0ef2009-01-20 04:25:11 +0000365 // FIXME: Once ownership is fully understood, we can enable this code
366 if (DeclContext *DC = dyn_cast<DeclContext>(this))
367 DC->decls_begin()->Destroy(C);
Eli Friedman56d29372008-06-07 16:52:53 +0000368
Chris Lattner244a67d2009-03-28 06:04:26 +0000369 // Observe the unrolled recursion. By setting N->NextDeclInContext = 0x0
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000370 // within the loop, only the Destroy method for the first Decl
371 // will deallocate all of the Decls in a chain.
Mike Stump1eb44332009-09-09 15:08:12 +0000372
Chris Lattner244a67d2009-03-28 06:04:26 +0000373 Decl* N = getNextDeclInContext();
Mike Stump1eb44332009-09-09 15:08:12 +0000374
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000375 while (N) {
Chris Lattner244a67d2009-03-28 06:04:26 +0000376 Decl* Tmp = N->getNextDeclInContext();
377 N->NextDeclInContext = 0;
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000378 N->Destroy(C);
379 N = Tmp;
Mike Stump1eb44332009-09-09 15:08:12 +0000380 }
Douglas Gregora0fc55f2009-01-13 19:47:12 +0000381
Ted Kremenek94a39002009-12-01 00:07:10 +0000382 if (isOutOfSemaDC())
383 delete (C) getMultipleDC();
384
Eli Friedman56d29372008-06-07 16:52:53 +0000385 this->~Decl();
Steve Naroff3e970492009-01-27 21:25:57 +0000386 C.Deallocate((void *)this);
Ted Kremenek94a39002009-12-01 00:07:10 +0000387#endif
Eli Friedman56d29372008-06-07 16:52:53 +0000388}
389
Argyrios Kyrtzidis42220c52008-10-12 16:14:48 +0000390Decl *Decl::castFromDeclContext (const DeclContext *D) {
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000391 Decl::Kind DK = D->getDeclKind();
392 switch(DK) {
393#define DECL_CONTEXT(Name) \
394 case Decl::Name: \
395 return static_cast<Name##Decl*>(const_cast<DeclContext*>(D));
396#define DECL_CONTEXT_BASE(Name)
397#include "clang/AST/DeclNodes.def"
398 default:
399#define DECL_CONTEXT_BASE(Name) \
400 if (DK >= Decl::Name##First && DK <= Decl::Name##Last) \
401 return static_cast<Name##Decl*>(const_cast<DeclContext*>(D));
402#include "clang/AST/DeclNodes.def"
403 assert(false && "a decl that inherits DeclContext isn't handled");
404 return 0;
405 }
Argyrios Kyrtzidis42220c52008-10-12 16:14:48 +0000406}
407
408DeclContext *Decl::castToDeclContext(const Decl *D) {
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000409 Decl::Kind DK = D->getKind();
410 switch(DK) {
411#define DECL_CONTEXT(Name) \
412 case Decl::Name: \
413 return static_cast<Name##Decl*>(const_cast<Decl*>(D));
414#define DECL_CONTEXT_BASE(Name)
415#include "clang/AST/DeclNodes.def"
416 default:
417#define DECL_CONTEXT_BASE(Name) \
418 if (DK >= Decl::Name##First && DK <= Decl::Name##Last) \
419 return static_cast<Name##Decl*>(const_cast<Decl*>(D));
420#include "clang/AST/DeclNodes.def"
421 assert(false && "a decl that inherits DeclContext isn't handled");
422 return 0;
423 }
Argyrios Kyrtzidis42220c52008-10-12 16:14:48 +0000424}
425
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000426CompoundStmt* Decl::getCompoundBody() const {
427 return dyn_cast_or_null<CompoundStmt>(getBody());
Sebastian Redld3a413d2009-04-26 20:35:05 +0000428}
429
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000430SourceLocation Decl::getBodyRBrace() const {
431 Stmt *Body = getBody();
Sebastian Redld3a413d2009-04-26 20:35:05 +0000432 if (!Body)
433 return SourceLocation();
434 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Body))
435 return CS->getRBracLoc();
436 assert(isa<CXXTryStmt>(Body) &&
437 "Body can only be CompoundStmt or CXXTryStmt");
438 return cast<CXXTryStmt>(Body)->getSourceRange().getEnd();
439}
440
Anders Carlsson1329c272009-03-25 23:38:06 +0000441#ifndef NDEBUG
442void Decl::CheckAccessDeclContext() const {
John McCall46460a62010-01-20 21:53:11 +0000443 // Suppress this check if any of the following hold:
444 // 1. this is the translation unit (and thus has no parent)
445 // 2. this is a template parameter (and thus doesn't belong to its context)
446 // 3. this is a ParmVarDecl (which can be in a record context during
447 // the brief period between its creation and the creation of the
448 // FunctionDecl)
449 // 4. the context is not a record
Anders Carlsson35eda442009-08-29 20:47:47 +0000450 if (isa<TranslationUnitDecl>(this) ||
Douglas Gregorfdd8ab12010-02-22 17:53:38 +0000451 !isa<CXXRecordDecl>(getDeclContext()) ||
452 isInvalidDecl())
Anders Carlsson35eda442009-08-29 20:47:47 +0000453 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000454
455 assert(Access != AS_none &&
Anders Carlsson1329c272009-03-25 23:38:06 +0000456 "Access specifier is AS_none inside a record decl");
457}
458
459#endif
460
Eli Friedman56d29372008-06-07 16:52:53 +0000461//===----------------------------------------------------------------------===//
462// DeclContext Implementation
463//===----------------------------------------------------------------------===//
464
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000465bool DeclContext::classof(const Decl *D) {
466 switch (D->getKind()) {
467#define DECL_CONTEXT(Name) case Decl::Name:
468#define DECL_CONTEXT_BASE(Name)
469#include "clang/AST/DeclNodes.def"
470 return true;
471 default:
472#define DECL_CONTEXT_BASE(Name) \
473 if (D->getKind() >= Decl::Name##First && \
474 D->getKind() <= Decl::Name##Last) \
475 return true;
476#include "clang/AST/DeclNodes.def"
477 return false;
478 }
479}
480
Douglas Gregor44b43212008-12-11 16:49:14 +0000481DeclContext::~DeclContext() {
Ted Kremenek3478eb62010-02-11 07:12:28 +0000482 // FIXME: Currently ~ASTContext will delete the StoredDeclsMaps because
483 // ~DeclContext() is not guaranteed to be called when ASTContext uses
484 // a BumpPtrAllocator.
John McCall0c01d182010-03-24 05:22:00 +0000485 // delete LookupPtr;
Douglas Gregor44b43212008-12-11 16:49:14 +0000486}
487
488void DeclContext::DestroyDecls(ASTContext &C) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000489 for (decl_iterator D = decls_begin(); D != decls_end(); )
Douglas Gregor00ad0ef2009-01-20 04:25:11 +0000490 (*D++)->Destroy(C);
Douglas Gregor44b43212008-12-11 16:49:14 +0000491}
492
Douglas Gregore942bbe2009-09-10 16:57:35 +0000493/// \brief Find the parent context of this context that will be
494/// used for unqualified name lookup.
495///
496/// Generally, the parent lookup context is the semantic context. However, for
497/// a friend function the parent lookup context is the lexical context, which
498/// is the class in which the friend is declared.
499DeclContext *DeclContext::getLookupParent() {
500 // FIXME: Find a better way to identify friends
501 if (isa<FunctionDecl>(this))
502 if (getParent()->getLookupContext()->isFileContext() &&
503 getLexicalParent()->getLookupContext()->isRecord())
504 return getLexicalParent();
505
506 return getParent();
507}
508
Douglas Gregorbc221632009-05-28 16:34:51 +0000509bool DeclContext::isDependentContext() const {
510 if (isFileContext())
511 return false;
512
Douglas Gregorc8ab2562009-05-31 09:31:02 +0000513 if (isa<ClassTemplatePartialSpecializationDecl>(this))
514 return true;
515
Douglas Gregorbc221632009-05-28 16:34:51 +0000516 if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(this))
517 if (Record->getDescribedClassTemplate())
518 return true;
519
John McCall0c01d182010-03-24 05:22:00 +0000520 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(this)) {
Douglas Gregorbc221632009-05-28 16:34:51 +0000521 if (Function->getDescribedFunctionTemplate())
522 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000523
John McCall0c01d182010-03-24 05:22:00 +0000524 // Friend function declarations are dependent if their *lexical*
525 // context is dependent.
526 if (cast<Decl>(this)->getFriendObjectKind())
527 return getLexicalParent()->isDependentContext();
528 }
529
Douglas Gregorbc221632009-05-28 16:34:51 +0000530 return getParent() && getParent()->isDependentContext();
531}
532
Douglas Gregor074149e2009-01-05 19:45:36 +0000533bool DeclContext::isTransparentContext() const {
534 if (DeclKind == Decl::Enum)
535 return true; // FIXME: Check for C++0x scoped enums
536 else if (DeclKind == Decl::LinkageSpec)
537 return true;
Douglas Gregor65100792009-02-26 00:02:51 +0000538 else if (DeclKind >= Decl::RecordFirst && DeclKind <= Decl::RecordLast)
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000539 return cast<RecordDecl>(this)->isAnonymousStructOrUnion();
Douglas Gregor074149e2009-01-05 19:45:36 +0000540 else if (DeclKind == Decl::Namespace)
541 return false; // FIXME: Check for C++0x inline namespaces
542
543 return false;
544}
545
Douglas Gregor6dd38da2009-08-27 06:03:53 +0000546bool DeclContext::Encloses(DeclContext *DC) {
547 if (getPrimaryContext() != this)
548 return getPrimaryContext()->Encloses(DC);
Mike Stump1eb44332009-09-09 15:08:12 +0000549
Douglas Gregor6dd38da2009-08-27 06:03:53 +0000550 for (; DC; DC = DC->getParent())
551 if (DC->getPrimaryContext() == this)
552 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000553 return false;
Douglas Gregor6dd38da2009-08-27 06:03:53 +0000554}
555
Steve Naroff0701bbb2009-01-08 17:28:14 +0000556DeclContext *DeclContext::getPrimaryContext() {
Douglas Gregor44b43212008-12-11 16:49:14 +0000557 switch (DeclKind) {
Douglas Gregor44b43212008-12-11 16:49:14 +0000558 case Decl::TranslationUnit:
Douglas Gregor074149e2009-01-05 19:45:36 +0000559 case Decl::LinkageSpec:
Mike Stump1eb44332009-09-09 15:08:12 +0000560 case Decl::Block:
Douglas Gregor44b43212008-12-11 16:49:14 +0000561 // There is only one DeclContext for these entities.
562 return this;
563
564 case Decl::Namespace:
565 // The original namespace is our primary context.
566 return static_cast<NamespaceDecl*>(this)->getOriginalNamespace();
567
Douglas Gregor44b43212008-12-11 16:49:14 +0000568 case Decl::ObjCMethod:
569 return this;
570
571 case Decl::ObjCInterface:
Steve Naroff0701bbb2009-01-08 17:28:14 +0000572 case Decl::ObjCProtocol:
573 case Decl::ObjCCategory:
Douglas Gregor44b43212008-12-11 16:49:14 +0000574 // FIXME: Can Objective-C interfaces be forward-declared?
575 return this;
576
Steve Naroff0701bbb2009-01-08 17:28:14 +0000577 case Decl::ObjCImplementation:
578 case Decl::ObjCCategoryImpl:
579 return this;
580
Douglas Gregor44b43212008-12-11 16:49:14 +0000581 default:
Douglas Gregorcc636682009-02-17 23:15:12 +0000582 if (DeclKind >= Decl::TagFirst && DeclKind <= Decl::TagLast) {
583 // If this is a tag type that has a definition or is currently
584 // being defined, that definition is our primary context.
John McCall3cb0ebd2010-03-10 03:28:59 +0000585 TagDecl *Tag = cast<TagDecl>(this);
586 assert(isa<TagType>(Tag->TypeForDecl) ||
587 isa<InjectedClassNameType>(Tag->TypeForDecl));
588
589 if (TagDecl *Def = Tag->getDefinition())
590 return Def;
591
592 if (!isa<InjectedClassNameType>(Tag->TypeForDecl)) {
593 const TagType *TagTy = cast<TagType>(Tag->TypeForDecl);
594 if (TagTy->isBeingDefined())
595 // FIXME: is it necessarily being defined in the decl
596 // that owns the type?
597 return TagTy->getDecl();
598 }
599
600 return Tag;
Douglas Gregorcc636682009-02-17 23:15:12 +0000601 }
602
Douglas Gregor44b43212008-12-11 16:49:14 +0000603 assert(DeclKind >= Decl::FunctionFirst && DeclKind <= Decl::FunctionLast &&
604 "Unknown DeclContext kind");
605 return this;
606 }
607}
608
609DeclContext *DeclContext::getNextContext() {
610 switch (DeclKind) {
Douglas Gregor44b43212008-12-11 16:49:14 +0000611 case Decl::Namespace:
612 // Return the next namespace
613 return static_cast<NamespaceDecl*>(this)->getNextNamespace();
614
615 default:
Douglas Gregor44b43212008-12-11 16:49:14 +0000616 return 0;
617 }
618}
619
Douglas Gregor2cf26342009-04-09 22:27:44 +0000620/// \brief Load the declarations within this lexical storage from an
621/// external source.
Mike Stump1eb44332009-09-09 15:08:12 +0000622void
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000623DeclContext::LoadLexicalDeclsFromExternalStorage() const {
624 ExternalASTSource *Source = getParentASTContext().getExternalSource();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000625 assert(hasExternalLexicalStorage() && Source && "No external storage?");
626
Eli Friedmanb0156ea2009-04-27 23:43:36 +0000627 llvm::SmallVector<uint32_t, 64> Decls;
Mike Stump1eb44332009-09-09 15:08:12 +0000628 if (Source->ReadDeclsLexicallyInContext(const_cast<DeclContext *>(this),
Douglas Gregor2cf26342009-04-09 22:27:44 +0000629 Decls))
630 return;
631
632 // There is no longer any lexical storage in this context
633 ExternalLexicalStorage = false;
634
635 if (Decls.empty())
636 return;
637
638 // Resolve all of the declaration IDs into declarations, building up
639 // a chain of declarations via the Decl::NextDeclInContext field.
640 Decl *FirstNewDecl = 0;
641 Decl *PrevDecl = 0;
642 for (unsigned I = 0, N = Decls.size(); I != N; ++I) {
643 Decl *D = Source->GetDecl(Decls[I]);
644 if (PrevDecl)
645 PrevDecl->NextDeclInContext = D;
646 else
647 FirstNewDecl = D;
648
649 PrevDecl = D;
650 }
651
652 // Splice the newly-read declarations into the beginning of the list
653 // of declarations.
654 PrevDecl->NextDeclInContext = FirstDecl;
655 FirstDecl = FirstNewDecl;
656 if (!LastDecl)
657 LastDecl = PrevDecl;
658}
659
Mike Stump1eb44332009-09-09 15:08:12 +0000660void
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000661DeclContext::LoadVisibleDeclsFromExternalStorage() const {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000662 DeclContext *This = const_cast<DeclContext *>(this);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000663 ExternalASTSource *Source = getParentASTContext().getExternalSource();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000664 assert(hasExternalVisibleStorage() && Source && "No external storage?");
665
666 llvm::SmallVector<VisibleDeclaration, 64> Decls;
667 if (Source->ReadDeclsVisibleInContext(This, Decls))
668 return;
669
670 // There is no longer any visible storage in this context
671 ExternalVisibleStorage = false;
672
673 // Load the declaration IDs for all of the names visible in this
674 // context.
675 assert(!LookupPtr && "Have a lookup map before de-serialization?");
John McCall0c01d182010-03-24 05:22:00 +0000676 StoredDeclsMap *Map = CreateStoredDeclsMap(getParentASTContext());
Douglas Gregor2cf26342009-04-09 22:27:44 +0000677 for (unsigned I = 0, N = Decls.size(); I != N; ++I) {
678 (*Map)[Decls[I].Name].setFromDeclIDs(Decls[I].Declarations);
679 }
680}
681
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000682DeclContext::decl_iterator DeclContext::decls_begin() const {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000683 if (hasExternalLexicalStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000684 LoadLexicalDeclsFromExternalStorage();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000685
686 // FIXME: Check whether we need to load some declarations from
687 // external storage.
Mike Stump1eb44332009-09-09 15:08:12 +0000688 return decl_iterator(FirstDecl);
Douglas Gregor6ab35242009-04-09 21:40:53 +0000689}
690
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000691DeclContext::decl_iterator DeclContext::decls_end() const {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000692 if (hasExternalLexicalStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000693 LoadLexicalDeclsFromExternalStorage();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000694
Mike Stump1eb44332009-09-09 15:08:12 +0000695 return decl_iterator();
Douglas Gregor6ab35242009-04-09 21:40:53 +0000696}
697
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000698bool DeclContext::decls_empty() const {
Douglas Gregor8038d512009-04-10 17:25:41 +0000699 if (hasExternalLexicalStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000700 LoadLexicalDeclsFromExternalStorage();
Douglas Gregor8038d512009-04-10 17:25:41 +0000701
702 return !FirstDecl;
703}
704
John McCall9f54ad42009-12-10 09:41:52 +0000705void DeclContext::removeDecl(Decl *D) {
706 assert(D->getLexicalDeclContext() == this &&
707 "decl being removed from non-lexical context");
708 assert((D->NextDeclInContext || D == LastDecl) &&
709 "decl is not in decls list");
710
711 // Remove D from the decl chain. This is O(n) but hopefully rare.
712 if (D == FirstDecl) {
713 if (D == LastDecl)
714 FirstDecl = LastDecl = 0;
715 else
716 FirstDecl = D->NextDeclInContext;
717 } else {
718 for (Decl *I = FirstDecl; true; I = I->NextDeclInContext) {
719 assert(I && "decl not found in linked list");
720 if (I->NextDeclInContext == D) {
721 I->NextDeclInContext = D->NextDeclInContext;
722 if (D == LastDecl) LastDecl = I;
723 break;
724 }
725 }
726 }
727
728 // Mark that D is no longer in the decl chain.
729 D->NextDeclInContext = 0;
730
731 // Remove D from the lookup table if necessary.
732 if (isa<NamedDecl>(D)) {
733 NamedDecl *ND = cast<NamedDecl>(D);
734
John McCall0c01d182010-03-24 05:22:00 +0000735 StoredDeclsMap *Map = getPrimaryContext()->LookupPtr;
736 if (!Map) return;
John McCall9f54ad42009-12-10 09:41:52 +0000737
John McCall9f54ad42009-12-10 09:41:52 +0000738 StoredDeclsMap::iterator Pos = Map->find(ND->getDeclName());
739 assert(Pos != Map->end() && "no lookup entry for decl");
740 Pos->second.remove(ND);
741 }
742}
743
John McCall3f9a8a62009-08-11 06:59:38 +0000744void DeclContext::addHiddenDecl(Decl *D) {
Chris Lattner7f0be132009-02-20 00:56:18 +0000745 assert(D->getLexicalDeclContext() == this &&
746 "Decl inserted into wrong lexical context");
Mike Stump1eb44332009-09-09 15:08:12 +0000747 assert(!D->getNextDeclInContext() && D != LastDecl &&
Douglas Gregor6037fcb2009-01-09 19:42:16 +0000748 "Decl already inserted into a DeclContext");
749
750 if (FirstDecl) {
Chris Lattner244a67d2009-03-28 06:04:26 +0000751 LastDecl->NextDeclInContext = D;
Douglas Gregor6037fcb2009-01-09 19:42:16 +0000752 LastDecl = D;
753 } else {
754 FirstDecl = LastDecl = D;
755 }
John McCall3f9a8a62009-08-11 06:59:38 +0000756}
757
758void DeclContext::addDecl(Decl *D) {
759 addHiddenDecl(D);
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000760
761 if (NamedDecl *ND = dyn_cast<NamedDecl>(D))
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000762 ND->getDeclContext()->makeDeclVisibleInContext(ND);
Douglas Gregor44b43212008-12-11 16:49:14 +0000763}
764
Douglas Gregor074149e2009-01-05 19:45:36 +0000765/// buildLookup - Build the lookup data structure with all of the
766/// declarations in DCtx (and any other contexts linked to it or
767/// transparent contexts nested within it).
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000768void DeclContext::buildLookup(DeclContext *DCtx) {
Douglas Gregor074149e2009-01-05 19:45:36 +0000769 for (; DCtx; DCtx = DCtx->getNextContext()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000770 for (decl_iterator D = DCtx->decls_begin(),
771 DEnd = DCtx->decls_end();
Douglas Gregor4f3b8f82009-01-06 07:17:58 +0000772 D != DEnd; ++D) {
John McCall3f9a8a62009-08-11 06:59:38 +0000773 // Insert this declaration into the lookup structure, but only
774 // if it's semantically in its decl context. During non-lazy
775 // lookup building, this is implicitly enforced by addDecl.
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000776 if (NamedDecl *ND = dyn_cast<NamedDecl>(*D))
John McCall3f9a8a62009-08-11 06:59:38 +0000777 if (D->getDeclContext() == DCtx)
778 makeDeclVisibleInContextImpl(ND);
Douglas Gregor074149e2009-01-05 19:45:36 +0000779
Ted Kremenekc32b1d82009-11-17 22:58:30 +0000780 // Insert any forward-declared Objective-C interfaces into the lookup
781 // data structure.
782 if (ObjCClassDecl *Class = dyn_cast<ObjCClassDecl>(*D))
783 for (ObjCClassDecl::iterator I = Class->begin(), IEnd = Class->end();
784 I != IEnd; ++I)
Ted Kremenek321c22f2009-11-18 00:28:11 +0000785 makeDeclVisibleInContextImpl(I->getInterface());
Ted Kremenekc32b1d82009-11-17 22:58:30 +0000786
Douglas Gregor074149e2009-01-05 19:45:36 +0000787 // If this declaration is itself a transparent declaration context,
788 // add its members (recursively).
789 if (DeclContext *InnerCtx = dyn_cast<DeclContext>(*D))
790 if (InnerCtx->isTransparentContext())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000791 buildLookup(InnerCtx->getPrimaryContext());
Douglas Gregor074149e2009-01-05 19:45:36 +0000792 }
793 }
794}
795
Mike Stump1eb44332009-09-09 15:08:12 +0000796DeclContext::lookup_result
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000797DeclContext::lookup(DeclarationName Name) {
Steve Naroff0701bbb2009-01-08 17:28:14 +0000798 DeclContext *PrimaryContext = getPrimaryContext();
Douglas Gregor44b43212008-12-11 16:49:14 +0000799 if (PrimaryContext != this)
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000800 return PrimaryContext->lookup(Name);
Douglas Gregor44b43212008-12-11 16:49:14 +0000801
Douglas Gregor2cf26342009-04-09 22:27:44 +0000802 if (hasExternalVisibleStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000803 LoadVisibleDeclsFromExternalStorage();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000804
Douglas Gregor3fc749d2008-12-23 00:26:44 +0000805 /// If there is no lookup data structure, build one now by walking
Douglas Gregor44b43212008-12-11 16:49:14 +0000806 /// all of the linked DeclContexts (in declaration order!) and
807 /// inserting their values.
Douglas Gregorc36c5402009-04-09 17:29:08 +0000808 if (!LookupPtr) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000809 buildLookup(this);
Douglas Gregor44b43212008-12-11 16:49:14 +0000810
Douglas Gregorc36c5402009-04-09 17:29:08 +0000811 if (!LookupPtr)
Chris Lattner91942502009-02-20 00:55:03 +0000812 return lookup_result(0, 0);
Douglas Gregorc36c5402009-04-09 17:29:08 +0000813 }
Douglas Gregor44b43212008-12-11 16:49:14 +0000814
John McCall0c01d182010-03-24 05:22:00 +0000815 StoredDeclsMap::iterator Pos = LookupPtr->find(Name);
816 if (Pos == LookupPtr->end())
Douglas Gregorc36c5402009-04-09 17:29:08 +0000817 return lookup_result(0, 0);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000818 return Pos->second.getLookupResult(getParentASTContext());
Douglas Gregor44b43212008-12-11 16:49:14 +0000819}
820
Mike Stump1eb44332009-09-09 15:08:12 +0000821DeclContext::lookup_const_result
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000822DeclContext::lookup(DeclarationName Name) const {
823 return const_cast<DeclContext*>(this)->lookup(Name);
Douglas Gregor44b43212008-12-11 16:49:14 +0000824}
825
Chris Lattner0cf2b192009-03-27 19:19:59 +0000826DeclContext *DeclContext::getLookupContext() {
827 DeclContext *Ctx = this;
Douglas Gregor72de6672009-01-08 20:45:30 +0000828 // Skip through transparent contexts.
Douglas Gregorce356072009-01-06 23:51:29 +0000829 while (Ctx->isTransparentContext())
830 Ctx = Ctx->getParent();
831 return Ctx;
832}
833
Douglas Gregor88b70942009-02-25 22:02:03 +0000834DeclContext *DeclContext::getEnclosingNamespaceContext() {
835 DeclContext *Ctx = this;
836 // Skip through non-namespace, non-translation-unit contexts.
837 while (!Ctx->isFileContext() || Ctx->isTransparentContext())
838 Ctx = Ctx->getParent();
839 return Ctx->getPrimaryContext();
840}
841
John McCallab88d972009-08-31 22:39:49 +0000842void DeclContext::makeDeclVisibleInContext(NamedDecl *D, bool Recoverable) {
Douglas Gregorcc636682009-02-17 23:15:12 +0000843 // FIXME: This feels like a hack. Should DeclarationName support
844 // template-ids, or is there a better way to keep specializations
845 // from being visible?
846 if (isa<ClassTemplateSpecializationDecl>(D))
847 return;
Eli Friedman6bc20132009-12-08 05:40:03 +0000848 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
849 if (FD->isFunctionTemplateSpecialization())
850 return;
Douglas Gregorcc636682009-02-17 23:15:12 +0000851
Steve Naroff0701bbb2009-01-08 17:28:14 +0000852 DeclContext *PrimaryContext = getPrimaryContext();
Douglas Gregor44b43212008-12-11 16:49:14 +0000853 if (PrimaryContext != this) {
John McCallab88d972009-08-31 22:39:49 +0000854 PrimaryContext->makeDeclVisibleInContext(D, Recoverable);
Douglas Gregor44b43212008-12-11 16:49:14 +0000855 return;
856 }
857
858 // If we already have a lookup data structure, perform the insertion
859 // into it. Otherwise, be lazy and don't build that structure until
860 // someone asks for it.
John McCallab88d972009-08-31 22:39:49 +0000861 if (LookupPtr || !Recoverable)
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000862 makeDeclVisibleInContextImpl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +0000863
Douglas Gregor074149e2009-01-05 19:45:36 +0000864 // If we are a transparent context, insert into our parent context,
865 // too. This operation is recursive.
866 if (isTransparentContext())
John McCallab88d972009-08-31 22:39:49 +0000867 getParent()->makeDeclVisibleInContext(D, Recoverable);
Douglas Gregor44b43212008-12-11 16:49:14 +0000868}
869
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000870void DeclContext::makeDeclVisibleInContextImpl(NamedDecl *D) {
Douglas Gregor074149e2009-01-05 19:45:36 +0000871 // Skip unnamed declarations.
872 if (!D->getDeclName())
873 return;
874
Douglas Gregorcc636682009-02-17 23:15:12 +0000875 // FIXME: This feels like a hack. Should DeclarationName support
876 // template-ids, or is there a better way to keep specializations
877 // from being visible?
878 if (isa<ClassTemplateSpecializationDecl>(D))
879 return;
880
Ted Kremenek3478eb62010-02-11 07:12:28 +0000881 ASTContext *C = 0;
882 if (!LookupPtr) {
883 C = &getParentASTContext();
John McCall0c01d182010-03-24 05:22:00 +0000884 CreateStoredDeclsMap(*C);
Ted Kremenek3478eb62010-02-11 07:12:28 +0000885 }
Douglas Gregor44b43212008-12-11 16:49:14 +0000886
887 // Insert this declaration into the map.
John McCall0c01d182010-03-24 05:22:00 +0000888 StoredDeclsList &DeclNameEntries = (*LookupPtr)[D->getDeclName()];
Chris Lattner67762a32009-02-20 01:44:05 +0000889 if (DeclNameEntries.isNull()) {
890 DeclNameEntries.setOnlyValue(D);
Chris Lattnerbd6c8002009-02-19 07:00:44 +0000891 return;
Douglas Gregor44b43212008-12-11 16:49:14 +0000892 }
Chris Lattner91942502009-02-20 00:55:03 +0000893
Chris Lattnerbdc3d002009-02-20 01:10:07 +0000894 // If it is possible that this is a redeclaration, check to see if there is
895 // already a decl for which declarationReplaces returns true. If there is
896 // one, just replace it and return.
Ted Kremenek3478eb62010-02-11 07:12:28 +0000897 if (!C)
898 C = &getParentASTContext();
899
900 if (DeclNameEntries.HandleRedeclaration(*C, D))
Chris Lattner67762a32009-02-20 01:44:05 +0000901 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000902
Chris Lattnerbd6c8002009-02-19 07:00:44 +0000903 // Put this declaration into the appropriate slot.
Chris Lattner67762a32009-02-20 01:44:05 +0000904 DeclNameEntries.AddSubsequentDecl(D);
Douglas Gregor44b43212008-12-11 16:49:14 +0000905}
Douglas Gregor2a3009a2009-02-03 19:21:40 +0000906
907/// Returns iterator range [First, Last) of UsingDirectiveDecls stored within
908/// this context.
Mike Stump1eb44332009-09-09 15:08:12 +0000909DeclContext::udir_iterator_range
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000910DeclContext::getUsingDirectives() const {
911 lookup_const_result Result = lookup(UsingDirectiveDecl::getName());
Douglas Gregor2a3009a2009-02-03 19:21:40 +0000912 return udir_iterator_range(reinterpret_cast<udir_iterator>(Result.first),
913 reinterpret_cast<udir_iterator>(Result.second));
914}
Douglas Gregor2cf26342009-04-09 22:27:44 +0000915
916void StoredDeclsList::materializeDecls(ASTContext &Context) {
917 if (isNull())
918 return;
919
920 switch ((DataKind)(Data & 0x03)) {
921 case DK_Decl:
922 case DK_Decl_Vector:
923 break;
924
925 case DK_DeclID: {
926 // Resolve this declaration ID to an actual declaration by
927 // querying the external AST source.
928 unsigned DeclID = Data >> 2;
929
930 ExternalASTSource *Source = Context.getExternalSource();
931 assert(Source && "No external AST source available!");
932
933 Data = reinterpret_cast<uintptr_t>(Source->GetDecl(DeclID));
934 break;
935 }
936
937 case DK_ID_Vector: {
938 // We have a vector of declaration IDs. Resolve all of them to
939 // actual declarations.
940 VectorTy &Vector = *getAsVector();
941 ExternalASTSource *Source = Context.getExternalSource();
942 assert(Source && "No external AST source available!");
943
944 for (unsigned I = 0, N = Vector.size(); I != N; ++I)
945 Vector[I] = reinterpret_cast<uintptr_t>(Source->GetDecl(Vector[I]));
946
947 Data = (Data & ~0x03) | DK_Decl_Vector;
948 break;
949 }
950 }
951}
Ted Kremenek3478eb62010-02-11 07:12:28 +0000952
953//===----------------------------------------------------------------------===//
954// Creation and Destruction of StoredDeclsMaps. //
955//===----------------------------------------------------------------------===//
956
John McCall0c01d182010-03-24 05:22:00 +0000957StoredDeclsMap *DeclContext::CreateStoredDeclsMap(ASTContext &C) const {
958 assert(!LookupPtr && "context already has a decls map");
959 assert(getPrimaryContext() == this &&
960 "creating decls map on non-primary context");
961
962 StoredDeclsMap *M;
963 bool Dependent = isDependentContext();
964 if (Dependent)
965 M = new DependentStoredDeclsMap();
966 else
967 M = new StoredDeclsMap();
968 M->Previous = C.LastSDM;
969 C.LastSDM = llvm::PointerIntPair<StoredDeclsMap*,1>(M, Dependent);
970 LookupPtr = M;
Ted Kremenek3478eb62010-02-11 07:12:28 +0000971 return M;
972}
973
974void ASTContext::ReleaseDeclContextMaps() {
John McCall0c01d182010-03-24 05:22:00 +0000975 // It's okay to delete DependentStoredDeclsMaps via a StoredDeclsMap
976 // pointer because the subclass doesn't add anything that needs to
977 // be deleted.
978
979 StoredDeclsMap::DestroyAll(LastSDM.getPointer(), LastSDM.getInt());
980}
981
982void StoredDeclsMap::DestroyAll(StoredDeclsMap *Map, bool Dependent) {
983 while (Map) {
984 // Advance the iteration before we invalidate memory.
985 llvm::PointerIntPair<StoredDeclsMap*,1> Next = Map->Previous;
986
987 if (Dependent)
988 delete static_cast<DependentStoredDeclsMap*>(Map);
989 else
990 delete Map;
991
992 Map = Next.getPointer();
993 Dependent = Next.getInt();
994 }
995}
996
997DependentStoredDeclsMap::~DependentStoredDeclsMap() {
998 // Kill off the dependent diagnostics. They don't need to be
999 // deleted, but they do need to be destructed.
1000 DependentDiagnostic *CurD = FirstDiagnostic;
1001 while (CurD) {
1002 DependentDiagnostic *NextD = CurD->NextDiagnostic;
1003 CurD->~DependentDiagnostic();
1004 CurD = NextD;
1005 }
1006}
1007
1008DependentDiagnostic *DependentDiagnostic::Create(ASTContext &C,
1009 DeclContext *Parent,
1010 const PartialDiagnostic &PDiag) {
1011 assert(Parent->isDependentContext()
1012 && "cannot iterate dependent diagnostics of non-dependent context");
1013 Parent = Parent->getPrimaryContext();
1014 if (!Parent->LookupPtr)
1015 Parent->CreateStoredDeclsMap(C);
1016
1017 DependentStoredDeclsMap *Map
1018 = static_cast<DependentStoredDeclsMap*>(Parent->LookupPtr);
1019
1020 DependentDiagnostic *DD = new (C) DependentDiagnostic(PDiag);
1021
1022 // TODO: Maybe we shouldn't reverse the order during insertion.
1023 DD->NextDiagnostic = Map->FirstDiagnostic;
1024 Map->FirstDiagnostic = DD;
1025
1026 return DD;
Ted Kremenek3478eb62010-02-11 07:12:28 +00001027}