blob: 76ff83448a0300e3f5be5cdd2119aa4baf537111 [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
Chris Lattner769dbdf2009-03-27 20:18:19 +0000197unsigned Decl::getIdentifierNamespaceForKind(Kind DeclKind) {
198 switch (DeclKind) {
John McCall9488ea12009-11-17 05:59:44 +0000199 case Function:
200 case CXXMethod:
201 case CXXConstructor:
202 case CXXDestructor:
203 case CXXConversion:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000204 case Typedef:
205 case EnumConstant:
206 case Var:
207 case ImplicitParam:
208 case ParmVar:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000209 case NonTypeTemplateParm:
210 case ObjCMethod:
211 case ObjCContainer:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000212 case ObjCInterface:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000213 case ObjCProperty:
214 case ObjCCompatibleAlias:
215 return IDNS_Ordinary;
John McCall3f9a8a62009-08-11 06:59:38 +0000216
John McCall9488ea12009-11-17 05:59:44 +0000217 case UsingShadow:
218 return 0; // we'll actually overwrite this later
219
John McCall7ba107a2009-11-18 02:36:19 +0000220 case UnresolvedUsingValue:
221 case UnresolvedUsingTypename:
222 return IDNS_Ordinary | IDNS_Using;
John McCall9488ea12009-11-17 05:59:44 +0000223
224 case Using:
225 return IDNS_Using;
226
Chris Lattner769dbdf2009-03-27 20:18:19 +0000227 case ObjCProtocol:
Douglas Gregor8fc463a2009-04-24 00:11:27 +0000228 return IDNS_ObjCProtocol;
Mike Stump1eb44332009-09-09 15:08:12 +0000229
Douglas Gregor8fc463a2009-04-24 00:11:27 +0000230 case ObjCImplementation:
231 return IDNS_ObjCImplementation;
232
Fariborz Jahanian737061f2009-12-11 00:26:36 +0000233 case ObjCCategory:
Douglas Gregor8fc463a2009-04-24 00:11:27 +0000234 case ObjCCategoryImpl:
Fariborz Jahanian737061f2009-12-11 00:26:36 +0000235 return IDNS_ObjCCategoryName;
Douglas Gregor8fc463a2009-04-24 00:11:27 +0000236
Chris Lattner769dbdf2009-03-27 20:18:19 +0000237 case Field:
238 case ObjCAtDefsField:
239 case ObjCIvar:
240 return IDNS_Member;
Mike Stump1eb44332009-09-09 15:08:12 +0000241
Chris Lattner769dbdf2009-03-27 20:18:19 +0000242 case Record:
243 case CXXRecord:
244 case Enum:
245 case TemplateTypeParm:
246 return IDNS_Tag;
Mike Stump1eb44332009-09-09 15:08:12 +0000247
Chris Lattner769dbdf2009-03-27 20:18:19 +0000248 case Namespace:
249 case Template:
250 case FunctionTemplate:
251 case ClassTemplate:
252 case TemplateTemplateParm:
Anders Carlssonfaf0e872009-03-28 23:02:53 +0000253 case NamespaceAlias:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000254 return IDNS_Tag | IDNS_Ordinary;
Mike Stump1eb44332009-09-09 15:08:12 +0000255
Chris Lattner769dbdf2009-03-27 20:18:19 +0000256 // Never have names.
John McCall02cace72009-08-28 07:59:38 +0000257 case Friend:
John McCalldd4a3b02009-09-16 22:47:08 +0000258 case FriendTemplate:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000259 case LinkageSpec:
260 case FileScopeAsm:
261 case StaticAssert:
262 case ObjCClass:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000263 case ObjCPropertyImpl:
264 case ObjCForwardProtocol:
265 case Block:
266 case TranslationUnit:
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000267
Chris Lattner769dbdf2009-03-27 20:18:19 +0000268 // Aren't looked up?
269 case UsingDirective:
270 case ClassTemplateSpecialization:
Douglas Gregorc8ab2562009-05-31 09:31:02 +0000271 case ClassTemplatePartialSpecialization:
Chris Lattner769dbdf2009-03-27 20:18:19 +0000272 return 0;
273 }
John McCall9488ea12009-11-17 05:59:44 +0000274
275 return 0;
Eli Friedman56d29372008-06-07 16:52:53 +0000276}
277
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000278void Decl::addAttr(Attr *NewAttr) {
279 Attr *&ExistingAttr = getASTContext().getDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000280
281 NewAttr->setNext(ExistingAttr);
282 ExistingAttr = NewAttr;
Mike Stump1eb44332009-09-09 15:08:12 +0000283
Eli Friedman56d29372008-06-07 16:52:53 +0000284 HasAttrs = true;
285}
286
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000287void Decl::invalidateAttrs() {
Eli Friedman56d29372008-06-07 16:52:53 +0000288 if (!HasAttrs) return;
Mike Stump1eb44332009-09-09 15:08:12 +0000289
Eli Friedman56d29372008-06-07 16:52:53 +0000290 HasAttrs = false;
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000291 getASTContext().eraseDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000292}
293
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000294const Attr *Decl::getAttrsImpl() const {
Mike Stump1eb44332009-09-09 15:08:12 +0000295 assert(HasAttrs && "getAttrs() should verify this!");
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000296 return getASTContext().getDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000297}
298
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000299void Decl::swapAttrs(Decl *RHS) {
Eli Friedman56d29372008-06-07 16:52:53 +0000300 bool HasLHSAttr = this->HasAttrs;
301 bool HasRHSAttr = RHS->HasAttrs;
Mike Stump1eb44332009-09-09 15:08:12 +0000302
Eli Friedman56d29372008-06-07 16:52:53 +0000303 // Usually, neither decl has attrs, nothing to do.
304 if (!HasLHSAttr && !HasRHSAttr) return;
Mike Stump1eb44332009-09-09 15:08:12 +0000305
Eli Friedman56d29372008-06-07 16:52:53 +0000306 // If 'this' has no attrs, swap the other way.
307 if (!HasLHSAttr)
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000308 return RHS->swapAttrs(this);
Mike Stump1eb44332009-09-09 15:08:12 +0000309
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000310 ASTContext &Context = getASTContext();
Mike Stump1eb44332009-09-09 15:08:12 +0000311
Eli Friedman56d29372008-06-07 16:52:53 +0000312 // Handle the case when both decls have attrs.
313 if (HasRHSAttr) {
Douglas Gregor68584ed2009-06-18 16:11:24 +0000314 std::swap(Context.getDeclAttrs(this), Context.getDeclAttrs(RHS));
Eli Friedman56d29372008-06-07 16:52:53 +0000315 return;
316 }
Mike Stump1eb44332009-09-09 15:08:12 +0000317
Eli Friedman56d29372008-06-07 16:52:53 +0000318 // Otherwise, LHS has an attr and RHS doesn't.
Douglas Gregor68584ed2009-06-18 16:11:24 +0000319 Context.getDeclAttrs(RHS) = Context.getDeclAttrs(this);
320 Context.eraseDeclAttrs(this);
Eli Friedman56d29372008-06-07 16:52:53 +0000321 this->HasAttrs = false;
322 RHS->HasAttrs = true;
323}
324
325
Chris Lattnercc581472009-03-04 06:05:19 +0000326void Decl::Destroy(ASTContext &C) {
327 // Free attributes for this decl.
328 if (HasAttrs) {
Douglas Gregor68584ed2009-06-18 16:11:24 +0000329 C.getDeclAttrs(this)->Destroy(C);
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000330 invalidateAttrs();
Chris Lattnercc581472009-03-04 06:05:19 +0000331 HasAttrs = false;
332 }
Mike Stump1eb44332009-09-09 15:08:12 +0000333
Douglas Gregora0fc55f2009-01-13 19:47:12 +0000334#if 0
Douglas Gregor00ad0ef2009-01-20 04:25:11 +0000335 // FIXME: Once ownership is fully understood, we can enable this code
336 if (DeclContext *DC = dyn_cast<DeclContext>(this))
337 DC->decls_begin()->Destroy(C);
Eli Friedman56d29372008-06-07 16:52:53 +0000338
Chris Lattner244a67d2009-03-28 06:04:26 +0000339 // Observe the unrolled recursion. By setting N->NextDeclInContext = 0x0
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000340 // within the loop, only the Destroy method for the first Decl
341 // will deallocate all of the Decls in a chain.
Mike Stump1eb44332009-09-09 15:08:12 +0000342
Chris Lattner244a67d2009-03-28 06:04:26 +0000343 Decl* N = getNextDeclInContext();
Mike Stump1eb44332009-09-09 15:08:12 +0000344
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000345 while (N) {
Chris Lattner244a67d2009-03-28 06:04:26 +0000346 Decl* Tmp = N->getNextDeclInContext();
347 N->NextDeclInContext = 0;
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000348 N->Destroy(C);
349 N = Tmp;
Mike Stump1eb44332009-09-09 15:08:12 +0000350 }
Douglas Gregora0fc55f2009-01-13 19:47:12 +0000351
Ted Kremenek94a39002009-12-01 00:07:10 +0000352 if (isOutOfSemaDC())
353 delete (C) getMultipleDC();
354
Eli Friedman56d29372008-06-07 16:52:53 +0000355 this->~Decl();
Steve Naroff3e970492009-01-27 21:25:57 +0000356 C.Deallocate((void *)this);
Ted Kremenek94a39002009-12-01 00:07:10 +0000357#endif
Eli Friedman56d29372008-06-07 16:52:53 +0000358}
359
Argyrios Kyrtzidis42220c52008-10-12 16:14:48 +0000360Decl *Decl::castFromDeclContext (const DeclContext *D) {
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000361 Decl::Kind DK = D->getDeclKind();
362 switch(DK) {
363#define DECL_CONTEXT(Name) \
364 case Decl::Name: \
365 return static_cast<Name##Decl*>(const_cast<DeclContext*>(D));
366#define DECL_CONTEXT_BASE(Name)
367#include "clang/AST/DeclNodes.def"
368 default:
369#define DECL_CONTEXT_BASE(Name) \
370 if (DK >= Decl::Name##First && DK <= Decl::Name##Last) \
371 return static_cast<Name##Decl*>(const_cast<DeclContext*>(D));
372#include "clang/AST/DeclNodes.def"
373 assert(false && "a decl that inherits DeclContext isn't handled");
374 return 0;
375 }
Argyrios Kyrtzidis42220c52008-10-12 16:14:48 +0000376}
377
378DeclContext *Decl::castToDeclContext(const Decl *D) {
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000379 Decl::Kind DK = D->getKind();
380 switch(DK) {
381#define DECL_CONTEXT(Name) \
382 case Decl::Name: \
383 return static_cast<Name##Decl*>(const_cast<Decl*>(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<Decl*>(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
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000396CompoundStmt* Decl::getCompoundBody() const {
397 return dyn_cast_or_null<CompoundStmt>(getBody());
Sebastian Redld3a413d2009-04-26 20:35:05 +0000398}
399
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +0000400SourceLocation Decl::getBodyRBrace() const {
401 Stmt *Body = getBody();
Sebastian Redld3a413d2009-04-26 20:35:05 +0000402 if (!Body)
403 return SourceLocation();
404 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Body))
405 return CS->getRBracLoc();
406 assert(isa<CXXTryStmt>(Body) &&
407 "Body can only be CompoundStmt or CXXTryStmt");
408 return cast<CXXTryStmt>(Body)->getSourceRange().getEnd();
409}
410
Anders Carlsson1329c272009-03-25 23:38:06 +0000411#ifndef NDEBUG
412void Decl::CheckAccessDeclContext() const {
Anders Carlsson35eda442009-08-29 20:47:47 +0000413 // If the decl is the toplevel translation unit or if we're not in a
414 // record decl context, we don't need to check anything.
415 if (isa<TranslationUnitDecl>(this) ||
416 !isa<CXXRecordDecl>(getDeclContext()))
417 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000418
419 assert(Access != AS_none &&
Anders Carlsson1329c272009-03-25 23:38:06 +0000420 "Access specifier is AS_none inside a record decl");
421}
422
423#endif
424
Eli Friedman56d29372008-06-07 16:52:53 +0000425//===----------------------------------------------------------------------===//
426// DeclContext Implementation
427//===----------------------------------------------------------------------===//
428
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000429bool DeclContext::classof(const Decl *D) {
430 switch (D->getKind()) {
431#define DECL_CONTEXT(Name) case Decl::Name:
432#define DECL_CONTEXT_BASE(Name)
433#include "clang/AST/DeclNodes.def"
434 return true;
435 default:
436#define DECL_CONTEXT_BASE(Name) \
437 if (D->getKind() >= Decl::Name##First && \
438 D->getKind() <= Decl::Name##Last) \
439 return true;
440#include "clang/AST/DeclNodes.def"
441 return false;
442 }
443}
444
Douglas Gregor44b43212008-12-11 16:49:14 +0000445DeclContext::~DeclContext() {
Douglas Gregorc36c5402009-04-09 17:29:08 +0000446 delete static_cast<StoredDeclsMap*>(LookupPtr);
Douglas Gregor44b43212008-12-11 16:49:14 +0000447}
448
449void DeclContext::DestroyDecls(ASTContext &C) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000450 for (decl_iterator D = decls_begin(); D != decls_end(); )
Douglas Gregor00ad0ef2009-01-20 04:25:11 +0000451 (*D++)->Destroy(C);
Douglas Gregor44b43212008-12-11 16:49:14 +0000452}
453
Douglas Gregore942bbe2009-09-10 16:57:35 +0000454/// \brief Find the parent context of this context that will be
455/// used for unqualified name lookup.
456///
457/// Generally, the parent lookup context is the semantic context. However, for
458/// a friend function the parent lookup context is the lexical context, which
459/// is the class in which the friend is declared.
460DeclContext *DeclContext::getLookupParent() {
461 // FIXME: Find a better way to identify friends
462 if (isa<FunctionDecl>(this))
463 if (getParent()->getLookupContext()->isFileContext() &&
464 getLexicalParent()->getLookupContext()->isRecord())
465 return getLexicalParent();
466
467 return getParent();
468}
469
Douglas Gregorbc221632009-05-28 16:34:51 +0000470bool DeclContext::isDependentContext() const {
471 if (isFileContext())
472 return false;
473
Douglas Gregorc8ab2562009-05-31 09:31:02 +0000474 if (isa<ClassTemplatePartialSpecializationDecl>(this))
475 return true;
476
Douglas Gregorbc221632009-05-28 16:34:51 +0000477 if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(this))
478 if (Record->getDescribedClassTemplate())
479 return true;
480
481 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(this))
482 if (Function->getDescribedFunctionTemplate())
483 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000484
Douglas Gregorbc221632009-05-28 16:34:51 +0000485 return getParent() && getParent()->isDependentContext();
486}
487
Douglas Gregor074149e2009-01-05 19:45:36 +0000488bool DeclContext::isTransparentContext() const {
489 if (DeclKind == Decl::Enum)
490 return true; // FIXME: Check for C++0x scoped enums
491 else if (DeclKind == Decl::LinkageSpec)
492 return true;
Douglas Gregor65100792009-02-26 00:02:51 +0000493 else if (DeclKind >= Decl::RecordFirst && DeclKind <= Decl::RecordLast)
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000494 return cast<RecordDecl>(this)->isAnonymousStructOrUnion();
Douglas Gregor074149e2009-01-05 19:45:36 +0000495 else if (DeclKind == Decl::Namespace)
496 return false; // FIXME: Check for C++0x inline namespaces
497
498 return false;
499}
500
Douglas Gregor6dd38da2009-08-27 06:03:53 +0000501bool DeclContext::Encloses(DeclContext *DC) {
502 if (getPrimaryContext() != this)
503 return getPrimaryContext()->Encloses(DC);
Mike Stump1eb44332009-09-09 15:08:12 +0000504
Douglas Gregor6dd38da2009-08-27 06:03:53 +0000505 for (; DC; DC = DC->getParent())
506 if (DC->getPrimaryContext() == this)
507 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000508 return false;
Douglas Gregor6dd38da2009-08-27 06:03:53 +0000509}
510
Steve Naroff0701bbb2009-01-08 17:28:14 +0000511DeclContext *DeclContext::getPrimaryContext() {
Douglas Gregor44b43212008-12-11 16:49:14 +0000512 switch (DeclKind) {
Douglas Gregor44b43212008-12-11 16:49:14 +0000513 case Decl::TranslationUnit:
Douglas Gregor074149e2009-01-05 19:45:36 +0000514 case Decl::LinkageSpec:
Mike Stump1eb44332009-09-09 15:08:12 +0000515 case Decl::Block:
Douglas Gregor44b43212008-12-11 16:49:14 +0000516 // There is only one DeclContext for these entities.
517 return this;
518
519 case Decl::Namespace:
520 // The original namespace is our primary context.
521 return static_cast<NamespaceDecl*>(this)->getOriginalNamespace();
522
Douglas Gregor44b43212008-12-11 16:49:14 +0000523 case Decl::ObjCMethod:
524 return this;
525
526 case Decl::ObjCInterface:
Steve Naroff0701bbb2009-01-08 17:28:14 +0000527 case Decl::ObjCProtocol:
528 case Decl::ObjCCategory:
Douglas Gregor44b43212008-12-11 16:49:14 +0000529 // FIXME: Can Objective-C interfaces be forward-declared?
530 return this;
531
Steve Naroff0701bbb2009-01-08 17:28:14 +0000532 case Decl::ObjCImplementation:
533 case Decl::ObjCCategoryImpl:
534 return this;
535
Douglas Gregor44b43212008-12-11 16:49:14 +0000536 default:
Douglas Gregorcc636682009-02-17 23:15:12 +0000537 if (DeclKind >= Decl::TagFirst && DeclKind <= Decl::TagLast) {
538 // If this is a tag type that has a definition or is currently
539 // being defined, that definition is our primary context.
Ted Kremenek6217b802009-07-29 21:53:49 +0000540 if (const TagType *TagT =cast<TagDecl>(this)->TypeForDecl->getAs<TagType>())
Mike Stump1eb44332009-09-09 15:08:12 +0000541 if (TagT->isBeingDefined() ||
Douglas Gregorcc636682009-02-17 23:15:12 +0000542 (TagT->getDecl() && TagT->getDecl()->isDefinition()))
543 return TagT->getDecl();
544 return this;
545 }
546
Douglas Gregor44b43212008-12-11 16:49:14 +0000547 assert(DeclKind >= Decl::FunctionFirst && DeclKind <= Decl::FunctionLast &&
548 "Unknown DeclContext kind");
549 return this;
550 }
551}
552
553DeclContext *DeclContext::getNextContext() {
554 switch (DeclKind) {
Douglas Gregor44b43212008-12-11 16:49:14 +0000555 case Decl::Namespace:
556 // Return the next namespace
557 return static_cast<NamespaceDecl*>(this)->getNextNamespace();
558
559 default:
Douglas Gregor44b43212008-12-11 16:49:14 +0000560 return 0;
561 }
562}
563
Douglas Gregor2cf26342009-04-09 22:27:44 +0000564/// \brief Load the declarations within this lexical storage from an
565/// external source.
Mike Stump1eb44332009-09-09 15:08:12 +0000566void
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000567DeclContext::LoadLexicalDeclsFromExternalStorage() const {
568 ExternalASTSource *Source = getParentASTContext().getExternalSource();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000569 assert(hasExternalLexicalStorage() && Source && "No external storage?");
570
Eli Friedmanb0156ea2009-04-27 23:43:36 +0000571 llvm::SmallVector<uint32_t, 64> Decls;
Mike Stump1eb44332009-09-09 15:08:12 +0000572 if (Source->ReadDeclsLexicallyInContext(const_cast<DeclContext *>(this),
Douglas Gregor2cf26342009-04-09 22:27:44 +0000573 Decls))
574 return;
575
576 // There is no longer any lexical storage in this context
577 ExternalLexicalStorage = false;
578
579 if (Decls.empty())
580 return;
581
582 // Resolve all of the declaration IDs into declarations, building up
583 // a chain of declarations via the Decl::NextDeclInContext field.
584 Decl *FirstNewDecl = 0;
585 Decl *PrevDecl = 0;
586 for (unsigned I = 0, N = Decls.size(); I != N; ++I) {
587 Decl *D = Source->GetDecl(Decls[I]);
588 if (PrevDecl)
589 PrevDecl->NextDeclInContext = D;
590 else
591 FirstNewDecl = D;
592
593 PrevDecl = D;
594 }
595
596 // Splice the newly-read declarations into the beginning of the list
597 // of declarations.
598 PrevDecl->NextDeclInContext = FirstDecl;
599 FirstDecl = FirstNewDecl;
600 if (!LastDecl)
601 LastDecl = PrevDecl;
602}
603
Mike Stump1eb44332009-09-09 15:08:12 +0000604void
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000605DeclContext::LoadVisibleDeclsFromExternalStorage() const {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000606 DeclContext *This = const_cast<DeclContext *>(this);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000607 ExternalASTSource *Source = getParentASTContext().getExternalSource();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000608 assert(hasExternalVisibleStorage() && Source && "No external storage?");
609
610 llvm::SmallVector<VisibleDeclaration, 64> Decls;
611 if (Source->ReadDeclsVisibleInContext(This, Decls))
612 return;
613
614 // There is no longer any visible storage in this context
615 ExternalVisibleStorage = false;
616
617 // Load the declaration IDs for all of the names visible in this
618 // context.
619 assert(!LookupPtr && "Have a lookup map before de-serialization?");
620 StoredDeclsMap *Map = new StoredDeclsMap;
621 LookupPtr = Map;
622 for (unsigned I = 0, N = Decls.size(); I != N; ++I) {
623 (*Map)[Decls[I].Name].setFromDeclIDs(Decls[I].Declarations);
624 }
625}
626
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000627DeclContext::decl_iterator DeclContext::decls_begin() const {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000628 if (hasExternalLexicalStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000629 LoadLexicalDeclsFromExternalStorage();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000630
631 // FIXME: Check whether we need to load some declarations from
632 // external storage.
Mike Stump1eb44332009-09-09 15:08:12 +0000633 return decl_iterator(FirstDecl);
Douglas Gregor6ab35242009-04-09 21:40:53 +0000634}
635
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000636DeclContext::decl_iterator DeclContext::decls_end() const {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000637 if (hasExternalLexicalStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000638 LoadLexicalDeclsFromExternalStorage();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000639
Mike Stump1eb44332009-09-09 15:08:12 +0000640 return decl_iterator();
Douglas Gregor6ab35242009-04-09 21:40:53 +0000641}
642
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000643bool DeclContext::decls_empty() const {
Douglas Gregor8038d512009-04-10 17:25:41 +0000644 if (hasExternalLexicalStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000645 LoadLexicalDeclsFromExternalStorage();
Douglas Gregor8038d512009-04-10 17:25:41 +0000646
647 return !FirstDecl;
648}
649
John McCall9f54ad42009-12-10 09:41:52 +0000650void DeclContext::removeDecl(Decl *D) {
651 assert(D->getLexicalDeclContext() == this &&
652 "decl being removed from non-lexical context");
653 assert((D->NextDeclInContext || D == LastDecl) &&
654 "decl is not in decls list");
655
656 // Remove D from the decl chain. This is O(n) but hopefully rare.
657 if (D == FirstDecl) {
658 if (D == LastDecl)
659 FirstDecl = LastDecl = 0;
660 else
661 FirstDecl = D->NextDeclInContext;
662 } else {
663 for (Decl *I = FirstDecl; true; I = I->NextDeclInContext) {
664 assert(I && "decl not found in linked list");
665 if (I->NextDeclInContext == D) {
666 I->NextDeclInContext = D->NextDeclInContext;
667 if (D == LastDecl) LastDecl = I;
668 break;
669 }
670 }
671 }
672
673 // Mark that D is no longer in the decl chain.
674 D->NextDeclInContext = 0;
675
676 // Remove D from the lookup table if necessary.
677 if (isa<NamedDecl>(D)) {
678 NamedDecl *ND = cast<NamedDecl>(D);
679
680 void *OpaqueMap = getPrimaryContext()->LookupPtr;
681 if (!OpaqueMap) return;
682
683 StoredDeclsMap *Map = static_cast<StoredDeclsMap*>(OpaqueMap);
684 StoredDeclsMap::iterator Pos = Map->find(ND->getDeclName());
685 assert(Pos != Map->end() && "no lookup entry for decl");
686 Pos->second.remove(ND);
687 }
688}
689
John McCall3f9a8a62009-08-11 06:59:38 +0000690void DeclContext::addHiddenDecl(Decl *D) {
Chris Lattner7f0be132009-02-20 00:56:18 +0000691 assert(D->getLexicalDeclContext() == this &&
692 "Decl inserted into wrong lexical context");
Mike Stump1eb44332009-09-09 15:08:12 +0000693 assert(!D->getNextDeclInContext() && D != LastDecl &&
Douglas Gregor6037fcb2009-01-09 19:42:16 +0000694 "Decl already inserted into a DeclContext");
695
696 if (FirstDecl) {
Chris Lattner244a67d2009-03-28 06:04:26 +0000697 LastDecl->NextDeclInContext = D;
Douglas Gregor6037fcb2009-01-09 19:42:16 +0000698 LastDecl = D;
699 } else {
700 FirstDecl = LastDecl = D;
701 }
John McCall3f9a8a62009-08-11 06:59:38 +0000702}
703
704void DeclContext::addDecl(Decl *D) {
705 addHiddenDecl(D);
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000706
707 if (NamedDecl *ND = dyn_cast<NamedDecl>(D))
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000708 ND->getDeclContext()->makeDeclVisibleInContext(ND);
Douglas Gregor44b43212008-12-11 16:49:14 +0000709}
710
Douglas Gregor074149e2009-01-05 19:45:36 +0000711/// buildLookup - Build the lookup data structure with all of the
712/// declarations in DCtx (and any other contexts linked to it or
713/// transparent contexts nested within it).
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000714void DeclContext::buildLookup(DeclContext *DCtx) {
Douglas Gregor074149e2009-01-05 19:45:36 +0000715 for (; DCtx; DCtx = DCtx->getNextContext()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000716 for (decl_iterator D = DCtx->decls_begin(),
717 DEnd = DCtx->decls_end();
Douglas Gregor4f3b8f82009-01-06 07:17:58 +0000718 D != DEnd; ++D) {
John McCall3f9a8a62009-08-11 06:59:38 +0000719 // Insert this declaration into the lookup structure, but only
720 // if it's semantically in its decl context. During non-lazy
721 // lookup building, this is implicitly enforced by addDecl.
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000722 if (NamedDecl *ND = dyn_cast<NamedDecl>(*D))
John McCall3f9a8a62009-08-11 06:59:38 +0000723 if (D->getDeclContext() == DCtx)
724 makeDeclVisibleInContextImpl(ND);
Douglas Gregor074149e2009-01-05 19:45:36 +0000725
Ted Kremenekc32b1d82009-11-17 22:58:30 +0000726 // Insert any forward-declared Objective-C interfaces into the lookup
727 // data structure.
728 if (ObjCClassDecl *Class = dyn_cast<ObjCClassDecl>(*D))
729 for (ObjCClassDecl::iterator I = Class->begin(), IEnd = Class->end();
730 I != IEnd; ++I)
Ted Kremenek321c22f2009-11-18 00:28:11 +0000731 makeDeclVisibleInContextImpl(I->getInterface());
Ted Kremenekc32b1d82009-11-17 22:58:30 +0000732
Douglas Gregor074149e2009-01-05 19:45:36 +0000733 // If this declaration is itself a transparent declaration context,
734 // add its members (recursively).
735 if (DeclContext *InnerCtx = dyn_cast<DeclContext>(*D))
736 if (InnerCtx->isTransparentContext())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000737 buildLookup(InnerCtx->getPrimaryContext());
Douglas Gregor074149e2009-01-05 19:45:36 +0000738 }
739 }
740}
741
Mike Stump1eb44332009-09-09 15:08:12 +0000742DeclContext::lookup_result
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000743DeclContext::lookup(DeclarationName Name) {
Steve Naroff0701bbb2009-01-08 17:28:14 +0000744 DeclContext *PrimaryContext = getPrimaryContext();
Douglas Gregor44b43212008-12-11 16:49:14 +0000745 if (PrimaryContext != this)
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000746 return PrimaryContext->lookup(Name);
Douglas Gregor44b43212008-12-11 16:49:14 +0000747
Douglas Gregor2cf26342009-04-09 22:27:44 +0000748 if (hasExternalVisibleStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000749 LoadVisibleDeclsFromExternalStorage();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000750
Douglas Gregor3fc749d2008-12-23 00:26:44 +0000751 /// If there is no lookup data structure, build one now by walking
Douglas Gregor44b43212008-12-11 16:49:14 +0000752 /// all of the linked DeclContexts (in declaration order!) and
753 /// inserting their values.
Douglas Gregorc36c5402009-04-09 17:29:08 +0000754 if (!LookupPtr) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000755 buildLookup(this);
Douglas Gregor44b43212008-12-11 16:49:14 +0000756
Douglas Gregorc36c5402009-04-09 17:29:08 +0000757 if (!LookupPtr)
Chris Lattner91942502009-02-20 00:55:03 +0000758 return lookup_result(0, 0);
Douglas Gregorc36c5402009-04-09 17:29:08 +0000759 }
Douglas Gregor44b43212008-12-11 16:49:14 +0000760
Douglas Gregorc36c5402009-04-09 17:29:08 +0000761 StoredDeclsMap *Map = static_cast<StoredDeclsMap*>(LookupPtr);
762 StoredDeclsMap::iterator Pos = Map->find(Name);
763 if (Pos == Map->end())
764 return lookup_result(0, 0);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000765 return Pos->second.getLookupResult(getParentASTContext());
Douglas Gregor44b43212008-12-11 16:49:14 +0000766}
767
Mike Stump1eb44332009-09-09 15:08:12 +0000768DeclContext::lookup_const_result
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000769DeclContext::lookup(DeclarationName Name) const {
770 return const_cast<DeclContext*>(this)->lookup(Name);
Douglas Gregor44b43212008-12-11 16:49:14 +0000771}
772
Chris Lattner0cf2b192009-03-27 19:19:59 +0000773DeclContext *DeclContext::getLookupContext() {
774 DeclContext *Ctx = this;
Douglas Gregor72de6672009-01-08 20:45:30 +0000775 // Skip through transparent contexts.
Douglas Gregorce356072009-01-06 23:51:29 +0000776 while (Ctx->isTransparentContext())
777 Ctx = Ctx->getParent();
778 return Ctx;
779}
780
Douglas Gregor88b70942009-02-25 22:02:03 +0000781DeclContext *DeclContext::getEnclosingNamespaceContext() {
782 DeclContext *Ctx = this;
783 // Skip through non-namespace, non-translation-unit contexts.
784 while (!Ctx->isFileContext() || Ctx->isTransparentContext())
785 Ctx = Ctx->getParent();
786 return Ctx->getPrimaryContext();
787}
788
John McCallab88d972009-08-31 22:39:49 +0000789void DeclContext::makeDeclVisibleInContext(NamedDecl *D, bool Recoverable) {
Douglas Gregorcc636682009-02-17 23:15:12 +0000790 // FIXME: This feels like a hack. Should DeclarationName support
791 // template-ids, or is there a better way to keep specializations
792 // from being visible?
793 if (isa<ClassTemplateSpecializationDecl>(D))
794 return;
Eli Friedman6bc20132009-12-08 05:40:03 +0000795 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
796 if (FD->isFunctionTemplateSpecialization())
797 return;
Douglas Gregorcc636682009-02-17 23:15:12 +0000798
Steve Naroff0701bbb2009-01-08 17:28:14 +0000799 DeclContext *PrimaryContext = getPrimaryContext();
Douglas Gregor44b43212008-12-11 16:49:14 +0000800 if (PrimaryContext != this) {
John McCallab88d972009-08-31 22:39:49 +0000801 PrimaryContext->makeDeclVisibleInContext(D, Recoverable);
Douglas Gregor44b43212008-12-11 16:49:14 +0000802 return;
803 }
804
805 // If we already have a lookup data structure, perform the insertion
806 // into it. Otherwise, be lazy and don't build that structure until
807 // someone asks for it.
John McCallab88d972009-08-31 22:39:49 +0000808 if (LookupPtr || !Recoverable)
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000809 makeDeclVisibleInContextImpl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +0000810
Douglas Gregor074149e2009-01-05 19:45:36 +0000811 // If we are a transparent context, insert into our parent context,
812 // too. This operation is recursive.
813 if (isTransparentContext())
John McCallab88d972009-08-31 22:39:49 +0000814 getParent()->makeDeclVisibleInContext(D, Recoverable);
Douglas Gregor44b43212008-12-11 16:49:14 +0000815}
816
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000817void DeclContext::makeDeclVisibleInContextImpl(NamedDecl *D) {
Douglas Gregor074149e2009-01-05 19:45:36 +0000818 // Skip unnamed declarations.
819 if (!D->getDeclName())
820 return;
821
Douglas Gregorcc636682009-02-17 23:15:12 +0000822 // FIXME: This feels like a hack. Should DeclarationName support
823 // template-ids, or is there a better way to keep specializations
824 // from being visible?
825 if (isa<ClassTemplateSpecializationDecl>(D))
826 return;
827
Douglas Gregorc36c5402009-04-09 17:29:08 +0000828 if (!LookupPtr)
829 LookupPtr = new StoredDeclsMap;
Douglas Gregor44b43212008-12-11 16:49:14 +0000830
831 // Insert this declaration into the map.
Douglas Gregorc36c5402009-04-09 17:29:08 +0000832 StoredDeclsMap &Map = *static_cast<StoredDeclsMap*>(LookupPtr);
Chris Lattner67762a32009-02-20 01:44:05 +0000833 StoredDeclsList &DeclNameEntries = Map[D->getDeclName()];
834 if (DeclNameEntries.isNull()) {
835 DeclNameEntries.setOnlyValue(D);
Chris Lattnerbd6c8002009-02-19 07:00:44 +0000836 return;
Douglas Gregor44b43212008-12-11 16:49:14 +0000837 }
Chris Lattner91942502009-02-20 00:55:03 +0000838
Chris Lattnerbdc3d002009-02-20 01:10:07 +0000839 // If it is possible that this is a redeclaration, check to see if there is
840 // already a decl for which declarationReplaces returns true. If there is
841 // one, just replace it and return.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000842 if (DeclNameEntries.HandleRedeclaration(getParentASTContext(), D))
Chris Lattner67762a32009-02-20 01:44:05 +0000843 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000844
Chris Lattnerbd6c8002009-02-19 07:00:44 +0000845 // Put this declaration into the appropriate slot.
Chris Lattner67762a32009-02-20 01:44:05 +0000846 DeclNameEntries.AddSubsequentDecl(D);
Douglas Gregor44b43212008-12-11 16:49:14 +0000847}
Douglas Gregor2a3009a2009-02-03 19:21:40 +0000848
849/// Returns iterator range [First, Last) of UsingDirectiveDecls stored within
850/// this context.
Mike Stump1eb44332009-09-09 15:08:12 +0000851DeclContext::udir_iterator_range
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000852DeclContext::getUsingDirectives() const {
853 lookup_const_result Result = lookup(UsingDirectiveDecl::getName());
Douglas Gregor2a3009a2009-02-03 19:21:40 +0000854 return udir_iterator_range(reinterpret_cast<udir_iterator>(Result.first),
855 reinterpret_cast<udir_iterator>(Result.second));
856}
Douglas Gregor2cf26342009-04-09 22:27:44 +0000857
858void StoredDeclsList::materializeDecls(ASTContext &Context) {
859 if (isNull())
860 return;
861
862 switch ((DataKind)(Data & 0x03)) {
863 case DK_Decl:
864 case DK_Decl_Vector:
865 break;
866
867 case DK_DeclID: {
868 // Resolve this declaration ID to an actual declaration by
869 // querying the external AST source.
870 unsigned DeclID = Data >> 2;
871
872 ExternalASTSource *Source = Context.getExternalSource();
873 assert(Source && "No external AST source available!");
874
875 Data = reinterpret_cast<uintptr_t>(Source->GetDecl(DeclID));
876 break;
877 }
878
879 case DK_ID_Vector: {
880 // We have a vector of declaration IDs. Resolve all of them to
881 // actual declarations.
882 VectorTy &Vector = *getAsVector();
883 ExternalASTSource *Source = Context.getExternalSource();
884 assert(Source && "No external AST source available!");
885
886 for (unsigned I = 0, N = Vector.size(); I != N; ++I)
887 Vector[I] = reinterpret_cast<uintptr_t>(Source->GetDecl(Vector[I]));
888
889 Data = (Data & ~0x03) | DK_Decl_Vector;
890 break;
891 }
892 }
893}