blob: f310c253ab20db1aa6b7cfd180316bf16354a976 [file] [log] [blame]
John McCall7d384dd2009-11-18 07:57:50 +00001//===--- Lookup.h - Classes for name lookup ---------------------*- C++ -*-===//
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 defines the LookupResult class, which is integral to
11// Sema's name-lookup subsystem.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_CLANG_SEMA_LOOKUP_H
16#define LLVM_CLANG_SEMA_LOOKUP_H
17
18#include "Sema.h"
19
20namespace clang {
21
22/// @brief Represents the results of name lookup.
23///
24/// An instance of the LookupResult class captures the results of a
25/// single name lookup, which can return no result (nothing found),
26/// a single declaration, a set of overloaded functions, or an
27/// ambiguity. Use the getKind() method to determine which of these
28/// results occurred for a given lookup.
John McCall7d384dd2009-11-18 07:57:50 +000029class LookupResult {
30public:
31 enum LookupResultKind {
32 /// @brief No entity found met the criteria.
33 NotFound = 0,
34
Douglas Gregor7d3f5762010-01-15 01:44:47 +000035 /// @brief No entity found met the criteria within the current
36 /// instantiation,, but there were dependent base classes of the
37 /// current instantiation that could not be searched.
38 NotFoundInCurrentInstantiation,
39
John McCall7d384dd2009-11-18 07:57:50 +000040 /// @brief Name lookup found a single declaration that met the
John McCall51fa86f2009-12-02 08:47:38 +000041 /// criteria. getFoundDecl() will return this declaration.
John McCall7d384dd2009-11-18 07:57:50 +000042 Found,
43
44 /// @brief Name lookup found a set of overloaded functions that
John McCall51fa86f2009-12-02 08:47:38 +000045 /// met the criteria.
John McCall7d384dd2009-11-18 07:57:50 +000046 FoundOverloaded,
47
48 /// @brief Name lookup found an unresolvable value declaration
49 /// and cannot yet complete. This only happens in C++ dependent
50 /// contexts with dependent using declarations.
51 FoundUnresolvedValue,
52
53 /// @brief Name lookup results in an ambiguity; use
54 /// getAmbiguityKind to figure out what kind of ambiguity
55 /// we have.
56 Ambiguous
57 };
58
59 enum AmbiguityKind {
60 /// Name lookup results in an ambiguity because multiple
61 /// entities that meet the lookup criteria were found in
62 /// subobjects of different types. For example:
63 /// @code
64 /// struct A { void f(int); }
65 /// struct B { void f(double); }
66 /// struct C : A, B { };
67 /// void test(C c) {
68 /// c.f(0); // error: A::f and B::f come from subobjects of different
69 /// // types. overload resolution is not performed.
70 /// }
71 /// @endcode
72 AmbiguousBaseSubobjectTypes,
73
74 /// Name lookup results in an ambiguity because multiple
75 /// nonstatic entities that meet the lookup criteria were found
76 /// in different subobjects of the same type. For example:
77 /// @code
78 /// struct A { int x; };
79 /// struct B : A { };
80 /// struct C : A { };
81 /// struct D : B, C { };
82 /// int test(D d) {
83 /// return d.x; // error: 'x' is found in two A subobjects (of B and C)
84 /// }
85 /// @endcode
86 AmbiguousBaseSubobjects,
87
88 /// Name lookup results in an ambiguity because multiple definitions
89 /// of entity that meet the lookup criteria were found in different
90 /// declaration contexts.
91 /// @code
92 /// namespace A {
93 /// int i;
94 /// namespace B { int i; }
95 /// int test() {
96 /// using namespace B;
97 /// return i; // error 'i' is found in namespace A and A::B
98 /// }
99 /// }
100 /// @endcode
101 AmbiguousReference,
102
103 /// Name lookup results in an ambiguity because an entity with a
104 /// tag name was hidden by an entity with an ordinary name from
105 /// a different context.
106 /// @code
107 /// namespace A { struct Foo {}; }
108 /// namespace B { void Foo(); }
109 /// namespace C {
110 /// using namespace A;
111 /// using namespace B;
112 /// }
113 /// void test() {
114 /// C::Foo(); // error: tag 'A::Foo' is hidden by an object in a
115 /// // different namespace
116 /// }
117 /// @endcode
118 AmbiguousTagHiding
119 };
120
121 /// A little identifier for flagging temporary lookup results.
122 enum TemporaryToken {
123 Temporary
124 };
125
John McCalleec51cf2010-01-20 00:46:10 +0000126 typedef UnresolvedSetImpl::iterator iterator;
John McCall1d7c5282009-12-18 10:40:03 +0000127 typedef bool (*ResultFilter)(NamedDecl*, unsigned IDNS);
128
John McCall7d384dd2009-11-18 07:57:50 +0000129 LookupResult(Sema &SemaRef, DeclarationName Name, SourceLocation NameLoc,
130 Sema::LookupNameKind LookupKind,
131 Sema::RedeclarationKind Redecl = Sema::NotForRedeclaration)
132 : ResultKind(NotFound),
133 Paths(0),
John McCall92f88312010-01-23 00:46:32 +0000134 NamingClass(0),
John McCall7d384dd2009-11-18 07:57:50 +0000135 SemaRef(SemaRef),
136 Name(Name),
137 NameLoc(NameLoc),
138 LookupKind(LookupKind),
John McCall1d7c5282009-12-18 10:40:03 +0000139 IsAcceptableFn(0),
John McCall7d384dd2009-11-18 07:57:50 +0000140 IDNS(0),
141 Redecl(Redecl != Sema::NotForRedeclaration),
142 HideTags(true),
143 Diagnose(Redecl == Sema::NotForRedeclaration)
John McCall1d7c5282009-12-18 10:40:03 +0000144 {
145 configure();
146 }
John McCall7d384dd2009-11-18 07:57:50 +0000147
148 /// Creates a temporary lookup result, initializing its core data
149 /// using the information from another result. Diagnostics are always
150 /// disabled.
151 LookupResult(TemporaryToken _, const LookupResult &Other)
152 : ResultKind(NotFound),
153 Paths(0),
John McCall92f88312010-01-23 00:46:32 +0000154 NamingClass(0),
John McCall7d384dd2009-11-18 07:57:50 +0000155 SemaRef(Other.SemaRef),
156 Name(Other.Name),
157 NameLoc(Other.NameLoc),
158 LookupKind(Other.LookupKind),
John McCall1d7c5282009-12-18 10:40:03 +0000159 IsAcceptableFn(Other.IsAcceptableFn),
John McCall7d384dd2009-11-18 07:57:50 +0000160 IDNS(Other.IDNS),
161 Redecl(Other.Redecl),
162 HideTags(Other.HideTags),
163 Diagnose(false)
164 {}
165
166 ~LookupResult() {
167 if (Diagnose) diagnose();
168 if (Paths) deletePaths(Paths);
169 }
170
171 /// Gets the name to look up.
172 DeclarationName getLookupName() const {
173 return Name;
174 }
175
Douglas Gregor546be3c2009-12-30 17:04:44 +0000176 /// \brief Sets the name to look up.
177 void setLookupName(DeclarationName Name) {
178 this->Name = Name;
179 }
180
John McCall7d384dd2009-11-18 07:57:50 +0000181 /// Gets the kind of lookup to perform.
182 Sema::LookupNameKind getLookupKind() const {
183 return LookupKind;
184 }
185
186 /// True if this lookup is just looking for an existing declaration.
187 bool isForRedeclaration() const {
188 return Redecl;
189 }
190
191 /// Sets whether tag declarations should be hidden by non-tag
192 /// declarations during resolution. The default is true.
193 void setHideTags(bool Hide) {
194 HideTags = Hide;
195 }
196
John McCall7d384dd2009-11-18 07:57:50 +0000197 bool isAmbiguous() const {
198 return getResultKind() == Ambiguous;
199 }
200
John McCall68263142009-11-18 22:49:29 +0000201 /// Determines if this names a single result which is not an
202 /// unresolved value using decl. If so, it is safe to call
203 /// getFoundDecl().
204 bool isSingleResult() const {
205 return getResultKind() == Found;
206 }
207
John McCall7453ed42009-11-22 00:44:51 +0000208 /// Determines if the results are overloaded.
209 bool isOverloadedResult() const {
210 return getResultKind() == FoundOverloaded;
211 }
212
John McCall129e2df2009-11-30 22:42:35 +0000213 bool isUnresolvableResult() const {
214 return getResultKind() == FoundUnresolvedValue;
215 }
216
John McCall7d384dd2009-11-18 07:57:50 +0000217 LookupResultKind getResultKind() const {
218 sanity();
219 return ResultKind;
220 }
221
222 AmbiguityKind getAmbiguityKind() const {
223 assert(isAmbiguous());
224 return Ambiguity;
225 }
226
John McCall6e266892010-01-26 03:27:55 +0000227 const UnresolvedSetImpl &asUnresolvedSet() const {
228 return Decls;
229 }
230
John McCalleec51cf2010-01-20 00:46:10 +0000231 iterator begin() const { return iterator(Decls.begin()); }
232 iterator end() const { return iterator(Decls.end()); }
John McCall7d384dd2009-11-18 07:57:50 +0000233
234 /// \brief Return true if no decls were found
235 bool empty() const { return Decls.empty(); }
236
237 /// \brief Return the base paths structure that's associated with
238 /// these results, or null if none is.
239 CXXBasePaths *getBasePaths() const {
240 return Paths;
241 }
242
John McCall1d7c5282009-12-18 10:40:03 +0000243 /// \brief Tests whether the given declaration is acceptable.
244 bool isAcceptableDecl(NamedDecl *D) const {
245 assert(IsAcceptableFn);
246 return IsAcceptableFn(D, IDNS);
247 }
248
249 /// \brief Returns the identifier namespace mask for this lookup.
250 unsigned getIdentifierNamespace() const {
251 return IDNS;
252 }
253
John McCall92f88312010-01-23 00:46:32 +0000254 /// \brief Returns whether these results arose from performing a
255 /// lookup into a class.
256 bool isClassLookup() const {
257 return NamingClass != 0;
258 }
259
260 /// \brief Returns the 'naming class' for this lookup, i.e. the
261 /// class which was looked into to find these results.
262 ///
263 /// C++0x [class.access.base]p5:
264 /// The access to a member is affected by the class in which the
265 /// member is named. This naming class is the class in which the
266 /// member name was looked up and found. [Note: this class can be
267 /// explicit, e.g., when a qualified-id is used, or implicit,
268 /// e.g., when a class member access operator (5.2.5) is used
269 /// (including cases where an implicit "this->" is added). If both
270 /// a class member access operator and a qualified-id are used to
271 /// name the member (as in p->T::m), the class naming the member
272 /// is the class named by the nested-name-specifier of the
273 /// qualified-id (that is, T). -- end note ]
274 ///
275 /// This is set by the lookup routines when they find results in a class.
276 CXXRecordDecl *getNamingClass() const {
277 return NamingClass;
278 }
279
280 /// \brief Sets the 'naming class' for this lookup.
281 void setNamingClass(CXXRecordDecl *Record) {
282 NamingClass = Record;
283 }
284
John McCall46460a62010-01-20 21:53:11 +0000285 /// \brief Add a declaration to these results with its natural access.
John McCalleec51cf2010-01-20 00:46:10 +0000286 /// Does not test the acceptance criteria.
John McCall7d384dd2009-11-18 07:57:50 +0000287 void addDecl(NamedDecl *D) {
John McCall46460a62010-01-20 21:53:11 +0000288 addDecl(D, D->getAccess());
289 }
290
291 /// \brief Add a declaration to these results with the given access.
292 /// Does not test the acceptance criteria.
293 void addDecl(NamedDecl *D, AccessSpecifier AS) {
294 Decls.addDecl(D, AS);
John McCall7d384dd2009-11-18 07:57:50 +0000295 ResultKind = Found;
296 }
297
298 /// \brief Add all the declarations from another set of lookup
299 /// results.
300 void addAllDecls(const LookupResult &Other) {
John McCalleec51cf2010-01-20 00:46:10 +0000301 Decls.append(Other.Decls.begin(), Other.Decls.end());
John McCall7d384dd2009-11-18 07:57:50 +0000302 ResultKind = Found;
303 }
304
Douglas Gregor7d3f5762010-01-15 01:44:47 +0000305 /// \brief Determine whether no result was found because we could not
306 /// search into dependent base classes of the current instantiation.
307 bool wasNotFoundInCurrentInstantiation() const {
308 return ResultKind == NotFoundInCurrentInstantiation;
309 }
310
311 /// \brief Note that while no result was found in the current instantiation,
312 /// there were dependent base classes that could not be searched.
313 void setNotFoundInCurrentInstantiation() {
314 assert(ResultKind == NotFound && Decls.empty());
315 ResultKind = NotFoundInCurrentInstantiation;
316 }
317
John McCall68263142009-11-18 22:49:29 +0000318 /// \brief Resolves the result kind of the lookup, possibly hiding
319 /// decls.
John McCall7d384dd2009-11-18 07:57:50 +0000320 ///
321 /// This should be called in any environment where lookup might
322 /// generate multiple lookup results.
323 void resolveKind();
324
John McCall68263142009-11-18 22:49:29 +0000325 /// \brief Re-resolves the result kind of the lookup after a set of
326 /// removals has been performed.
327 void resolveKindAfterFilter() {
Douglas Gregor7d3f5762010-01-15 01:44:47 +0000328 if (Decls.empty()) {
329 if (ResultKind != NotFoundInCurrentInstantiation)
330 ResultKind = NotFound;
331 } else {
John McCall68263142009-11-18 22:49:29 +0000332 ResultKind = Found;
333 resolveKind();
334 }
335 }
336
John McCallba135432009-11-21 08:51:07 +0000337 template <class DeclClass>
338 DeclClass *getAsSingle() const {
339 if (getResultKind() != Found) return 0;
340 return dyn_cast<DeclClass>(getFoundDecl());
341 }
342
John McCall7d384dd2009-11-18 07:57:50 +0000343 /// \brief Fetch the unique decl found by this lookup. Asserts
344 /// that one was found.
345 ///
346 /// This is intended for users who have examined the result kind
347 /// and are certain that there is only one result.
348 NamedDecl *getFoundDecl() const {
349 assert(getResultKind() == Found
350 && "getFoundDecl called on non-unique result");
John McCalleec51cf2010-01-20 00:46:10 +0000351 return (*begin())->getUnderlyingDecl();
John McCall7d384dd2009-11-18 07:57:50 +0000352 }
353
John McCall68263142009-11-18 22:49:29 +0000354 /// Fetches a representative decl. Useful for lazy diagnostics.
355 NamedDecl *getRepresentativeDecl() const {
356 assert(!Decls.empty() && "cannot get representative of empty set");
John McCalleec51cf2010-01-20 00:46:10 +0000357 return *begin();
John McCall68263142009-11-18 22:49:29 +0000358 }
359
John McCall7d384dd2009-11-18 07:57:50 +0000360 /// \brief Asks if the result is a single tag decl.
361 bool isSingleTagDecl() const {
362 return getResultKind() == Found && isa<TagDecl>(getFoundDecl());
363 }
364
365 /// \brief Make these results show that the name was found in
366 /// base classes of different types.
367 ///
368 /// The given paths object is copied and invalidated.
369 void setAmbiguousBaseSubobjectTypes(CXXBasePaths &P);
370
371 /// \brief Make these results show that the name was found in
372 /// distinct base classes of the same type.
373 ///
374 /// The given paths object is copied and invalidated.
375 void setAmbiguousBaseSubobjects(CXXBasePaths &P);
376
377 /// \brief Make these results show that the name was found in
378 /// different contexts and a tag decl was hidden by an ordinary
379 /// decl in a different context.
380 void setAmbiguousQualifiedTagHiding() {
381 setAmbiguous(AmbiguousTagHiding);
382 }
383
384 /// \brief Clears out any current state.
385 void clear() {
386 ResultKind = NotFound;
387 Decls.clear();
388 if (Paths) deletePaths(Paths);
389 Paths = NULL;
390 }
391
392 /// \brief Clears out any current state and re-initializes for a
393 /// different kind of lookup.
394 void clear(Sema::LookupNameKind Kind) {
395 clear();
396 LookupKind = Kind;
John McCall1d7c5282009-12-18 10:40:03 +0000397 configure();
John McCall7d384dd2009-11-18 07:57:50 +0000398 }
399
John McCall9c86b512010-03-25 21:28:06 +0000400 /// \brief Change this lookup's redeclaration kind.
401 void setRedeclarationKind(Sema::RedeclarationKind RK) {
402 Redecl = RK;
403 configure();
404 }
405
John McCall7d384dd2009-11-18 07:57:50 +0000406 void print(llvm::raw_ostream &);
407
408 /// Suppress the diagnostics that would normally fire because of this
409 /// lookup. This happens during (e.g.) redeclaration lookups.
410 void suppressDiagnostics() {
411 Diagnose = false;
412 }
413
414 /// Sets a 'context' source range.
415 void setContextRange(SourceRange SR) {
416 NameContextRange = SR;
417 }
418
419 /// Gets the source range of the context of this name; for C++
420 /// qualified lookups, this is the source range of the scope
421 /// specifier.
422 SourceRange getContextRange() const {
423 return NameContextRange;
424 }
425
426 /// Gets the location of the identifier. This isn't always defined:
427 /// sometimes we're doing lookups on synthesized names.
428 SourceLocation getNameLoc() const {
429 return NameLoc;
430 }
431
Douglas Gregor546be3c2009-12-30 17:04:44 +0000432 /// \brief Get the Sema object that this lookup result is searching
433 /// with.
434 Sema &getSema() const { return SemaRef; }
435
John McCall68263142009-11-18 22:49:29 +0000436 /// A class for iterating through a result set and possibly
437 /// filtering out results. The results returned are possibly
438 /// sugared.
439 class Filter {
440 LookupResult &Results;
John McCalleec51cf2010-01-20 00:46:10 +0000441 LookupResult::iterator I;
John McCallf7a1a742009-11-24 19:00:30 +0000442 bool Changed;
John McCall68263142009-11-18 22:49:29 +0000443#ifndef NDEBUG
444 bool CalledDone;
445#endif
446
447 friend class LookupResult;
448 Filter(LookupResult &Results)
John McCalleec51cf2010-01-20 00:46:10 +0000449 : Results(Results), I(Results.begin()), Changed(false)
John McCall68263142009-11-18 22:49:29 +0000450#ifndef NDEBUG
451 , CalledDone(false)
452#endif
453 {}
454
455 public:
456#ifndef NDEBUG
457 ~Filter() {
458 assert(CalledDone &&
459 "LookupResult::Filter destroyed without done() call");
460 }
461#endif
462
463 bool hasNext() const {
John McCalleec51cf2010-01-20 00:46:10 +0000464 return I != Results.end();
John McCall68263142009-11-18 22:49:29 +0000465 }
466
467 NamedDecl *next() {
John McCalleec51cf2010-01-20 00:46:10 +0000468 assert(I != Results.end() && "next() called on empty filter");
469 return *I++;
John McCall68263142009-11-18 22:49:29 +0000470 }
471
472 /// Erase the last element returned from this iterator.
473 void erase() {
John McCalleec51cf2010-01-20 00:46:10 +0000474 Results.Decls.erase(--I);
John McCallf7a1a742009-11-24 19:00:30 +0000475 Changed = true;
476 }
477
John McCalleec51cf2010-01-20 00:46:10 +0000478 /// Replaces the current entry with the given one, preserving the
479 /// access bits.
John McCallf7a1a742009-11-24 19:00:30 +0000480 void replace(NamedDecl *D) {
John McCalleec51cf2010-01-20 00:46:10 +0000481 Results.Decls.replace(I-1, D);
482 Changed = true;
483 }
484
485 /// Replaces the current entry with the given one.
486 void replace(NamedDecl *D, AccessSpecifier AS) {
487 Results.Decls.replace(I-1, D, AS);
John McCallf7a1a742009-11-24 19:00:30 +0000488 Changed = true;
John McCall68263142009-11-18 22:49:29 +0000489 }
490
491 void done() {
492#ifndef NDEBUG
493 assert(!CalledDone && "done() called twice");
494 CalledDone = true;
495#endif
496
John McCallf7a1a742009-11-24 19:00:30 +0000497 if (Changed)
John McCall68263142009-11-18 22:49:29 +0000498 Results.resolveKindAfterFilter();
499 }
500 };
501
502 /// Create a filter for this result set.
503 Filter makeFilter() {
504 return Filter(*this);
505 }
506
John McCall7d384dd2009-11-18 07:57:50 +0000507private:
508 void diagnose() {
509 if (isAmbiguous())
510 SemaRef.DiagnoseAmbiguousLookup(*this);
John McCall92f88312010-01-23 00:46:32 +0000511 else if (isClassLookup() && SemaRef.getLangOptions().AccessControl)
John McCall6b2accb2010-02-10 09:31:12 +0000512 SemaRef.CheckLookupAccess(*this);
John McCall7d384dd2009-11-18 07:57:50 +0000513 }
514
515 void setAmbiguous(AmbiguityKind AK) {
516 ResultKind = Ambiguous;
517 Ambiguity = AK;
518 }
519
520 void addDeclsFromBasePaths(const CXXBasePaths &P);
John McCall1d7c5282009-12-18 10:40:03 +0000521 void configure();
John McCall7d384dd2009-11-18 07:57:50 +0000522
523 // Sanity checks.
524 void sanity() const {
525 assert(ResultKind != NotFound || Decls.size() == 0);
526 assert(ResultKind != Found || Decls.size() == 1);
John McCall7453ed42009-11-22 00:44:51 +0000527 assert(ResultKind != FoundOverloaded || Decls.size() > 1 ||
John McCall97d9e212009-11-22 20:57:36 +0000528 (Decls.size() == 1 &&
John McCalleec51cf2010-01-20 00:46:10 +0000529 isa<FunctionTemplateDecl>((*begin())->getUnderlyingDecl())));
John McCall7453ed42009-11-22 00:44:51 +0000530 assert(ResultKind != FoundUnresolvedValue || sanityCheckUnresolved());
531 assert(ResultKind != Ambiguous || Decls.size() > 1 ||
532 (Decls.size() == 1 && Ambiguity == AmbiguousBaseSubobjects));
John McCall7d384dd2009-11-18 07:57:50 +0000533 assert((Paths != NULL) == (ResultKind == Ambiguous &&
534 (Ambiguity == AmbiguousBaseSubobjectTypes ||
535 Ambiguity == AmbiguousBaseSubobjects)));
536 }
537
John McCall7453ed42009-11-22 00:44:51 +0000538 bool sanityCheckUnresolved() const {
John McCalleec51cf2010-01-20 00:46:10 +0000539 for (iterator I = begin(), E = end(); I != E; ++I)
John McCall7453ed42009-11-22 00:44:51 +0000540 if (isa<UnresolvedUsingValueDecl>(*I))
541 return true;
542 return false;
543 }
544
John McCall7d384dd2009-11-18 07:57:50 +0000545 static void deletePaths(CXXBasePaths *);
546
547 // Results.
548 LookupResultKind ResultKind;
549 AmbiguityKind Ambiguity; // ill-defined unless ambiguous
John McCalleec51cf2010-01-20 00:46:10 +0000550 UnresolvedSet<8> Decls;
John McCall7d384dd2009-11-18 07:57:50 +0000551 CXXBasePaths *Paths;
John McCall92f88312010-01-23 00:46:32 +0000552 CXXRecordDecl *NamingClass;
John McCall7d384dd2009-11-18 07:57:50 +0000553
554 // Parameters.
555 Sema &SemaRef;
556 DeclarationName Name;
557 SourceLocation NameLoc;
558 SourceRange NameContextRange;
559 Sema::LookupNameKind LookupKind;
John McCall1d7c5282009-12-18 10:40:03 +0000560 ResultFilter IsAcceptableFn; // set by configure()
561 unsigned IDNS; // set by configure()
562
John McCall7d384dd2009-11-18 07:57:50 +0000563 bool Redecl;
564
565 /// \brief True if tag declarations should be hidden if non-tags
566 /// are present
567 bool HideTags;
568
569 bool Diagnose;
570};
571
Douglas Gregor546be3c2009-12-30 17:04:44 +0000572 /// \brief Consumes visible declarations found when searching for
573 /// all visible names within a given scope or context.
574 ///
575 /// This abstract class is meant to be subclassed by clients of \c
576 /// Sema::LookupVisibleDecls(), each of which should override the \c
577 /// FoundDecl() function to process declarations as they are found.
578 class VisibleDeclConsumer {
579 public:
580 /// \brief Destroys the visible declaration consumer.
581 virtual ~VisibleDeclConsumer();
582
583 /// \brief Invoked each time \p Sema::LookupVisibleDecls() finds a
584 /// declaration visible from the current scope or context.
585 ///
586 /// \param ND the declaration found.
587 ///
588 /// \param Hiding a declaration that hides the declaration \p ND,
589 /// or NULL if no such declaration exists.
Douglas Gregor0cc84042010-01-14 15:47:35 +0000590 ///
591 /// \param InBaseClass whether this declaration was found in base
592 /// class of the context we searched.
593 virtual void FoundDecl(NamedDecl *ND, NamedDecl *Hiding,
594 bool InBaseClass) = 0;
Douglas Gregor546be3c2009-12-30 17:04:44 +0000595 };
John McCall7edb5fd2010-01-26 07:16:45 +0000596
597/// \brief A class for storing results from argument-dependent lookup.
598class ADLResult {
599private:
600 /// A map from canonical decls to the 'most recent' decl.
601 llvm::DenseMap<NamedDecl*, NamedDecl*> Decls;
602
603public:
604 /// Adds a new ADL candidate to this map.
605 void insert(NamedDecl *D);
606
607 /// Removes any data associated with a given decl.
608 void erase(NamedDecl *D) {
609 Decls.erase(cast<NamedDecl>(D->getCanonicalDecl()));
610 }
611
612 class iterator {
613 typedef llvm::DenseMap<NamedDecl*,NamedDecl*>::iterator inner_iterator;
614 inner_iterator iter;
615
616 friend class ADLResult;
617 iterator(const inner_iterator &iter) : iter(iter) {}
618 public:
619 iterator() {}
620
621 iterator &operator++() { ++iter; return *this; }
622 iterator operator++(int) { return iterator(iter++); }
623
624 NamedDecl *operator*() const { return iter->second; }
625
626 bool operator==(const iterator &other) const { return iter == other.iter; }
627 bool operator!=(const iterator &other) const { return iter != other.iter; }
628 };
629
630 iterator begin() { return iterator(Decls.begin()); }
631 iterator end() { return iterator(Decls.end()); }
632};
633
John McCall7d384dd2009-11-18 07:57:50 +0000634}
635
636#endif