blob: 84aa81ca76db6d05d53c63bd06dc19ba23b70af1 [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 {
John McCall46460a62010-01-20 21:53:11 +0000413 // Suppress this check if any of the following hold:
414 // 1. this is the translation unit (and thus has no parent)
415 // 2. this is a template parameter (and thus doesn't belong to its context)
416 // 3. this is a ParmVarDecl (which can be in a record context during
417 // the brief period between its creation and the creation of the
418 // FunctionDecl)
419 // 4. the context is not a record
Anders Carlsson35eda442009-08-29 20:47:47 +0000420 if (isa<TranslationUnitDecl>(this) ||
421 !isa<CXXRecordDecl>(getDeclContext()))
422 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000423
424 assert(Access != AS_none &&
Anders Carlsson1329c272009-03-25 23:38:06 +0000425 "Access specifier is AS_none inside a record decl");
426}
427
428#endif
429
Eli Friedman56d29372008-06-07 16:52:53 +0000430//===----------------------------------------------------------------------===//
431// DeclContext Implementation
432//===----------------------------------------------------------------------===//
433
Argyrios Kyrtzidis3d7641e2009-02-16 14:29:28 +0000434bool DeclContext::classof(const Decl *D) {
435 switch (D->getKind()) {
436#define DECL_CONTEXT(Name) case Decl::Name:
437#define DECL_CONTEXT_BASE(Name)
438#include "clang/AST/DeclNodes.def"
439 return true;
440 default:
441#define DECL_CONTEXT_BASE(Name) \
442 if (D->getKind() >= Decl::Name##First && \
443 D->getKind() <= Decl::Name##Last) \
444 return true;
445#include "clang/AST/DeclNodes.def"
446 return false;
447 }
448}
449
Douglas Gregor44b43212008-12-11 16:49:14 +0000450DeclContext::~DeclContext() {
Douglas Gregorc36c5402009-04-09 17:29:08 +0000451 delete static_cast<StoredDeclsMap*>(LookupPtr);
Douglas Gregor44b43212008-12-11 16:49:14 +0000452}
453
454void DeclContext::DestroyDecls(ASTContext &C) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000455 for (decl_iterator D = decls_begin(); D != decls_end(); )
Douglas Gregor00ad0ef2009-01-20 04:25:11 +0000456 (*D++)->Destroy(C);
Douglas Gregor44b43212008-12-11 16:49:14 +0000457}
458
Douglas Gregore942bbe2009-09-10 16:57:35 +0000459/// \brief Find the parent context of this context that will be
460/// used for unqualified name lookup.
461///
462/// Generally, the parent lookup context is the semantic context. However, for
463/// a friend function the parent lookup context is the lexical context, which
464/// is the class in which the friend is declared.
465DeclContext *DeclContext::getLookupParent() {
466 // FIXME: Find a better way to identify friends
467 if (isa<FunctionDecl>(this))
468 if (getParent()->getLookupContext()->isFileContext() &&
469 getLexicalParent()->getLookupContext()->isRecord())
470 return getLexicalParent();
471
472 return getParent();
473}
474
Douglas Gregorbc221632009-05-28 16:34:51 +0000475bool DeclContext::isDependentContext() const {
476 if (isFileContext())
477 return false;
478
Douglas Gregorc8ab2562009-05-31 09:31:02 +0000479 if (isa<ClassTemplatePartialSpecializationDecl>(this))
480 return true;
481
Douglas Gregorbc221632009-05-28 16:34:51 +0000482 if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(this))
483 if (Record->getDescribedClassTemplate())
484 return true;
485
486 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(this))
487 if (Function->getDescribedFunctionTemplate())
488 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000489
Douglas Gregorbc221632009-05-28 16:34:51 +0000490 return getParent() && getParent()->isDependentContext();
491}
492
Douglas Gregor074149e2009-01-05 19:45:36 +0000493bool DeclContext::isTransparentContext() const {
494 if (DeclKind == Decl::Enum)
495 return true; // FIXME: Check for C++0x scoped enums
496 else if (DeclKind == Decl::LinkageSpec)
497 return true;
Douglas Gregor65100792009-02-26 00:02:51 +0000498 else if (DeclKind >= Decl::RecordFirst && DeclKind <= Decl::RecordLast)
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000499 return cast<RecordDecl>(this)->isAnonymousStructOrUnion();
Douglas Gregor074149e2009-01-05 19:45:36 +0000500 else if (DeclKind == Decl::Namespace)
501 return false; // FIXME: Check for C++0x inline namespaces
502
503 return false;
504}
505
Douglas Gregor6dd38da2009-08-27 06:03:53 +0000506bool DeclContext::Encloses(DeclContext *DC) {
507 if (getPrimaryContext() != this)
508 return getPrimaryContext()->Encloses(DC);
Mike Stump1eb44332009-09-09 15:08:12 +0000509
Douglas Gregor6dd38da2009-08-27 06:03:53 +0000510 for (; DC; DC = DC->getParent())
511 if (DC->getPrimaryContext() == this)
512 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000513 return false;
Douglas Gregor6dd38da2009-08-27 06:03:53 +0000514}
515
Steve Naroff0701bbb2009-01-08 17:28:14 +0000516DeclContext *DeclContext::getPrimaryContext() {
Douglas Gregor44b43212008-12-11 16:49:14 +0000517 switch (DeclKind) {
Douglas Gregor44b43212008-12-11 16:49:14 +0000518 case Decl::TranslationUnit:
Douglas Gregor074149e2009-01-05 19:45:36 +0000519 case Decl::LinkageSpec:
Mike Stump1eb44332009-09-09 15:08:12 +0000520 case Decl::Block:
Douglas Gregor44b43212008-12-11 16:49:14 +0000521 // There is only one DeclContext for these entities.
522 return this;
523
524 case Decl::Namespace:
525 // The original namespace is our primary context.
526 return static_cast<NamespaceDecl*>(this)->getOriginalNamespace();
527
Douglas Gregor44b43212008-12-11 16:49:14 +0000528 case Decl::ObjCMethod:
529 return this;
530
531 case Decl::ObjCInterface:
Steve Naroff0701bbb2009-01-08 17:28:14 +0000532 case Decl::ObjCProtocol:
533 case Decl::ObjCCategory:
Douglas Gregor44b43212008-12-11 16:49:14 +0000534 // FIXME: Can Objective-C interfaces be forward-declared?
535 return this;
536
Steve Naroff0701bbb2009-01-08 17:28:14 +0000537 case Decl::ObjCImplementation:
538 case Decl::ObjCCategoryImpl:
539 return this;
540
Douglas Gregor44b43212008-12-11 16:49:14 +0000541 default:
Douglas Gregorcc636682009-02-17 23:15:12 +0000542 if (DeclKind >= Decl::TagFirst && DeclKind <= Decl::TagLast) {
543 // If this is a tag type that has a definition or is currently
544 // being defined, that definition is our primary context.
Ted Kremenek6217b802009-07-29 21:53:49 +0000545 if (const TagType *TagT =cast<TagDecl>(this)->TypeForDecl->getAs<TagType>())
Mike Stump1eb44332009-09-09 15:08:12 +0000546 if (TagT->isBeingDefined() ||
Douglas Gregorcc636682009-02-17 23:15:12 +0000547 (TagT->getDecl() && TagT->getDecl()->isDefinition()))
548 return TagT->getDecl();
549 return this;
550 }
551
Douglas Gregor44b43212008-12-11 16:49:14 +0000552 assert(DeclKind >= Decl::FunctionFirst && DeclKind <= Decl::FunctionLast &&
553 "Unknown DeclContext kind");
554 return this;
555 }
556}
557
558DeclContext *DeclContext::getNextContext() {
559 switch (DeclKind) {
Douglas Gregor44b43212008-12-11 16:49:14 +0000560 case Decl::Namespace:
561 // Return the next namespace
562 return static_cast<NamespaceDecl*>(this)->getNextNamespace();
563
564 default:
Douglas Gregor44b43212008-12-11 16:49:14 +0000565 return 0;
566 }
567}
568
Douglas Gregor2cf26342009-04-09 22:27:44 +0000569/// \brief Load the declarations within this lexical storage from an
570/// external source.
Mike Stump1eb44332009-09-09 15:08:12 +0000571void
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000572DeclContext::LoadLexicalDeclsFromExternalStorage() const {
573 ExternalASTSource *Source = getParentASTContext().getExternalSource();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000574 assert(hasExternalLexicalStorage() && Source && "No external storage?");
575
Eli Friedmanb0156ea2009-04-27 23:43:36 +0000576 llvm::SmallVector<uint32_t, 64> Decls;
Mike Stump1eb44332009-09-09 15:08:12 +0000577 if (Source->ReadDeclsLexicallyInContext(const_cast<DeclContext *>(this),
Douglas Gregor2cf26342009-04-09 22:27:44 +0000578 Decls))
579 return;
580
581 // There is no longer any lexical storage in this context
582 ExternalLexicalStorage = false;
583
584 if (Decls.empty())
585 return;
586
587 // Resolve all of the declaration IDs into declarations, building up
588 // a chain of declarations via the Decl::NextDeclInContext field.
589 Decl *FirstNewDecl = 0;
590 Decl *PrevDecl = 0;
591 for (unsigned I = 0, N = Decls.size(); I != N; ++I) {
592 Decl *D = Source->GetDecl(Decls[I]);
593 if (PrevDecl)
594 PrevDecl->NextDeclInContext = D;
595 else
596 FirstNewDecl = D;
597
598 PrevDecl = D;
599 }
600
601 // Splice the newly-read declarations into the beginning of the list
602 // of declarations.
603 PrevDecl->NextDeclInContext = FirstDecl;
604 FirstDecl = FirstNewDecl;
605 if (!LastDecl)
606 LastDecl = PrevDecl;
607}
608
Mike Stump1eb44332009-09-09 15:08:12 +0000609void
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000610DeclContext::LoadVisibleDeclsFromExternalStorage() const {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000611 DeclContext *This = const_cast<DeclContext *>(this);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000612 ExternalASTSource *Source = getParentASTContext().getExternalSource();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000613 assert(hasExternalVisibleStorage() && Source && "No external storage?");
614
615 llvm::SmallVector<VisibleDeclaration, 64> Decls;
616 if (Source->ReadDeclsVisibleInContext(This, Decls))
617 return;
618
619 // There is no longer any visible storage in this context
620 ExternalVisibleStorage = false;
621
622 // Load the declaration IDs for all of the names visible in this
623 // context.
624 assert(!LookupPtr && "Have a lookup map before de-serialization?");
625 StoredDeclsMap *Map = new StoredDeclsMap;
626 LookupPtr = Map;
627 for (unsigned I = 0, N = Decls.size(); I != N; ++I) {
628 (*Map)[Decls[I].Name].setFromDeclIDs(Decls[I].Declarations);
629 }
630}
631
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000632DeclContext::decl_iterator DeclContext::decls_begin() const {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000633 if (hasExternalLexicalStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000634 LoadLexicalDeclsFromExternalStorage();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000635
636 // FIXME: Check whether we need to load some declarations from
637 // external storage.
Mike Stump1eb44332009-09-09 15:08:12 +0000638 return decl_iterator(FirstDecl);
Douglas Gregor6ab35242009-04-09 21:40:53 +0000639}
640
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000641DeclContext::decl_iterator DeclContext::decls_end() const {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000642 if (hasExternalLexicalStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000643 LoadLexicalDeclsFromExternalStorage();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000644
Mike Stump1eb44332009-09-09 15:08:12 +0000645 return decl_iterator();
Douglas Gregor6ab35242009-04-09 21:40:53 +0000646}
647
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000648bool DeclContext::decls_empty() const {
Douglas Gregor8038d512009-04-10 17:25:41 +0000649 if (hasExternalLexicalStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000650 LoadLexicalDeclsFromExternalStorage();
Douglas Gregor8038d512009-04-10 17:25:41 +0000651
652 return !FirstDecl;
653}
654
John McCall9f54ad42009-12-10 09:41:52 +0000655void DeclContext::removeDecl(Decl *D) {
656 assert(D->getLexicalDeclContext() == this &&
657 "decl being removed from non-lexical context");
658 assert((D->NextDeclInContext || D == LastDecl) &&
659 "decl is not in decls list");
660
661 // Remove D from the decl chain. This is O(n) but hopefully rare.
662 if (D == FirstDecl) {
663 if (D == LastDecl)
664 FirstDecl = LastDecl = 0;
665 else
666 FirstDecl = D->NextDeclInContext;
667 } else {
668 for (Decl *I = FirstDecl; true; I = I->NextDeclInContext) {
669 assert(I && "decl not found in linked list");
670 if (I->NextDeclInContext == D) {
671 I->NextDeclInContext = D->NextDeclInContext;
672 if (D == LastDecl) LastDecl = I;
673 break;
674 }
675 }
676 }
677
678 // Mark that D is no longer in the decl chain.
679 D->NextDeclInContext = 0;
680
681 // Remove D from the lookup table if necessary.
682 if (isa<NamedDecl>(D)) {
683 NamedDecl *ND = cast<NamedDecl>(D);
684
685 void *OpaqueMap = getPrimaryContext()->LookupPtr;
686 if (!OpaqueMap) return;
687
688 StoredDeclsMap *Map = static_cast<StoredDeclsMap*>(OpaqueMap);
689 StoredDeclsMap::iterator Pos = Map->find(ND->getDeclName());
690 assert(Pos != Map->end() && "no lookup entry for decl");
691 Pos->second.remove(ND);
692 }
693}
694
John McCall3f9a8a62009-08-11 06:59:38 +0000695void DeclContext::addHiddenDecl(Decl *D) {
Chris Lattner7f0be132009-02-20 00:56:18 +0000696 assert(D->getLexicalDeclContext() == this &&
697 "Decl inserted into wrong lexical context");
Mike Stump1eb44332009-09-09 15:08:12 +0000698 assert(!D->getNextDeclInContext() && D != LastDecl &&
Douglas Gregor6037fcb2009-01-09 19:42:16 +0000699 "Decl already inserted into a DeclContext");
700
701 if (FirstDecl) {
Chris Lattner244a67d2009-03-28 06:04:26 +0000702 LastDecl->NextDeclInContext = D;
Douglas Gregor6037fcb2009-01-09 19:42:16 +0000703 LastDecl = D;
704 } else {
705 FirstDecl = LastDecl = D;
706 }
John McCall3f9a8a62009-08-11 06:59:38 +0000707}
708
709void DeclContext::addDecl(Decl *D) {
710 addHiddenDecl(D);
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000711
712 if (NamedDecl *ND = dyn_cast<NamedDecl>(D))
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000713 ND->getDeclContext()->makeDeclVisibleInContext(ND);
Douglas Gregor44b43212008-12-11 16:49:14 +0000714}
715
Douglas Gregor074149e2009-01-05 19:45:36 +0000716/// buildLookup - Build the lookup data structure with all of the
717/// declarations in DCtx (and any other contexts linked to it or
718/// transparent contexts nested within it).
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000719void DeclContext::buildLookup(DeclContext *DCtx) {
Douglas Gregor074149e2009-01-05 19:45:36 +0000720 for (; DCtx; DCtx = DCtx->getNextContext()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000721 for (decl_iterator D = DCtx->decls_begin(),
722 DEnd = DCtx->decls_end();
Douglas Gregor4f3b8f82009-01-06 07:17:58 +0000723 D != DEnd; ++D) {
John McCall3f9a8a62009-08-11 06:59:38 +0000724 // Insert this declaration into the lookup structure, but only
725 // if it's semantically in its decl context. During non-lazy
726 // lookup building, this is implicitly enforced by addDecl.
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000727 if (NamedDecl *ND = dyn_cast<NamedDecl>(*D))
John McCall3f9a8a62009-08-11 06:59:38 +0000728 if (D->getDeclContext() == DCtx)
729 makeDeclVisibleInContextImpl(ND);
Douglas Gregor074149e2009-01-05 19:45:36 +0000730
Ted Kremenekc32b1d82009-11-17 22:58:30 +0000731 // Insert any forward-declared Objective-C interfaces into the lookup
732 // data structure.
733 if (ObjCClassDecl *Class = dyn_cast<ObjCClassDecl>(*D))
734 for (ObjCClassDecl::iterator I = Class->begin(), IEnd = Class->end();
735 I != IEnd; ++I)
Ted Kremenek321c22f2009-11-18 00:28:11 +0000736 makeDeclVisibleInContextImpl(I->getInterface());
Ted Kremenekc32b1d82009-11-17 22:58:30 +0000737
Douglas Gregor074149e2009-01-05 19:45:36 +0000738 // If this declaration is itself a transparent declaration context,
739 // add its members (recursively).
740 if (DeclContext *InnerCtx = dyn_cast<DeclContext>(*D))
741 if (InnerCtx->isTransparentContext())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000742 buildLookup(InnerCtx->getPrimaryContext());
Douglas Gregor074149e2009-01-05 19:45:36 +0000743 }
744 }
745}
746
Mike Stump1eb44332009-09-09 15:08:12 +0000747DeclContext::lookup_result
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000748DeclContext::lookup(DeclarationName Name) {
Steve Naroff0701bbb2009-01-08 17:28:14 +0000749 DeclContext *PrimaryContext = getPrimaryContext();
Douglas Gregor44b43212008-12-11 16:49:14 +0000750 if (PrimaryContext != this)
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000751 return PrimaryContext->lookup(Name);
Douglas Gregor44b43212008-12-11 16:49:14 +0000752
Douglas Gregor2cf26342009-04-09 22:27:44 +0000753 if (hasExternalVisibleStorage())
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000754 LoadVisibleDeclsFromExternalStorage();
Douglas Gregor2cf26342009-04-09 22:27:44 +0000755
Douglas Gregor3fc749d2008-12-23 00:26:44 +0000756 /// If there is no lookup data structure, build one now by walking
Douglas Gregor44b43212008-12-11 16:49:14 +0000757 /// all of the linked DeclContexts (in declaration order!) and
758 /// inserting their values.
Douglas Gregorc36c5402009-04-09 17:29:08 +0000759 if (!LookupPtr) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000760 buildLookup(this);
Douglas Gregor44b43212008-12-11 16:49:14 +0000761
Douglas Gregorc36c5402009-04-09 17:29:08 +0000762 if (!LookupPtr)
Chris Lattner91942502009-02-20 00:55:03 +0000763 return lookup_result(0, 0);
Douglas Gregorc36c5402009-04-09 17:29:08 +0000764 }
Douglas Gregor44b43212008-12-11 16:49:14 +0000765
Douglas Gregorc36c5402009-04-09 17:29:08 +0000766 StoredDeclsMap *Map = static_cast<StoredDeclsMap*>(LookupPtr);
767 StoredDeclsMap::iterator Pos = Map->find(Name);
768 if (Pos == Map->end())
769 return lookup_result(0, 0);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000770 return Pos->second.getLookupResult(getParentASTContext());
Douglas Gregor44b43212008-12-11 16:49:14 +0000771}
772
Mike Stump1eb44332009-09-09 15:08:12 +0000773DeclContext::lookup_const_result
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000774DeclContext::lookup(DeclarationName Name) const {
775 return const_cast<DeclContext*>(this)->lookup(Name);
Douglas Gregor44b43212008-12-11 16:49:14 +0000776}
777
Chris Lattner0cf2b192009-03-27 19:19:59 +0000778DeclContext *DeclContext::getLookupContext() {
779 DeclContext *Ctx = this;
Douglas Gregor72de6672009-01-08 20:45:30 +0000780 // Skip through transparent contexts.
Douglas Gregorce356072009-01-06 23:51:29 +0000781 while (Ctx->isTransparentContext())
782 Ctx = Ctx->getParent();
783 return Ctx;
784}
785
Douglas Gregor88b70942009-02-25 22:02:03 +0000786DeclContext *DeclContext::getEnclosingNamespaceContext() {
787 DeclContext *Ctx = this;
788 // Skip through non-namespace, non-translation-unit contexts.
789 while (!Ctx->isFileContext() || Ctx->isTransparentContext())
790 Ctx = Ctx->getParent();
791 return Ctx->getPrimaryContext();
792}
793
John McCallab88d972009-08-31 22:39:49 +0000794void DeclContext::makeDeclVisibleInContext(NamedDecl *D, bool Recoverable) {
Douglas Gregorcc636682009-02-17 23:15:12 +0000795 // FIXME: This feels like a hack. Should DeclarationName support
796 // template-ids, or is there a better way to keep specializations
797 // from being visible?
798 if (isa<ClassTemplateSpecializationDecl>(D))
799 return;
Eli Friedman6bc20132009-12-08 05:40:03 +0000800 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
801 if (FD->isFunctionTemplateSpecialization())
802 return;
Douglas Gregorcc636682009-02-17 23:15:12 +0000803
Steve Naroff0701bbb2009-01-08 17:28:14 +0000804 DeclContext *PrimaryContext = getPrimaryContext();
Douglas Gregor44b43212008-12-11 16:49:14 +0000805 if (PrimaryContext != this) {
John McCallab88d972009-08-31 22:39:49 +0000806 PrimaryContext->makeDeclVisibleInContext(D, Recoverable);
Douglas Gregor44b43212008-12-11 16:49:14 +0000807 return;
808 }
809
810 // If we already have a lookup data structure, perform the insertion
811 // into it. Otherwise, be lazy and don't build that structure until
812 // someone asks for it.
John McCallab88d972009-08-31 22:39:49 +0000813 if (LookupPtr || !Recoverable)
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000814 makeDeclVisibleInContextImpl(D);
Douglas Gregor074149e2009-01-05 19:45:36 +0000815
Douglas Gregor074149e2009-01-05 19:45:36 +0000816 // If we are a transparent context, insert into our parent context,
817 // too. This operation is recursive.
818 if (isTransparentContext())
John McCallab88d972009-08-31 22:39:49 +0000819 getParent()->makeDeclVisibleInContext(D, Recoverable);
Douglas Gregor44b43212008-12-11 16:49:14 +0000820}
821
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000822void DeclContext::makeDeclVisibleInContextImpl(NamedDecl *D) {
Douglas Gregor074149e2009-01-05 19:45:36 +0000823 // Skip unnamed declarations.
824 if (!D->getDeclName())
825 return;
826
Douglas Gregorcc636682009-02-17 23:15:12 +0000827 // FIXME: This feels like a hack. Should DeclarationName support
828 // template-ids, or is there a better way to keep specializations
829 // from being visible?
830 if (isa<ClassTemplateSpecializationDecl>(D))
831 return;
832
Douglas Gregorc36c5402009-04-09 17:29:08 +0000833 if (!LookupPtr)
834 LookupPtr = new StoredDeclsMap;
Douglas Gregor44b43212008-12-11 16:49:14 +0000835
836 // Insert this declaration into the map.
Douglas Gregorc36c5402009-04-09 17:29:08 +0000837 StoredDeclsMap &Map = *static_cast<StoredDeclsMap*>(LookupPtr);
Chris Lattner67762a32009-02-20 01:44:05 +0000838 StoredDeclsList &DeclNameEntries = Map[D->getDeclName()];
839 if (DeclNameEntries.isNull()) {
840 DeclNameEntries.setOnlyValue(D);
Chris Lattnerbd6c8002009-02-19 07:00:44 +0000841 return;
Douglas Gregor44b43212008-12-11 16:49:14 +0000842 }
Chris Lattner91942502009-02-20 00:55:03 +0000843
Chris Lattnerbdc3d002009-02-20 01:10:07 +0000844 // If it is possible that this is a redeclaration, check to see if there is
845 // already a decl for which declarationReplaces returns true. If there is
846 // one, just replace it and return.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000847 if (DeclNameEntries.HandleRedeclaration(getParentASTContext(), D))
Chris Lattner67762a32009-02-20 01:44:05 +0000848 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000849
Chris Lattnerbd6c8002009-02-19 07:00:44 +0000850 // Put this declaration into the appropriate slot.
Chris Lattner67762a32009-02-20 01:44:05 +0000851 DeclNameEntries.AddSubsequentDecl(D);
Douglas Gregor44b43212008-12-11 16:49:14 +0000852}
Douglas Gregor2a3009a2009-02-03 19:21:40 +0000853
854/// Returns iterator range [First, Last) of UsingDirectiveDecls stored within
855/// this context.
Mike Stump1eb44332009-09-09 15:08:12 +0000856DeclContext::udir_iterator_range
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000857DeclContext::getUsingDirectives() const {
858 lookup_const_result Result = lookup(UsingDirectiveDecl::getName());
Douglas Gregor2a3009a2009-02-03 19:21:40 +0000859 return udir_iterator_range(reinterpret_cast<udir_iterator>(Result.first),
860 reinterpret_cast<udir_iterator>(Result.second));
861}
Douglas Gregor2cf26342009-04-09 22:27:44 +0000862
863void StoredDeclsList::materializeDecls(ASTContext &Context) {
864 if (isNull())
865 return;
866
867 switch ((DataKind)(Data & 0x03)) {
868 case DK_Decl:
869 case DK_Decl_Vector:
870 break;
871
872 case DK_DeclID: {
873 // Resolve this declaration ID to an actual declaration by
874 // querying the external AST source.
875 unsigned DeclID = Data >> 2;
876
877 ExternalASTSource *Source = Context.getExternalSource();
878 assert(Source && "No external AST source available!");
879
880 Data = reinterpret_cast<uintptr_t>(Source->GetDecl(DeclID));
881 break;
882 }
883
884 case DK_ID_Vector: {
885 // We have a vector of declaration IDs. Resolve all of them to
886 // actual declarations.
887 VectorTy &Vector = *getAsVector();
888 ExternalASTSource *Source = Context.getExternalSource();
889 assert(Source && "No external AST source available!");
890
891 for (unsigned I = 0, N = Vector.size(); I != N; ++I)
892 Vector[I] = reinterpret_cast<uintptr_t>(Source->GetDecl(Vector[I]));
893
894 Data = (Data & ~0x03) | DK_Decl_Vector;
895 break;
896 }
897 }
898}