blob: be379d522dd4658233ab8124ef5fd59f6b233151 [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"
Argyrios Kyrtzidis100050b2010-10-28 07:38:51 +000027#include "clang/AST/ASTMutationListener.h"
Eli Friedman56d29372008-06-07 16:52:53 +000028#include "llvm/ADT/DenseMap.h"
Chris Lattner49f28ca2009-03-05 08:00:35 +000029#include "llvm/Support/raw_ostream.h"
Douglas Gregor6ed40e32008-12-23 21:05:05 +000030#include <algorithm>
Chris Lattner3daed522009-03-02 22:20:04 +000031#include <cstdio>
Douglas Gregor3fc749d2008-12-23 00:26:44 +000032#include <vector>
Eli Friedman56d29372008-06-07 16:52:53 +000033using namespace clang;
34
35//===----------------------------------------------------------------------===//
36// Statistics
37//===----------------------------------------------------------------------===//
38
Sean Hunt9a555912010-05-30 07:21:58 +000039#define DECL(DERIVED, BASE) static int n##DERIVED##s = 0;
40#define ABSTRACT_DECL(DECL)
41#include "clang/AST/DeclNodes.inc"
Eli Friedman56d29372008-06-07 16:52:53 +000042
43static bool StatSwitch = false;
44
Eli Friedman56d29372008-06-07 16:52:53 +000045const char *Decl::getDeclKindName() const {
46 switch (DeclKind) {
Sean Hunt9a555912010-05-30 07:21:58 +000047 default: assert(0 && "Declaration not in DeclNodes.inc!");
48#define DECL(DERIVED, BASE) case DERIVED: return #DERIVED;
49#define ABSTRACT_DECL(DECL)
50#include "clang/AST/DeclNodes.inc"
Eli Friedman56d29372008-06-07 16:52:53 +000051 }
52}
53
Douglas Gregor42738572010-03-05 00:26:45 +000054void Decl::setInvalidDecl(bool Invalid) {
55 InvalidDecl = Invalid;
56 if (Invalid) {
57 // Defensive maneuver for ill-formed code: we're likely not to make it to
58 // a point where we set the access specifier, so default it to "public"
59 // to avoid triggering asserts elsewhere in the front end.
60 setAccess(AS_public);
61 }
62}
63
Steve Naroff0a473932009-01-20 19:53:53 +000064const char *DeclContext::getDeclKindName() const {
65 switch (DeclKind) {
Sean Hunt9a555912010-05-30 07:21:58 +000066 default: assert(0 && "Declaration context not in DeclNodes.inc!");
67#define DECL(DERIVED, BASE) case Decl::DERIVED: return #DERIVED;
68#define ABSTRACT_DECL(DECL)
69#include "clang/AST/DeclNodes.inc"
Steve Naroff0a473932009-01-20 19:53:53 +000070 }
71}
72
Eli Friedman56d29372008-06-07 16:52:53 +000073bool Decl::CollectingStats(bool Enable) {
Kovarththanan Rajaratnam2024f4d2009-11-29 14:54:35 +000074 if (Enable) StatSwitch = true;
Eli Friedman56d29372008-06-07 16:52:53 +000075 return StatSwitch;
76}
77
78void Decl::PrintStats() {
79 fprintf(stderr, "*** Decl Stats:\n");
Mike Stump1eb44332009-09-09 15:08:12 +000080
Douglas Gregor64650af2009-02-02 23:39:07 +000081 int totalDecls = 0;
Sean Hunt9a555912010-05-30 07:21:58 +000082#define DECL(DERIVED, BASE) totalDecls += n##DERIVED##s;
83#define ABSTRACT_DECL(DECL)
84#include "clang/AST/DeclNodes.inc"
Douglas Gregor64650af2009-02-02 23:39:07 +000085 fprintf(stderr, " %d decls total.\n", totalDecls);
Mike Stump1eb44332009-09-09 15:08:12 +000086
Douglas Gregor64650af2009-02-02 23:39:07 +000087 int totalBytes = 0;
Sean Hunt9a555912010-05-30 07:21:58 +000088#define DECL(DERIVED, BASE) \
89 if (n##DERIVED##s > 0) { \
90 totalBytes += (int)(n##DERIVED##s * sizeof(DERIVED##Decl)); \
91 fprintf(stderr, " %d " #DERIVED " decls, %d each (%d bytes)\n", \
92 n##DERIVED##s, (int)sizeof(DERIVED##Decl), \
93 (int)(n##DERIVED##s * sizeof(DERIVED##Decl))); \
Douglas Gregor64650af2009-02-02 23:39:07 +000094 }
Sean Hunt9a555912010-05-30 07:21:58 +000095#define ABSTRACT_DECL(DECL)
96#include "clang/AST/DeclNodes.inc"
Mike Stump1eb44332009-09-09 15:08:12 +000097
Douglas Gregor64650af2009-02-02 23:39:07 +000098 fprintf(stderr, "Total bytes = %d\n", totalBytes);
Eli Friedman56d29372008-06-07 16:52:53 +000099}
100
Sean Hunt9a555912010-05-30 07:21:58 +0000101void Decl::add(Kind k) {
Eli Friedman56d29372008-06-07 16:52:53 +0000102 switch (k) {
Sean Hunt9a555912010-05-30 07:21:58 +0000103 default: assert(0 && "Declaration not in DeclNodes.inc!");
104#define DECL(DERIVED, BASE) case DERIVED: ++n##DERIVED##s; break;
105#define ABSTRACT_DECL(DECL)
106#include "clang/AST/DeclNodes.inc"
Eli Friedman56d29372008-06-07 16:52:53 +0000107 }
108}
109
Anders Carlsson67e33202009-06-13 00:08:58 +0000110bool Decl::isTemplateParameterPack() const {
111 if (const TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(this))
112 return TTP->isParameterPack();
Douglas Gregor10738d32010-12-23 23:51:58 +0000113 if (const NonTypeTemplateParmDecl *NTTP
Douglas Gregor61c4d282011-01-05 15:48:55 +0000114 = dyn_cast<NonTypeTemplateParmDecl>(this))
Douglas Gregor10738d32010-12-23 23:51:58 +0000115 return NTTP->isParameterPack();
Douglas Gregor61c4d282011-01-05 15:48:55 +0000116 if (const TemplateTemplateParmDecl *TTP
117 = dyn_cast<TemplateTemplateParmDecl>(this))
118 return TTP->isParameterPack();
Anders Carlsson67e33202009-06-13 00:08:58 +0000119 return false;
120}
121
Douglas Gregor1fe85ea2011-01-05 21:11:38 +0000122bool Decl::isParameterPack() const {
123 if (const ParmVarDecl *Parm = dyn_cast<ParmVarDecl>(this))
124 return Parm->isParameterPack();
125
126 return isTemplateParameterPack();
127}
128
Douglas Gregore53060f2009-06-25 22:08:12 +0000129bool Decl::isFunctionOrFunctionTemplate() const {
John McCall9488ea12009-11-17 05:59:44 +0000130 if (const UsingShadowDecl *UD = dyn_cast<UsingShadowDecl>(this))
Anders Carlsson58badb72009-06-26 05:26:50 +0000131 return UD->getTargetDecl()->isFunctionOrFunctionTemplate();
Mike Stump1eb44332009-09-09 15:08:12 +0000132
Douglas Gregore53060f2009-06-25 22:08:12 +0000133 return isa<FunctionDecl>(this) || isa<FunctionTemplateDecl>(this);
134}
135
Douglas Gregor79c22782010-01-16 20:21:20 +0000136bool Decl::isDefinedOutsideFunctionOrMethod() const {
137 for (const DeclContext *DC = getDeclContext();
138 DC && !DC->isTranslationUnit();
139 DC = DC->getParent())
140 if (DC->isFunctionOrMethod())
141 return false;
142
143 return true;
144}
145
Douglas Gregor4c3e0ee2011-02-17 08:47:29 +0000146
Eli Friedman56d29372008-06-07 16:52:53 +0000147//===----------------------------------------------------------------------===//
Chris Lattner49f28ca2009-03-05 08:00:35 +0000148// PrettyStackTraceDecl Implementation
149//===----------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +0000150
Chris Lattner49f28ca2009-03-05 08:00:35 +0000151void PrettyStackTraceDecl::print(llvm::raw_ostream &OS) const {
152 SourceLocation TheLoc = Loc;
153 if (TheLoc.isInvalid() && TheDecl)
154 TheLoc = TheDecl->getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000155
Chris Lattner49f28ca2009-03-05 08:00:35 +0000156 if (TheLoc.isValid()) {
157 TheLoc.print(OS, SM);
158 OS << ": ";
159 }
160
161 OS << Message;
162
Daniel Dunbarc5236562009-11-21 09:05:59 +0000163 if (const NamedDecl *DN = dyn_cast_or_null<NamedDecl>(TheDecl))
Chris Lattner49f28ca2009-03-05 08:00:35 +0000164 OS << " '" << DN->getQualifiedNameAsString() << '\'';
165 OS << '\n';
166}
Mike Stump1eb44332009-09-09 15:08:12 +0000167
Chris Lattner49f28ca2009-03-05 08:00:35 +0000168//===----------------------------------------------------------------------===//
Eli Friedman56d29372008-06-07 16:52:53 +0000169// Decl Implementation
170//===----------------------------------------------------------------------===//
171
Douglas Gregorda2142f2011-02-19 18:51:44 +0000172// Out-of-line virtual method providing a home for Decl.
173Decl::~Decl() { }
Douglas Gregorf4a03cc2011-02-17 07:02:32 +0000174
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000175void Decl::setDeclContext(DeclContext *DC) {
176 if (isOutOfSemaDC())
177 delete getMultipleDC();
Mike Stump1eb44332009-09-09 15:08:12 +0000178
Chris Lattneree219fd2009-03-29 06:06:59 +0000179 DeclCtx = DC;
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000180}
181
182void Decl::setLexicalDeclContext(DeclContext *DC) {
183 if (DC == getLexicalDeclContext())
184 return;
185
186 if (isInSemaDC()) {
Ted Kremenek94a39002009-12-01 00:07:10 +0000187 MultipleDC *MDC = new (getASTContext()) MultipleDC();
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000188 MDC->SemanticDC = getDeclContext();
189 MDC->LexicalDC = DC;
Chris Lattneree219fd2009-03-29 06:06:59 +0000190 DeclCtx = MDC;
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000191 } else {
192 getMultipleDC()->LexicalDC = DC;
193 }
194}
195
John McCall9aeed322009-10-01 00:25:31 +0000196bool Decl::isInAnonymousNamespace() const {
197 const DeclContext *DC = getDeclContext();
198 do {
199 if (const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(DC))
200 if (ND->isAnonymousNamespace())
201 return true;
202 } while ((DC = DC->getParent()));
203
204 return false;
205}
206
Argyrios Kyrtzidis3708b3d2009-06-29 17:38:40 +0000207TranslationUnitDecl *Decl::getTranslationUnitDecl() {
Argyrios Kyrtzidis9b346692009-06-30 02:34:53 +0000208 if (TranslationUnitDecl *TUD = dyn_cast<TranslationUnitDecl>(this))
209 return TUD;
210
Argyrios Kyrtzidis3708b3d2009-06-29 17:38:40 +0000211 DeclContext *DC = getDeclContext();
212 assert(DC && "This decl is not contained in a translation unit!");
Mike Stump1eb44332009-09-09 15:08:12 +0000213
Argyrios Kyrtzidis3708b3d2009-06-29 17:38:40 +0000214 while (!DC->isTranslationUnit()) {
215 DC = DC->getParent();
216 assert(DC && "This decl is not contained in a translation unit!");
217 }
Mike Stump1eb44332009-09-09 15:08:12 +0000218
Argyrios Kyrtzidis3708b3d2009-06-29 17:38:40 +0000219 return cast<TranslationUnitDecl>(DC);
220}
221
222ASTContext &Decl::getASTContext() const {
Mike Stump1eb44332009-09-09 15:08:12 +0000223 return getTranslationUnitDecl()->getASTContext();
Argyrios Kyrtzidis3708b3d2009-06-29 17:38:40 +0000224}
225
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +0000226ASTMutationListener *Decl::getASTMutationListener() const {
227 return getASTContext().getASTMutationListener();
228}
229
Douglas Gregorc070cc62010-06-17 23:14:26 +0000230bool Decl::isUsed(bool CheckUsedAttr) const {
Tanya Lattner12ead492010-02-17 02:17:21 +0000231 if (Used)
232 return true;
233
234 // Check for used attribute.
Douglas Gregorc070cc62010-06-17 23:14:26 +0000235 if (CheckUsedAttr && hasAttr<UsedAttr>())
Tanya Lattner12ead492010-02-17 02:17:21 +0000236 return true;
237
238 // Check redeclarations for used attribute.
239 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) {
Douglas Gregorc070cc62010-06-17 23:14:26 +0000240 if ((CheckUsedAttr && I->hasAttr<UsedAttr>()) || I->Used)
Tanya Lattner12ead492010-02-17 02:17:21 +0000241 return true;
242 }
243
244 return false;
245}
246
247
Chris Lattner769dbdf2009-03-27 20:18:19 +0000248unsigned Decl::getIdentifierNamespaceForKind(Kind DeclKind) {
249 switch (DeclKind) {
John McCall9488ea12009-11-17 05:59:44 +0000250 case Function:
251 case CXXMethod:
252 case CXXConstructor:
253 case CXXDestructor:
254 case CXXConversion:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000255 case EnumConstant:
256 case Var:
257 case ImplicitParam:
258 case ParmVar:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000259 case NonTypeTemplateParm:
260 case ObjCMethod:
Daniel Dunbar00b40d32010-04-23 13:07:39 +0000261 case ObjCProperty:
Daniel Dunbar00b40d32010-04-23 13:07:39 +0000262 return IDNS_Ordinary;
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000263 case Label:
264 return IDNS_Label;
Francois Pichet87c2e122010-11-21 06:08:52 +0000265 case IndirectField:
266 return IDNS_Ordinary | IDNS_Member;
267
John McCall0d6b1642010-04-23 18:46:30 +0000268 case ObjCCompatibleAlias:
269 case ObjCInterface:
270 return IDNS_Ordinary | IDNS_Type;
271
272 case Typedef:
273 case UnresolvedUsingTypename:
274 case TemplateTypeParm:
275 return IDNS_Ordinary | IDNS_Type;
276
John McCall9488ea12009-11-17 05:59:44 +0000277 case UsingShadow:
278 return 0; // we'll actually overwrite this later
279
John McCall7ba107a2009-11-18 02:36:19 +0000280 case UnresolvedUsingValue:
John McCall7ba107a2009-11-18 02:36:19 +0000281 return IDNS_Ordinary | IDNS_Using;
John McCall9488ea12009-11-17 05:59:44 +0000282
283 case Using:
284 return IDNS_Using;
285
Chris Lattner769dbdf2009-03-27 20:18:19 +0000286 case ObjCProtocol:
Douglas Gregor8fc463a2009-04-24 00:11:27 +0000287 return IDNS_ObjCProtocol;
Mike Stump1eb44332009-09-09 15:08:12 +0000288
Chris Lattner769dbdf2009-03-27 20:18:19 +0000289 case Field:
290 case ObjCAtDefsField:
291 case ObjCIvar:
292 return IDNS_Member;
Mike Stump1eb44332009-09-09 15:08:12 +0000293
Chris Lattner769dbdf2009-03-27 20:18:19 +0000294 case Record:
295 case CXXRecord:
296 case Enum:
John McCall0d6b1642010-04-23 18:46:30 +0000297 return IDNS_Tag | IDNS_Type;
Mike Stump1eb44332009-09-09 15:08:12 +0000298
Chris Lattner769dbdf2009-03-27 20:18:19 +0000299 case Namespace:
John McCall0d6b1642010-04-23 18:46:30 +0000300 case NamespaceAlias:
301 return IDNS_Namespace;
302
Chris Lattner769dbdf2009-03-27 20:18:19 +0000303 case FunctionTemplate:
John McCall0d6b1642010-04-23 18:46:30 +0000304 return IDNS_Ordinary;
305
Chris Lattner769dbdf2009-03-27 20:18:19 +0000306 case ClassTemplate:
307 case TemplateTemplateParm:
John McCall0d6b1642010-04-23 18:46:30 +0000308 return IDNS_Ordinary | IDNS_Tag | IDNS_Type;
Mike Stump1eb44332009-09-09 15:08:12 +0000309
Chris Lattner769dbdf2009-03-27 20:18:19 +0000310 // Never have names.
John McCall02cace72009-08-28 07:59:38 +0000311 case Friend:
John McCalldd4a3b02009-09-16 22:47:08 +0000312 case FriendTemplate:
Abramo Bagnara6206d532010-06-05 05:09:32 +0000313 case AccessSpec:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000314 case LinkageSpec:
315 case FileScopeAsm:
316 case StaticAssert:
317 case ObjCClass:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000318 case ObjCPropertyImpl:
319 case ObjCForwardProtocol:
320 case Block:
321 case TranslationUnit:
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000322
Chris Lattner769dbdf2009-03-27 20:18:19 +0000323 case UsingDirective:
324 case ClassTemplateSpecialization:
Douglas Gregorc8ab2562009-05-31 09:31:02 +0000325 case ClassTemplatePartialSpecialization:
Douglas Gregorbd4187b2010-04-22 23:19:50 +0000326 case ObjCImplementation:
327 case ObjCCategory:
328 case ObjCCategoryImpl:
329 // Never looked up by name.
Chris Lattner769dbdf2009-03-27 20:18:19 +0000330 return 0;
331 }
John McCall9488ea12009-11-17 05:59:44 +0000332
333 return 0;
Eli Friedman56d29372008-06-07 16:52:53 +0000334}
335
Sean Huntcf807c42010-08-18 23:23:40 +0000336void Decl::setAttrs(const AttrVec &attrs) {
Argyrios Kyrtzidis1715bf52010-06-11 23:09:25 +0000337 assert(!HasAttrs && "Decl already contains attrs.");
338
Sean Huntcf807c42010-08-18 23:23:40 +0000339 AttrVec &AttrBlank = getASTContext().getDeclAttrs(this);
340 assert(AttrBlank.empty() && "HasAttrs was wrong?");
Argyrios Kyrtzidis1715bf52010-06-11 23:09:25 +0000341
342 AttrBlank = attrs;
343 HasAttrs = true;
344}
345
Sean Huntcf807c42010-08-18 23:23:40 +0000346void Decl::dropAttrs() {
Eli Friedman56d29372008-06-07 16:52:53 +0000347 if (!HasAttrs) return;
Mike Stump1eb44332009-09-09 15:08:12 +0000348
Eli Friedman56d29372008-06-07 16:52:53 +0000349 HasAttrs = false;
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000350 getASTContext().eraseDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000351}
352
Sean Huntcf807c42010-08-18 23:23:40 +0000353const AttrVec &Decl::getAttrs() const {
354 assert(HasAttrs && "No attrs to get!");
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000355 return getASTContext().getDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000356}
357
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000358void Decl::swapAttrs(Decl *RHS) {
Eli Friedman56d29372008-06-07 16:52:53 +0000359 bool HasLHSAttr = this->HasAttrs;
360 bool HasRHSAttr = RHS->HasAttrs;
Mike Stump1eb44332009-09-09 15:08:12 +0000361
Eli Friedman56d29372008-06-07 16:52:53 +0000362 // Usually, neither decl has attrs, nothing to do.
363 if (!HasLHSAttr && !HasRHSAttr) return;
Mike Stump1eb44332009-09-09 15:08:12 +0000364
Eli Friedman56d29372008-06-07 16:52:53 +0000365 // If 'this' has no attrs, swap the other way.
366 if (!HasLHSAttr)
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000367 return RHS->swapAttrs(this);
Mike Stump1eb44332009-09-09 15:08:12 +0000368
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000369 ASTContext &Context = getASTContext();
Mike Stump1eb44332009-09-09 15:08:12 +0000370
Eli Friedman56d29372008-06-07 16:52:53 +0000371 // Handle the case when both decls have attrs.
372 if (HasRHSAttr) {
Douglas Gregor68584ed2009-06-18 16:11:24 +0000373 std::swap(Context.getDeclAttrs(this), Context.getDeclAttrs(RHS));
Eli Friedman56d29372008-06-07 16:52:53 +0000374 return;
375 }
Mike Stump1eb44332009-09-09 15:08:12 +0000376
Eli Friedman56d29372008-06-07 16:52:53 +0000377 // Otherwise, LHS has an attr and RHS doesn't.
Douglas Gregor68584ed2009-06-18 16:11:24 +0000378 Context.getDeclAttrs(RHS) = Context.getDeclAttrs(this);
379 Context.eraseDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000380 this->HasAttrs = false;
381 RHS->HasAttrs = true;
382}
383
Argyrios Kyrtzidis42220c52008-10-12 16:14:48 +0000384Decl *Decl::castFromDeclContext (const DeclContext *D) {
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000385 Decl::Kind DK = D->getDeclKind();
386 switch(DK) {
Sean Hunt9a555912010-05-30 07:21:58 +0000387#define DECL(NAME, BASE)
388#define DECL_CONTEXT(NAME) \
389 case Decl::NAME: \
390 return static_cast<NAME##Decl*>(const_cast<DeclContext*>(D));
391#define DECL_CONTEXT_BASE(NAME)
392#include "clang/AST/DeclNodes.inc"
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000393 default:
Sean Hunt9a555912010-05-30 07:21:58 +0000394#define DECL(NAME, BASE)
395#define DECL_CONTEXT_BASE(NAME) \
396 if (DK >= first##NAME && DK <= last##NAME) \
397 return static_cast<NAME##Decl*>(const_cast<DeclContext*>(D));
398#include "clang/AST/DeclNodes.inc"
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000399 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) {
Sean Hunt9a555912010-05-30 07:21:58 +0000407#define DECL(NAME, BASE)
408#define DECL_CONTEXT(NAME) \
409 case Decl::NAME: \
410 return static_cast<NAME##Decl*>(const_cast<Decl*>(D));
411#define DECL_CONTEXT_BASE(NAME)
412#include "clang/AST/DeclNodes.inc"
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000413 default:
Sean Hunt9a555912010-05-30 07:21:58 +0000414#define DECL(NAME, BASE)
415#define DECL_CONTEXT_BASE(NAME) \
416 if (DK >= first##NAME && DK <= last##NAME) \
417 return static_cast<NAME##Decl*>(const_cast<Decl*>(D));
418#include "clang/AST/DeclNodes.inc"
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000419 assert(false && "a decl that inherits DeclContext isn't handled");
420 return 0;
421 }
Argyrios Kyrtzidis42220c52008-10-12 16:14:48 +0000422}
423
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000424SourceLocation Decl::getBodyRBrace() const {
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +0000425 // Special handling of FunctionDecl to avoid de-serializing the body from PCH.
426 // FunctionDecl stores EndRangeLoc for this purpose.
427 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(this)) {
428 const FunctionDecl *Definition;
429 if (FD->hasBody(Definition))
430 return Definition->getSourceRange().getEnd();
431 return SourceLocation();
432 }
433
Argyrios Kyrtzidis6717ef42010-07-07 11:31:27 +0000434 if (Stmt *Body = getBody())
435 return Body->getSourceRange().getEnd();
436
437 return SourceLocation();
Sebastian Redld3a413d2009-04-26 20:35:05 +0000438}
439
Anders Carlsson1329c272009-03-25 23:38:06 +0000440void Decl::CheckAccessDeclContext() const {
Douglas Gregor3a1c36c2010-12-02 00:22:25 +0000441#ifndef NDEBUG
John McCall46460a62010-01-20 21:53:11 +0000442 // Suppress this check if any of the following hold:
443 // 1. this is the translation unit (and thus has no parent)
444 // 2. this is a template parameter (and thus doesn't belong to its context)
Argyrios Kyrtzidisd580e562010-09-08 21:58:42 +0000445 // 3. this is a non-type template parameter
446 // 4. the context is not a record
447 // 5. it's invalid
448 // 6. it's a C++0x static_assert.
Anders Carlsson35eda442009-08-29 20:47:47 +0000449 if (isa<TranslationUnitDecl>(this) ||
Argyrios Kyrtzidis04aed0e2010-07-02 11:55:44 +0000450 isa<TemplateTypeParmDecl>(this) ||
Argyrios Kyrtzidisd580e562010-09-08 21:58:42 +0000451 isa<NonTypeTemplateParmDecl>(this) ||
Douglas Gregorfdd8ab12010-02-22 17:53:38 +0000452 !isa<CXXRecordDecl>(getDeclContext()) ||
Argyrios Kyrtzidis65b63ec2010-09-08 21:32:35 +0000453 isInvalidDecl() ||
454 isa<StaticAssertDecl>(this) ||
455 // FIXME: a ParmVarDecl can have ClassTemplateSpecialization
456 // as DeclContext (?).
Argyrios Kyrtzidisd580e562010-09-08 21:58:42 +0000457 isa<ParmVarDecl>(this) ||
458 // FIXME: a ClassTemplateSpecialization or CXXRecordDecl can have
459 // AS_none as access specifier.
460 isa<CXXRecordDecl>(this))
Anders Carlsson35eda442009-08-29 20:47:47 +0000461 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000462
463 assert(Access != AS_none &&
Anders Carlsson1329c272009-03-25 23:38:06 +0000464 "Access specifier is AS_none inside a record decl");
Douglas Gregor3a1c36c2010-12-02 00:22:25 +0000465#endif
Anders Carlsson1329c272009-03-25 23:38:06 +0000466}
467
Anders Carlsson1329c272009-03-25 23:38:06 +0000468
Eli Friedman56d29372008-06-07 16:52:53 +0000469//===----------------------------------------------------------------------===//
470// DeclContext Implementation
471//===----------------------------------------------------------------------===//
472
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000473bool DeclContext::classof(const Decl *D) {
474 switch (D->getKind()) {
Sean Hunt9a555912010-05-30 07:21:58 +0000475#define DECL(NAME, BASE)
476#define DECL_CONTEXT(NAME) case Decl::NAME:
477#define DECL_CONTEXT_BASE(NAME)
478#include "clang/AST/DeclNodes.inc"
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000479 return true;
480 default:
Sean Hunt9a555912010-05-30 07:21:58 +0000481#define DECL(NAME, BASE)
482#define DECL_CONTEXT_BASE(NAME) \
483 if (D->getKind() >= Decl::first##NAME && \
484 D->getKind() <= Decl::last##NAME) \
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000485 return true;
Sean Hunt9a555912010-05-30 07:21:58 +0000486#include "clang/AST/DeclNodes.inc"
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000487 return false;
488 }
489}
490
Douglas Gregora2da7802010-07-25 18:38:02 +0000491DeclContext::~DeclContext() { }
Douglas Gregor44b43212008-12-11 16:49:14 +0000492
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))
Sebastian Redl7a126a42010-08-31 00:36:30 +0000502 if (getParent()->getRedeclContext()->isFileContext() &&
503 getLexicalParent()->getRedeclContext()->isRecord())
Douglas Gregore942bbe2009-09-10 16:57:35 +0000504 return getLexicalParent();
505
506 return getParent();
507}
508
Sebastian Redl410c4f22010-08-31 20:53:31 +0000509bool DeclContext::isInlineNamespace() const {
510 return isNamespace() &&
511 cast<NamespaceDecl>(this)->isInline();
512}
513
Douglas Gregorbc221632009-05-28 16:34:51 +0000514bool DeclContext::isDependentContext() const {
515 if (isFileContext())
516 return false;
517
Douglas Gregorc8ab2562009-05-31 09:31:02 +0000518 if (isa<ClassTemplatePartialSpecializationDecl>(this))
519 return true;
520
Douglas Gregorbc221632009-05-28 16:34:51 +0000521 if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(this))
522 if (Record->getDescribedClassTemplate())
523 return true;
524
John McCall0c01d182010-03-24 05:22:00 +0000525 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(this)) {
Douglas Gregorbc221632009-05-28 16:34:51 +0000526 if (Function->getDescribedFunctionTemplate())
527 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000528
John McCall0c01d182010-03-24 05:22:00 +0000529 // Friend function declarations are dependent if their *lexical*
530 // context is dependent.
531 if (cast<Decl>(this)->getFriendObjectKind())
532 return getLexicalParent()->isDependentContext();
533 }
534
Douglas Gregorbc221632009-05-28 16:34:51 +0000535 return getParent() && getParent()->isDependentContext();
536}
537
Douglas Gregor074149e2009-01-05 19:45:36 +0000538bool DeclContext::isTransparentContext() const {
539 if (DeclKind == Decl::Enum)
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000540 return !cast<EnumDecl>(this)->isScoped();
Douglas Gregor074149e2009-01-05 19:45:36 +0000541 else if (DeclKind == Decl::LinkageSpec)
542 return true;
Douglas Gregor074149e2009-01-05 19:45:36 +0000543
544 return false;
545}
546
John McCallac65c622010-10-26 04:59:26 +0000547bool DeclContext::isExternCContext() const {
548 const DeclContext *DC = this;
549 while (DC->DeclKind != Decl::TranslationUnit) {
550 if (DC->DeclKind == Decl::LinkageSpec)
551 return cast<LinkageSpecDecl>(DC)->getLanguage()
552 == LinkageSpecDecl::lang_c;
553 DC = DC->getParent();
554 }
555 return false;
556}
557
Sebastian Redl7a126a42010-08-31 00:36:30 +0000558bool DeclContext::Encloses(const DeclContext *DC) const {
Douglas Gregor6dd38da2009-08-27 06:03:53 +0000559 if (getPrimaryContext() != this)
560 return getPrimaryContext()->Encloses(DC);
Mike Stump1eb44332009-09-09 15:08:12 +0000561
Douglas Gregor6dd38da2009-08-27 06:03:53 +0000562 for (; DC; DC = DC->getParent())
563 if (DC->getPrimaryContext() == this)
564 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000565 return false;
Douglas Gregor6dd38da2009-08-27 06:03:53 +0000566}
567
Steve Naroff0701bbb2009-01-08 17:28:14 +0000568DeclContext *DeclContext::getPrimaryContext() {
Douglas Gregor44b43212008-12-11 16:49:14 +0000569 switch (DeclKind) {
Douglas Gregor44b43212008-12-11 16:49:14 +0000570 case Decl::TranslationUnit:
Douglas Gregor074149e2009-01-05 19:45:36 +0000571 case Decl::LinkageSpec:
Mike Stump1eb44332009-09-09 15:08:12 +0000572 case Decl::Block:
Douglas Gregor44b43212008-12-11 16:49:14 +0000573 // There is only one DeclContext for these entities.
574 return this;
575
576 case Decl::Namespace:
577 // The original namespace is our primary context.
578 return static_cast<NamespaceDecl*>(this)->getOriginalNamespace();
579
Douglas Gregor44b43212008-12-11 16:49:14 +0000580 case Decl::ObjCMethod:
581 return this;
582
583 case Decl::ObjCInterface:
Steve Naroff0701bbb2009-01-08 17:28:14 +0000584 case Decl::ObjCProtocol:
585 case Decl::ObjCCategory:
Douglas Gregor44b43212008-12-11 16:49:14 +0000586 // FIXME: Can Objective-C interfaces be forward-declared?
587 return this;
588
Steve Naroff0701bbb2009-01-08 17:28:14 +0000589 case Decl::ObjCImplementation:
590 case Decl::ObjCCategoryImpl:
591 return this;
592
Douglas Gregor44b43212008-12-11 16:49:14 +0000593 default:
Sean Hunt9a555912010-05-30 07:21:58 +0000594 if (DeclKind >= Decl::firstTag && DeclKind <= Decl::lastTag) {
Douglas Gregorcc636682009-02-17 23:15:12 +0000595 // If this is a tag type that has a definition or is currently
596 // being defined, that definition is our primary context.
John McCall3cb0ebd2010-03-10 03:28:59 +0000597 TagDecl *Tag = cast<TagDecl>(this);
598 assert(isa<TagType>(Tag->TypeForDecl) ||
599 isa<InjectedClassNameType>(Tag->TypeForDecl));
600
601 if (TagDecl *Def = Tag->getDefinition())
602 return Def;
603
604 if (!isa<InjectedClassNameType>(Tag->TypeForDecl)) {
605 const TagType *TagTy = cast<TagType>(Tag->TypeForDecl);
606 if (TagTy->isBeingDefined())
607 // FIXME: is it necessarily being defined in the decl
608 // that owns the type?
609 return TagTy->getDecl();
610 }
611
612 return Tag;
Douglas Gregorcc636682009-02-17 23:15:12 +0000613 }
614
Sean Hunt9a555912010-05-30 07:21:58 +0000615 assert(DeclKind >= Decl::firstFunction && DeclKind <= Decl::lastFunction &&
Douglas Gregor44b43212008-12-11 16:49:14 +0000616 "Unknown DeclContext kind");
617 return this;
618 }
619}
620
621DeclContext *DeclContext::getNextContext() {
622 switch (DeclKind) {
Douglas Gregor44b43212008-12-11 16:49:14 +0000623 case Decl::Namespace:
624 // Return the next namespace
625 return static_cast<NamespaceDecl*>(this)->getNextNamespace();
626
627 default:
Douglas Gregor44b43212008-12-11 16:49:14 +0000628 return 0;
629 }
630}
631
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +0000632std::pair<Decl *, Decl *>
633DeclContext::BuildDeclChain(const llvm::SmallVectorImpl<Decl*> &Decls) {
634 // Build up a chain of declarations via the Decl::NextDeclInContext field.
635 Decl *FirstNewDecl = 0;
636 Decl *PrevDecl = 0;
637 for (unsigned I = 0, N = Decls.size(); I != N; ++I) {
638 Decl *D = Decls[I];
639 if (PrevDecl)
640 PrevDecl->NextDeclInContext = D;
641 else
642 FirstNewDecl = D;
643
644 PrevDecl = D;
645 }
646
647 return std::make_pair(FirstNewDecl, PrevDecl);
648}
649
Douglas Gregor2cf26342009-04-09 22:27:44 +0000650/// \brief Load the declarations within this lexical storage from an
651/// external source.
Mike Stump1eb44332009-09-09 15:08:12 +0000652void
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000653DeclContext::LoadLexicalDeclsFromExternalStorage() const {
654 ExternalASTSource *Source = getParentASTContext().getExternalSource();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000655 assert(hasExternalLexicalStorage() && Source && "No external storage?");
656
Argyrios Kyrtzidis0dbbc042010-07-30 10:03:23 +0000657 // Notify that we have a DeclContext that is initializing.
658 ExternalASTSource::Deserializing ADeclContext(Source);
659
John McCall76bd1f32010-06-01 09:23:16 +0000660 llvm::SmallVector<Decl*, 64> Decls;
661 if (Source->FindExternalLexicalDecls(this, Decls))
Douglas Gregor2cf26342009-04-09 22:27:44 +0000662 return;
663
664 // There is no longer any lexical storage in this context
665 ExternalLexicalStorage = false;
666
667 if (Decls.empty())
668 return;
669
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +0000670 // We may have already loaded just the fields of this record, in which case
671 // don't add the decls, just replace the FirstDecl/LastDecl chain.
672 if (const RecordDecl *RD = dyn_cast<RecordDecl>(this))
673 if (RD->LoadedFieldsFromExternalStorage) {
674 llvm::tie(FirstDecl, LastDecl) = BuildDeclChain(Decls);
675 return;
676 }
Douglas Gregor2cf26342009-04-09 22:27:44 +0000677
678 // Splice the newly-read declarations into the beginning of the list
679 // of declarations.
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +0000680 Decl *ExternalFirst, *ExternalLast;
681 llvm::tie(ExternalFirst, ExternalLast) = BuildDeclChain(Decls);
682 ExternalLast->NextDeclInContext = FirstDecl;
683 FirstDecl = ExternalFirst;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000684 if (!LastDecl)
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +0000685 LastDecl = ExternalLast;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000686}
687
John McCall76bd1f32010-06-01 09:23:16 +0000688DeclContext::lookup_result
689ExternalASTSource::SetNoExternalVisibleDeclsForName(const DeclContext *DC,
690 DeclarationName Name) {
691 ASTContext &Context = DC->getParentASTContext();
692 StoredDeclsMap *Map;
693 if (!(Map = DC->LookupPtr))
694 Map = DC->CreateStoredDeclsMap(Context);
Douglas Gregor2cf26342009-04-09 22:27:44 +0000695
John McCall76bd1f32010-06-01 09:23:16 +0000696 StoredDeclsList &List = (*Map)[Name];
697 assert(List.isNull());
698 (void) List;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000699
John McCall76bd1f32010-06-01 09:23:16 +0000700 return DeclContext::lookup_result();
701}
Douglas Gregor2cf26342009-04-09 22:27:44 +0000702
John McCall76bd1f32010-06-01 09:23:16 +0000703DeclContext::lookup_result
704ExternalASTSource::SetExternalVisibleDeclsForName(const DeclContext *DC,
John McCall76bd1f32010-06-01 09:23:16 +0000705 DeclarationName Name,
706 llvm::SmallVectorImpl<NamedDecl*> &Decls) {
707 ASTContext &Context = DC->getParentASTContext();;
708
709 StoredDeclsMap *Map;
710 if (!(Map = DC->LookupPtr))
711 Map = DC->CreateStoredDeclsMap(Context);
712
713 StoredDeclsList &List = (*Map)[Name];
714 for (unsigned I = 0, N = Decls.size(); I != N; ++I) {
715 if (List.isNull())
716 List.setOnlyValue(Decls[I]);
717 else
718 List.AddSubsequentDecl(Decls[I]);
719 }
720
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +0000721 return List.getLookupResult();
John McCall76bd1f32010-06-01 09:23:16 +0000722}
723
Argyrios Kyrtzidisa60786b2010-08-20 23:35:55 +0000724void ExternalASTSource::MaterializeVisibleDeclsForName(const DeclContext *DC,
725 DeclarationName Name,
726 llvm::SmallVectorImpl<NamedDecl*> &Decls) {
727 assert(DC->LookupPtr);
728 StoredDeclsMap &Map = *DC->LookupPtr;
729
730 // If there's an entry in the table the visible decls for this name have
731 // already been deserialized.
732 if (Map.find(Name) == Map.end()) {
733 StoredDeclsList &List = Map[Name];
734 for (unsigned I = 0, N = Decls.size(); I != N; ++I) {
735 if (List.isNull())
736 List.setOnlyValue(Decls[I]);
737 else
738 List.AddSubsequentDecl(Decls[I]);
739 }
740 }
741}
742
Sebastian Redl681d7232010-07-27 00:17:23 +0000743DeclContext::decl_iterator DeclContext::noload_decls_begin() const {
744 return decl_iterator(FirstDecl);
745}
746
747DeclContext::decl_iterator DeclContext::noload_decls_end() const {
748 return decl_iterator();
749}
750
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000751DeclContext::decl_iterator DeclContext::decls_begin() const {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000752 if (hasExternalLexicalStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000753 LoadLexicalDeclsFromExternalStorage();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000754
755 // FIXME: Check whether we need to load some declarations from
756 // external storage.
Mike Stump1eb44332009-09-09 15:08:12 +0000757 return decl_iterator(FirstDecl);
Douglas Gregor6ab35242009-04-09 21:40:53 +0000758}
759
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000760DeclContext::decl_iterator DeclContext::decls_end() const {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000761 if (hasExternalLexicalStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000762 LoadLexicalDeclsFromExternalStorage();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000763
Mike Stump1eb44332009-09-09 15:08:12 +0000764 return decl_iterator();
Douglas Gregor6ab35242009-04-09 21:40:53 +0000765}
766
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000767bool DeclContext::decls_empty() const {
Douglas Gregor8038d512009-04-10 17:25:41 +0000768 if (hasExternalLexicalStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000769 LoadLexicalDeclsFromExternalStorage();
Douglas Gregor8038d512009-04-10 17:25:41 +0000770
771 return !FirstDecl;
772}
773
John McCall9f54ad42009-12-10 09:41:52 +0000774void DeclContext::removeDecl(Decl *D) {
775 assert(D->getLexicalDeclContext() == this &&
776 "decl being removed from non-lexical context");
777 assert((D->NextDeclInContext || D == LastDecl) &&
778 "decl is not in decls list");
779
780 // Remove D from the decl chain. This is O(n) but hopefully rare.
781 if (D == FirstDecl) {
782 if (D == LastDecl)
783 FirstDecl = LastDecl = 0;
784 else
785 FirstDecl = D->NextDeclInContext;
786 } else {
787 for (Decl *I = FirstDecl; true; I = I->NextDeclInContext) {
788 assert(I && "decl not found in linked list");
789 if (I->NextDeclInContext == D) {
790 I->NextDeclInContext = D->NextDeclInContext;
791 if (D == LastDecl) LastDecl = I;
792 break;
793 }
794 }
795 }
796
797 // Mark that D is no longer in the decl chain.
798 D->NextDeclInContext = 0;
799
800 // Remove D from the lookup table if necessary.
801 if (isa<NamedDecl>(D)) {
802 NamedDecl *ND = cast<NamedDecl>(D);
803
John McCall0c01d182010-03-24 05:22:00 +0000804 StoredDeclsMap *Map = getPrimaryContext()->LookupPtr;
805 if (!Map) return;
John McCall9f54ad42009-12-10 09:41:52 +0000806
John McCall9f54ad42009-12-10 09:41:52 +0000807 StoredDeclsMap::iterator Pos = Map->find(ND->getDeclName());
808 assert(Pos != Map->end() && "no lookup entry for decl");
809 Pos->second.remove(ND);
810 }
811}
812
John McCall3f9a8a62009-08-11 06:59:38 +0000813void DeclContext::addHiddenDecl(Decl *D) {
Chris Lattner7f0be132009-02-20 00:56:18 +0000814 assert(D->getLexicalDeclContext() == this &&
815 "Decl inserted into wrong lexical context");
Mike Stump1eb44332009-09-09 15:08:12 +0000816 assert(!D->getNextDeclInContext() && D != LastDecl &&
Douglas Gregor6037fcb2009-01-09 19:42:16 +0000817 "Decl already inserted into a DeclContext");
818
819 if (FirstDecl) {
Chris Lattner244a67d2009-03-28 06:04:26 +0000820 LastDecl->NextDeclInContext = D;
Douglas Gregor6037fcb2009-01-09 19:42:16 +0000821 LastDecl = D;
822 } else {
823 FirstDecl = LastDecl = D;
824 }
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000825
826 // Notify a C++ record declaration that we've added a member, so it can
827 // update it's class-specific state.
828 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(this))
829 Record->addedMember(D);
John McCall3f9a8a62009-08-11 06:59:38 +0000830}
831
832void DeclContext::addDecl(Decl *D) {
833 addHiddenDecl(D);
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000834
835 if (NamedDecl *ND = dyn_cast<NamedDecl>(D))
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000836 ND->getDeclContext()->makeDeclVisibleInContext(ND);
Douglas Gregor44b43212008-12-11 16:49:14 +0000837}
838
Douglas Gregor074149e2009-01-05 19:45:36 +0000839/// buildLookup - Build the lookup data structure with all of the
840/// declarations in DCtx (and any other contexts linked to it or
841/// transparent contexts nested within it).
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000842void DeclContext::buildLookup(DeclContext *DCtx) {
Douglas Gregor074149e2009-01-05 19:45:36 +0000843 for (; DCtx; DCtx = DCtx->getNextContext()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000844 for (decl_iterator D = DCtx->decls_begin(),
845 DEnd = DCtx->decls_end();
Douglas Gregor4f3b8f82009-01-06 07:17:58 +0000846 D != DEnd; ++D) {
John McCall3f9a8a62009-08-11 06:59:38 +0000847 // Insert this declaration into the lookup structure, but only
848 // if it's semantically in its decl context. During non-lazy
849 // lookup building, this is implicitly enforced by addDecl.
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000850 if (NamedDecl *ND = dyn_cast<NamedDecl>(*D))
John McCall3f9a8a62009-08-11 06:59:38 +0000851 if (D->getDeclContext() == DCtx)
852 makeDeclVisibleInContextImpl(ND);
Douglas Gregor074149e2009-01-05 19:45:36 +0000853
Ted Kremenekc32b1d82009-11-17 22:58:30 +0000854 // Insert any forward-declared Objective-C interfaces into the lookup
855 // data structure.
856 if (ObjCClassDecl *Class = dyn_cast<ObjCClassDecl>(*D))
857 for (ObjCClassDecl::iterator I = Class->begin(), IEnd = Class->end();
858 I != IEnd; ++I)
Ted Kremenek321c22f2009-11-18 00:28:11 +0000859 makeDeclVisibleInContextImpl(I->getInterface());
Ted Kremenekc32b1d82009-11-17 22:58:30 +0000860
Sebastian Redl410c4f22010-08-31 20:53:31 +0000861 // If this declaration is itself a transparent declaration context or
862 // inline namespace, add its members (recursively).
Douglas Gregor074149e2009-01-05 19:45:36 +0000863 if (DeclContext *InnerCtx = dyn_cast<DeclContext>(*D))
Sebastian Redl410c4f22010-08-31 20:53:31 +0000864 if (InnerCtx->isTransparentContext() || InnerCtx->isInlineNamespace())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000865 buildLookup(InnerCtx->getPrimaryContext());
Douglas Gregor074149e2009-01-05 19:45:36 +0000866 }
867 }
868}
869
Mike Stump1eb44332009-09-09 15:08:12 +0000870DeclContext::lookup_result
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000871DeclContext::lookup(DeclarationName Name) {
Steve Naroff0701bbb2009-01-08 17:28:14 +0000872 DeclContext *PrimaryContext = getPrimaryContext();
Douglas Gregor44b43212008-12-11 16:49:14 +0000873 if (PrimaryContext != this)
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000874 return PrimaryContext->lookup(Name);
Douglas Gregor44b43212008-12-11 16:49:14 +0000875
John McCall76bd1f32010-06-01 09:23:16 +0000876 if (hasExternalVisibleStorage()) {
877 // Check to see if we've already cached the lookup results.
878 if (LookupPtr) {
879 StoredDeclsMap::iterator I = LookupPtr->find(Name);
880 if (I != LookupPtr->end())
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +0000881 return I->second.getLookupResult();
John McCall76bd1f32010-06-01 09:23:16 +0000882 }
883
884 ExternalASTSource *Source = getParentASTContext().getExternalSource();
885 return Source->FindExternalVisibleDeclsByName(this, Name);
886 }
Douglas Gregor2cf26342009-04-09 22:27:44 +0000887
Douglas Gregor3fc749d2008-12-23 00:26:44 +0000888 /// If there is no lookup data structure, build one now by walking
Douglas Gregor44b43212008-12-11 16:49:14 +0000889 /// all of the linked DeclContexts (in declaration order!) and
890 /// inserting their values.
Douglas Gregorc36c5402009-04-09 17:29:08 +0000891 if (!LookupPtr) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000892 buildLookup(this);
Douglas Gregor44b43212008-12-11 16:49:14 +0000893
Douglas Gregorc36c5402009-04-09 17:29:08 +0000894 if (!LookupPtr)
Douglas Gregora5fdd9c2010-05-11 06:18:17 +0000895 return lookup_result(lookup_iterator(0), lookup_iterator(0));
Douglas Gregorc36c5402009-04-09 17:29:08 +0000896 }
Douglas Gregor44b43212008-12-11 16:49:14 +0000897
John McCall0c01d182010-03-24 05:22:00 +0000898 StoredDeclsMap::iterator Pos = LookupPtr->find(Name);
899 if (Pos == LookupPtr->end())
Douglas Gregora5fdd9c2010-05-11 06:18:17 +0000900 return lookup_result(lookup_iterator(0), lookup_iterator(0));
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +0000901 return Pos->second.getLookupResult();
Douglas Gregor44b43212008-12-11 16:49:14 +0000902}
903
Mike Stump1eb44332009-09-09 15:08:12 +0000904DeclContext::lookup_const_result
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000905DeclContext::lookup(DeclarationName Name) const {
906 return const_cast<DeclContext*>(this)->lookup(Name);
Douglas Gregor44b43212008-12-11 16:49:14 +0000907}
908
Sebastian Redl7a126a42010-08-31 00:36:30 +0000909DeclContext *DeclContext::getRedeclContext() {
Chris Lattner0cf2b192009-03-27 19:19:59 +0000910 DeclContext *Ctx = this;
Sebastian Redl410c4f22010-08-31 20:53:31 +0000911 // Skip through transparent contexts.
912 while (Ctx->isTransparentContext())
Douglas Gregorce356072009-01-06 23:51:29 +0000913 Ctx = Ctx->getParent();
914 return Ctx;
915}
916
Douglas Gregor88b70942009-02-25 22:02:03 +0000917DeclContext *DeclContext::getEnclosingNamespaceContext() {
918 DeclContext *Ctx = this;
919 // Skip through non-namespace, non-translation-unit contexts.
Sebastian Redl51a8a372010-08-31 00:36:23 +0000920 while (!Ctx->isFileContext())
Douglas Gregor88b70942009-02-25 22:02:03 +0000921 Ctx = Ctx->getParent();
922 return Ctx->getPrimaryContext();
923}
924
Sebastian Redl7a126a42010-08-31 00:36:30 +0000925bool DeclContext::InEnclosingNamespaceSetOf(const DeclContext *O) const {
926 // For non-file contexts, this is equivalent to Equals.
927 if (!isFileContext())
928 return O->Equals(this);
929
930 do {
931 if (O->Equals(this))
932 return true;
933
934 const NamespaceDecl *NS = dyn_cast<NamespaceDecl>(O);
935 if (!NS || !NS->isInline())
936 break;
937 O = NS->getParent();
938 } while (O);
939
940 return false;
941}
942
John McCallab88d972009-08-31 22:39:49 +0000943void DeclContext::makeDeclVisibleInContext(NamedDecl *D, bool Recoverable) {
Douglas Gregorcc636682009-02-17 23:15:12 +0000944 // FIXME: This feels like a hack. Should DeclarationName support
945 // template-ids, or is there a better way to keep specializations
946 // from being visible?
947 if (isa<ClassTemplateSpecializationDecl>(D))
948 return;
Eli Friedman6bc20132009-12-08 05:40:03 +0000949 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
950 if (FD->isFunctionTemplateSpecialization())
951 return;
Douglas Gregorcc636682009-02-17 23:15:12 +0000952
Steve Naroff0701bbb2009-01-08 17:28:14 +0000953 DeclContext *PrimaryContext = getPrimaryContext();
Douglas Gregor44b43212008-12-11 16:49:14 +0000954 if (PrimaryContext != this) {
John McCallab88d972009-08-31 22:39:49 +0000955 PrimaryContext->makeDeclVisibleInContext(D, Recoverable);
Douglas Gregor44b43212008-12-11 16:49:14 +0000956 return;
957 }
958
959 // If we already have a lookup data structure, perform the insertion
Argyrios Kyrtzidis5586b012010-07-04 21:44:25 +0000960 // into it. If we haven't deserialized externally stored decls, deserialize
961 // them so we can add the decl. Otherwise, be lazy and don't build that
962 // structure until someone asks for it.
963 if (LookupPtr || !Recoverable || hasExternalVisibleStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000964 makeDeclVisibleInContextImpl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +0000965
Sebastian Redl410c4f22010-08-31 20:53:31 +0000966 // If we are a transparent context or inline namespace, insert into our
967 // parent context, too. This operation is recursive.
968 if (isTransparentContext() || isInlineNamespace())
John McCallab88d972009-08-31 22:39:49 +0000969 getParent()->makeDeclVisibleInContext(D, Recoverable);
Argyrios Kyrtzidis100050b2010-10-28 07:38:51 +0000970
971 Decl *DCAsDecl = cast<Decl>(this);
972 // Notify that a decl was made visible unless it's a Tag being defined.
973 if (!(isa<TagDecl>(DCAsDecl) && cast<TagDecl>(DCAsDecl)->isBeingDefined()))
974 if (ASTMutationListener *L = DCAsDecl->getASTMutationListener())
975 L->AddedVisibleDecl(this, D);
Douglas Gregor44b43212008-12-11 16:49:14 +0000976}
977
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000978void DeclContext::makeDeclVisibleInContextImpl(NamedDecl *D) {
Douglas Gregor074149e2009-01-05 19:45:36 +0000979 // Skip unnamed declarations.
980 if (!D->getDeclName())
981 return;
982
Douglas Gregorcc636682009-02-17 23:15:12 +0000983 // FIXME: This feels like a hack. Should DeclarationName support
984 // template-ids, or is there a better way to keep specializations
985 // from being visible?
986 if (isa<ClassTemplateSpecializationDecl>(D))
987 return;
988
Argyrios Kyrtzidis5586b012010-07-04 21:44:25 +0000989 ASTContext *C = 0;
990 if (!LookupPtr) {
991 C = &getParentASTContext();
992 CreateStoredDeclsMap(*C);
993 }
994
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +0000995 // If there is an external AST source, load any declarations it knows about
996 // with this declaration's name.
997 // If the lookup table contains an entry about this name it means that we
998 // have already checked the external source.
999 if (ExternalASTSource *Source = getParentASTContext().getExternalSource())
1000 if (hasExternalVisibleStorage() &&
1001 LookupPtr->find(D->getDeclName()) == LookupPtr->end())
1002 Source->FindExternalVisibleDeclsByName(this, D->getDeclName());
1003
Douglas Gregor44b43212008-12-11 16:49:14 +00001004 // Insert this declaration into the map.
John McCall0c01d182010-03-24 05:22:00 +00001005 StoredDeclsList &DeclNameEntries = (*LookupPtr)[D->getDeclName()];
Chris Lattner67762a32009-02-20 01:44:05 +00001006 if (DeclNameEntries.isNull()) {
1007 DeclNameEntries.setOnlyValue(D);
Chris Lattnerbd6c8002009-02-19 07:00:44 +00001008 return;
Douglas Gregor44b43212008-12-11 16:49:14 +00001009 }
Chris Lattner91942502009-02-20 00:55:03 +00001010
Chris Lattnerbdc3d002009-02-20 01:10:07 +00001011 // If it is possible that this is a redeclaration, check to see if there is
1012 // already a decl for which declarationReplaces returns true. If there is
1013 // one, just replace it and return.
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +00001014 if (DeclNameEntries.HandleRedeclaration(D))
Chris Lattner67762a32009-02-20 01:44:05 +00001015 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001016
Chris Lattnerbd6c8002009-02-19 07:00:44 +00001017 // Put this declaration into the appropriate slot.
Chris Lattner67762a32009-02-20 01:44:05 +00001018 DeclNameEntries.AddSubsequentDecl(D);
Douglas Gregor44b43212008-12-11 16:49:14 +00001019}
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001020
Argyrios Kyrtzidisa60786b2010-08-20 23:35:55 +00001021void DeclContext::MaterializeVisibleDeclsFromExternalStorage() {
1022 ExternalASTSource *Source = getParentASTContext().getExternalSource();
1023 assert(hasExternalVisibleStorage() && Source && "No external storage?");
1024
1025 if (!LookupPtr)
1026 CreateStoredDeclsMap(getParentASTContext());
1027 Source->MaterializeVisibleDecls(this);
1028}
1029
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001030/// Returns iterator range [First, Last) of UsingDirectiveDecls stored within
1031/// this context.
Mike Stump1eb44332009-09-09 15:08:12 +00001032DeclContext::udir_iterator_range
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001033DeclContext::getUsingDirectives() const {
1034 lookup_const_result Result = lookup(UsingDirectiveDecl::getName());
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001035 return udir_iterator_range(reinterpret_cast<udir_iterator>(Result.first),
1036 reinterpret_cast<udir_iterator>(Result.second));
1037}
Douglas Gregor2cf26342009-04-09 22:27:44 +00001038
Ted Kremenek3478eb62010-02-11 07:12:28 +00001039//===----------------------------------------------------------------------===//
1040// Creation and Destruction of StoredDeclsMaps. //
1041//===----------------------------------------------------------------------===//
1042
John McCall0c01d182010-03-24 05:22:00 +00001043StoredDeclsMap *DeclContext::CreateStoredDeclsMap(ASTContext &C) const {
1044 assert(!LookupPtr && "context already has a decls map");
1045 assert(getPrimaryContext() == this &&
1046 "creating decls map on non-primary context");
1047
1048 StoredDeclsMap *M;
1049 bool Dependent = isDependentContext();
1050 if (Dependent)
1051 M = new DependentStoredDeclsMap();
1052 else
1053 M = new StoredDeclsMap();
1054 M->Previous = C.LastSDM;
1055 C.LastSDM = llvm::PointerIntPair<StoredDeclsMap*,1>(M, Dependent);
1056 LookupPtr = M;
Ted Kremenek3478eb62010-02-11 07:12:28 +00001057 return M;
1058}
1059
1060void ASTContext::ReleaseDeclContextMaps() {
John McCall0c01d182010-03-24 05:22:00 +00001061 // It's okay to delete DependentStoredDeclsMaps via a StoredDeclsMap
1062 // pointer because the subclass doesn't add anything that needs to
1063 // be deleted.
John McCall0c01d182010-03-24 05:22:00 +00001064 StoredDeclsMap::DestroyAll(LastSDM.getPointer(), LastSDM.getInt());
1065}
1066
1067void StoredDeclsMap::DestroyAll(StoredDeclsMap *Map, bool Dependent) {
1068 while (Map) {
1069 // Advance the iteration before we invalidate memory.
1070 llvm::PointerIntPair<StoredDeclsMap*,1> Next = Map->Previous;
1071
1072 if (Dependent)
1073 delete static_cast<DependentStoredDeclsMap*>(Map);
1074 else
1075 delete Map;
1076
1077 Map = Next.getPointer();
1078 Dependent = Next.getInt();
1079 }
1080}
1081
John McCall0c01d182010-03-24 05:22:00 +00001082DependentDiagnostic *DependentDiagnostic::Create(ASTContext &C,
1083 DeclContext *Parent,
1084 const PartialDiagnostic &PDiag) {
1085 assert(Parent->isDependentContext()
1086 && "cannot iterate dependent diagnostics of non-dependent context");
1087 Parent = Parent->getPrimaryContext();
1088 if (!Parent->LookupPtr)
1089 Parent->CreateStoredDeclsMap(C);
1090
1091 DependentStoredDeclsMap *Map
1092 = static_cast<DependentStoredDeclsMap*>(Parent->LookupPtr);
1093
Douglas Gregorb8365182010-03-29 23:56:53 +00001094 // Allocate the copy of the PartialDiagnostic via the ASTContext's
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00001095 // BumpPtrAllocator, rather than the ASTContext itself.
Douglas Gregorb8365182010-03-29 23:56:53 +00001096 PartialDiagnostic::Storage *DiagStorage = 0;
1097 if (PDiag.hasStorage())
1098 DiagStorage = new (C) PartialDiagnostic::Storage;
1099
1100 DependentDiagnostic *DD = new (C) DependentDiagnostic(PDiag, DiagStorage);
John McCall0c01d182010-03-24 05:22:00 +00001101
1102 // TODO: Maybe we shouldn't reverse the order during insertion.
1103 DD->NextDiagnostic = Map->FirstDiagnostic;
1104 Map->FirstDiagnostic = DD;
1105
1106 return DD;
Ted Kremenek3478eb62010-02-11 07:12:28 +00001107}