blob: 7d8a92530e072603ca4b76011c5dc387603d3b6a [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();
Mike Stump1eb44332009-09-09 15:08:12 +0000113
Anders Carlsson67e33202009-06-13 00:08:58 +0000114 return false;
115}
116
Douglas Gregore53060f2009-06-25 22:08:12 +0000117bool Decl::isFunctionOrFunctionTemplate() const {
John McCall9488ea12009-11-17 05:59:44 +0000118 if (const UsingShadowDecl *UD = dyn_cast<UsingShadowDecl>(this))
Anders Carlsson58badb72009-06-26 05:26:50 +0000119 return UD->getTargetDecl()->isFunctionOrFunctionTemplate();
Mike Stump1eb44332009-09-09 15:08:12 +0000120
Douglas Gregore53060f2009-06-25 22:08:12 +0000121 return isa<FunctionDecl>(this) || isa<FunctionTemplateDecl>(this);
122}
123
Douglas Gregor79c22782010-01-16 20:21:20 +0000124bool Decl::isDefinedOutsideFunctionOrMethod() const {
125 for (const DeclContext *DC = getDeclContext();
126 DC && !DC->isTranslationUnit();
127 DC = DC->getParent())
128 if (DC->isFunctionOrMethod())
129 return false;
130
131 return true;
132}
133
134
Eli Friedman56d29372008-06-07 16:52:53 +0000135//===----------------------------------------------------------------------===//
Chris Lattner49f28ca2009-03-05 08:00:35 +0000136// PrettyStackTraceDecl Implementation
137//===----------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +0000138
Chris Lattner49f28ca2009-03-05 08:00:35 +0000139void PrettyStackTraceDecl::print(llvm::raw_ostream &OS) const {
140 SourceLocation TheLoc = Loc;
141 if (TheLoc.isInvalid() && TheDecl)
142 TheLoc = TheDecl->getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000143
Chris Lattner49f28ca2009-03-05 08:00:35 +0000144 if (TheLoc.isValid()) {
145 TheLoc.print(OS, SM);
146 OS << ": ";
147 }
148
149 OS << Message;
150
Daniel Dunbarc5236562009-11-21 09:05:59 +0000151 if (const NamedDecl *DN = dyn_cast_or_null<NamedDecl>(TheDecl))
Chris Lattner49f28ca2009-03-05 08:00:35 +0000152 OS << " '" << DN->getQualifiedNameAsString() << '\'';
153 OS << '\n';
154}
Mike Stump1eb44332009-09-09 15:08:12 +0000155
Chris Lattner49f28ca2009-03-05 08:00:35 +0000156//===----------------------------------------------------------------------===//
Eli Friedman56d29372008-06-07 16:52:53 +0000157// Decl Implementation
158//===----------------------------------------------------------------------===//
159
Chris Lattner769dbdf2009-03-27 20:18:19 +0000160// Out-of-line virtual method providing a home for Decl.
Douglas Gregorff331c12010-07-25 18:17:45 +0000161Decl::~Decl() { }
Chris Lattner769dbdf2009-03-27 20:18:19 +0000162
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000163void Decl::setDeclContext(DeclContext *DC) {
164 if (isOutOfSemaDC())
165 delete getMultipleDC();
Mike Stump1eb44332009-09-09 15:08:12 +0000166
Chris Lattneree219fd2009-03-29 06:06:59 +0000167 DeclCtx = DC;
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000168}
169
170void Decl::setLexicalDeclContext(DeclContext *DC) {
171 if (DC == getLexicalDeclContext())
172 return;
173
174 if (isInSemaDC()) {
Ted Kremenek94a39002009-12-01 00:07:10 +0000175 MultipleDC *MDC = new (getASTContext()) MultipleDC();
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000176 MDC->SemanticDC = getDeclContext();
177 MDC->LexicalDC = DC;
Chris Lattneree219fd2009-03-29 06:06:59 +0000178 DeclCtx = MDC;
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000179 } else {
180 getMultipleDC()->LexicalDC = DC;
181 }
182}
183
John McCall9aeed322009-10-01 00:25:31 +0000184bool Decl::isInAnonymousNamespace() const {
185 const DeclContext *DC = getDeclContext();
186 do {
187 if (const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(DC))
188 if (ND->isAnonymousNamespace())
189 return true;
190 } while ((DC = DC->getParent()));
191
192 return false;
193}
194
Argyrios Kyrtzidis3708b3d2009-06-29 17:38:40 +0000195TranslationUnitDecl *Decl::getTranslationUnitDecl() {
Argyrios Kyrtzidis9b346692009-06-30 02:34:53 +0000196 if (TranslationUnitDecl *TUD = dyn_cast<TranslationUnitDecl>(this))
197 return TUD;
198
Argyrios Kyrtzidis3708b3d2009-06-29 17:38:40 +0000199 DeclContext *DC = getDeclContext();
200 assert(DC && "This decl is not contained in a translation unit!");
Mike Stump1eb44332009-09-09 15:08:12 +0000201
Argyrios Kyrtzidis3708b3d2009-06-29 17:38:40 +0000202 while (!DC->isTranslationUnit()) {
203 DC = DC->getParent();
204 assert(DC && "This decl is not contained in a translation unit!");
205 }
Mike Stump1eb44332009-09-09 15:08:12 +0000206
Argyrios Kyrtzidis3708b3d2009-06-29 17:38:40 +0000207 return cast<TranslationUnitDecl>(DC);
208}
209
210ASTContext &Decl::getASTContext() const {
Mike Stump1eb44332009-09-09 15:08:12 +0000211 return getTranslationUnitDecl()->getASTContext();
Argyrios Kyrtzidis3708b3d2009-06-29 17:38:40 +0000212}
213
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +0000214ASTMutationListener *Decl::getASTMutationListener() const {
215 return getASTContext().getASTMutationListener();
216}
217
Douglas Gregorc070cc62010-06-17 23:14:26 +0000218bool Decl::isUsed(bool CheckUsedAttr) const {
Tanya Lattner12ead492010-02-17 02:17:21 +0000219 if (Used)
220 return true;
221
222 // Check for used attribute.
Douglas Gregorc070cc62010-06-17 23:14:26 +0000223 if (CheckUsedAttr && hasAttr<UsedAttr>())
Tanya Lattner12ead492010-02-17 02:17:21 +0000224 return true;
225
226 // Check redeclarations for used attribute.
227 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) {
Douglas Gregorc070cc62010-06-17 23:14:26 +0000228 if ((CheckUsedAttr && I->hasAttr<UsedAttr>()) || I->Used)
Tanya Lattner12ead492010-02-17 02:17:21 +0000229 return true;
230 }
231
232 return false;
233}
234
235
Chris Lattner769dbdf2009-03-27 20:18:19 +0000236unsigned Decl::getIdentifierNamespaceForKind(Kind DeclKind) {
237 switch (DeclKind) {
John McCall9488ea12009-11-17 05:59:44 +0000238 case Function:
239 case CXXMethod:
240 case CXXConstructor:
241 case CXXDestructor:
242 case CXXConversion:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000243 case EnumConstant:
244 case Var:
245 case ImplicitParam:
246 case ParmVar:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000247 case NonTypeTemplateParm:
248 case ObjCMethod:
Daniel Dunbar00b40d32010-04-23 13:07:39 +0000249 case ObjCProperty:
Daniel Dunbar00b40d32010-04-23 13:07:39 +0000250 return IDNS_Ordinary;
John McCalld04efc92010-04-23 02:41:41 +0000251
Francois Pichet87c2e122010-11-21 06:08:52 +0000252 case IndirectField:
253 return IDNS_Ordinary | IDNS_Member;
254
John McCall0d6b1642010-04-23 18:46:30 +0000255 case ObjCCompatibleAlias:
256 case ObjCInterface:
257 return IDNS_Ordinary | IDNS_Type;
258
259 case Typedef:
260 case UnresolvedUsingTypename:
261 case TemplateTypeParm:
262 return IDNS_Ordinary | IDNS_Type;
263
John McCall9488ea12009-11-17 05:59:44 +0000264 case UsingShadow:
265 return 0; // we'll actually overwrite this later
266
John McCall7ba107a2009-11-18 02:36:19 +0000267 case UnresolvedUsingValue:
John McCall7ba107a2009-11-18 02:36:19 +0000268 return IDNS_Ordinary | IDNS_Using;
John McCall9488ea12009-11-17 05:59:44 +0000269
270 case Using:
271 return IDNS_Using;
272
Chris Lattner769dbdf2009-03-27 20:18:19 +0000273 case ObjCProtocol:
Douglas Gregor8fc463a2009-04-24 00:11:27 +0000274 return IDNS_ObjCProtocol;
Mike Stump1eb44332009-09-09 15:08:12 +0000275
Chris Lattner769dbdf2009-03-27 20:18:19 +0000276 case Field:
277 case ObjCAtDefsField:
278 case ObjCIvar:
279 return IDNS_Member;
Mike Stump1eb44332009-09-09 15:08:12 +0000280
Chris Lattner769dbdf2009-03-27 20:18:19 +0000281 case Record:
282 case CXXRecord:
283 case Enum:
John McCall0d6b1642010-04-23 18:46:30 +0000284 return IDNS_Tag | IDNS_Type;
Mike Stump1eb44332009-09-09 15:08:12 +0000285
Chris Lattner769dbdf2009-03-27 20:18:19 +0000286 case Namespace:
John McCall0d6b1642010-04-23 18:46:30 +0000287 case NamespaceAlias:
288 return IDNS_Namespace;
289
Chris Lattner769dbdf2009-03-27 20:18:19 +0000290 case FunctionTemplate:
John McCall0d6b1642010-04-23 18:46:30 +0000291 return IDNS_Ordinary;
292
Chris Lattner769dbdf2009-03-27 20:18:19 +0000293 case ClassTemplate:
294 case TemplateTemplateParm:
John McCall0d6b1642010-04-23 18:46:30 +0000295 return IDNS_Ordinary | IDNS_Tag | IDNS_Type;
Mike Stump1eb44332009-09-09 15:08:12 +0000296
Chris Lattner769dbdf2009-03-27 20:18:19 +0000297 // Never have names.
John McCall02cace72009-08-28 07:59:38 +0000298 case Friend:
John McCalldd4a3b02009-09-16 22:47:08 +0000299 case FriendTemplate:
Abramo Bagnara6206d532010-06-05 05:09:32 +0000300 case AccessSpec:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000301 case LinkageSpec:
302 case FileScopeAsm:
303 case StaticAssert:
304 case ObjCClass:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000305 case ObjCPropertyImpl:
306 case ObjCForwardProtocol:
307 case Block:
308 case TranslationUnit:
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000309
Chris Lattner769dbdf2009-03-27 20:18:19 +0000310 case UsingDirective:
311 case ClassTemplateSpecialization:
Douglas Gregorc8ab2562009-05-31 09:31:02 +0000312 case ClassTemplatePartialSpecialization:
Douglas Gregorbd4187b2010-04-22 23:19:50 +0000313 case ObjCImplementation:
314 case ObjCCategory:
315 case ObjCCategoryImpl:
316 // Never looked up by name.
Chris Lattner769dbdf2009-03-27 20:18:19 +0000317 return 0;
318 }
John McCall9488ea12009-11-17 05:59:44 +0000319
320 return 0;
Eli Friedman56d29372008-06-07 16:52:53 +0000321}
322
Sean Huntcf807c42010-08-18 23:23:40 +0000323void Decl::setAttrs(const AttrVec &attrs) {
Argyrios Kyrtzidis1715bf52010-06-11 23:09:25 +0000324 assert(!HasAttrs && "Decl already contains attrs.");
325
Sean Huntcf807c42010-08-18 23:23:40 +0000326 AttrVec &AttrBlank = getASTContext().getDeclAttrs(this);
327 assert(AttrBlank.empty() && "HasAttrs was wrong?");
Argyrios Kyrtzidis1715bf52010-06-11 23:09:25 +0000328
329 AttrBlank = attrs;
330 HasAttrs = true;
331}
332
Sean Huntcf807c42010-08-18 23:23:40 +0000333void Decl::dropAttrs() {
Eli Friedman56d29372008-06-07 16:52:53 +0000334 if (!HasAttrs) return;
Mike Stump1eb44332009-09-09 15:08:12 +0000335
Eli Friedman56d29372008-06-07 16:52:53 +0000336 HasAttrs = false;
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000337 getASTContext().eraseDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000338}
339
Sean Huntcf807c42010-08-18 23:23:40 +0000340const AttrVec &Decl::getAttrs() const {
341 assert(HasAttrs && "No attrs to get!");
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000342 return getASTContext().getDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000343}
344
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000345void Decl::swapAttrs(Decl *RHS) {
Eli Friedman56d29372008-06-07 16:52:53 +0000346 bool HasLHSAttr = this->HasAttrs;
347 bool HasRHSAttr = RHS->HasAttrs;
Mike Stump1eb44332009-09-09 15:08:12 +0000348
Eli Friedman56d29372008-06-07 16:52:53 +0000349 // Usually, neither decl has attrs, nothing to do.
350 if (!HasLHSAttr && !HasRHSAttr) return;
Mike Stump1eb44332009-09-09 15:08:12 +0000351
Eli Friedman56d29372008-06-07 16:52:53 +0000352 // If 'this' has no attrs, swap the other way.
353 if (!HasLHSAttr)
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000354 return RHS->swapAttrs(this);
Mike Stump1eb44332009-09-09 15:08:12 +0000355
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000356 ASTContext &Context = getASTContext();
Mike Stump1eb44332009-09-09 15:08:12 +0000357
Eli Friedman56d29372008-06-07 16:52:53 +0000358 // Handle the case when both decls have attrs.
359 if (HasRHSAttr) {
Douglas Gregor68584ed2009-06-18 16:11:24 +0000360 std::swap(Context.getDeclAttrs(this), Context.getDeclAttrs(RHS));
Eli Friedman56d29372008-06-07 16:52:53 +0000361 return;
362 }
Mike Stump1eb44332009-09-09 15:08:12 +0000363
Eli Friedman56d29372008-06-07 16:52:53 +0000364 // Otherwise, LHS has an attr and RHS doesn't.
Douglas Gregor68584ed2009-06-18 16:11:24 +0000365 Context.getDeclAttrs(RHS) = Context.getDeclAttrs(this);
366 Context.eraseDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000367 this->HasAttrs = false;
368 RHS->HasAttrs = true;
369}
370
Argyrios Kyrtzidis42220c52008-10-12 16:14:48 +0000371Decl *Decl::castFromDeclContext (const DeclContext *D) {
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000372 Decl::Kind DK = D->getDeclKind();
373 switch(DK) {
Sean Hunt9a555912010-05-30 07:21:58 +0000374#define DECL(NAME, BASE)
375#define DECL_CONTEXT(NAME) \
376 case Decl::NAME: \
377 return static_cast<NAME##Decl*>(const_cast<DeclContext*>(D));
378#define DECL_CONTEXT_BASE(NAME)
379#include "clang/AST/DeclNodes.inc"
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000380 default:
Sean Hunt9a555912010-05-30 07:21:58 +0000381#define DECL(NAME, BASE)
382#define DECL_CONTEXT_BASE(NAME) \
383 if (DK >= first##NAME && DK <= last##NAME) \
384 return static_cast<NAME##Decl*>(const_cast<DeclContext*>(D));
385#include "clang/AST/DeclNodes.inc"
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000386 assert(false && "a decl that inherits DeclContext isn't handled");
387 return 0;
388 }
Argyrios Kyrtzidis42220c52008-10-12 16:14:48 +0000389}
390
391DeclContext *Decl::castToDeclContext(const Decl *D) {
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000392 Decl::Kind DK = D->getKind();
393 switch(DK) {
Sean Hunt9a555912010-05-30 07:21:58 +0000394#define DECL(NAME, BASE)
395#define DECL_CONTEXT(NAME) \
396 case Decl::NAME: \
397 return static_cast<NAME##Decl*>(const_cast<Decl*>(D));
398#define DECL_CONTEXT_BASE(NAME)
399#include "clang/AST/DeclNodes.inc"
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000400 default:
Sean Hunt9a555912010-05-30 07:21:58 +0000401#define DECL(NAME, BASE)
402#define DECL_CONTEXT_BASE(NAME) \
403 if (DK >= first##NAME && DK <= last##NAME) \
404 return static_cast<NAME##Decl*>(const_cast<Decl*>(D));
405#include "clang/AST/DeclNodes.inc"
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000406 assert(false && "a decl that inherits DeclContext isn't handled");
407 return 0;
408 }
Argyrios Kyrtzidis42220c52008-10-12 16:14:48 +0000409}
410
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000411SourceLocation Decl::getBodyRBrace() const {
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +0000412 // Special handling of FunctionDecl to avoid de-serializing the body from PCH.
413 // FunctionDecl stores EndRangeLoc for this purpose.
414 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(this)) {
415 const FunctionDecl *Definition;
416 if (FD->hasBody(Definition))
417 return Definition->getSourceRange().getEnd();
418 return SourceLocation();
419 }
420
Argyrios Kyrtzidis6717ef42010-07-07 11:31:27 +0000421 if (Stmt *Body = getBody())
422 return Body->getSourceRange().getEnd();
423
424 return SourceLocation();
Sebastian Redld3a413d2009-04-26 20:35:05 +0000425}
426
Anders Carlsson1329c272009-03-25 23:38:06 +0000427#ifndef NDEBUG
428void Decl::CheckAccessDeclContext() const {
John McCall46460a62010-01-20 21:53:11 +0000429 // Suppress this check if any of the following hold:
430 // 1. this is the translation unit (and thus has no parent)
431 // 2. this is a template parameter (and thus doesn't belong to its context)
Argyrios Kyrtzidisd580e562010-09-08 21:58:42 +0000432 // 3. this is a non-type template parameter
433 // 4. the context is not a record
434 // 5. it's invalid
435 // 6. it's a C++0x static_assert.
Anders Carlsson35eda442009-08-29 20:47:47 +0000436 if (isa<TranslationUnitDecl>(this) ||
Argyrios Kyrtzidis04aed0e2010-07-02 11:55:44 +0000437 isa<TemplateTypeParmDecl>(this) ||
Argyrios Kyrtzidisd580e562010-09-08 21:58:42 +0000438 isa<NonTypeTemplateParmDecl>(this) ||
Douglas Gregorfdd8ab12010-02-22 17:53:38 +0000439 !isa<CXXRecordDecl>(getDeclContext()) ||
Argyrios Kyrtzidis65b63ec2010-09-08 21:32:35 +0000440 isInvalidDecl() ||
441 isa<StaticAssertDecl>(this) ||
442 // FIXME: a ParmVarDecl can have ClassTemplateSpecialization
443 // as DeclContext (?).
Argyrios Kyrtzidisd580e562010-09-08 21:58:42 +0000444 isa<ParmVarDecl>(this) ||
445 // FIXME: a ClassTemplateSpecialization or CXXRecordDecl can have
446 // AS_none as access specifier.
447 isa<CXXRecordDecl>(this))
Anders Carlsson35eda442009-08-29 20:47:47 +0000448 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000449
450 assert(Access != AS_none &&
Anders Carlsson1329c272009-03-25 23:38:06 +0000451 "Access specifier is AS_none inside a record decl");
452}
453
454#endif
455
Eli Friedman56d29372008-06-07 16:52:53 +0000456//===----------------------------------------------------------------------===//
457// DeclContext Implementation
458//===----------------------------------------------------------------------===//
459
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000460bool DeclContext::classof(const Decl *D) {
461 switch (D->getKind()) {
Sean Hunt9a555912010-05-30 07:21:58 +0000462#define DECL(NAME, BASE)
463#define DECL_CONTEXT(NAME) case Decl::NAME:
464#define DECL_CONTEXT_BASE(NAME)
465#include "clang/AST/DeclNodes.inc"
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000466 return true;
467 default:
Sean Hunt9a555912010-05-30 07:21:58 +0000468#define DECL(NAME, BASE)
469#define DECL_CONTEXT_BASE(NAME) \
470 if (D->getKind() >= Decl::first##NAME && \
471 D->getKind() <= Decl::last##NAME) \
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000472 return true;
Sean Hunt9a555912010-05-30 07:21:58 +0000473#include "clang/AST/DeclNodes.inc"
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000474 return false;
475 }
476}
477
Douglas Gregora2da7802010-07-25 18:38:02 +0000478DeclContext::~DeclContext() { }
Douglas Gregor44b43212008-12-11 16:49:14 +0000479
Douglas Gregore942bbe2009-09-10 16:57:35 +0000480/// \brief Find the parent context of this context that will be
481/// used for unqualified name lookup.
482///
483/// Generally, the parent lookup context is the semantic context. However, for
484/// a friend function the parent lookup context is the lexical context, which
485/// is the class in which the friend is declared.
486DeclContext *DeclContext::getLookupParent() {
487 // FIXME: Find a better way to identify friends
488 if (isa<FunctionDecl>(this))
Sebastian Redl7a126a42010-08-31 00:36:30 +0000489 if (getParent()->getRedeclContext()->isFileContext() &&
490 getLexicalParent()->getRedeclContext()->isRecord())
Douglas Gregore942bbe2009-09-10 16:57:35 +0000491 return getLexicalParent();
492
493 return getParent();
494}
495
Sebastian Redl410c4f22010-08-31 20:53:31 +0000496bool DeclContext::isInlineNamespace() const {
497 return isNamespace() &&
498 cast<NamespaceDecl>(this)->isInline();
499}
500
Douglas Gregorbc221632009-05-28 16:34:51 +0000501bool DeclContext::isDependentContext() const {
502 if (isFileContext())
503 return false;
504
Douglas Gregorc8ab2562009-05-31 09:31:02 +0000505 if (isa<ClassTemplatePartialSpecializationDecl>(this))
506 return true;
507
Douglas Gregorbc221632009-05-28 16:34:51 +0000508 if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(this))
509 if (Record->getDescribedClassTemplate())
510 return true;
511
John McCall0c01d182010-03-24 05:22:00 +0000512 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(this)) {
Douglas Gregorbc221632009-05-28 16:34:51 +0000513 if (Function->getDescribedFunctionTemplate())
514 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000515
John McCall0c01d182010-03-24 05:22:00 +0000516 // Friend function declarations are dependent if their *lexical*
517 // context is dependent.
518 if (cast<Decl>(this)->getFriendObjectKind())
519 return getLexicalParent()->isDependentContext();
520 }
521
Douglas Gregorbc221632009-05-28 16:34:51 +0000522 return getParent() && getParent()->isDependentContext();
523}
524
Douglas Gregor074149e2009-01-05 19:45:36 +0000525bool DeclContext::isTransparentContext() const {
526 if (DeclKind == Decl::Enum)
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000527 return !cast<EnumDecl>(this)->isScoped();
Douglas Gregor074149e2009-01-05 19:45:36 +0000528 else if (DeclKind == Decl::LinkageSpec)
529 return true;
Douglas Gregor074149e2009-01-05 19:45:36 +0000530
531 return false;
532}
533
John McCallac65c622010-10-26 04:59:26 +0000534bool DeclContext::isExternCContext() const {
535 const DeclContext *DC = this;
536 while (DC->DeclKind != Decl::TranslationUnit) {
537 if (DC->DeclKind == Decl::LinkageSpec)
538 return cast<LinkageSpecDecl>(DC)->getLanguage()
539 == LinkageSpecDecl::lang_c;
540 DC = DC->getParent();
541 }
542 return false;
543}
544
Sebastian Redl7a126a42010-08-31 00:36:30 +0000545bool DeclContext::Encloses(const DeclContext *DC) const {
Douglas Gregor6dd38da2009-08-27 06:03:53 +0000546 if (getPrimaryContext() != this)
547 return getPrimaryContext()->Encloses(DC);
Mike Stump1eb44332009-09-09 15:08:12 +0000548
Douglas Gregor6dd38da2009-08-27 06:03:53 +0000549 for (; DC; DC = DC->getParent())
550 if (DC->getPrimaryContext() == this)
551 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000552 return false;
Douglas Gregor6dd38da2009-08-27 06:03:53 +0000553}
554
Steve Naroff0701bbb2009-01-08 17:28:14 +0000555DeclContext *DeclContext::getPrimaryContext() {
Douglas Gregor44b43212008-12-11 16:49:14 +0000556 switch (DeclKind) {
Douglas Gregor44b43212008-12-11 16:49:14 +0000557 case Decl::TranslationUnit:
Douglas Gregor074149e2009-01-05 19:45:36 +0000558 case Decl::LinkageSpec:
Mike Stump1eb44332009-09-09 15:08:12 +0000559 case Decl::Block:
Douglas Gregor44b43212008-12-11 16:49:14 +0000560 // There is only one DeclContext for these entities.
561 return this;
562
563 case Decl::Namespace:
564 // The original namespace is our primary context.
565 return static_cast<NamespaceDecl*>(this)->getOriginalNamespace();
566
Douglas Gregor44b43212008-12-11 16:49:14 +0000567 case Decl::ObjCMethod:
568 return this;
569
570 case Decl::ObjCInterface:
Steve Naroff0701bbb2009-01-08 17:28:14 +0000571 case Decl::ObjCProtocol:
572 case Decl::ObjCCategory:
Douglas Gregor44b43212008-12-11 16:49:14 +0000573 // FIXME: Can Objective-C interfaces be forward-declared?
574 return this;
575
Steve Naroff0701bbb2009-01-08 17:28:14 +0000576 case Decl::ObjCImplementation:
577 case Decl::ObjCCategoryImpl:
578 return this;
579
Douglas Gregor44b43212008-12-11 16:49:14 +0000580 default:
Sean Hunt9a555912010-05-30 07:21:58 +0000581 if (DeclKind >= Decl::firstTag && DeclKind <= Decl::lastTag) {
Douglas Gregorcc636682009-02-17 23:15:12 +0000582 // If this is a tag type that has a definition or is currently
583 // being defined, that definition is our primary context.
John McCall3cb0ebd2010-03-10 03:28:59 +0000584 TagDecl *Tag = cast<TagDecl>(this);
585 assert(isa<TagType>(Tag->TypeForDecl) ||
586 isa<InjectedClassNameType>(Tag->TypeForDecl));
587
588 if (TagDecl *Def = Tag->getDefinition())
589 return Def;
590
591 if (!isa<InjectedClassNameType>(Tag->TypeForDecl)) {
592 const TagType *TagTy = cast<TagType>(Tag->TypeForDecl);
593 if (TagTy->isBeingDefined())
594 // FIXME: is it necessarily being defined in the decl
595 // that owns the type?
596 return TagTy->getDecl();
597 }
598
599 return Tag;
Douglas Gregorcc636682009-02-17 23:15:12 +0000600 }
601
Sean Hunt9a555912010-05-30 07:21:58 +0000602 assert(DeclKind >= Decl::firstFunction && DeclKind <= Decl::lastFunction &&
Douglas Gregor44b43212008-12-11 16:49:14 +0000603 "Unknown DeclContext kind");
604 return this;
605 }
606}
607
608DeclContext *DeclContext::getNextContext() {
609 switch (DeclKind) {
Douglas Gregor44b43212008-12-11 16:49:14 +0000610 case Decl::Namespace:
611 // Return the next namespace
612 return static_cast<NamespaceDecl*>(this)->getNextNamespace();
613
614 default:
Douglas Gregor44b43212008-12-11 16:49:14 +0000615 return 0;
616 }
617}
618
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +0000619std::pair<Decl *, Decl *>
620DeclContext::BuildDeclChain(const llvm::SmallVectorImpl<Decl*> &Decls) {
621 // Build up a chain of declarations via the Decl::NextDeclInContext field.
622 Decl *FirstNewDecl = 0;
623 Decl *PrevDecl = 0;
624 for (unsigned I = 0, N = Decls.size(); I != N; ++I) {
625 Decl *D = Decls[I];
626 if (PrevDecl)
627 PrevDecl->NextDeclInContext = D;
628 else
629 FirstNewDecl = D;
630
631 PrevDecl = D;
632 }
633
634 return std::make_pair(FirstNewDecl, PrevDecl);
635}
636
Douglas Gregor2cf26342009-04-09 22:27:44 +0000637/// \brief Load the declarations within this lexical storage from an
638/// external source.
Mike Stump1eb44332009-09-09 15:08:12 +0000639void
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000640DeclContext::LoadLexicalDeclsFromExternalStorage() const {
641 ExternalASTSource *Source = getParentASTContext().getExternalSource();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000642 assert(hasExternalLexicalStorage() && Source && "No external storage?");
643
Argyrios Kyrtzidis0dbbc042010-07-30 10:03:23 +0000644 // Notify that we have a DeclContext that is initializing.
645 ExternalASTSource::Deserializing ADeclContext(Source);
646
John McCall76bd1f32010-06-01 09:23:16 +0000647 llvm::SmallVector<Decl*, 64> Decls;
648 if (Source->FindExternalLexicalDecls(this, Decls))
Douglas Gregor2cf26342009-04-09 22:27:44 +0000649 return;
650
651 // There is no longer any lexical storage in this context
652 ExternalLexicalStorage = false;
653
654 if (Decls.empty())
655 return;
656
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +0000657 // We may have already loaded just the fields of this record, in which case
658 // don't add the decls, just replace the FirstDecl/LastDecl chain.
659 if (const RecordDecl *RD = dyn_cast<RecordDecl>(this))
660 if (RD->LoadedFieldsFromExternalStorage) {
661 llvm::tie(FirstDecl, LastDecl) = BuildDeclChain(Decls);
662 return;
663 }
Douglas Gregor2cf26342009-04-09 22:27:44 +0000664
665 // Splice the newly-read declarations into the beginning of the list
666 // of declarations.
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +0000667 Decl *ExternalFirst, *ExternalLast;
668 llvm::tie(ExternalFirst, ExternalLast) = BuildDeclChain(Decls);
669 ExternalLast->NextDeclInContext = FirstDecl;
670 FirstDecl = ExternalFirst;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000671 if (!LastDecl)
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +0000672 LastDecl = ExternalLast;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000673}
674
John McCall76bd1f32010-06-01 09:23:16 +0000675DeclContext::lookup_result
676ExternalASTSource::SetNoExternalVisibleDeclsForName(const DeclContext *DC,
677 DeclarationName Name) {
678 ASTContext &Context = DC->getParentASTContext();
679 StoredDeclsMap *Map;
680 if (!(Map = DC->LookupPtr))
681 Map = DC->CreateStoredDeclsMap(Context);
Douglas Gregor2cf26342009-04-09 22:27:44 +0000682
John McCall76bd1f32010-06-01 09:23:16 +0000683 StoredDeclsList &List = (*Map)[Name];
684 assert(List.isNull());
685 (void) List;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000686
John McCall76bd1f32010-06-01 09:23:16 +0000687 return DeclContext::lookup_result();
688}
Douglas Gregor2cf26342009-04-09 22:27:44 +0000689
John McCall76bd1f32010-06-01 09:23:16 +0000690DeclContext::lookup_result
691ExternalASTSource::SetExternalVisibleDeclsForName(const DeclContext *DC,
John McCall76bd1f32010-06-01 09:23:16 +0000692 DeclarationName Name,
693 llvm::SmallVectorImpl<NamedDecl*> &Decls) {
694 ASTContext &Context = DC->getParentASTContext();;
695
696 StoredDeclsMap *Map;
697 if (!(Map = DC->LookupPtr))
698 Map = DC->CreateStoredDeclsMap(Context);
699
700 StoredDeclsList &List = (*Map)[Name];
701 for (unsigned I = 0, N = Decls.size(); I != N; ++I) {
702 if (List.isNull())
703 List.setOnlyValue(Decls[I]);
704 else
705 List.AddSubsequentDecl(Decls[I]);
706 }
707
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +0000708 return List.getLookupResult();
John McCall76bd1f32010-06-01 09:23:16 +0000709}
710
Argyrios Kyrtzidisa60786b2010-08-20 23:35:55 +0000711void ExternalASTSource::MaterializeVisibleDeclsForName(const DeclContext *DC,
712 DeclarationName Name,
713 llvm::SmallVectorImpl<NamedDecl*> &Decls) {
714 assert(DC->LookupPtr);
715 StoredDeclsMap &Map = *DC->LookupPtr;
716
717 // If there's an entry in the table the visible decls for this name have
718 // already been deserialized.
719 if (Map.find(Name) == Map.end()) {
720 StoredDeclsList &List = Map[Name];
721 for (unsigned I = 0, N = Decls.size(); I != N; ++I) {
722 if (List.isNull())
723 List.setOnlyValue(Decls[I]);
724 else
725 List.AddSubsequentDecl(Decls[I]);
726 }
727 }
728}
729
Sebastian Redl681d7232010-07-27 00:17:23 +0000730DeclContext::decl_iterator DeclContext::noload_decls_begin() const {
731 return decl_iterator(FirstDecl);
732}
733
734DeclContext::decl_iterator DeclContext::noload_decls_end() const {
735 return decl_iterator();
736}
737
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000738DeclContext::decl_iterator DeclContext::decls_begin() const {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000739 if (hasExternalLexicalStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000740 LoadLexicalDeclsFromExternalStorage();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000741
742 // FIXME: Check whether we need to load some declarations from
743 // external storage.
Mike Stump1eb44332009-09-09 15:08:12 +0000744 return decl_iterator(FirstDecl);
Douglas Gregor6ab35242009-04-09 21:40:53 +0000745}
746
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000747DeclContext::decl_iterator DeclContext::decls_end() const {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000748 if (hasExternalLexicalStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000749 LoadLexicalDeclsFromExternalStorage();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000750
Mike Stump1eb44332009-09-09 15:08:12 +0000751 return decl_iterator();
Douglas Gregor6ab35242009-04-09 21:40:53 +0000752}
753
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000754bool DeclContext::decls_empty() const {
Douglas Gregor8038d512009-04-10 17:25:41 +0000755 if (hasExternalLexicalStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000756 LoadLexicalDeclsFromExternalStorage();
Douglas Gregor8038d512009-04-10 17:25:41 +0000757
758 return !FirstDecl;
759}
760
John McCall9f54ad42009-12-10 09:41:52 +0000761void DeclContext::removeDecl(Decl *D) {
762 assert(D->getLexicalDeclContext() == this &&
763 "decl being removed from non-lexical context");
764 assert((D->NextDeclInContext || D == LastDecl) &&
765 "decl is not in decls list");
766
767 // Remove D from the decl chain. This is O(n) but hopefully rare.
768 if (D == FirstDecl) {
769 if (D == LastDecl)
770 FirstDecl = LastDecl = 0;
771 else
772 FirstDecl = D->NextDeclInContext;
773 } else {
774 for (Decl *I = FirstDecl; true; I = I->NextDeclInContext) {
775 assert(I && "decl not found in linked list");
776 if (I->NextDeclInContext == D) {
777 I->NextDeclInContext = D->NextDeclInContext;
778 if (D == LastDecl) LastDecl = I;
779 break;
780 }
781 }
782 }
783
784 // Mark that D is no longer in the decl chain.
785 D->NextDeclInContext = 0;
786
787 // Remove D from the lookup table if necessary.
788 if (isa<NamedDecl>(D)) {
789 NamedDecl *ND = cast<NamedDecl>(D);
790
John McCall0c01d182010-03-24 05:22:00 +0000791 StoredDeclsMap *Map = getPrimaryContext()->LookupPtr;
792 if (!Map) return;
John McCall9f54ad42009-12-10 09:41:52 +0000793
John McCall9f54ad42009-12-10 09:41:52 +0000794 StoredDeclsMap::iterator Pos = Map->find(ND->getDeclName());
795 assert(Pos != Map->end() && "no lookup entry for decl");
796 Pos->second.remove(ND);
797 }
798}
799
John McCall3f9a8a62009-08-11 06:59:38 +0000800void DeclContext::addHiddenDecl(Decl *D) {
Chris Lattner7f0be132009-02-20 00:56:18 +0000801 assert(D->getLexicalDeclContext() == this &&
802 "Decl inserted into wrong lexical context");
Mike Stump1eb44332009-09-09 15:08:12 +0000803 assert(!D->getNextDeclInContext() && D != LastDecl &&
Douglas Gregor6037fcb2009-01-09 19:42:16 +0000804 "Decl already inserted into a DeclContext");
805
806 if (FirstDecl) {
Chris Lattner244a67d2009-03-28 06:04:26 +0000807 LastDecl->NextDeclInContext = D;
Douglas Gregor6037fcb2009-01-09 19:42:16 +0000808 LastDecl = D;
809 } else {
810 FirstDecl = LastDecl = D;
811 }
Douglas Gregor27c08ab2010-09-27 22:06:20 +0000812
813 // Notify a C++ record declaration that we've added a member, so it can
814 // update it's class-specific state.
815 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(this))
816 Record->addedMember(D);
John McCall3f9a8a62009-08-11 06:59:38 +0000817}
818
819void DeclContext::addDecl(Decl *D) {
820 addHiddenDecl(D);
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000821
822 if (NamedDecl *ND = dyn_cast<NamedDecl>(D))
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000823 ND->getDeclContext()->makeDeclVisibleInContext(ND);
Douglas Gregor44b43212008-12-11 16:49:14 +0000824}
825
Douglas Gregor074149e2009-01-05 19:45:36 +0000826/// buildLookup - Build the lookup data structure with all of the
827/// declarations in DCtx (and any other contexts linked to it or
828/// transparent contexts nested within it).
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000829void DeclContext::buildLookup(DeclContext *DCtx) {
Douglas Gregor074149e2009-01-05 19:45:36 +0000830 for (; DCtx; DCtx = DCtx->getNextContext()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000831 for (decl_iterator D = DCtx->decls_begin(),
832 DEnd = DCtx->decls_end();
Douglas Gregor4f3b8f82009-01-06 07:17:58 +0000833 D != DEnd; ++D) {
John McCall3f9a8a62009-08-11 06:59:38 +0000834 // Insert this declaration into the lookup structure, but only
835 // if it's semantically in its decl context. During non-lazy
836 // lookup building, this is implicitly enforced by addDecl.
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000837 if (NamedDecl *ND = dyn_cast<NamedDecl>(*D))
John McCall3f9a8a62009-08-11 06:59:38 +0000838 if (D->getDeclContext() == DCtx)
839 makeDeclVisibleInContextImpl(ND);
Douglas Gregor074149e2009-01-05 19:45:36 +0000840
Ted Kremenekc32b1d82009-11-17 22:58:30 +0000841 // Insert any forward-declared Objective-C interfaces into the lookup
842 // data structure.
843 if (ObjCClassDecl *Class = dyn_cast<ObjCClassDecl>(*D))
844 for (ObjCClassDecl::iterator I = Class->begin(), IEnd = Class->end();
845 I != IEnd; ++I)
Ted Kremenek321c22f2009-11-18 00:28:11 +0000846 makeDeclVisibleInContextImpl(I->getInterface());
Ted Kremenekc32b1d82009-11-17 22:58:30 +0000847
Sebastian Redl410c4f22010-08-31 20:53:31 +0000848 // If this declaration is itself a transparent declaration context or
849 // inline namespace, add its members (recursively).
Douglas Gregor074149e2009-01-05 19:45:36 +0000850 if (DeclContext *InnerCtx = dyn_cast<DeclContext>(*D))
Sebastian Redl410c4f22010-08-31 20:53:31 +0000851 if (InnerCtx->isTransparentContext() || InnerCtx->isInlineNamespace())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000852 buildLookup(InnerCtx->getPrimaryContext());
Douglas Gregor074149e2009-01-05 19:45:36 +0000853 }
854 }
855}
856
Mike Stump1eb44332009-09-09 15:08:12 +0000857DeclContext::lookup_result
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000858DeclContext::lookup(DeclarationName Name) {
Steve Naroff0701bbb2009-01-08 17:28:14 +0000859 DeclContext *PrimaryContext = getPrimaryContext();
Douglas Gregor44b43212008-12-11 16:49:14 +0000860 if (PrimaryContext != this)
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000861 return PrimaryContext->lookup(Name);
Douglas Gregor44b43212008-12-11 16:49:14 +0000862
John McCall76bd1f32010-06-01 09:23:16 +0000863 if (hasExternalVisibleStorage()) {
864 // Check to see if we've already cached the lookup results.
865 if (LookupPtr) {
866 StoredDeclsMap::iterator I = LookupPtr->find(Name);
867 if (I != LookupPtr->end())
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +0000868 return I->second.getLookupResult();
John McCall76bd1f32010-06-01 09:23:16 +0000869 }
870
871 ExternalASTSource *Source = getParentASTContext().getExternalSource();
872 return Source->FindExternalVisibleDeclsByName(this, Name);
873 }
Douglas Gregor2cf26342009-04-09 22:27:44 +0000874
Douglas Gregor3fc749d2008-12-23 00:26:44 +0000875 /// If there is no lookup data structure, build one now by walking
Douglas Gregor44b43212008-12-11 16:49:14 +0000876 /// all of the linked DeclContexts (in declaration order!) and
877 /// inserting their values.
Douglas Gregorc36c5402009-04-09 17:29:08 +0000878 if (!LookupPtr) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000879 buildLookup(this);
Douglas Gregor44b43212008-12-11 16:49:14 +0000880
Douglas Gregorc36c5402009-04-09 17:29:08 +0000881 if (!LookupPtr)
Douglas Gregora5fdd9c2010-05-11 06:18:17 +0000882 return lookup_result(lookup_iterator(0), lookup_iterator(0));
Douglas Gregorc36c5402009-04-09 17:29:08 +0000883 }
Douglas Gregor44b43212008-12-11 16:49:14 +0000884
John McCall0c01d182010-03-24 05:22:00 +0000885 StoredDeclsMap::iterator Pos = LookupPtr->find(Name);
886 if (Pos == LookupPtr->end())
Douglas Gregora5fdd9c2010-05-11 06:18:17 +0000887 return lookup_result(lookup_iterator(0), lookup_iterator(0));
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +0000888 return Pos->second.getLookupResult();
Douglas Gregor44b43212008-12-11 16:49:14 +0000889}
890
Mike Stump1eb44332009-09-09 15:08:12 +0000891DeclContext::lookup_const_result
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000892DeclContext::lookup(DeclarationName Name) const {
893 return const_cast<DeclContext*>(this)->lookup(Name);
Douglas Gregor44b43212008-12-11 16:49:14 +0000894}
895
Sebastian Redl7a126a42010-08-31 00:36:30 +0000896DeclContext *DeclContext::getRedeclContext() {
Chris Lattner0cf2b192009-03-27 19:19:59 +0000897 DeclContext *Ctx = this;
Sebastian Redl410c4f22010-08-31 20:53:31 +0000898 // Skip through transparent contexts.
899 while (Ctx->isTransparentContext())
Douglas Gregorce356072009-01-06 23:51:29 +0000900 Ctx = Ctx->getParent();
901 return Ctx;
902}
903
Douglas Gregor88b70942009-02-25 22:02:03 +0000904DeclContext *DeclContext::getEnclosingNamespaceContext() {
905 DeclContext *Ctx = this;
906 // Skip through non-namespace, non-translation-unit contexts.
Sebastian Redl51a8a372010-08-31 00:36:23 +0000907 while (!Ctx->isFileContext())
Douglas Gregor88b70942009-02-25 22:02:03 +0000908 Ctx = Ctx->getParent();
909 return Ctx->getPrimaryContext();
910}
911
Sebastian Redl7a126a42010-08-31 00:36:30 +0000912bool DeclContext::InEnclosingNamespaceSetOf(const DeclContext *O) const {
913 // For non-file contexts, this is equivalent to Equals.
914 if (!isFileContext())
915 return O->Equals(this);
916
917 do {
918 if (O->Equals(this))
919 return true;
920
921 const NamespaceDecl *NS = dyn_cast<NamespaceDecl>(O);
922 if (!NS || !NS->isInline())
923 break;
924 O = NS->getParent();
925 } while (O);
926
927 return false;
928}
929
John McCallab88d972009-08-31 22:39:49 +0000930void DeclContext::makeDeclVisibleInContext(NamedDecl *D, bool Recoverable) {
Douglas Gregorcc636682009-02-17 23:15:12 +0000931 // FIXME: This feels like a hack. Should DeclarationName support
932 // template-ids, or is there a better way to keep specializations
933 // from being visible?
934 if (isa<ClassTemplateSpecializationDecl>(D))
935 return;
Eli Friedman6bc20132009-12-08 05:40:03 +0000936 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
937 if (FD->isFunctionTemplateSpecialization())
938 return;
Douglas Gregorcc636682009-02-17 23:15:12 +0000939
Steve Naroff0701bbb2009-01-08 17:28:14 +0000940 DeclContext *PrimaryContext = getPrimaryContext();
Douglas Gregor44b43212008-12-11 16:49:14 +0000941 if (PrimaryContext != this) {
John McCallab88d972009-08-31 22:39:49 +0000942 PrimaryContext->makeDeclVisibleInContext(D, Recoverable);
Douglas Gregor44b43212008-12-11 16:49:14 +0000943 return;
944 }
945
946 // If we already have a lookup data structure, perform the insertion
Argyrios Kyrtzidis5586b012010-07-04 21:44:25 +0000947 // into it. If we haven't deserialized externally stored decls, deserialize
948 // them so we can add the decl. Otherwise, be lazy and don't build that
949 // structure until someone asks for it.
950 if (LookupPtr || !Recoverable || hasExternalVisibleStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000951 makeDeclVisibleInContextImpl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +0000952
Sebastian Redl410c4f22010-08-31 20:53:31 +0000953 // If we are a transparent context or inline namespace, insert into our
954 // parent context, too. This operation is recursive.
955 if (isTransparentContext() || isInlineNamespace())
John McCallab88d972009-08-31 22:39:49 +0000956 getParent()->makeDeclVisibleInContext(D, Recoverable);
Argyrios Kyrtzidis100050b2010-10-28 07:38:51 +0000957
958 Decl *DCAsDecl = cast<Decl>(this);
959 // Notify that a decl was made visible unless it's a Tag being defined.
960 if (!(isa<TagDecl>(DCAsDecl) && cast<TagDecl>(DCAsDecl)->isBeingDefined()))
961 if (ASTMutationListener *L = DCAsDecl->getASTMutationListener())
962 L->AddedVisibleDecl(this, D);
Douglas Gregor44b43212008-12-11 16:49:14 +0000963}
964
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000965void DeclContext::makeDeclVisibleInContextImpl(NamedDecl *D) {
Douglas Gregor074149e2009-01-05 19:45:36 +0000966 // Skip unnamed declarations.
967 if (!D->getDeclName())
968 return;
969
Douglas Gregorcc636682009-02-17 23:15:12 +0000970 // FIXME: This feels like a hack. Should DeclarationName support
971 // template-ids, or is there a better way to keep specializations
972 // from being visible?
973 if (isa<ClassTemplateSpecializationDecl>(D))
974 return;
975
Argyrios Kyrtzidis5586b012010-07-04 21:44:25 +0000976 ASTContext *C = 0;
977 if (!LookupPtr) {
978 C = &getParentASTContext();
979 CreateStoredDeclsMap(*C);
980 }
981
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +0000982 // If there is an external AST source, load any declarations it knows about
983 // with this declaration's name.
984 // If the lookup table contains an entry about this name it means that we
985 // have already checked the external source.
986 if (ExternalASTSource *Source = getParentASTContext().getExternalSource())
987 if (hasExternalVisibleStorage() &&
988 LookupPtr->find(D->getDeclName()) == LookupPtr->end())
989 Source->FindExternalVisibleDeclsByName(this, D->getDeclName());
990
Douglas Gregor44b43212008-12-11 16:49:14 +0000991 // Insert this declaration into the map.
John McCall0c01d182010-03-24 05:22:00 +0000992 StoredDeclsList &DeclNameEntries = (*LookupPtr)[D->getDeclName()];
Chris Lattner67762a32009-02-20 01:44:05 +0000993 if (DeclNameEntries.isNull()) {
994 DeclNameEntries.setOnlyValue(D);
Chris Lattnerbd6c8002009-02-19 07:00:44 +0000995 return;
Douglas Gregor44b43212008-12-11 16:49:14 +0000996 }
Chris Lattner91942502009-02-20 00:55:03 +0000997
Chris Lattnerbdc3d002009-02-20 01:10:07 +0000998 // If it is possible that this is a redeclaration, check to see if there is
999 // already a decl for which declarationReplaces returns true. If there is
1000 // one, just replace it and return.
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +00001001 if (DeclNameEntries.HandleRedeclaration(D))
Chris Lattner67762a32009-02-20 01:44:05 +00001002 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001003
Chris Lattnerbd6c8002009-02-19 07:00:44 +00001004 // Put this declaration into the appropriate slot.
Chris Lattner67762a32009-02-20 01:44:05 +00001005 DeclNameEntries.AddSubsequentDecl(D);
Douglas Gregor44b43212008-12-11 16:49:14 +00001006}
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001007
Argyrios Kyrtzidisa60786b2010-08-20 23:35:55 +00001008void DeclContext::MaterializeVisibleDeclsFromExternalStorage() {
1009 ExternalASTSource *Source = getParentASTContext().getExternalSource();
1010 assert(hasExternalVisibleStorage() && Source && "No external storage?");
1011
1012 if (!LookupPtr)
1013 CreateStoredDeclsMap(getParentASTContext());
1014 Source->MaterializeVisibleDecls(this);
1015}
1016
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001017/// Returns iterator range [First, Last) of UsingDirectiveDecls stored within
1018/// this context.
Mike Stump1eb44332009-09-09 15:08:12 +00001019DeclContext::udir_iterator_range
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001020DeclContext::getUsingDirectives() const {
1021 lookup_const_result Result = lookup(UsingDirectiveDecl::getName());
Douglas Gregor2a3009a2009-02-03 19:21:40 +00001022 return udir_iterator_range(reinterpret_cast<udir_iterator>(Result.first),
1023 reinterpret_cast<udir_iterator>(Result.second));
1024}
Douglas Gregor2cf26342009-04-09 22:27:44 +00001025
Ted Kremenek3478eb62010-02-11 07:12:28 +00001026//===----------------------------------------------------------------------===//
1027// Creation and Destruction of StoredDeclsMaps. //
1028//===----------------------------------------------------------------------===//
1029
John McCall0c01d182010-03-24 05:22:00 +00001030StoredDeclsMap *DeclContext::CreateStoredDeclsMap(ASTContext &C) const {
1031 assert(!LookupPtr && "context already has a decls map");
1032 assert(getPrimaryContext() == this &&
1033 "creating decls map on non-primary context");
1034
1035 StoredDeclsMap *M;
1036 bool Dependent = isDependentContext();
1037 if (Dependent)
1038 M = new DependentStoredDeclsMap();
1039 else
1040 M = new StoredDeclsMap();
1041 M->Previous = C.LastSDM;
1042 C.LastSDM = llvm::PointerIntPair<StoredDeclsMap*,1>(M, Dependent);
1043 LookupPtr = M;
Ted Kremenek3478eb62010-02-11 07:12:28 +00001044 return M;
1045}
1046
1047void ASTContext::ReleaseDeclContextMaps() {
John McCall0c01d182010-03-24 05:22:00 +00001048 // It's okay to delete DependentStoredDeclsMaps via a StoredDeclsMap
1049 // pointer because the subclass doesn't add anything that needs to
1050 // be deleted.
John McCall0c01d182010-03-24 05:22:00 +00001051 StoredDeclsMap::DestroyAll(LastSDM.getPointer(), LastSDM.getInt());
1052}
1053
1054void StoredDeclsMap::DestroyAll(StoredDeclsMap *Map, bool Dependent) {
1055 while (Map) {
1056 // Advance the iteration before we invalidate memory.
1057 llvm::PointerIntPair<StoredDeclsMap*,1> Next = Map->Previous;
1058
1059 if (Dependent)
1060 delete static_cast<DependentStoredDeclsMap*>(Map);
1061 else
1062 delete Map;
1063
1064 Map = Next.getPointer();
1065 Dependent = Next.getInt();
1066 }
1067}
1068
John McCall0c01d182010-03-24 05:22:00 +00001069DependentDiagnostic *DependentDiagnostic::Create(ASTContext &C,
1070 DeclContext *Parent,
1071 const PartialDiagnostic &PDiag) {
1072 assert(Parent->isDependentContext()
1073 && "cannot iterate dependent diagnostics of non-dependent context");
1074 Parent = Parent->getPrimaryContext();
1075 if (!Parent->LookupPtr)
1076 Parent->CreateStoredDeclsMap(C);
1077
1078 DependentStoredDeclsMap *Map
1079 = static_cast<DependentStoredDeclsMap*>(Parent->LookupPtr);
1080
Douglas Gregorb8365182010-03-29 23:56:53 +00001081 // Allocate the copy of the PartialDiagnostic via the ASTContext's
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00001082 // BumpPtrAllocator, rather than the ASTContext itself.
Douglas Gregorb8365182010-03-29 23:56:53 +00001083 PartialDiagnostic::Storage *DiagStorage = 0;
1084 if (PDiag.hasStorage())
1085 DiagStorage = new (C) PartialDiagnostic::Storage;
1086
1087 DependentDiagnostic *DD = new (C) DependentDiagnostic(PDiag, DiagStorage);
John McCall0c01d182010-03-24 05:22:00 +00001088
1089 // TODO: Maybe we shouldn't reverse the order during insertion.
1090 DD->NextDiagnostic = Map->FirstDiagnostic;
1091 Map->FirstDiagnostic = DD;
1092
1093 return DD;
Ted Kremenek3478eb62010-02-11 07:12:28 +00001094}