blob: 222adcb28e4ee5139dd9f2498800e92522f440e2 [file] [log] [blame]
Eli Friedman56d29372008-06-07 16:52:53 +00001//===--- DeclBase.cpp - Declaration AST Node Implementation ---------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Decl and DeclContext classes.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/AST/DeclBase.h"
Douglas Gregor64650af2009-02-02 23:39:07 +000015#include "clang/AST/Decl.h"
Douglas Gregorc2ee10d2009-04-07 17:20:56 +000016#include "clang/AST/DeclContextInternals.h"
Argyrios Kyrtzidisd3bb44f2008-06-09 21:05:31 +000017#include "clang/AST/DeclCXX.h"
Douglas Gregoraaba5e32009-02-04 19:02:06 +000018#include "clang/AST/DeclObjC.h"
19#include "clang/AST/DeclTemplate.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000020#include "clang/AST/ExternalASTSource.h"
Eli Friedman56d29372008-06-07 16:52:53 +000021#include "clang/AST/ASTContext.h"
Douglas Gregor44b43212008-12-11 16:49:14 +000022#include "clang/AST/Type.h"
Sebastian Redld3a413d2009-04-26 20:35:05 +000023#include "clang/AST/Stmt.h"
24#include "clang/AST/StmtCXX.h"
Eli Friedman56d29372008-06-07 16:52:53 +000025#include "llvm/ADT/DenseMap.h"
Chris Lattner49f28ca2009-03-05 08:00:35 +000026#include "llvm/Support/raw_ostream.h"
Douglas Gregor6ed40e32008-12-23 21:05:05 +000027#include <algorithm>
Chris Lattner3daed522009-03-02 22:20:04 +000028#include <cstdio>
Douglas Gregor3fc749d2008-12-23 00:26:44 +000029#include <vector>
Eli Friedman56d29372008-06-07 16:52:53 +000030using namespace clang;
31
32//===----------------------------------------------------------------------===//
33// Statistics
34//===----------------------------------------------------------------------===//
35
Douglas Gregor64650af2009-02-02 23:39:07 +000036#define DECL(Derived, Base) static int n##Derived##s = 0;
37#include "clang/AST/DeclNodes.def"
Eli Friedman56d29372008-06-07 16:52:53 +000038
39static bool StatSwitch = false;
40
Eli Friedman56d29372008-06-07 16:52:53 +000041const char *Decl::getDeclKindName() const {
42 switch (DeclKind) {
Douglas Gregor64650af2009-02-02 23:39:07 +000043 default: assert(0 && "Declaration not in DeclNodes.def!");
44#define DECL(Derived, Base) case Derived: return #Derived;
45#include "clang/AST/DeclNodes.def"
Eli Friedman56d29372008-06-07 16:52:53 +000046 }
47}
48
Steve Naroff0a473932009-01-20 19:53:53 +000049const char *DeclContext::getDeclKindName() const {
50 switch (DeclKind) {
Douglas Gregor64650af2009-02-02 23:39:07 +000051 default: assert(0 && "Declaration context not in DeclNodes.def!");
Argyrios Kyrtzidis1ad4dd72009-02-16 14:28:33 +000052#define DECL(Derived, Base) case Decl::Derived: return #Derived;
Douglas Gregor64650af2009-02-02 23:39:07 +000053#include "clang/AST/DeclNodes.def"
Steve Naroff0a473932009-01-20 19:53:53 +000054 }
55}
56
Eli Friedman56d29372008-06-07 16:52:53 +000057bool Decl::CollectingStats(bool Enable) {
Kovarththanan Rajaratnam2024f4d2009-11-29 14:54:35 +000058 if (Enable) StatSwitch = true;
Eli Friedman56d29372008-06-07 16:52:53 +000059 return StatSwitch;
60}
61
62void Decl::PrintStats() {
63 fprintf(stderr, "*** Decl Stats:\n");
Mike Stump1eb44332009-09-09 15:08:12 +000064
Douglas Gregor64650af2009-02-02 23:39:07 +000065 int totalDecls = 0;
66#define DECL(Derived, Base) totalDecls += n##Derived##s;
67#include "clang/AST/DeclNodes.def"
68 fprintf(stderr, " %d decls total.\n", totalDecls);
Mike Stump1eb44332009-09-09 15:08:12 +000069
Douglas Gregor64650af2009-02-02 23:39:07 +000070 int totalBytes = 0;
71#define DECL(Derived, Base) \
72 if (n##Derived##s > 0) { \
73 totalBytes += (int)(n##Derived##s * sizeof(Derived##Decl)); \
74 fprintf(stderr, " %d " #Derived " decls, %d each (%d bytes)\n", \
75 n##Derived##s, (int)sizeof(Derived##Decl), \
76 (int)(n##Derived##s * sizeof(Derived##Decl))); \
77 }
78#include "clang/AST/DeclNodes.def"
Mike Stump1eb44332009-09-09 15:08:12 +000079
Douglas Gregor64650af2009-02-02 23:39:07 +000080 fprintf(stderr, "Total bytes = %d\n", totalBytes);
Eli Friedman56d29372008-06-07 16:52:53 +000081}
82
83void Decl::addDeclKind(Kind k) {
84 switch (k) {
Douglas Gregor64650af2009-02-02 23:39:07 +000085 default: assert(0 && "Declaration not in DeclNodes.def!");
86#define DECL(Derived, Base) case Derived: ++n##Derived##s; break;
87#include "clang/AST/DeclNodes.def"
Eli Friedman56d29372008-06-07 16:52:53 +000088 }
89}
90
Anders Carlsson67e33202009-06-13 00:08:58 +000091bool Decl::isTemplateParameterPack() const {
92 if (const TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(this))
93 return TTP->isParameterPack();
Mike Stump1eb44332009-09-09 15:08:12 +000094
Anders Carlsson67e33202009-06-13 00:08:58 +000095 return false;
96}
97
Douglas Gregore53060f2009-06-25 22:08:12 +000098bool Decl::isFunctionOrFunctionTemplate() const {
John McCall9488ea12009-11-17 05:59:44 +000099 if (const UsingShadowDecl *UD = dyn_cast<UsingShadowDecl>(this))
Anders Carlsson58badb72009-06-26 05:26:50 +0000100 return UD->getTargetDecl()->isFunctionOrFunctionTemplate();
Mike Stump1eb44332009-09-09 15:08:12 +0000101
Douglas Gregore53060f2009-06-25 22:08:12 +0000102 return isa<FunctionDecl>(this) || isa<FunctionTemplateDecl>(this);
103}
104
Douglas Gregor79c22782010-01-16 20:21:20 +0000105bool Decl::isDefinedOutsideFunctionOrMethod() const {
106 for (const DeclContext *DC = getDeclContext();
107 DC && !DC->isTranslationUnit();
108 DC = DC->getParent())
109 if (DC->isFunctionOrMethod())
110 return false;
111
112 return true;
113}
114
115
Eli Friedman56d29372008-06-07 16:52:53 +0000116//===----------------------------------------------------------------------===//
Chris Lattner49f28ca2009-03-05 08:00:35 +0000117// PrettyStackTraceDecl Implementation
118//===----------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +0000119
Chris Lattner49f28ca2009-03-05 08:00:35 +0000120void PrettyStackTraceDecl::print(llvm::raw_ostream &OS) const {
121 SourceLocation TheLoc = Loc;
122 if (TheLoc.isInvalid() && TheDecl)
123 TheLoc = TheDecl->getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000124
Chris Lattner49f28ca2009-03-05 08:00:35 +0000125 if (TheLoc.isValid()) {
126 TheLoc.print(OS, SM);
127 OS << ": ";
128 }
129
130 OS << Message;
131
Daniel Dunbarc5236562009-11-21 09:05:59 +0000132 if (const NamedDecl *DN = dyn_cast_or_null<NamedDecl>(TheDecl))
Chris Lattner49f28ca2009-03-05 08:00:35 +0000133 OS << " '" << DN->getQualifiedNameAsString() << '\'';
134 OS << '\n';
135}
Mike Stump1eb44332009-09-09 15:08:12 +0000136
Chris Lattner49f28ca2009-03-05 08:00:35 +0000137//===----------------------------------------------------------------------===//
Eli Friedman56d29372008-06-07 16:52:53 +0000138// Decl Implementation
139//===----------------------------------------------------------------------===//
140
Chris Lattner769dbdf2009-03-27 20:18:19 +0000141// Out-of-line virtual method providing a home for Decl.
142Decl::~Decl() {
Chris Lattner769dbdf2009-03-27 20:18:19 +0000143 assert(!HasAttrs && "attributes should have been freed by Destroy");
144}
145
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000146void Decl::setDeclContext(DeclContext *DC) {
147 if (isOutOfSemaDC())
148 delete getMultipleDC();
Mike Stump1eb44332009-09-09 15:08:12 +0000149
Chris Lattneree219fd2009-03-29 06:06:59 +0000150 DeclCtx = DC;
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000151}
152
153void Decl::setLexicalDeclContext(DeclContext *DC) {
154 if (DC == getLexicalDeclContext())
155 return;
156
157 if (isInSemaDC()) {
Ted Kremenek94a39002009-12-01 00:07:10 +0000158 MultipleDC *MDC = new (getASTContext()) MultipleDC();
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000159 MDC->SemanticDC = getDeclContext();
160 MDC->LexicalDC = DC;
Chris Lattneree219fd2009-03-29 06:06:59 +0000161 DeclCtx = MDC;
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000162 } else {
163 getMultipleDC()->LexicalDC = DC;
164 }
165}
166
John McCall9aeed322009-10-01 00:25:31 +0000167bool Decl::isInAnonymousNamespace() const {
168 const DeclContext *DC = getDeclContext();
169 do {
170 if (const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(DC))
171 if (ND->isAnonymousNamespace())
172 return true;
173 } while ((DC = DC->getParent()));
174
175 return false;
176}
177
Argyrios Kyrtzidis3708b3d2009-06-29 17:38:40 +0000178TranslationUnitDecl *Decl::getTranslationUnitDecl() {
Argyrios Kyrtzidis9b346692009-06-30 02:34:53 +0000179 if (TranslationUnitDecl *TUD = dyn_cast<TranslationUnitDecl>(this))
180 return TUD;
181
Argyrios Kyrtzidis3708b3d2009-06-29 17:38:40 +0000182 DeclContext *DC = getDeclContext();
183 assert(DC && "This decl is not contained in a translation unit!");
Mike Stump1eb44332009-09-09 15:08:12 +0000184
Argyrios Kyrtzidis3708b3d2009-06-29 17:38:40 +0000185 while (!DC->isTranslationUnit()) {
186 DC = DC->getParent();
187 assert(DC && "This decl is not contained in a translation unit!");
188 }
Mike Stump1eb44332009-09-09 15:08:12 +0000189
Argyrios Kyrtzidis3708b3d2009-06-29 17:38:40 +0000190 return cast<TranslationUnitDecl>(DC);
191}
192
193ASTContext &Decl::getASTContext() const {
Mike Stump1eb44332009-09-09 15:08:12 +0000194 return getTranslationUnitDecl()->getASTContext();
Argyrios Kyrtzidis3708b3d2009-06-29 17:38:40 +0000195}
196
Tanya Lattner12ead492010-02-17 02:17:21 +0000197bool Decl::isUsed() const {
198 if (Used)
199 return true;
200
201 // Check for used attribute.
202 if (hasAttr<UsedAttr>())
203 return true;
204
205 // Check redeclarations for used attribute.
206 for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) {
207 if (I->hasAttr<UsedAttr>() || I->Used)
208 return true;
209 }
210
211 return false;
212}
213
214
Chris Lattner769dbdf2009-03-27 20:18:19 +0000215unsigned Decl::getIdentifierNamespaceForKind(Kind DeclKind) {
216 switch (DeclKind) {
John McCall9488ea12009-11-17 05:59:44 +0000217 case Function:
218 case CXXMethod:
219 case CXXConstructor:
220 case CXXDestructor:
221 case CXXConversion:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000222 case Typedef:
223 case EnumConstant:
224 case Var:
225 case ImplicitParam:
226 case ParmVar:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000227 case NonTypeTemplateParm:
228 case ObjCMethod:
229 case ObjCContainer:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000230 case ObjCInterface:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000231 case ObjCProperty:
232 case ObjCCompatibleAlias:
233 return IDNS_Ordinary;
John McCall3f9a8a62009-08-11 06:59:38 +0000234
John McCall9488ea12009-11-17 05:59:44 +0000235 case UsingShadow:
236 return 0; // we'll actually overwrite this later
237
John McCall7ba107a2009-11-18 02:36:19 +0000238 case UnresolvedUsingValue:
239 case UnresolvedUsingTypename:
240 return IDNS_Ordinary | IDNS_Using;
John McCall9488ea12009-11-17 05:59:44 +0000241
242 case Using:
243 return IDNS_Using;
244
Chris Lattner769dbdf2009-03-27 20:18:19 +0000245 case ObjCProtocol:
Douglas Gregor8fc463a2009-04-24 00:11:27 +0000246 return IDNS_ObjCProtocol;
Mike Stump1eb44332009-09-09 15:08:12 +0000247
Douglas Gregor8fc463a2009-04-24 00:11:27 +0000248 case ObjCImplementation:
249 return IDNS_ObjCImplementation;
250
Fariborz Jahanian737061f2009-12-11 00:26:36 +0000251 case ObjCCategory:
Douglas Gregor8fc463a2009-04-24 00:11:27 +0000252 case ObjCCategoryImpl:
Fariborz Jahanian737061f2009-12-11 00:26:36 +0000253 return IDNS_ObjCCategoryName;
Douglas Gregor8fc463a2009-04-24 00:11:27 +0000254
Chris Lattner769dbdf2009-03-27 20:18:19 +0000255 case Field:
256 case ObjCAtDefsField:
257 case ObjCIvar:
258 return IDNS_Member;
Mike Stump1eb44332009-09-09 15:08:12 +0000259
Chris Lattner769dbdf2009-03-27 20:18:19 +0000260 case Record:
261 case CXXRecord:
262 case Enum:
263 case TemplateTypeParm:
264 return IDNS_Tag;
Mike Stump1eb44332009-09-09 15:08:12 +0000265
Chris Lattner769dbdf2009-03-27 20:18:19 +0000266 case Namespace:
267 case Template:
268 case FunctionTemplate:
269 case ClassTemplate:
270 case TemplateTemplateParm:
Anders Carlssonfaf0e872009-03-28 23:02:53 +0000271 case NamespaceAlias:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000272 return IDNS_Tag | IDNS_Ordinary;
Mike Stump1eb44332009-09-09 15:08:12 +0000273
Chris Lattner769dbdf2009-03-27 20:18:19 +0000274 // Never have names.
John McCall02cace72009-08-28 07:59:38 +0000275 case Friend:
John McCalldd4a3b02009-09-16 22:47:08 +0000276 case FriendTemplate:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000277 case LinkageSpec:
278 case FileScopeAsm:
279 case StaticAssert:
280 case ObjCClass:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000281 case ObjCPropertyImpl:
282 case ObjCForwardProtocol:
283 case Block:
284 case TranslationUnit:
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000285
Chris Lattner769dbdf2009-03-27 20:18:19 +0000286 // Aren't looked up?
287 case UsingDirective:
288 case ClassTemplateSpecialization:
Douglas Gregorc8ab2562009-05-31 09:31:02 +0000289 case ClassTemplatePartialSpecialization:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000290 return 0;
291 }
John McCall9488ea12009-11-17 05:59:44 +0000292
293 return 0;
Eli Friedman56d29372008-06-07 16:52:53 +0000294}
295
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000296void Decl::addAttr(Attr *NewAttr) {
297 Attr *&ExistingAttr = getASTContext().getDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000298
299 NewAttr->setNext(ExistingAttr);
300 ExistingAttr = NewAttr;
Mike Stump1eb44332009-09-09 15:08:12 +0000301
Eli Friedman56d29372008-06-07 16:52:53 +0000302 HasAttrs = true;
303}
304
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000305void Decl::invalidateAttrs() {
Eli Friedman56d29372008-06-07 16:52:53 +0000306 if (!HasAttrs) return;
Mike Stump1eb44332009-09-09 15:08:12 +0000307
Eli Friedman56d29372008-06-07 16:52:53 +0000308 HasAttrs = false;
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000309 getASTContext().eraseDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000310}
311
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000312const Attr *Decl::getAttrsImpl() const {
Mike Stump1eb44332009-09-09 15:08:12 +0000313 assert(HasAttrs && "getAttrs() should verify this!");
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000314 return getASTContext().getDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000315}
316
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000317void Decl::swapAttrs(Decl *RHS) {
Eli Friedman56d29372008-06-07 16:52:53 +0000318 bool HasLHSAttr = this->HasAttrs;
319 bool HasRHSAttr = RHS->HasAttrs;
Mike Stump1eb44332009-09-09 15:08:12 +0000320
Eli Friedman56d29372008-06-07 16:52:53 +0000321 // Usually, neither decl has attrs, nothing to do.
322 if (!HasLHSAttr && !HasRHSAttr) return;
Mike Stump1eb44332009-09-09 15:08:12 +0000323
Eli Friedman56d29372008-06-07 16:52:53 +0000324 // If 'this' has no attrs, swap the other way.
325 if (!HasLHSAttr)
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000326 return RHS->swapAttrs(this);
Mike Stump1eb44332009-09-09 15:08:12 +0000327
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000328 ASTContext &Context = getASTContext();
Mike Stump1eb44332009-09-09 15:08:12 +0000329
Eli Friedman56d29372008-06-07 16:52:53 +0000330 // Handle the case when both decls have attrs.
331 if (HasRHSAttr) {
Douglas Gregor68584ed2009-06-18 16:11:24 +0000332 std::swap(Context.getDeclAttrs(this), Context.getDeclAttrs(RHS));
Eli Friedman56d29372008-06-07 16:52:53 +0000333 return;
334 }
Mike Stump1eb44332009-09-09 15:08:12 +0000335
Eli Friedman56d29372008-06-07 16:52:53 +0000336 // Otherwise, LHS has an attr and RHS doesn't.
Douglas Gregor68584ed2009-06-18 16:11:24 +0000337 Context.getDeclAttrs(RHS) = Context.getDeclAttrs(this);
338 Context.eraseDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000339 this->HasAttrs = false;
340 RHS->HasAttrs = true;
341}
342
343
Chris Lattnercc581472009-03-04 06:05:19 +0000344void Decl::Destroy(ASTContext &C) {
345 // Free attributes for this decl.
346 if (HasAttrs) {
Douglas Gregor68584ed2009-06-18 16:11:24 +0000347 C.getDeclAttrs(this)->Destroy(C);
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000348 invalidateAttrs();
Chris Lattnercc581472009-03-04 06:05:19 +0000349 HasAttrs = false;
350 }
Mike Stump1eb44332009-09-09 15:08:12 +0000351
Douglas Gregora0fc55f2009-01-13 19:47:12 +0000352#if 0
Douglas Gregor00ad0ef2009-01-20 04:25:11 +0000353 // FIXME: Once ownership is fully understood, we can enable this code
354 if (DeclContext *DC = dyn_cast<DeclContext>(this))
355 DC->decls_begin()->Destroy(C);
Eli Friedman56d29372008-06-07 16:52:53 +0000356
Chris Lattner244a67d2009-03-28 06:04:26 +0000357 // Observe the unrolled recursion. By setting N->NextDeclInContext = 0x0
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000358 // within the loop, only the Destroy method for the first Decl
359 // will deallocate all of the Decls in a chain.
Mike Stump1eb44332009-09-09 15:08:12 +0000360
Chris Lattner244a67d2009-03-28 06:04:26 +0000361 Decl* N = getNextDeclInContext();
Mike Stump1eb44332009-09-09 15:08:12 +0000362
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000363 while (N) {
Chris Lattner244a67d2009-03-28 06:04:26 +0000364 Decl* Tmp = N->getNextDeclInContext();
365 N->NextDeclInContext = 0;
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000366 N->Destroy(C);
367 N = Tmp;
Mike Stump1eb44332009-09-09 15:08:12 +0000368 }
Douglas Gregora0fc55f2009-01-13 19:47:12 +0000369
Ted Kremenek94a39002009-12-01 00:07:10 +0000370 if (isOutOfSemaDC())
371 delete (C) getMultipleDC();
372
Eli Friedman56d29372008-06-07 16:52:53 +0000373 this->~Decl();
Steve Naroff3e970492009-01-27 21:25:57 +0000374 C.Deallocate((void *)this);
Ted Kremenek94a39002009-12-01 00:07:10 +0000375#endif
Eli Friedman56d29372008-06-07 16:52:53 +0000376}
377
Argyrios Kyrtzidis42220c52008-10-12 16:14:48 +0000378Decl *Decl::castFromDeclContext (const DeclContext *D) {
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000379 Decl::Kind DK = D->getDeclKind();
380 switch(DK) {
381#define DECL_CONTEXT(Name) \
382 case Decl::Name: \
383 return static_cast<Name##Decl*>(const_cast<DeclContext*>(D));
384#define DECL_CONTEXT_BASE(Name)
385#include "clang/AST/DeclNodes.def"
386 default:
387#define DECL_CONTEXT_BASE(Name) \
388 if (DK >= Decl::Name##First && DK <= Decl::Name##Last) \
389 return static_cast<Name##Decl*>(const_cast<DeclContext*>(D));
390#include "clang/AST/DeclNodes.def"
391 assert(false && "a decl that inherits DeclContext isn't handled");
392 return 0;
393 }
Argyrios Kyrtzidis42220c52008-10-12 16:14:48 +0000394}
395
396DeclContext *Decl::castToDeclContext(const Decl *D) {
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000397 Decl::Kind DK = D->getKind();
398 switch(DK) {
399#define DECL_CONTEXT(Name) \
400 case Decl::Name: \
401 return static_cast<Name##Decl*>(const_cast<Decl*>(D));
402#define DECL_CONTEXT_BASE(Name)
403#include "clang/AST/DeclNodes.def"
404 default:
405#define DECL_CONTEXT_BASE(Name) \
406 if (DK >= Decl::Name##First && DK <= Decl::Name##Last) \
407 return static_cast<Name##Decl*>(const_cast<Decl*>(D));
408#include "clang/AST/DeclNodes.def"
409 assert(false && "a decl that inherits DeclContext isn't handled");
410 return 0;
411 }
Argyrios Kyrtzidis42220c52008-10-12 16:14:48 +0000412}
413
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000414CompoundStmt* Decl::getCompoundBody() const {
415 return dyn_cast_or_null<CompoundStmt>(getBody());
Sebastian Redld3a413d2009-04-26 20:35:05 +0000416}
417
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000418SourceLocation Decl::getBodyRBrace() const {
419 Stmt *Body = getBody();
Sebastian Redld3a413d2009-04-26 20:35:05 +0000420 if (!Body)
421 return SourceLocation();
422 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Body))
423 return CS->getRBracLoc();
424 assert(isa<CXXTryStmt>(Body) &&
425 "Body can only be CompoundStmt or CXXTryStmt");
426 return cast<CXXTryStmt>(Body)->getSourceRange().getEnd();
427}
428
Anders Carlsson1329c272009-03-25 23:38:06 +0000429#ifndef NDEBUG
430void Decl::CheckAccessDeclContext() const {
John McCall46460a62010-01-20 21:53:11 +0000431 // Suppress this check if any of the following hold:
432 // 1. this is the translation unit (and thus has no parent)
433 // 2. this is a template parameter (and thus doesn't belong to its context)
434 // 3. this is a ParmVarDecl (which can be in a record context during
435 // the brief period between its creation and the creation of the
436 // FunctionDecl)
437 // 4. the context is not a record
Anders Carlsson35eda442009-08-29 20:47:47 +0000438 if (isa<TranslationUnitDecl>(this) ||
439 !isa<CXXRecordDecl>(getDeclContext()))
440 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000441
442 assert(Access != AS_none &&
Anders Carlsson1329c272009-03-25 23:38:06 +0000443 "Access specifier is AS_none inside a record decl");
444}
445
446#endif
447
Eli Friedman56d29372008-06-07 16:52:53 +0000448//===----------------------------------------------------------------------===//
449// DeclContext Implementation
450//===----------------------------------------------------------------------===//
451
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000452bool DeclContext::classof(const Decl *D) {
453 switch (D->getKind()) {
454#define DECL_CONTEXT(Name) case Decl::Name:
455#define DECL_CONTEXT_BASE(Name)
456#include "clang/AST/DeclNodes.def"
457 return true;
458 default:
459#define DECL_CONTEXT_BASE(Name) \
460 if (D->getKind() >= Decl::Name##First && \
461 D->getKind() <= Decl::Name##Last) \
462 return true;
463#include "clang/AST/DeclNodes.def"
464 return false;
465 }
466}
467
Douglas Gregor44b43212008-12-11 16:49:14 +0000468DeclContext::~DeclContext() {
Ted Kremenek3478eb62010-02-11 07:12:28 +0000469 // FIXME: Currently ~ASTContext will delete the StoredDeclsMaps because
470 // ~DeclContext() is not guaranteed to be called when ASTContext uses
471 // a BumpPtrAllocator.
472 // delete static_cast<StoredDeclsMap*>(LookupPtr);
Douglas Gregor44b43212008-12-11 16:49:14 +0000473}
474
475void DeclContext::DestroyDecls(ASTContext &C) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000476 for (decl_iterator D = decls_begin(); D != decls_end(); )
Douglas Gregor00ad0ef2009-01-20 04:25:11 +0000477 (*D++)->Destroy(C);
Douglas Gregor44b43212008-12-11 16:49:14 +0000478}
479
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))
489 if (getParent()->getLookupContext()->isFileContext() &&
490 getLexicalParent()->getLookupContext()->isRecord())
491 return getLexicalParent();
492
493 return getParent();
494}
495
Douglas Gregorbc221632009-05-28 16:34:51 +0000496bool DeclContext::isDependentContext() const {
497 if (isFileContext())
498 return false;
499
Douglas Gregorc8ab2562009-05-31 09:31:02 +0000500 if (isa<ClassTemplatePartialSpecializationDecl>(this))
501 return true;
502
Douglas Gregorbc221632009-05-28 16:34:51 +0000503 if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(this))
504 if (Record->getDescribedClassTemplate())
505 return true;
506
507 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(this))
508 if (Function->getDescribedFunctionTemplate())
509 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000510
Douglas Gregorbc221632009-05-28 16:34:51 +0000511 return getParent() && getParent()->isDependentContext();
512}
513
Douglas Gregor074149e2009-01-05 19:45:36 +0000514bool DeclContext::isTransparentContext() const {
515 if (DeclKind == Decl::Enum)
516 return true; // FIXME: Check for C++0x scoped enums
517 else if (DeclKind == Decl::LinkageSpec)
518 return true;
Douglas Gregor65100792009-02-26 00:02:51 +0000519 else if (DeclKind >= Decl::RecordFirst && DeclKind <= Decl::RecordLast)
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000520 return cast<RecordDecl>(this)->isAnonymousStructOrUnion();
Douglas Gregor074149e2009-01-05 19:45:36 +0000521 else if (DeclKind == Decl::Namespace)
522 return false; // FIXME: Check for C++0x inline namespaces
523
524 return false;
525}
526
Douglas Gregor6dd38da2009-08-27 06:03:53 +0000527bool DeclContext::Encloses(DeclContext *DC) {
528 if (getPrimaryContext() != this)
529 return getPrimaryContext()->Encloses(DC);
Mike Stump1eb44332009-09-09 15:08:12 +0000530
Douglas Gregor6dd38da2009-08-27 06:03:53 +0000531 for (; DC; DC = DC->getParent())
532 if (DC->getPrimaryContext() == this)
533 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000534 return false;
Douglas Gregor6dd38da2009-08-27 06:03:53 +0000535}
536
Steve Naroff0701bbb2009-01-08 17:28:14 +0000537DeclContext *DeclContext::getPrimaryContext() {
Douglas Gregor44b43212008-12-11 16:49:14 +0000538 switch (DeclKind) {
Douglas Gregor44b43212008-12-11 16:49:14 +0000539 case Decl::TranslationUnit:
Douglas Gregor074149e2009-01-05 19:45:36 +0000540 case Decl::LinkageSpec:
Mike Stump1eb44332009-09-09 15:08:12 +0000541 case Decl::Block:
Douglas Gregor44b43212008-12-11 16:49:14 +0000542 // There is only one DeclContext for these entities.
543 return this;
544
545 case Decl::Namespace:
546 // The original namespace is our primary context.
547 return static_cast<NamespaceDecl*>(this)->getOriginalNamespace();
548
Douglas Gregor44b43212008-12-11 16:49:14 +0000549 case Decl::ObjCMethod:
550 return this;
551
552 case Decl::ObjCInterface:
Steve Naroff0701bbb2009-01-08 17:28:14 +0000553 case Decl::ObjCProtocol:
554 case Decl::ObjCCategory:
Douglas Gregor44b43212008-12-11 16:49:14 +0000555 // FIXME: Can Objective-C interfaces be forward-declared?
556 return this;
557
Steve Naroff0701bbb2009-01-08 17:28:14 +0000558 case Decl::ObjCImplementation:
559 case Decl::ObjCCategoryImpl:
560 return this;
561
Douglas Gregor44b43212008-12-11 16:49:14 +0000562 default:
Douglas Gregorcc636682009-02-17 23:15:12 +0000563 if (DeclKind >= Decl::TagFirst && DeclKind <= Decl::TagLast) {
564 // If this is a tag type that has a definition or is currently
565 // being defined, that definition is our primary context.
Ted Kremenek6217b802009-07-29 21:53:49 +0000566 if (const TagType *TagT =cast<TagDecl>(this)->TypeForDecl->getAs<TagType>())
Mike Stump1eb44332009-09-09 15:08:12 +0000567 if (TagT->isBeingDefined() ||
Douglas Gregorcc636682009-02-17 23:15:12 +0000568 (TagT->getDecl() && TagT->getDecl()->isDefinition()))
569 return TagT->getDecl();
570 return this;
571 }
572
Douglas Gregor44b43212008-12-11 16:49:14 +0000573 assert(DeclKind >= Decl::FunctionFirst && DeclKind <= Decl::FunctionLast &&
574 "Unknown DeclContext kind");
575 return this;
576 }
577}
578
579DeclContext *DeclContext::getNextContext() {
580 switch (DeclKind) {
Douglas Gregor44b43212008-12-11 16:49:14 +0000581 case Decl::Namespace:
582 // Return the next namespace
583 return static_cast<NamespaceDecl*>(this)->getNextNamespace();
584
585 default:
Douglas Gregor44b43212008-12-11 16:49:14 +0000586 return 0;
587 }
588}
589
Douglas Gregor2cf26342009-04-09 22:27:44 +0000590/// \brief Load the declarations within this lexical storage from an
591/// external source.
Mike Stump1eb44332009-09-09 15:08:12 +0000592void
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000593DeclContext::LoadLexicalDeclsFromExternalStorage() const {
594 ExternalASTSource *Source = getParentASTContext().getExternalSource();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000595 assert(hasExternalLexicalStorage() && Source && "No external storage?");
596
Eli Friedmanb0156ea2009-04-27 23:43:36 +0000597 llvm::SmallVector<uint32_t, 64> Decls;
Mike Stump1eb44332009-09-09 15:08:12 +0000598 if (Source->ReadDeclsLexicallyInContext(const_cast<DeclContext *>(this),
Douglas Gregor2cf26342009-04-09 22:27:44 +0000599 Decls))
600 return;
601
602 // There is no longer any lexical storage in this context
603 ExternalLexicalStorage = false;
604
605 if (Decls.empty())
606 return;
607
608 // Resolve all of the declaration IDs into declarations, building up
609 // a chain of declarations via the Decl::NextDeclInContext field.
610 Decl *FirstNewDecl = 0;
611 Decl *PrevDecl = 0;
612 for (unsigned I = 0, N = Decls.size(); I != N; ++I) {
613 Decl *D = Source->GetDecl(Decls[I]);
614 if (PrevDecl)
615 PrevDecl->NextDeclInContext = D;
616 else
617 FirstNewDecl = D;
618
619 PrevDecl = D;
620 }
621
622 // Splice the newly-read declarations into the beginning of the list
623 // of declarations.
624 PrevDecl->NextDeclInContext = FirstDecl;
625 FirstDecl = FirstNewDecl;
626 if (!LastDecl)
627 LastDecl = PrevDecl;
628}
629
Mike Stump1eb44332009-09-09 15:08:12 +0000630void
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000631DeclContext::LoadVisibleDeclsFromExternalStorage() const {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000632 DeclContext *This = const_cast<DeclContext *>(this);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000633 ExternalASTSource *Source = getParentASTContext().getExternalSource();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000634 assert(hasExternalVisibleStorage() && Source && "No external storage?");
635
636 llvm::SmallVector<VisibleDeclaration, 64> Decls;
637 if (Source->ReadDeclsVisibleInContext(This, Decls))
638 return;
639
640 // There is no longer any visible storage in this context
641 ExternalVisibleStorage = false;
642
643 // Load the declaration IDs for all of the names visible in this
644 // context.
645 assert(!LookupPtr && "Have a lookup map before de-serialization?");
Ted Kremenek3478eb62010-02-11 07:12:28 +0000646 StoredDeclsMap *Map =
647 (StoredDeclsMap*) getParentASTContext().CreateStoredDeclsMap();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000648 LookupPtr = Map;
649 for (unsigned I = 0, N = Decls.size(); I != N; ++I) {
650 (*Map)[Decls[I].Name].setFromDeclIDs(Decls[I].Declarations);
651 }
652}
653
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000654DeclContext::decl_iterator DeclContext::decls_begin() const {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000655 if (hasExternalLexicalStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000656 LoadLexicalDeclsFromExternalStorage();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000657
658 // FIXME: Check whether we need to load some declarations from
659 // external storage.
Mike Stump1eb44332009-09-09 15:08:12 +0000660 return decl_iterator(FirstDecl);
Douglas Gregor6ab35242009-04-09 21:40:53 +0000661}
662
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000663DeclContext::decl_iterator DeclContext::decls_end() const {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000664 if (hasExternalLexicalStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000665 LoadLexicalDeclsFromExternalStorage();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000666
Mike Stump1eb44332009-09-09 15:08:12 +0000667 return decl_iterator();
Douglas Gregor6ab35242009-04-09 21:40:53 +0000668}
669
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000670bool DeclContext::decls_empty() const {
Douglas Gregor8038d512009-04-10 17:25:41 +0000671 if (hasExternalLexicalStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000672 LoadLexicalDeclsFromExternalStorage();
Douglas Gregor8038d512009-04-10 17:25:41 +0000673
674 return !FirstDecl;
675}
676
John McCall9f54ad42009-12-10 09:41:52 +0000677void DeclContext::removeDecl(Decl *D) {
678 assert(D->getLexicalDeclContext() == this &&
679 "decl being removed from non-lexical context");
680 assert((D->NextDeclInContext || D == LastDecl) &&
681 "decl is not in decls list");
682
683 // Remove D from the decl chain. This is O(n) but hopefully rare.
684 if (D == FirstDecl) {
685 if (D == LastDecl)
686 FirstDecl = LastDecl = 0;
687 else
688 FirstDecl = D->NextDeclInContext;
689 } else {
690 for (Decl *I = FirstDecl; true; I = I->NextDeclInContext) {
691 assert(I && "decl not found in linked list");
692 if (I->NextDeclInContext == D) {
693 I->NextDeclInContext = D->NextDeclInContext;
694 if (D == LastDecl) LastDecl = I;
695 break;
696 }
697 }
698 }
699
700 // Mark that D is no longer in the decl chain.
701 D->NextDeclInContext = 0;
702
703 // Remove D from the lookup table if necessary.
704 if (isa<NamedDecl>(D)) {
705 NamedDecl *ND = cast<NamedDecl>(D);
706
707 void *OpaqueMap = getPrimaryContext()->LookupPtr;
708 if (!OpaqueMap) return;
709
710 StoredDeclsMap *Map = static_cast<StoredDeclsMap*>(OpaqueMap);
711 StoredDeclsMap::iterator Pos = Map->find(ND->getDeclName());
712 assert(Pos != Map->end() && "no lookup entry for decl");
713 Pos->second.remove(ND);
714 }
715}
716
John McCall3f9a8a62009-08-11 06:59:38 +0000717void DeclContext::addHiddenDecl(Decl *D) {
Chris Lattner7f0be132009-02-20 00:56:18 +0000718 assert(D->getLexicalDeclContext() == this &&
719 "Decl inserted into wrong lexical context");
Mike Stump1eb44332009-09-09 15:08:12 +0000720 assert(!D->getNextDeclInContext() && D != LastDecl &&
Douglas Gregor6037fcb2009-01-09 19:42:16 +0000721 "Decl already inserted into a DeclContext");
722
723 if (FirstDecl) {
Chris Lattner244a67d2009-03-28 06:04:26 +0000724 LastDecl->NextDeclInContext = D;
Douglas Gregor6037fcb2009-01-09 19:42:16 +0000725 LastDecl = D;
726 } else {
727 FirstDecl = LastDecl = D;
728 }
John McCall3f9a8a62009-08-11 06:59:38 +0000729}
730
731void DeclContext::addDecl(Decl *D) {
732 addHiddenDecl(D);
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000733
734 if (NamedDecl *ND = dyn_cast<NamedDecl>(D))
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000735 ND->getDeclContext()->makeDeclVisibleInContext(ND);
Douglas Gregor44b43212008-12-11 16:49:14 +0000736}
737
Douglas Gregor074149e2009-01-05 19:45:36 +0000738/// buildLookup - Build the lookup data structure with all of the
739/// declarations in DCtx (and any other contexts linked to it or
740/// transparent contexts nested within it).
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000741void DeclContext::buildLookup(DeclContext *DCtx) {
Douglas Gregor074149e2009-01-05 19:45:36 +0000742 for (; DCtx; DCtx = DCtx->getNextContext()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000743 for (decl_iterator D = DCtx->decls_begin(),
744 DEnd = DCtx->decls_end();
Douglas Gregor4f3b8f82009-01-06 07:17:58 +0000745 D != DEnd; ++D) {
John McCall3f9a8a62009-08-11 06:59:38 +0000746 // Insert this declaration into the lookup structure, but only
747 // if it's semantically in its decl context. During non-lazy
748 // lookup building, this is implicitly enforced by addDecl.
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000749 if (NamedDecl *ND = dyn_cast<NamedDecl>(*D))
John McCall3f9a8a62009-08-11 06:59:38 +0000750 if (D->getDeclContext() == DCtx)
751 makeDeclVisibleInContextImpl(ND);
Douglas Gregor074149e2009-01-05 19:45:36 +0000752
Ted Kremenekc32b1d82009-11-17 22:58:30 +0000753 // Insert any forward-declared Objective-C interfaces into the lookup
754 // data structure.
755 if (ObjCClassDecl *Class = dyn_cast<ObjCClassDecl>(*D))
756 for (ObjCClassDecl::iterator I = Class->begin(), IEnd = Class->end();
757 I != IEnd; ++I)
Ted Kremenek321c22f2009-11-18 00:28:11 +0000758 makeDeclVisibleInContextImpl(I->getInterface());
Ted Kremenekc32b1d82009-11-17 22:58:30 +0000759
Douglas Gregor074149e2009-01-05 19:45:36 +0000760 // If this declaration is itself a transparent declaration context,
761 // add its members (recursively).
762 if (DeclContext *InnerCtx = dyn_cast<DeclContext>(*D))
763 if (InnerCtx->isTransparentContext())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000764 buildLookup(InnerCtx->getPrimaryContext());
Douglas Gregor074149e2009-01-05 19:45:36 +0000765 }
766 }
767}
768
Mike Stump1eb44332009-09-09 15:08:12 +0000769DeclContext::lookup_result
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000770DeclContext::lookup(DeclarationName Name) {
Steve Naroff0701bbb2009-01-08 17:28:14 +0000771 DeclContext *PrimaryContext = getPrimaryContext();
Douglas Gregor44b43212008-12-11 16:49:14 +0000772 if (PrimaryContext != this)
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000773 return PrimaryContext->lookup(Name);
Douglas Gregor44b43212008-12-11 16:49:14 +0000774
Douglas Gregor2cf26342009-04-09 22:27:44 +0000775 if (hasExternalVisibleStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000776 LoadVisibleDeclsFromExternalStorage();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000777
Douglas Gregor3fc749d2008-12-23 00:26:44 +0000778 /// If there is no lookup data structure, build one now by walking
Douglas Gregor44b43212008-12-11 16:49:14 +0000779 /// all of the linked DeclContexts (in declaration order!) and
780 /// inserting their values.
Douglas Gregorc36c5402009-04-09 17:29:08 +0000781 if (!LookupPtr) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000782 buildLookup(this);
Douglas Gregor44b43212008-12-11 16:49:14 +0000783
Douglas Gregorc36c5402009-04-09 17:29:08 +0000784 if (!LookupPtr)
Chris Lattner91942502009-02-20 00:55:03 +0000785 return lookup_result(0, 0);
Douglas Gregorc36c5402009-04-09 17:29:08 +0000786 }
Douglas Gregor44b43212008-12-11 16:49:14 +0000787
Douglas Gregorc36c5402009-04-09 17:29:08 +0000788 StoredDeclsMap *Map = static_cast<StoredDeclsMap*>(LookupPtr);
789 StoredDeclsMap::iterator Pos = Map->find(Name);
790 if (Pos == Map->end())
791 return lookup_result(0, 0);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000792 return Pos->second.getLookupResult(getParentASTContext());
Douglas Gregor44b43212008-12-11 16:49:14 +0000793}
794
Mike Stump1eb44332009-09-09 15:08:12 +0000795DeclContext::lookup_const_result
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000796DeclContext::lookup(DeclarationName Name) const {
797 return const_cast<DeclContext*>(this)->lookup(Name);
Douglas Gregor44b43212008-12-11 16:49:14 +0000798}
799
Chris Lattner0cf2b192009-03-27 19:19:59 +0000800DeclContext *DeclContext::getLookupContext() {
801 DeclContext *Ctx = this;
Douglas Gregor72de6672009-01-08 20:45:30 +0000802 // Skip through transparent contexts.
Douglas Gregorce356072009-01-06 23:51:29 +0000803 while (Ctx->isTransparentContext())
804 Ctx = Ctx->getParent();
805 return Ctx;
806}
807
Douglas Gregor88b70942009-02-25 22:02:03 +0000808DeclContext *DeclContext::getEnclosingNamespaceContext() {
809 DeclContext *Ctx = this;
810 // Skip through non-namespace, non-translation-unit contexts.
811 while (!Ctx->isFileContext() || Ctx->isTransparentContext())
812 Ctx = Ctx->getParent();
813 return Ctx->getPrimaryContext();
814}
815
John McCallab88d972009-08-31 22:39:49 +0000816void DeclContext::makeDeclVisibleInContext(NamedDecl *D, bool Recoverable) {
Douglas Gregorcc636682009-02-17 23:15:12 +0000817 // FIXME: This feels like a hack. Should DeclarationName support
818 // template-ids, or is there a better way to keep specializations
819 // from being visible?
820 if (isa<ClassTemplateSpecializationDecl>(D))
821 return;
Eli Friedman6bc20132009-12-08 05:40:03 +0000822 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
823 if (FD->isFunctionTemplateSpecialization())
824 return;
Douglas Gregorcc636682009-02-17 23:15:12 +0000825
Steve Naroff0701bbb2009-01-08 17:28:14 +0000826 DeclContext *PrimaryContext = getPrimaryContext();
Douglas Gregor44b43212008-12-11 16:49:14 +0000827 if (PrimaryContext != this) {
John McCallab88d972009-08-31 22:39:49 +0000828 PrimaryContext->makeDeclVisibleInContext(D, Recoverable);
Douglas Gregor44b43212008-12-11 16:49:14 +0000829 return;
830 }
831
832 // If we already have a lookup data structure, perform the insertion
833 // into it. Otherwise, be lazy and don't build that structure until
834 // someone asks for it.
John McCallab88d972009-08-31 22:39:49 +0000835 if (LookupPtr || !Recoverable)
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000836 makeDeclVisibleInContextImpl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +0000837
Douglas Gregor074149e2009-01-05 19:45:36 +0000838 // If we are a transparent context, insert into our parent context,
839 // too. This operation is recursive.
840 if (isTransparentContext())
John McCallab88d972009-08-31 22:39:49 +0000841 getParent()->makeDeclVisibleInContext(D, Recoverable);
Douglas Gregor44b43212008-12-11 16:49:14 +0000842}
843
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000844void DeclContext::makeDeclVisibleInContextImpl(NamedDecl *D) {
Douglas Gregor074149e2009-01-05 19:45:36 +0000845 // Skip unnamed declarations.
846 if (!D->getDeclName())
847 return;
848
Douglas Gregorcc636682009-02-17 23:15:12 +0000849 // FIXME: This feels like a hack. Should DeclarationName support
850 // template-ids, or is there a better way to keep specializations
851 // from being visible?
852 if (isa<ClassTemplateSpecializationDecl>(D))
853 return;
854
Ted Kremenek3478eb62010-02-11 07:12:28 +0000855 ASTContext *C = 0;
856 if (!LookupPtr) {
857 C = &getParentASTContext();
858 LookupPtr = (StoredDeclsMap*) C->CreateStoredDeclsMap();
859 }
Douglas Gregor44b43212008-12-11 16:49:14 +0000860
861 // Insert this declaration into the map.
Douglas Gregorc36c5402009-04-09 17:29:08 +0000862 StoredDeclsMap &Map = *static_cast<StoredDeclsMap*>(LookupPtr);
Chris Lattner67762a32009-02-20 01:44:05 +0000863 StoredDeclsList &DeclNameEntries = Map[D->getDeclName()];
864 if (DeclNameEntries.isNull()) {
865 DeclNameEntries.setOnlyValue(D);
Chris Lattnerbd6c8002009-02-19 07:00:44 +0000866 return;
Douglas Gregor44b43212008-12-11 16:49:14 +0000867 }
Chris Lattner91942502009-02-20 00:55:03 +0000868
Chris Lattnerbdc3d002009-02-20 01:10:07 +0000869 // If it is possible that this is a redeclaration, check to see if there is
870 // already a decl for which declarationReplaces returns true. If there is
871 // one, just replace it and return.
Ted Kremenek3478eb62010-02-11 07:12:28 +0000872 if (!C)
873 C = &getParentASTContext();
874
875 if (DeclNameEntries.HandleRedeclaration(*C, D))
Chris Lattner67762a32009-02-20 01:44:05 +0000876 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000877
Chris Lattnerbd6c8002009-02-19 07:00:44 +0000878 // Put this declaration into the appropriate slot.
Chris Lattner67762a32009-02-20 01:44:05 +0000879 DeclNameEntries.AddSubsequentDecl(D);
Douglas Gregor44b43212008-12-11 16:49:14 +0000880}
Douglas Gregor2a3009a2009-02-03 19:21:40 +0000881
882/// Returns iterator range [First, Last) of UsingDirectiveDecls stored within
883/// this context.
Mike Stump1eb44332009-09-09 15:08:12 +0000884DeclContext::udir_iterator_range
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000885DeclContext::getUsingDirectives() const {
886 lookup_const_result Result = lookup(UsingDirectiveDecl::getName());
Douglas Gregor2a3009a2009-02-03 19:21:40 +0000887 return udir_iterator_range(reinterpret_cast<udir_iterator>(Result.first),
888 reinterpret_cast<udir_iterator>(Result.second));
889}
Douglas Gregor2cf26342009-04-09 22:27:44 +0000890
891void StoredDeclsList::materializeDecls(ASTContext &Context) {
892 if (isNull())
893 return;
894
895 switch ((DataKind)(Data & 0x03)) {
896 case DK_Decl:
897 case DK_Decl_Vector:
898 break;
899
900 case DK_DeclID: {
901 // Resolve this declaration ID to an actual declaration by
902 // querying the external AST source.
903 unsigned DeclID = Data >> 2;
904
905 ExternalASTSource *Source = Context.getExternalSource();
906 assert(Source && "No external AST source available!");
907
908 Data = reinterpret_cast<uintptr_t>(Source->GetDecl(DeclID));
909 break;
910 }
911
912 case DK_ID_Vector: {
913 // We have a vector of declaration IDs. Resolve all of them to
914 // actual declarations.
915 VectorTy &Vector = *getAsVector();
916 ExternalASTSource *Source = Context.getExternalSource();
917 assert(Source && "No external AST source available!");
918
919 for (unsigned I = 0, N = Vector.size(); I != N; ++I)
920 Vector[I] = reinterpret_cast<uintptr_t>(Source->GetDecl(Vector[I]));
921
922 Data = (Data & ~0x03) | DK_Decl_Vector;
923 break;
924 }
925 }
926}
Ted Kremenek3478eb62010-02-11 07:12:28 +0000927
928//===----------------------------------------------------------------------===//
929// Creation and Destruction of StoredDeclsMaps. //
930//===----------------------------------------------------------------------===//
931
932void *ASTContext::CreateStoredDeclsMap() {
933 StoredDeclsMap *M = new StoredDeclsMap();
934 SDMs.push_back(M);
935 return M;
936}
937
938void ASTContext::ReleaseDeclContextMaps() {
939 for (std::vector<void*>::iterator I = SDMs.begin(), E = SDMs.end(); I!=E; ++I)
940 delete (StoredDeclsMap*) *I;
941}