blob: fa6f037026483371004ea0fac0d70a8cd4e75687 [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
400 void print(llvm::raw_ostream &);
401
402 /// Suppress the diagnostics that would normally fire because of this
403 /// lookup. This happens during (e.g.) redeclaration lookups.
404 void suppressDiagnostics() {
405 Diagnose = false;
406 }
407
408 /// Sets a 'context' source range.
409 void setContextRange(SourceRange SR) {
410 NameContextRange = SR;
411 }
412
413 /// Gets the source range of the context of this name; for C++
414 /// qualified lookups, this is the source range of the scope
415 /// specifier.
416 SourceRange getContextRange() const {
417 return NameContextRange;
418 }
419
420 /// Gets the location of the identifier. This isn't always defined:
421 /// sometimes we're doing lookups on synthesized names.
422 SourceLocation getNameLoc() const {
423 return NameLoc;
424 }
425
Douglas Gregor546be3c2009-12-30 17:04:44 +0000426 /// \brief Get the Sema object that this lookup result is searching
427 /// with.
428 Sema &getSema() const { return SemaRef; }
429
John McCall68263142009-11-18 22:49:29 +0000430 /// A class for iterating through a result set and possibly
431 /// filtering out results. The results returned are possibly
432 /// sugared.
433 class Filter {
434 LookupResult &Results;
John McCalleec51cf2010-01-20 00:46:10 +0000435 LookupResult::iterator I;
John McCallf7a1a742009-11-24 19:00:30 +0000436 bool Changed;
John McCall68263142009-11-18 22:49:29 +0000437#ifndef NDEBUG
438 bool CalledDone;
439#endif
440
441 friend class LookupResult;
442 Filter(LookupResult &Results)
John McCalleec51cf2010-01-20 00:46:10 +0000443 : Results(Results), I(Results.begin()), Changed(false)
John McCall68263142009-11-18 22:49:29 +0000444#ifndef NDEBUG
445 , CalledDone(false)
446#endif
447 {}
448
449 public:
450#ifndef NDEBUG
451 ~Filter() {
452 assert(CalledDone &&
453 "LookupResult::Filter destroyed without done() call");
454 }
455#endif
456
457 bool hasNext() const {
John McCalleec51cf2010-01-20 00:46:10 +0000458 return I != Results.end();
John McCall68263142009-11-18 22:49:29 +0000459 }
460
461 NamedDecl *next() {
John McCalleec51cf2010-01-20 00:46:10 +0000462 assert(I != Results.end() && "next() called on empty filter");
463 return *I++;
John McCall68263142009-11-18 22:49:29 +0000464 }
465
466 /// Erase the last element returned from this iterator.
467 void erase() {
John McCalleec51cf2010-01-20 00:46:10 +0000468 Results.Decls.erase(--I);
John McCallf7a1a742009-11-24 19:00:30 +0000469 Changed = true;
470 }
471
John McCalleec51cf2010-01-20 00:46:10 +0000472 /// Replaces the current entry with the given one, preserving the
473 /// access bits.
John McCallf7a1a742009-11-24 19:00:30 +0000474 void replace(NamedDecl *D) {
John McCalleec51cf2010-01-20 00:46:10 +0000475 Results.Decls.replace(I-1, D);
476 Changed = true;
477 }
478
479 /// Replaces the current entry with the given one.
480 void replace(NamedDecl *D, AccessSpecifier AS) {
481 Results.Decls.replace(I-1, D, AS);
John McCallf7a1a742009-11-24 19:00:30 +0000482 Changed = true;
John McCall68263142009-11-18 22:49:29 +0000483 }
484
485 void done() {
486#ifndef NDEBUG
487 assert(!CalledDone && "done() called twice");
488 CalledDone = true;
489#endif
490
John McCallf7a1a742009-11-24 19:00:30 +0000491 if (Changed)
John McCall68263142009-11-18 22:49:29 +0000492 Results.resolveKindAfterFilter();
493 }
494 };
495
496 /// Create a filter for this result set.
497 Filter makeFilter() {
498 return Filter(*this);
499 }
500
John McCall7d384dd2009-11-18 07:57:50 +0000501private:
502 void diagnose() {
503 if (isAmbiguous())
504 SemaRef.DiagnoseAmbiguousLookup(*this);
John McCall92f88312010-01-23 00:46:32 +0000505 else if (isClassLookup() && SemaRef.getLangOptions().AccessControl)
506 SemaRef.CheckAccess(*this);
John McCall7d384dd2009-11-18 07:57:50 +0000507 }
508
509 void setAmbiguous(AmbiguityKind AK) {
510 ResultKind = Ambiguous;
511 Ambiguity = AK;
512 }
513
514 void addDeclsFromBasePaths(const CXXBasePaths &P);
John McCall1d7c5282009-12-18 10:40:03 +0000515 void configure();
John McCall7d384dd2009-11-18 07:57:50 +0000516
517 // Sanity checks.
518 void sanity() const {
519 assert(ResultKind != NotFound || Decls.size() == 0);
520 assert(ResultKind != Found || Decls.size() == 1);
John McCall7453ed42009-11-22 00:44:51 +0000521 assert(ResultKind != FoundOverloaded || Decls.size() > 1 ||
John McCall97d9e212009-11-22 20:57:36 +0000522 (Decls.size() == 1 &&
John McCalleec51cf2010-01-20 00:46:10 +0000523 isa<FunctionTemplateDecl>((*begin())->getUnderlyingDecl())));
John McCall7453ed42009-11-22 00:44:51 +0000524 assert(ResultKind != FoundUnresolvedValue || sanityCheckUnresolved());
525 assert(ResultKind != Ambiguous || Decls.size() > 1 ||
526 (Decls.size() == 1 && Ambiguity == AmbiguousBaseSubobjects));
John McCall7d384dd2009-11-18 07:57:50 +0000527 assert((Paths != NULL) == (ResultKind == Ambiguous &&
528 (Ambiguity == AmbiguousBaseSubobjectTypes ||
529 Ambiguity == AmbiguousBaseSubobjects)));
530 }
531
John McCall7453ed42009-11-22 00:44:51 +0000532 bool sanityCheckUnresolved() const {
John McCalleec51cf2010-01-20 00:46:10 +0000533 for (iterator I = begin(), E = end(); I != E; ++I)
John McCall7453ed42009-11-22 00:44:51 +0000534 if (isa<UnresolvedUsingValueDecl>(*I))
535 return true;
536 return false;
537 }
538
John McCall7d384dd2009-11-18 07:57:50 +0000539 static void deletePaths(CXXBasePaths *);
540
541 // Results.
542 LookupResultKind ResultKind;
543 AmbiguityKind Ambiguity; // ill-defined unless ambiguous
John McCalleec51cf2010-01-20 00:46:10 +0000544 UnresolvedSet<8> Decls;
John McCall7d384dd2009-11-18 07:57:50 +0000545 CXXBasePaths *Paths;
John McCall92f88312010-01-23 00:46:32 +0000546 CXXRecordDecl *NamingClass;
John McCall7d384dd2009-11-18 07:57:50 +0000547
548 // Parameters.
549 Sema &SemaRef;
550 DeclarationName Name;
551 SourceLocation NameLoc;
552 SourceRange NameContextRange;
553 Sema::LookupNameKind LookupKind;
John McCall1d7c5282009-12-18 10:40:03 +0000554 ResultFilter IsAcceptableFn; // set by configure()
555 unsigned IDNS; // set by configure()
556
John McCall7d384dd2009-11-18 07:57:50 +0000557 bool Redecl;
558
559 /// \brief True if tag declarations should be hidden if non-tags
560 /// are present
561 bool HideTags;
562
563 bool Diagnose;
564};
565
Douglas Gregor546be3c2009-12-30 17:04:44 +0000566 /// \brief Consumes visible declarations found when searching for
567 /// all visible names within a given scope or context.
568 ///
569 /// This abstract class is meant to be subclassed by clients of \c
570 /// Sema::LookupVisibleDecls(), each of which should override the \c
571 /// FoundDecl() function to process declarations as they are found.
572 class VisibleDeclConsumer {
573 public:
574 /// \brief Destroys the visible declaration consumer.
575 virtual ~VisibleDeclConsumer();
576
577 /// \brief Invoked each time \p Sema::LookupVisibleDecls() finds a
578 /// declaration visible from the current scope or context.
579 ///
580 /// \param ND the declaration found.
581 ///
582 /// \param Hiding a declaration that hides the declaration \p ND,
583 /// or NULL if no such declaration exists.
Douglas Gregor0cc84042010-01-14 15:47:35 +0000584 ///
585 /// \param InBaseClass whether this declaration was found in base
586 /// class of the context we searched.
587 virtual void FoundDecl(NamedDecl *ND, NamedDecl *Hiding,
588 bool InBaseClass) = 0;
Douglas Gregor546be3c2009-12-30 17:04:44 +0000589 };
John McCall7edb5fd2010-01-26 07:16:45 +0000590
591/// \brief A class for storing results from argument-dependent lookup.
592class ADLResult {
593private:
594 /// A map from canonical decls to the 'most recent' decl.
595 llvm::DenseMap<NamedDecl*, NamedDecl*> Decls;
596
597public:
598 /// Adds a new ADL candidate to this map.
599 void insert(NamedDecl *D);
600
601 /// Removes any data associated with a given decl.
602 void erase(NamedDecl *D) {
603 Decls.erase(cast<NamedDecl>(D->getCanonicalDecl()));
604 }
605
606 class iterator {
607 typedef llvm::DenseMap<NamedDecl*,NamedDecl*>::iterator inner_iterator;
608 inner_iterator iter;
609
610 friend class ADLResult;
611 iterator(const inner_iterator &iter) : iter(iter) {}
612 public:
613 iterator() {}
614
615 iterator &operator++() { ++iter; return *this; }
616 iterator operator++(int) { return iterator(iter++); }
617
618 NamedDecl *operator*() const { return iter->second; }
619
620 bool operator==(const iterator &other) const { return iter == other.iter; }
621 bool operator!=(const iterator &other) const { return iter != other.iter; }
622 };
623
624 iterator begin() { return iterator(Decls.begin()); }
625 iterator end() { return iterator(Decls.end()); }
626};
627
John McCall7d384dd2009-11-18 07:57:50 +0000628}
629
630#endif