blob: 574de1675f49ccd29b0d589960fdd033f253f16a [file] [log] [blame]
Eli Friedmana8a09ac2008-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 Gregor469fc9a2009-02-02 23:39:07 +000015#include "clang/AST/Decl.h"
Argiris Kirtzidis6df1fc02008-06-09 21:05:31 +000016#include "clang/AST/DeclCXX.h"
Douglas Gregor279272e2009-02-04 19:02:06 +000017#include "clang/AST/DeclObjC.h"
18#include "clang/AST/DeclTemplate.h"
Eli Friedmana8a09ac2008-06-07 16:52:53 +000019#include "clang/AST/ASTContext.h"
Douglas Gregor8acb7272008-12-11 16:49:14 +000020#include "clang/AST/Type.h"
Eli Friedmana8a09ac2008-06-07 16:52:53 +000021#include "llvm/ADT/DenseMap.h"
Douglas Gregor6e71edc2008-12-23 21:05:05 +000022#include <algorithm>
23#include <functional>
Douglas Gregorddfd9d52008-12-23 00:26:44 +000024#include <vector>
Eli Friedmana8a09ac2008-06-07 16:52:53 +000025using namespace clang;
26
27//===----------------------------------------------------------------------===//
28// Statistics
29//===----------------------------------------------------------------------===//
30
Douglas Gregor469fc9a2009-02-02 23:39:07 +000031#define DECL(Derived, Base) static int n##Derived##s = 0;
32#include "clang/AST/DeclNodes.def"
Eli Friedmana8a09ac2008-06-07 16:52:53 +000033
34static bool StatSwitch = false;
35
36// This keeps track of all decl attributes. Since so few decls have attrs, we
37// keep them in a hash map instead of wasting space in the Decl class.
38typedef llvm::DenseMap<const Decl*, Attr*> DeclAttrMapTy;
39
40static DeclAttrMapTy *DeclAttrs = 0;
41
42const char *Decl::getDeclKindName() const {
43 switch (DeclKind) {
Douglas Gregor469fc9a2009-02-02 23:39:07 +000044 default: assert(0 && "Declaration not in DeclNodes.def!");
45#define DECL(Derived, Base) case Derived: return #Derived;
46#include "clang/AST/DeclNodes.def"
Eli Friedmana8a09ac2008-06-07 16:52:53 +000047 }
48}
49
Steve Naroffe5f128a2009-01-20 19:53:53 +000050const char *DeclContext::getDeclKindName() const {
51 switch (DeclKind) {
Douglas Gregor469fc9a2009-02-02 23:39:07 +000052 default: assert(0 && "Declaration context not in DeclNodes.def!");
Argiris Kirtzidis2d9b7612009-02-16 14:28:33 +000053#define DECL(Derived, Base) case Decl::Derived: return #Derived;
Douglas Gregor469fc9a2009-02-02 23:39:07 +000054#include "clang/AST/DeclNodes.def"
Steve Naroffe5f128a2009-01-20 19:53:53 +000055 }
56}
57
Eli Friedmana8a09ac2008-06-07 16:52:53 +000058bool Decl::CollectingStats(bool Enable) {
59 if (Enable)
60 StatSwitch = true;
61 return StatSwitch;
62}
63
64void Decl::PrintStats() {
65 fprintf(stderr, "*** Decl Stats:\n");
Eli Friedmana8a09ac2008-06-07 16:52:53 +000066
Douglas Gregor469fc9a2009-02-02 23:39:07 +000067 int totalDecls = 0;
68#define DECL(Derived, Base) totalDecls += n##Derived##s;
69#include "clang/AST/DeclNodes.def"
70 fprintf(stderr, " %d decls total.\n", totalDecls);
71
72 int totalBytes = 0;
73#define DECL(Derived, Base) \
74 if (n##Derived##s > 0) { \
75 totalBytes += (int)(n##Derived##s * sizeof(Derived##Decl)); \
76 fprintf(stderr, " %d " #Derived " decls, %d each (%d bytes)\n", \
77 n##Derived##s, (int)sizeof(Derived##Decl), \
78 (int)(n##Derived##s * sizeof(Derived##Decl))); \
79 }
80#include "clang/AST/DeclNodes.def"
Eli Friedmana8a09ac2008-06-07 16:52:53 +000081
Douglas Gregor469fc9a2009-02-02 23:39:07 +000082 fprintf(stderr, "Total bytes = %d\n", totalBytes);
Eli Friedmana8a09ac2008-06-07 16:52:53 +000083}
84
85void Decl::addDeclKind(Kind k) {
86 switch (k) {
Douglas Gregor469fc9a2009-02-02 23:39:07 +000087 default: assert(0 && "Declaration not in DeclNodes.def!");
88#define DECL(Derived, Base) case Derived: ++n##Derived##s; break;
89#include "clang/AST/DeclNodes.def"
Eli Friedmana8a09ac2008-06-07 16:52:53 +000090 }
91}
92
93//===----------------------------------------------------------------------===//
94// Decl Implementation
95//===----------------------------------------------------------------------===//
96
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +000097void Decl::setDeclContext(DeclContext *DC) {
98 if (isOutOfSemaDC())
99 delete getMultipleDC();
100
101 DeclCtx = reinterpret_cast<uintptr_t>(DC);
102}
103
104void Decl::setLexicalDeclContext(DeclContext *DC) {
105 if (DC == getLexicalDeclContext())
106 return;
107
108 if (isInSemaDC()) {
109 MultipleDC *MDC = new MultipleDC();
110 MDC->SemanticDC = getDeclContext();
111 MDC->LexicalDC = DC;
112 DeclCtx = reinterpret_cast<uintptr_t>(MDC) | 0x1;
113 } else {
114 getMultipleDC()->LexicalDC = DC;
115 }
116}
117
Eli Friedmana8a09ac2008-06-07 16:52:53 +0000118// Out-of-line virtual method providing a home for Decl.
119Decl::~Decl() {
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000120 if (isOutOfSemaDC())
121 delete getMultipleDC();
122
Eli Friedmana8a09ac2008-06-07 16:52:53 +0000123 if (!HasAttrs)
124 return;
125
126 DeclAttrMapTy::iterator it = DeclAttrs->find(this);
127 assert(it != DeclAttrs->end() && "No attrs found but HasAttrs is true!");
128
129 // release attributes.
130 delete it->second;
131 invalidateAttrs();
132}
133
134void Decl::addAttr(Attr *NewAttr) {
135 if (!DeclAttrs)
136 DeclAttrs = new DeclAttrMapTy();
137
138 Attr *&ExistingAttr = (*DeclAttrs)[this];
139
140 NewAttr->setNext(ExistingAttr);
141 ExistingAttr = NewAttr;
142
143 HasAttrs = true;
144}
145
146void Decl::invalidateAttrs() {
147 if (!HasAttrs) return;
148
149 HasAttrs = false;
150 (*DeclAttrs)[this] = 0;
151 DeclAttrs->erase(this);
152
153 if (DeclAttrs->empty()) {
154 delete DeclAttrs;
155 DeclAttrs = 0;
156 }
157}
158
159const Attr *Decl::getAttrs() const {
160 if (!HasAttrs)
161 return 0;
162
163 return (*DeclAttrs)[this];
164}
165
166void Decl::swapAttrs(Decl *RHS) {
167 bool HasLHSAttr = this->HasAttrs;
168 bool HasRHSAttr = RHS->HasAttrs;
169
170 // Usually, neither decl has attrs, nothing to do.
171 if (!HasLHSAttr && !HasRHSAttr) return;
172
173 // If 'this' has no attrs, swap the other way.
174 if (!HasLHSAttr)
175 return RHS->swapAttrs(this);
176
177 // Handle the case when both decls have attrs.
178 if (HasRHSAttr) {
179 std::swap((*DeclAttrs)[this], (*DeclAttrs)[RHS]);
180 return;
181 }
182
183 // Otherwise, LHS has an attr and RHS doesn't.
184 (*DeclAttrs)[RHS] = (*DeclAttrs)[this];
185 (*DeclAttrs).erase(this);
186 this->HasAttrs = false;
187 RHS->HasAttrs = true;
188}
189
190
191void Decl::Destroy(ASTContext& C) {
Douglas Gregor8314d742009-01-13 19:47:12 +0000192#if 0
Douglas Gregorf4006be2009-01-20 04:25:11 +0000193 // FIXME: Once ownership is fully understood, we can enable this code
194 if (DeclContext *DC = dyn_cast<DeclContext>(this))
195 DC->decls_begin()->Destroy(C);
Eli Friedmana8a09ac2008-06-07 16:52:53 +0000196
Douglas Gregorf4006be2009-01-20 04:25:11 +0000197 // Observe the unrolled recursion. By setting N->NextDeclInScope = 0x0
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000198 // within the loop, only the Destroy method for the first Decl
199 // will deallocate all of the Decls in a chain.
200
Douglas Gregorf4006be2009-01-20 04:25:11 +0000201 Decl* N = NextDeclInScope;
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000202
203 while (N) {
Douglas Gregorf4006be2009-01-20 04:25:11 +0000204 Decl* Tmp = N->NextDeclInScope;
205 N->NextDeclInScope = 0;
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000206 N->Destroy(C);
207 N = Tmp;
Eli Friedmana8a09ac2008-06-07 16:52:53 +0000208 }
Douglas Gregor8314d742009-01-13 19:47:12 +0000209
Eli Friedmana8a09ac2008-06-07 16:52:53 +0000210 this->~Decl();
Steve Naroff5abb0282009-01-27 21:25:57 +0000211 C.Deallocate((void *)this);
Douglas Gregorf4006be2009-01-20 04:25:11 +0000212#endif
Eli Friedmana8a09ac2008-06-07 16:52:53 +0000213}
214
Argiris Kirtzidis4b662ea2008-10-12 16:14:48 +0000215Decl *Decl::castFromDeclContext (const DeclContext *D) {
Argiris Kirtzidis981aa132009-02-16 14:29:28 +0000216 Decl::Kind DK = D->getDeclKind();
217 switch(DK) {
218#define DECL_CONTEXT(Name) \
219 case Decl::Name: \
220 return static_cast<Name##Decl*>(const_cast<DeclContext*>(D));
221#define DECL_CONTEXT_BASE(Name)
222#include "clang/AST/DeclNodes.def"
223 default:
224#define DECL_CONTEXT_BASE(Name) \
225 if (DK >= Decl::Name##First && DK <= Decl::Name##Last) \
226 return static_cast<Name##Decl*>(const_cast<DeclContext*>(D));
227#include "clang/AST/DeclNodes.def"
228 assert(false && "a decl that inherits DeclContext isn't handled");
229 return 0;
230 }
Argiris Kirtzidis4b662ea2008-10-12 16:14:48 +0000231}
232
233DeclContext *Decl::castToDeclContext(const Decl *D) {
Argiris Kirtzidis981aa132009-02-16 14:29:28 +0000234 Decl::Kind DK = D->getKind();
235 switch(DK) {
236#define DECL_CONTEXT(Name) \
237 case Decl::Name: \
238 return static_cast<Name##Decl*>(const_cast<Decl*>(D));
239#define DECL_CONTEXT_BASE(Name)
240#include "clang/AST/DeclNodes.def"
241 default:
242#define DECL_CONTEXT_BASE(Name) \
243 if (DK >= Decl::Name##First && DK <= Decl::Name##Last) \
244 return static_cast<Name##Decl*>(const_cast<Decl*>(D));
245#include "clang/AST/DeclNodes.def"
246 assert(false && "a decl that inherits DeclContext isn't handled");
247 return 0;
248 }
Argiris Kirtzidis4b662ea2008-10-12 16:14:48 +0000249}
250
Eli Friedmana8a09ac2008-06-07 16:52:53 +0000251//===----------------------------------------------------------------------===//
252// DeclContext Implementation
253//===----------------------------------------------------------------------===//
254
Argiris Kirtzidis981aa132009-02-16 14:29:28 +0000255bool DeclContext::classof(const Decl *D) {
256 switch (D->getKind()) {
257#define DECL_CONTEXT(Name) case Decl::Name:
258#define DECL_CONTEXT_BASE(Name)
259#include "clang/AST/DeclNodes.def"
260 return true;
261 default:
262#define DECL_CONTEXT_BASE(Name) \
263 if (D->getKind() >= Decl::Name##First && \
264 D->getKind() <= Decl::Name##Last) \
265 return true;
266#include "clang/AST/DeclNodes.def"
267 return false;
268 }
269}
270
Chris Lattner77820d52009-02-20 01:44:05 +0000271/// StoredDeclsList - This is an array of decls optimized a common case of only
272/// containing one entry.
273struct StoredDeclsList {
274 /// Data - If the integer is 0, then the pointer is a NamedDecl*. If the
275 /// integer is 1, then it is a VectorTy;
276 llvm::PointerIntPair<void*, 1, bool> Data;
277
278 /// VectorTy - When in vector form, this is what the Data pointer points to.
279 typedef llvm::SmallVector<NamedDecl*, 4> VectorTy;
280public:
281 StoredDeclsList() {}
282 StoredDeclsList(const StoredDeclsList &RHS) : Data(RHS.Data) {
283 if (isVector())
284 Data.setPointer(new VectorTy(getVector()));
285 }
286
287 ~StoredDeclsList() {
288 // If this is a vector-form, free the vector.
289 if (isVector())
290 delete &getVector();
291 }
292
Chris Lattner51e57e62009-02-23 18:17:44 +0000293 StoredDeclsList &operator=(const StoredDeclsList &RHS) {
294 if (isVector())
295 delete &getVector();
296 Data = RHS.Data;
297 if (isVector())
298 Data.setPointer(new VectorTy(getVector()));
299 return *this;
300 }
301
Chris Lattner77820d52009-02-20 01:44:05 +0000302 bool isVector() const { return Data.getInt() != 0; }
303 bool isInline() const { return Data.getInt() == 0; }
304 bool isNull() const { return Data.getPointer() == 0; }
305
306 void setOnlyValue(NamedDecl *ND) {
307 assert(isInline() && "Not inline");
308 Data.setPointer(ND);
309 }
310
311 /// getLookupResult - Return an array of all the decls that this list
312 /// represents.
313 DeclContext::lookup_result getLookupResult() {
314 // If we have a single inline unit, return it.
315 if (isInline()) {
316 assert(!isNull() && "Empty list isn't allowed");
317
318 // Data is a raw pointer to a NamedDecl*, return it.
319 void *Ptr = &Data;
320 return DeclContext::lookup_result((NamedDecl**)Ptr, (NamedDecl**)Ptr+1);
321 }
322
323 // Otherwise, we have a range result.
324 VectorTy &V = getVector();
325 return DeclContext::lookup_result(&V[0], &V[0]+V.size());
326 }
327
328 /// HandleRedeclaration - If this is a redeclaration of an existing decl,
329 /// replace the old one with D and return true. Otherwise return false.
330 bool HandleRedeclaration(NamedDecl *D) {
331 // Most decls only have one entry in their list, special case it.
332 if (isInline()) {
333 if (!D->declarationReplaces(getInlineValue()))
334 return false;
335 setOnlyValue(D);
336 return true;
337 }
338
339 // Determine if this declaration is actually a redeclaration.
340 VectorTy &Vec = getVector();
341 VectorTy::iterator RDI
342 = std::find_if(Vec.begin(), Vec.end(),
343 std::bind1st(std::mem_fun(&NamedDecl::declarationReplaces),
344 D));
345 if (RDI == Vec.end())
346 return false;
347 *RDI = D;
348 return true;
349 }
350
351 /// AddSubsequentDecl - This is called on the second and later decl when it is
352 /// not a redeclaration to merge it into the appropriate place in our list.
353 ///
354 void AddSubsequentDecl(NamedDecl *D) {
355 // If this is the second decl added to the list, convert this to vector
356 // form.
357 if (isInline()) {
358 NamedDecl *OldD = getInlineValue();
359 Data.setInt(1);
360 VectorTy *VT = new VectorTy();
361 VT->push_back(OldD);
362 Data.setPointer(VT);
363 }
364
365 VectorTy &Vec = getVector();
366 if (isa<UsingDirectiveDecl>(D) ||
367 D->getIdentifierNamespace() == Decl::IDNS_Tag)
368 Vec.push_back(D);
369 else if (Vec.back()->getIdentifierNamespace() == Decl::IDNS_Tag) {
370 NamedDecl *TagD = Vec.back();
371 Vec.back() = D;
372 Vec.push_back(TagD);
373 } else
374 Vec.push_back(D);
375 }
376
377
378private:
379 VectorTy &getVector() const {
380 assert(isVector() && "Not in vector form");
381 return *static_cast<VectorTy*>(Data.getPointer());
382 }
383
384 NamedDecl *getInlineValue() const {
385 assert(isInline() && "Not in inline form");
386 return (NamedDecl*)Data.getPointer();
387 }
388};
389
390
391
392typedef llvm::DenseMap<DeclarationName, StoredDeclsList> StoredDeclsMap;
Douglas Gregor8acb7272008-12-11 16:49:14 +0000393
394DeclContext::~DeclContext() {
395 unsigned Size = LookupPtr.getInt();
Chris Lattner265f01d2009-02-20 00:55:03 +0000396 if (Size == LookupIsMap)
397 delete static_cast<StoredDeclsMap*>(LookupPtr.getPointer());
398 else
399 delete [] static_cast<NamedDecl**>(LookupPtr.getPointer());
Douglas Gregor8acb7272008-12-11 16:49:14 +0000400}
401
402void DeclContext::DestroyDecls(ASTContext &C) {
Douglas Gregorf4006be2009-01-20 04:25:11 +0000403 for (decl_iterator D = decls_begin(); D != decls_end(); )
404 (*D++)->Destroy(C);
Douglas Gregor8acb7272008-12-11 16:49:14 +0000405}
406
Douglas Gregord8028382009-01-05 19:45:36 +0000407bool DeclContext::isTransparentContext() const {
408 if (DeclKind == Decl::Enum)
409 return true; // FIXME: Check for C++0x scoped enums
410 else if (DeclKind == Decl::LinkageSpec)
411 return true;
Douglas Gregor1db12932009-02-26 00:02:51 +0000412 else if (DeclKind >= Decl::RecordFirst && DeclKind <= Decl::RecordLast)
Douglas Gregor723d3332009-01-07 00:43:41 +0000413 return cast<RecordDecl>(this)->isAnonymousStructOrUnion();
Douglas Gregord8028382009-01-05 19:45:36 +0000414 else if (DeclKind == Decl::Namespace)
415 return false; // FIXME: Check for C++0x inline namespaces
416
417 return false;
418}
419
Steve Naroffab63fd62009-01-08 17:28:14 +0000420DeclContext *DeclContext::getPrimaryContext() {
Douglas Gregor8acb7272008-12-11 16:49:14 +0000421 switch (DeclKind) {
Douglas Gregor8acb7272008-12-11 16:49:14 +0000422 case Decl::TranslationUnit:
Douglas Gregord8028382009-01-05 19:45:36 +0000423 case Decl::LinkageSpec:
424 case Decl::Block:
Douglas Gregor8acb7272008-12-11 16:49:14 +0000425 // There is only one DeclContext for these entities.
426 return this;
427
428 case Decl::Namespace:
429 // The original namespace is our primary context.
430 return static_cast<NamespaceDecl*>(this)->getOriginalNamespace();
431
Douglas Gregor8acb7272008-12-11 16:49:14 +0000432 case Decl::ObjCMethod:
433 return this;
434
435 case Decl::ObjCInterface:
Steve Naroffab63fd62009-01-08 17:28:14 +0000436 case Decl::ObjCProtocol:
437 case Decl::ObjCCategory:
Douglas Gregor8acb7272008-12-11 16:49:14 +0000438 // FIXME: Can Objective-C interfaces be forward-declared?
439 return this;
440
Steve Naroffab63fd62009-01-08 17:28:14 +0000441 case Decl::ObjCImplementation:
442 case Decl::ObjCCategoryImpl:
443 return this;
444
Douglas Gregor8acb7272008-12-11 16:49:14 +0000445 default:
Douglas Gregora08b6c72009-02-17 23:15:12 +0000446 if (DeclKind >= Decl::TagFirst && DeclKind <= Decl::TagLast) {
447 // If this is a tag type that has a definition or is currently
448 // being defined, that definition is our primary context.
Douglas Gregor9c7825b2009-02-26 22:19:44 +0000449 if (const TagType *TagT = cast<TagDecl>(this)->TypeForDecl->getAsTagType())
Douglas Gregora08b6c72009-02-17 23:15:12 +0000450 if (TagT->isBeingDefined() ||
451 (TagT->getDecl() && TagT->getDecl()->isDefinition()))
452 return TagT->getDecl();
453 return this;
454 }
455
Douglas Gregor8acb7272008-12-11 16:49:14 +0000456 assert(DeclKind >= Decl::FunctionFirst && DeclKind <= Decl::FunctionLast &&
457 "Unknown DeclContext kind");
458 return this;
459 }
460}
461
462DeclContext *DeclContext::getNextContext() {
463 switch (DeclKind) {
Douglas Gregor8acb7272008-12-11 16:49:14 +0000464 case Decl::Namespace:
465 // Return the next namespace
466 return static_cast<NamespaceDecl*>(this)->getNextNamespace();
467
468 default:
Douglas Gregor8acb7272008-12-11 16:49:14 +0000469 return 0;
470 }
471}
472
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000473void DeclContext::addDecl(Decl *D) {
Chris Lattner53602072009-02-20 00:56:18 +0000474 assert(D->getLexicalDeclContext() == this &&
475 "Decl inserted into wrong lexical context");
Douglas Gregord1675382009-01-09 19:42:16 +0000476 assert(!D->NextDeclInScope && D != LastDecl &&
477 "Decl already inserted into a DeclContext");
478
479 if (FirstDecl) {
480 LastDecl->NextDeclInScope = D;
481 LastDecl = D;
482 } else {
483 FirstDecl = LastDecl = D;
484 }
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000485
486 if (NamedDecl *ND = dyn_cast<NamedDecl>(D))
Douglas Gregor9ac66d22009-01-20 16:54:50 +0000487 ND->getDeclContext()->makeDeclVisibleInContext(ND);
Douglas Gregor8acb7272008-12-11 16:49:14 +0000488}
489
Douglas Gregord8028382009-01-05 19:45:36 +0000490/// buildLookup - Build the lookup data structure with all of the
491/// declarations in DCtx (and any other contexts linked to it or
492/// transparent contexts nested within it).
Steve Naroffab63fd62009-01-08 17:28:14 +0000493void DeclContext::buildLookup(DeclContext *DCtx) {
Douglas Gregord8028382009-01-05 19:45:36 +0000494 for (; DCtx; DCtx = DCtx->getNextContext()) {
Douglas Gregorf0464ec2009-01-06 07:17:58 +0000495 for (decl_iterator D = DCtx->decls_begin(), DEnd = DCtx->decls_end();
496 D != DEnd; ++D) {
Douglas Gregord8028382009-01-05 19:45:36 +0000497 // Insert this declaration into the lookup structure
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000498 if (NamedDecl *ND = dyn_cast<NamedDecl>(*D))
Douglas Gregor9ac66d22009-01-20 16:54:50 +0000499 makeDeclVisibleInContextImpl(ND);
Douglas Gregord8028382009-01-05 19:45:36 +0000500
501 // If this declaration is itself a transparent declaration context,
502 // add its members (recursively).
503 if (DeclContext *InnerCtx = dyn_cast<DeclContext>(*D))
504 if (InnerCtx->isTransparentContext())
Steve Naroffab63fd62009-01-08 17:28:14 +0000505 buildLookup(InnerCtx->getPrimaryContext());
Douglas Gregord8028382009-01-05 19:45:36 +0000506 }
507 }
508}
509
Douglas Gregor8acb7272008-12-11 16:49:14 +0000510DeclContext::lookup_result
Steve Naroffab63fd62009-01-08 17:28:14 +0000511DeclContext::lookup(DeclarationName Name) {
512 DeclContext *PrimaryContext = getPrimaryContext();
Douglas Gregor8acb7272008-12-11 16:49:14 +0000513 if (PrimaryContext != this)
Steve Naroffab63fd62009-01-08 17:28:14 +0000514 return PrimaryContext->lookup(Name);
Douglas Gregor8acb7272008-12-11 16:49:14 +0000515
Douglas Gregorddfd9d52008-12-23 00:26:44 +0000516 /// If there is no lookup data structure, build one now by walking
Douglas Gregor8acb7272008-12-11 16:49:14 +0000517 /// all of the linked DeclContexts (in declaration order!) and
518 /// inserting their values.
Douglas Gregord8028382009-01-05 19:45:36 +0000519 if (LookupPtr.getPointer() == 0)
Steve Naroffab63fd62009-01-08 17:28:14 +0000520 buildLookup(this);
Douglas Gregor8acb7272008-12-11 16:49:14 +0000521
Douglas Gregor8acb7272008-12-11 16:49:14 +0000522 if (isLookupMap()) {
523 StoredDeclsMap *Map = static_cast<StoredDeclsMap*>(LookupPtr.getPointer());
524 StoredDeclsMap::iterator Pos = Map->find(Name);
Chris Lattner265f01d2009-02-20 00:55:03 +0000525 if (Pos == Map->end())
526 return lookup_result(0, 0);
Chris Lattner77820d52009-02-20 01:44:05 +0000527 return Pos->second.getLookupResult();
Douglas Gregor8acb7272008-12-11 16:49:14 +0000528 }
529
530 // We have a small array. Look into it.
531 unsigned Size = LookupPtr.getInt();
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000532 NamedDecl **Array = static_cast<NamedDecl**>(LookupPtr.getPointer());
Douglas Gregor39677622008-12-11 20:41:00 +0000533 for (unsigned Idx = 0; Idx != Size; ++Idx)
Douglas Gregor8acb7272008-12-11 16:49:14 +0000534 if (Array[Idx]->getDeclName() == Name) {
Douglas Gregorddfd9d52008-12-23 00:26:44 +0000535 unsigned Last = Idx + 1;
536 while (Last != Size && Array[Last]->getDeclName() == Name)
537 ++Last;
538 return lookup_result(&Array[Idx], &Array[Last]);
Douglas Gregor8acb7272008-12-11 16:49:14 +0000539 }
540
Douglas Gregorddfd9d52008-12-23 00:26:44 +0000541 return lookup_result(0, 0);
Douglas Gregor8acb7272008-12-11 16:49:14 +0000542}
543
544DeclContext::lookup_const_result
Steve Naroffab63fd62009-01-08 17:28:14 +0000545DeclContext::lookup(DeclarationName Name) const {
546 return const_cast<DeclContext*>(this)->lookup(Name);
Douglas Gregor8acb7272008-12-11 16:49:14 +0000547}
548
Douglas Gregor38d38a02009-01-07 02:48:43 +0000549const DeclContext *DeclContext::getLookupContext() const {
550 const DeclContext *Ctx = this;
Douglas Gregordb568cf2009-01-08 20:45:30 +0000551 // Skip through transparent contexts.
Douglas Gregor69e781f2009-01-06 23:51:29 +0000552 while (Ctx->isTransparentContext())
553 Ctx = Ctx->getParent();
554 return Ctx;
555}
556
Douglas Gregor0d93f692009-02-25 22:02:03 +0000557DeclContext *DeclContext::getEnclosingNamespaceContext() {
558 DeclContext *Ctx = this;
559 // Skip through non-namespace, non-translation-unit contexts.
560 while (!Ctx->isFileContext() || Ctx->isTransparentContext())
561 Ctx = Ctx->getParent();
562 return Ctx->getPrimaryContext();
563}
564
Douglas Gregor9ac66d22009-01-20 16:54:50 +0000565void DeclContext::makeDeclVisibleInContext(NamedDecl *D) {
Douglas Gregora08b6c72009-02-17 23:15:12 +0000566 // FIXME: This feels like a hack. Should DeclarationName support
567 // template-ids, or is there a better way to keep specializations
568 // from being visible?
569 if (isa<ClassTemplateSpecializationDecl>(D))
570 return;
571
Steve Naroffab63fd62009-01-08 17:28:14 +0000572 DeclContext *PrimaryContext = getPrimaryContext();
Douglas Gregor8acb7272008-12-11 16:49:14 +0000573 if (PrimaryContext != this) {
Douglas Gregor9ac66d22009-01-20 16:54:50 +0000574 PrimaryContext->makeDeclVisibleInContext(D);
Douglas Gregor8acb7272008-12-11 16:49:14 +0000575 return;
576 }
577
578 // If we already have a lookup data structure, perform the insertion
579 // into it. Otherwise, be lazy and don't build that structure until
580 // someone asks for it.
581 if (LookupPtr.getPointer())
Douglas Gregor9ac66d22009-01-20 16:54:50 +0000582 makeDeclVisibleInContextImpl(D);
Douglas Gregord8028382009-01-05 19:45:36 +0000583
Douglas Gregord8028382009-01-05 19:45:36 +0000584 // If we are a transparent context, insert into our parent context,
585 // too. This operation is recursive.
586 if (isTransparentContext())
Douglas Gregor9ac66d22009-01-20 16:54:50 +0000587 getParent()->makeDeclVisibleInContext(D);
Douglas Gregor8acb7272008-12-11 16:49:14 +0000588}
589
Douglas Gregor9ac66d22009-01-20 16:54:50 +0000590void DeclContext::makeDeclVisibleInContextImpl(NamedDecl *D) {
Douglas Gregord8028382009-01-05 19:45:36 +0000591 // Skip unnamed declarations.
592 if (!D->getDeclName())
593 return;
594
Douglas Gregora08b6c72009-02-17 23:15:12 +0000595 // FIXME: This feels like a hack. Should DeclarationName support
596 // template-ids, or is there a better way to keep specializations
597 // from being visible?
598 if (isa<ClassTemplateSpecializationDecl>(D))
599 return;
600
Douglas Gregorddfd9d52008-12-23 00:26:44 +0000601 bool MayBeRedeclaration = true;
602
Douglas Gregor8acb7272008-12-11 16:49:14 +0000603 if (!isLookupMap()) {
604 unsigned Size = LookupPtr.getInt();
605
606 // The lookup data is stored as an array. Search through the array
607 // to find the insertion location.
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000608 NamedDecl **Array;
Douglas Gregor8acb7272008-12-11 16:49:14 +0000609 if (Size == 0) {
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000610 Array = new NamedDecl*[LookupIsMap - 1];
Douglas Gregor8acb7272008-12-11 16:49:14 +0000611 LookupPtr.setPointer(Array);
612 } else {
Douglas Gregoraf8ad2b2009-01-20 01:17:11 +0000613 Array = static_cast<NamedDecl **>(LookupPtr.getPointer());
Douglas Gregor8acb7272008-12-11 16:49:14 +0000614 }
615
616 // We always keep declarations of the same name next to each other
617 // in the array, so that it is easy to return multiple results
Douglas Gregorddfd9d52008-12-23 00:26:44 +0000618 // from lookup().
619 unsigned FirstMatch;
620 for (FirstMatch = 0; FirstMatch != Size; ++FirstMatch)
621 if (Array[FirstMatch]->getDeclName() == D->getDeclName())
Douglas Gregor39677622008-12-11 20:41:00 +0000622 break;
Douglas Gregor8acb7272008-12-11 16:49:14 +0000623
Douglas Gregorddfd9d52008-12-23 00:26:44 +0000624 unsigned InsertPos = FirstMatch;
625 if (FirstMatch != Size) {
626 // We found another declaration with the same name. First
627 // determine whether this is a redeclaration of an existing
628 // declaration in this scope, in which case we will replace the
629 // existing declaration.
630 unsigned LastMatch = FirstMatch;
631 for (; LastMatch != Size; ++LastMatch) {
632 if (Array[LastMatch]->getDeclName() != D->getDeclName())
633 break;
634
Douglas Gregor6e71edc2008-12-23 21:05:05 +0000635 if (D->declarationReplaces(Array[LastMatch])) {
Douglas Gregorddfd9d52008-12-23 00:26:44 +0000636 // D is a redeclaration of an existing element in the
637 // array. Replace that element with D.
638 Array[LastMatch] = D;
639 return;
640 }
Douglas Gregor8acb7272008-12-11 16:49:14 +0000641 }
642
Douglas Gregorddfd9d52008-12-23 00:26:44 +0000643 // [FirstMatch, LastMatch) contains the set of declarations that
644 // have the same name as this declaration. Determine where the
Douglas Gregor7a7be652009-02-03 19:21:40 +0000645 // declaration D will be inserted into this range.
646 if (D->getKind() == Decl::UsingDirective ||
647 D->getIdentifierNamespace() == Decl::IDNS_Tag)
Douglas Gregorddfd9d52008-12-23 00:26:44 +0000648 InsertPos = LastMatch;
649 else if (Array[LastMatch-1]->getIdentifierNamespace() == Decl::IDNS_Tag)
650 InsertPos = LastMatch - 1;
651 else
652 InsertPos = LastMatch;
Douglas Gregor8acb7272008-12-11 16:49:14 +0000653 }
654
655 if (Size < LookupIsMap - 1) {
656 // The new declaration will fit in the array. Insert the new
657 // declaration at the position Match in the array.
Douglas Gregorddfd9d52008-12-23 00:26:44 +0000658 for (unsigned Idx = Size; Idx > InsertPos; --Idx)
Douglas Gregor8acb7272008-12-11 16:49:14 +0000659 Array[Idx] = Array[Idx-1];
660
Douglas Gregorddfd9d52008-12-23 00:26:44 +0000661 Array[InsertPos] = D;
Douglas Gregor8acb7272008-12-11 16:49:14 +0000662 LookupPtr.setInt(Size + 1);
663 return;
664 }
665
666 // We've reached capacity in this array. Create a map and copy in
667 // all of the declarations that were stored in the array.
668 StoredDeclsMap *Map = new StoredDeclsMap(16);
669 LookupPtr.setPointer(Map);
670 LookupPtr.setInt(LookupIsMap);
Douglas Gregor39677622008-12-11 20:41:00 +0000671 for (unsigned Idx = 0; Idx != LookupIsMap - 1; ++Idx)
Douglas Gregor9ac66d22009-01-20 16:54:50 +0000672 makeDeclVisibleInContextImpl(Array[Idx]);
Douglas Gregor8acb7272008-12-11 16:49:14 +0000673 delete [] Array;
674
675 // Fall through to perform insertion into the map.
Douglas Gregorddfd9d52008-12-23 00:26:44 +0000676 MayBeRedeclaration = false;
677 }
Douglas Gregor8acb7272008-12-11 16:49:14 +0000678
679 // Insert this declaration into the map.
Chris Lattner77820d52009-02-20 01:44:05 +0000680 StoredDeclsMap &Map = *static_cast<StoredDeclsMap*>(LookupPtr.getPointer());
681 StoredDeclsList &DeclNameEntries = Map[D->getDeclName()];
682 if (DeclNameEntries.isNull()) {
683 DeclNameEntries.setOnlyValue(D);
Chris Lattner6719b1f2009-02-19 07:00:44 +0000684 return;
Douglas Gregor8acb7272008-12-11 16:49:14 +0000685 }
Chris Lattner265f01d2009-02-20 00:55:03 +0000686
Chris Lattnerba589d42009-02-20 01:10:07 +0000687 // If it is possible that this is a redeclaration, check to see if there is
688 // already a decl for which declarationReplaces returns true. If there is
689 // one, just replace it and return.
Chris Lattner77820d52009-02-20 01:44:05 +0000690 if (MayBeRedeclaration && DeclNameEntries.HandleRedeclaration(D))
691 return;
Chris Lattner265f01d2009-02-20 00:55:03 +0000692
Chris Lattner6719b1f2009-02-19 07:00:44 +0000693 // Put this declaration into the appropriate slot.
Chris Lattner77820d52009-02-20 01:44:05 +0000694 DeclNameEntries.AddSubsequentDecl(D);
Douglas Gregor8acb7272008-12-11 16:49:14 +0000695}
Douglas Gregor7a7be652009-02-03 19:21:40 +0000696
697/// Returns iterator range [First, Last) of UsingDirectiveDecls stored within
698/// this context.
699DeclContext::udir_iterator_range DeclContext::getUsingDirectives() const {
700 lookup_const_result Result = lookup(UsingDirectiveDecl::getName());
701 return udir_iterator_range(reinterpret_cast<udir_iterator>(Result.first),
702 reinterpret_cast<udir_iterator>(Result.second));
703}
704