1 //===--------------------- SemaLookup.cpp - Name Lookup  ------------------===//
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 name lookup for C, C++, Objective-C, and
11 //  Objective-C++.
12 //
13 //===----------------------------------------------------------------------===//
14 #include "clang/Sema/Lookup.h"
15 #include "clang/AST/ASTContext.h"
16 #include "clang/AST/CXXInheritance.h"
17 #include "clang/AST/Decl.h"
18 #include "clang/AST/DeclCXX.h"
19 #include "clang/AST/DeclLookups.h"
20 #include "clang/AST/DeclObjC.h"
21 #include "clang/AST/DeclTemplate.h"
22 #include "clang/AST/Expr.h"
23 #include "clang/AST/ExprCXX.h"
24 #include "clang/Basic/Builtins.h"
25 #include "clang/Basic/LangOptions.h"
26 #include "clang/Sema/DeclSpec.h"
27 #include "clang/Sema/ExternalSemaSource.h"
28 #include "clang/Sema/Overload.h"
29 #include "clang/Sema/Scope.h"
30 #include "clang/Sema/ScopeInfo.h"
31 #include "clang/Sema/Sema.h"
32 #include "clang/Sema/SemaInternal.h"
33 #include "clang/Sema/TemplateDeduction.h"
34 #include "clang/Sema/TypoCorrection.h"
35 #include "llvm/ADT/STLExtras.h"
36 #include "llvm/ADT/SetVector.h"
37 #include "llvm/ADT/SmallPtrSet.h"
38 #include "llvm/ADT/StringMap.h"
39 #include "llvm/ADT/TinyPtrVector.h"
40 #include "llvm/ADT/edit_distance.h"
41 #include "llvm/Support/ErrorHandling.h"
42 #include <algorithm>
43 #include <iterator>
44 #include <limits>
45 #include <list>
46 #include <map>
47 #include <set>
48 #include <utility>
49 #include <vector>
50 
51 using namespace clang;
52 using namespace sema;
53 
54 namespace {
55   class UnqualUsingEntry {
56     const DeclContext *Nominated;
57     const DeclContext *CommonAncestor;
58 
59   public:
60     UnqualUsingEntry(const DeclContext *Nominated,
61                      const DeclContext *CommonAncestor)
62       : Nominated(Nominated), CommonAncestor(CommonAncestor) {
63     }
64 
65     const DeclContext *getCommonAncestor() const {
66       return CommonAncestor;
67     }
68 
69     const DeclContext *getNominatedNamespace() const {
70       return Nominated;
71     }
72 
73     // Sort by the pointer value of the common ancestor.
74     struct Comparator {
75       bool operator()(const UnqualUsingEntry &L, const UnqualUsingEntry &R) {
76         return L.getCommonAncestor() < R.getCommonAncestor();
77       }
78 
79       bool operator()(const UnqualUsingEntry &E, const DeclContext *DC) {
80         return E.getCommonAncestor() < DC;
81       }
82 
83       bool operator()(const DeclContext *DC, const UnqualUsingEntry &E) {
84         return DC < E.getCommonAncestor();
85       }
86     };
87   };
88 
89   /// A collection of using directives, as used by C++ unqualified
90   /// lookup.
91   class UnqualUsingDirectiveSet {
92     typedef SmallVector<UnqualUsingEntry, 8> ListTy;
93 
94     ListTy list;
95     llvm::SmallPtrSet<DeclContext*, 8> visited;
96 
97   public:
98     UnqualUsingDirectiveSet() {}
99 
100     void visitScopeChain(Scope *S, Scope *InnermostFileScope) {
101       // C++ [namespace.udir]p1:
102       //   During unqualified name lookup, the names appear as if they
103       //   were declared in the nearest enclosing namespace which contains
104       //   both the using-directive and the nominated namespace.
105       DeclContext *InnermostFileDC = InnermostFileScope->getEntity();
106       assert(InnermostFileDC && InnermostFileDC->isFileContext());
107 
108       for (; S; S = S->getParent()) {
109         // C++ [namespace.udir]p1:
110         //   A using-directive shall not appear in class scope, but may
111         //   appear in namespace scope or in block scope.
112         DeclContext *Ctx = S->getEntity();
113         if (Ctx && Ctx->isFileContext()) {
114           visit(Ctx, Ctx);
115         } else if (!Ctx || Ctx->isFunctionOrMethod()) {
116           for (auto *I : S->using_directives())
117             visit(I, InnermostFileDC);
118         }
119       }
120     }
121 
122     // Visits a context and collect all of its using directives
123     // recursively.  Treats all using directives as if they were
124     // declared in the context.
125     //
126     // A given context is only every visited once, so it is important
127     // that contexts be visited from the inside out in order to get
128     // the effective DCs right.
129     void visit(DeclContext *DC, DeclContext *EffectiveDC) {
130       if (!visited.insert(DC))
131         return;
132 
133       addUsingDirectives(DC, EffectiveDC);
134     }
135 
136     // Visits a using directive and collects all of its using
137     // directives recursively.  Treats all using directives as if they
138     // were declared in the effective DC.
139     void visit(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) {
140       DeclContext *NS = UD->getNominatedNamespace();
141       if (!visited.insert(NS))
142         return;
143 
144       addUsingDirective(UD, EffectiveDC);
145       addUsingDirectives(NS, EffectiveDC);
146     }
147 
148     // Adds all the using directives in a context (and those nominated
149     // by its using directives, transitively) as if they appeared in
150     // the given effective context.
151     void addUsingDirectives(DeclContext *DC, DeclContext *EffectiveDC) {
152       SmallVector<DeclContext*,4> queue;
153       while (true) {
154         for (auto UD : DC->using_directives()) {
155           DeclContext *NS = UD->getNominatedNamespace();
156           if (visited.insert(NS)) {
157             addUsingDirective(UD, EffectiveDC);
158             queue.push_back(NS);
159           }
160         }
161 
162         if (queue.empty())
163           return;
164 
165         DC = queue.pop_back_val();
166       }
167     }
168 
169     // Add a using directive as if it had been declared in the given
170     // context.  This helps implement C++ [namespace.udir]p3:
171     //   The using-directive is transitive: if a scope contains a
172     //   using-directive that nominates a second namespace that itself
173     //   contains using-directives, the effect is as if the
174     //   using-directives from the second namespace also appeared in
175     //   the first.
176     void addUsingDirective(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) {
177       // Find the common ancestor between the effective context and
178       // the nominated namespace.
179       DeclContext *Common = UD->getNominatedNamespace();
180       while (!Common->Encloses(EffectiveDC))
181         Common = Common->getParent();
182       Common = Common->getPrimaryContext();
183 
184       list.push_back(UnqualUsingEntry(UD->getNominatedNamespace(), Common));
185     }
186 
187     void done() {
188       std::sort(list.begin(), list.end(), UnqualUsingEntry::Comparator());
189     }
190 
191     typedef ListTy::const_iterator const_iterator;
192 
193     const_iterator begin() const { return list.begin(); }
194     const_iterator end() const { return list.end(); }
195 
196     std::pair<const_iterator,const_iterator>
197     getNamespacesFor(DeclContext *DC) const {
198       return std::equal_range(begin(), end(), DC->getPrimaryContext(),
199                               UnqualUsingEntry::Comparator());
200     }
201   };
202 }
203 
204 // Retrieve the set of identifier namespaces that correspond to a
205 // specific kind of name lookup.
206 static inline unsigned getIDNS(Sema::LookupNameKind NameKind,
207                                bool CPlusPlus,
208                                bool Redeclaration) {
209   unsigned IDNS = 0;
210   switch (NameKind) {
211   case Sema::LookupObjCImplicitSelfParam:
212   case Sema::LookupOrdinaryName:
213   case Sema::LookupRedeclarationWithLinkage:
214   case Sema::LookupLocalFriendName:
215     IDNS = Decl::IDNS_Ordinary;
216     if (CPlusPlus) {
217       IDNS |= Decl::IDNS_Tag | Decl::IDNS_Member | Decl::IDNS_Namespace;
218       if (Redeclaration)
219         IDNS |= Decl::IDNS_TagFriend | Decl::IDNS_OrdinaryFriend;
220     }
221     if (Redeclaration)
222       IDNS |= Decl::IDNS_LocalExtern;
223     break;
224 
225   case Sema::LookupOperatorName:
226     // Operator lookup is its own crazy thing;  it is not the same
227     // as (e.g.) looking up an operator name for redeclaration.
228     assert(!Redeclaration && "cannot do redeclaration operator lookup");
229     IDNS = Decl::IDNS_NonMemberOperator;
230     break;
231 
232   case Sema::LookupTagName:
233     if (CPlusPlus) {
234       IDNS = Decl::IDNS_Type;
235 
236       // When looking for a redeclaration of a tag name, we add:
237       // 1) TagFriend to find undeclared friend decls
238       // 2) Namespace because they can't "overload" with tag decls.
239       // 3) Tag because it includes class templates, which can't
240       //    "overload" with tag decls.
241       if (Redeclaration)
242         IDNS |= Decl::IDNS_Tag | Decl::IDNS_TagFriend | Decl::IDNS_Namespace;
243     } else {
244       IDNS = Decl::IDNS_Tag;
245     }
246     break;
247 
248   case Sema::LookupLabel:
249     IDNS = Decl::IDNS_Label;
250     break;
251 
252   case Sema::LookupMemberName:
253     IDNS = Decl::IDNS_Member;
254     if (CPlusPlus)
255       IDNS |= Decl::IDNS_Tag | Decl::IDNS_Ordinary;
256     break;
257 
258   case Sema::LookupNestedNameSpecifierName:
259     IDNS = Decl::IDNS_Type | Decl::IDNS_Namespace;
260     break;
261 
262   case Sema::LookupNamespaceName:
263     IDNS = Decl::IDNS_Namespace;
264     break;
265 
266   case Sema::LookupUsingDeclName:
267     assert(Redeclaration && "should only be used for redecl lookup");
268     IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Tag | Decl::IDNS_Member |
269            Decl::IDNS_Using | Decl::IDNS_TagFriend | Decl::IDNS_OrdinaryFriend |
270            Decl::IDNS_LocalExtern;
271     break;
272 
273   case Sema::LookupObjCProtocolName:
274     IDNS = Decl::IDNS_ObjCProtocol;
275     break;
276 
277   case Sema::LookupAnyName:
278     IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Tag | Decl::IDNS_Member
279       | Decl::IDNS_Using | Decl::IDNS_Namespace | Decl::IDNS_ObjCProtocol
280       | Decl::IDNS_Type;
281     break;
282   }
283   return IDNS;
284 }
285 
286 void LookupResult::configure() {
287   IDNS = getIDNS(LookupKind, SemaRef.getLangOpts().CPlusPlus,
288                  isForRedeclaration());
289 
290   // If we're looking for one of the allocation or deallocation
291   // operators, make sure that the implicitly-declared new and delete
292   // operators can be found.
293   switch (NameInfo.getName().getCXXOverloadedOperator()) {
294   case OO_New:
295   case OO_Delete:
296   case OO_Array_New:
297   case OO_Array_Delete:
298     SemaRef.DeclareGlobalNewDelete();
299     break;
300 
301   default:
302     break;
303   }
304 
305   // Compiler builtins are always visible, regardless of where they end
306   // up being declared.
307   if (IdentifierInfo *Id = NameInfo.getName().getAsIdentifierInfo()) {
308     if (unsigned BuiltinID = Id->getBuiltinID()) {
309       if (!SemaRef.Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))
310         AllowHidden = true;
311     }
312   }
313 }
314 
315 bool LookupResult::sanity() const {
316   // This function is never called by NDEBUG builds.
317   assert(ResultKind != NotFound || Decls.size() == 0);
318   assert(ResultKind != Found || Decls.size() == 1);
319   assert(ResultKind != FoundOverloaded || Decls.size() > 1 ||
320          (Decls.size() == 1 &&
321           isa<FunctionTemplateDecl>((*begin())->getUnderlyingDecl())));
322   assert(ResultKind != FoundUnresolvedValue || sanityCheckUnresolved());
323   assert(ResultKind != Ambiguous || Decls.size() > 1 ||
324          (Decls.size() == 1 && (Ambiguity == AmbiguousBaseSubobjects ||
325                                 Ambiguity == AmbiguousBaseSubobjectTypes)));
326   assert((Paths != NULL) == (ResultKind == Ambiguous &&
327                              (Ambiguity == AmbiguousBaseSubobjectTypes ||
328                               Ambiguity == AmbiguousBaseSubobjects)));
329   return true;
330 }
331 
332 // Necessary because CXXBasePaths is not complete in Sema.h
333 void LookupResult::deletePaths(CXXBasePaths *Paths) {
334   delete Paths;
335 }
336 
337 /// Get a representative context for a declaration such that two declarations
338 /// will have the same context if they were found within the same scope.
339 static DeclContext *getContextForScopeMatching(Decl *D) {
340   // For function-local declarations, use that function as the context. This
341   // doesn't account for scopes within the function; the caller must deal with
342   // those.
343   DeclContext *DC = D->getLexicalDeclContext();
344   if (DC->isFunctionOrMethod())
345     return DC;
346 
347   // Otherwise, look at the semantic context of the declaration. The
348   // declaration must have been found there.
349   return D->getDeclContext()->getRedeclContext();
350 }
351 
352 /// Resolves the result kind of this lookup.
353 void LookupResult::resolveKind() {
354   unsigned N = Decls.size();
355 
356   // Fast case: no possible ambiguity.
357   if (N == 0) {
358     assert(ResultKind == NotFound || ResultKind == NotFoundInCurrentInstantiation);
359     return;
360   }
361 
362   // If there's a single decl, we need to examine it to decide what
363   // kind of lookup this is.
364   if (N == 1) {
365     NamedDecl *D = (*Decls.begin())->getUnderlyingDecl();
366     if (isa<FunctionTemplateDecl>(D))
367       ResultKind = FoundOverloaded;
368     else if (isa<UnresolvedUsingValueDecl>(D))
369       ResultKind = FoundUnresolvedValue;
370     return;
371   }
372 
373   // Don't do any extra resolution if we've already resolved as ambiguous.
374   if (ResultKind == Ambiguous) return;
375 
376   llvm::SmallPtrSet<NamedDecl*, 16> Unique;
377   llvm::SmallPtrSet<QualType, 16> UniqueTypes;
378 
379   bool Ambiguous = false;
380   bool HasTag = false, HasFunction = false, HasNonFunction = false;
381   bool HasFunctionTemplate = false, HasUnresolved = false;
382 
383   unsigned UniqueTagIndex = 0;
384 
385   unsigned I = 0;
386   while (I < N) {
387     NamedDecl *D = Decls[I]->getUnderlyingDecl();
388     D = cast<NamedDecl>(D->getCanonicalDecl());
389 
390     // Ignore an invalid declaration unless it's the only one left.
391     if (D->isInvalidDecl() && I < N-1) {
392       Decls[I] = Decls[--N];
393       continue;
394     }
395 
396     // Redeclarations of types via typedef can occur both within a scope
397     // and, through using declarations and directives, across scopes. There is
398     // no ambiguity if they all refer to the same type, so unique based on the
399     // canonical type.
400     if (TypeDecl *TD = dyn_cast<TypeDecl>(D)) {
401       if (!TD->getDeclContext()->isRecord()) {
402         QualType T = SemaRef.Context.getTypeDeclType(TD);
403         if (!UniqueTypes.insert(SemaRef.Context.getCanonicalType(T))) {
404           // The type is not unique; pull something off the back and continue
405           // at this index.
406           Decls[I] = Decls[--N];
407           continue;
408         }
409       }
410     }
411 
412     if (!Unique.insert(D)) {
413       // If it's not unique, pull something off the back (and
414       // continue at this index).
415       Decls[I] = Decls[--N];
416       continue;
417     }
418 
419     // Otherwise, do some decl type analysis and then continue.
420 
421     if (isa<UnresolvedUsingValueDecl>(D)) {
422       HasUnresolved = true;
423     } else if (isa<TagDecl>(D)) {
424       if (HasTag)
425         Ambiguous = true;
426       UniqueTagIndex = I;
427       HasTag = true;
428     } else if (isa<FunctionTemplateDecl>(D)) {
429       HasFunction = true;
430       HasFunctionTemplate = true;
431     } else if (isa<FunctionDecl>(D)) {
432       HasFunction = true;
433     } else {
434       if (HasNonFunction)
435         Ambiguous = true;
436       HasNonFunction = true;
437     }
438     I++;
439   }
440 
441   // C++ [basic.scope.hiding]p2:
442   //   A class name or enumeration name can be hidden by the name of
443   //   an object, function, or enumerator declared in the same
444   //   scope. If a class or enumeration name and an object, function,
445   //   or enumerator are declared in the same scope (in any order)
446   //   with the same name, the class or enumeration name is hidden
447   //   wherever the object, function, or enumerator name is visible.
448   // But it's still an error if there are distinct tag types found,
449   // even if they're not visible. (ref?)
450   if (HideTags && HasTag && !Ambiguous &&
451       (HasFunction || HasNonFunction || HasUnresolved)) {
452     if (getContextForScopeMatching(Decls[UniqueTagIndex])->Equals(
453             getContextForScopeMatching(Decls[UniqueTagIndex ? 0 : N - 1])))
454       Decls[UniqueTagIndex] = Decls[--N];
455     else
456       Ambiguous = true;
457   }
458 
459   Decls.set_size(N);
460 
461   if (HasNonFunction && (HasFunction || HasUnresolved))
462     Ambiguous = true;
463 
464   if (Ambiguous)
465     setAmbiguous(LookupResult::AmbiguousReference);
466   else if (HasUnresolved)
467     ResultKind = LookupResult::FoundUnresolvedValue;
468   else if (N > 1 || HasFunctionTemplate)
469     ResultKind = LookupResult::FoundOverloaded;
470   else
471     ResultKind = LookupResult::Found;
472 }
473 
474 void LookupResult::addDeclsFromBasePaths(const CXXBasePaths &P) {
475   CXXBasePaths::const_paths_iterator I, E;
476   for (I = P.begin(), E = P.end(); I != E; ++I)
477     for (DeclContext::lookup_iterator DI = I->Decls.begin(),
478          DE = I->Decls.end(); DI != DE; ++DI)
479       addDecl(*DI);
480 }
481 
482 void LookupResult::setAmbiguousBaseSubobjects(CXXBasePaths &P) {
483   Paths = new CXXBasePaths;
484   Paths->swap(P);
485   addDeclsFromBasePaths(*Paths);
486   resolveKind();
487   setAmbiguous(AmbiguousBaseSubobjects);
488 }
489 
490 void LookupResult::setAmbiguousBaseSubobjectTypes(CXXBasePaths &P) {
491   Paths = new CXXBasePaths;
492   Paths->swap(P);
493   addDeclsFromBasePaths(*Paths);
494   resolveKind();
495   setAmbiguous(AmbiguousBaseSubobjectTypes);
496 }
497 
498 void LookupResult::print(raw_ostream &Out) {
499   Out << Decls.size() << " result(s)";
500   if (isAmbiguous()) Out << ", ambiguous";
501   if (Paths) Out << ", base paths present";
502 
503   for (iterator I = begin(), E = end(); I != E; ++I) {
504     Out << "\n";
505     (*I)->print(Out, 2);
506   }
507 }
508 
509 /// \brief Lookup a builtin function, when name lookup would otherwise
510 /// fail.
511 static bool LookupBuiltin(Sema &S, LookupResult &R) {
512   Sema::LookupNameKind NameKind = R.getLookupKind();
513 
514   // If we didn't find a use of this identifier, and if the identifier
515   // corresponds to a compiler builtin, create the decl object for the builtin
516   // now, injecting it into translation unit scope, and return it.
517   if (NameKind == Sema::LookupOrdinaryName ||
518       NameKind == Sema::LookupRedeclarationWithLinkage) {
519     IdentifierInfo *II = R.getLookupName().getAsIdentifierInfo();
520     if (II) {
521       if (S.getLangOpts().CPlusPlus11 && S.getLangOpts().GNUMode &&
522           II == S.getFloat128Identifier()) {
523         // libstdc++4.7's type_traits expects type __float128 to exist, so
524         // insert a dummy type to make that header build in gnu++11 mode.
525         R.addDecl(S.getASTContext().getFloat128StubType());
526         return true;
527       }
528 
529       // If this is a builtin on this (or all) targets, create the decl.
530       if (unsigned BuiltinID = II->getBuiltinID()) {
531         // In C++, we don't have any predefined library functions like
532         // 'malloc'. Instead, we'll just error.
533         if (S.getLangOpts().CPlusPlus &&
534             S.Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))
535           return false;
536 
537         if (NamedDecl *D = S.LazilyCreateBuiltin((IdentifierInfo *)II,
538                                                  BuiltinID, S.TUScope,
539                                                  R.isForRedeclaration(),
540                                                  R.getNameLoc())) {
541           R.addDecl(D);
542           return true;
543         }
544       }
545     }
546   }
547 
548   return false;
549 }
550 
551 /// \brief Determine whether we can declare a special member function within
552 /// the class at this point.
553 static bool CanDeclareSpecialMemberFunction(const CXXRecordDecl *Class) {
554   // We need to have a definition for the class.
555   if (!Class->getDefinition() || Class->isDependentContext())
556     return false;
557 
558   // We can't be in the middle of defining the class.
559   return !Class->isBeingDefined();
560 }
561 
562 void Sema::ForceDeclarationOfImplicitMembers(CXXRecordDecl *Class) {
563   if (!CanDeclareSpecialMemberFunction(Class))
564     return;
565 
566   // If the default constructor has not yet been declared, do so now.
567   if (Class->needsImplicitDefaultConstructor())
568     DeclareImplicitDefaultConstructor(Class);
569 
570   // If the copy constructor has not yet been declared, do so now.
571   if (Class->needsImplicitCopyConstructor())
572     DeclareImplicitCopyConstructor(Class);
573 
574   // If the copy assignment operator has not yet been declared, do so now.
575   if (Class->needsImplicitCopyAssignment())
576     DeclareImplicitCopyAssignment(Class);
577 
578   if (getLangOpts().CPlusPlus11) {
579     // If the move constructor has not yet been declared, do so now.
580     if (Class->needsImplicitMoveConstructor())
581       DeclareImplicitMoveConstructor(Class); // might not actually do it
582 
583     // If the move assignment operator has not yet been declared, do so now.
584     if (Class->needsImplicitMoveAssignment())
585       DeclareImplicitMoveAssignment(Class); // might not actually do it
586   }
587 
588   // If the destructor has not yet been declared, do so now.
589   if (Class->needsImplicitDestructor())
590     DeclareImplicitDestructor(Class);
591 }
592 
593 /// \brief Determine whether this is the name of an implicitly-declared
594 /// special member function.
595 static bool isImplicitlyDeclaredMemberFunctionName(DeclarationName Name) {
596   switch (Name.getNameKind()) {
597   case DeclarationName::CXXConstructorName:
598   case DeclarationName::CXXDestructorName:
599     return true;
600 
601   case DeclarationName::CXXOperatorName:
602     return Name.getCXXOverloadedOperator() == OO_Equal;
603 
604   default:
605     break;
606   }
607 
608   return false;
609 }
610 
611 /// \brief If there are any implicit member functions with the given name
612 /// that need to be declared in the given declaration context, do so.
613 static void DeclareImplicitMemberFunctionsWithName(Sema &S,
614                                                    DeclarationName Name,
615                                                    const DeclContext *DC) {
616   if (!DC)
617     return;
618 
619   switch (Name.getNameKind()) {
620   case DeclarationName::CXXConstructorName:
621     if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(DC))
622       if (Record->getDefinition() && CanDeclareSpecialMemberFunction(Record)) {
623         CXXRecordDecl *Class = const_cast<CXXRecordDecl *>(Record);
624         if (Record->needsImplicitDefaultConstructor())
625           S.DeclareImplicitDefaultConstructor(Class);
626         if (Record->needsImplicitCopyConstructor())
627           S.DeclareImplicitCopyConstructor(Class);
628         if (S.getLangOpts().CPlusPlus11 &&
629             Record->needsImplicitMoveConstructor())
630           S.DeclareImplicitMoveConstructor(Class);
631       }
632     break;
633 
634   case DeclarationName::CXXDestructorName:
635     if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(DC))
636       if (Record->getDefinition() && Record->needsImplicitDestructor() &&
637           CanDeclareSpecialMemberFunction(Record))
638         S.DeclareImplicitDestructor(const_cast<CXXRecordDecl *>(Record));
639     break;
640 
641   case DeclarationName::CXXOperatorName:
642     if (Name.getCXXOverloadedOperator() != OO_Equal)
643       break;
644 
645     if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(DC)) {
646       if (Record->getDefinition() && CanDeclareSpecialMemberFunction(Record)) {
647         CXXRecordDecl *Class = const_cast<CXXRecordDecl *>(Record);
648         if (Record->needsImplicitCopyAssignment())
649           S.DeclareImplicitCopyAssignment(Class);
650         if (S.getLangOpts().CPlusPlus11 &&
651             Record->needsImplicitMoveAssignment())
652           S.DeclareImplicitMoveAssignment(Class);
653       }
654     }
655     break;
656 
657   default:
658     break;
659   }
660 }
661 
662 // Adds all qualifying matches for a name within a decl context to the
663 // given lookup result.  Returns true if any matches were found.
664 static bool LookupDirect(Sema &S, LookupResult &R, const DeclContext *DC) {
665   bool Found = false;
666 
667   // Lazily declare C++ special member functions.
668   if (S.getLangOpts().CPlusPlus)
669     DeclareImplicitMemberFunctionsWithName(S, R.getLookupName(), DC);
670 
671   // Perform lookup into this declaration context.
672   DeclContext::lookup_const_result DR = DC->lookup(R.getLookupName());
673   for (DeclContext::lookup_const_iterator I = DR.begin(), E = DR.end(); I != E;
674        ++I) {
675     NamedDecl *D = *I;
676     if ((D = R.getAcceptableDecl(D))) {
677       R.addDecl(D);
678       Found = true;
679     }
680   }
681 
682   if (!Found && DC->isTranslationUnit() && LookupBuiltin(S, R))
683     return true;
684 
685   if (R.getLookupName().getNameKind()
686         != DeclarationName::CXXConversionFunctionName ||
687       R.getLookupName().getCXXNameType()->isDependentType() ||
688       !isa<CXXRecordDecl>(DC))
689     return Found;
690 
691   // C++ [temp.mem]p6:
692   //   A specialization of a conversion function template is not found by
693   //   name lookup. Instead, any conversion function templates visible in the
694   //   context of the use are considered. [...]
695   const CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
696   if (!Record->isCompleteDefinition())
697     return Found;
698 
699   for (CXXRecordDecl::conversion_iterator U = Record->conversion_begin(),
700          UEnd = Record->conversion_end(); U != UEnd; ++U) {
701     FunctionTemplateDecl *ConvTemplate = dyn_cast<FunctionTemplateDecl>(*U);
702     if (!ConvTemplate)
703       continue;
704 
705     // When we're performing lookup for the purposes of redeclaration, just
706     // add the conversion function template. When we deduce template
707     // arguments for specializations, we'll end up unifying the return
708     // type of the new declaration with the type of the function template.
709     if (R.isForRedeclaration()) {
710       R.addDecl(ConvTemplate);
711       Found = true;
712       continue;
713     }
714 
715     // C++ [temp.mem]p6:
716     //   [...] For each such operator, if argument deduction succeeds
717     //   (14.9.2.3), the resulting specialization is used as if found by
718     //   name lookup.
719     //
720     // When referencing a conversion function for any purpose other than
721     // a redeclaration (such that we'll be building an expression with the
722     // result), perform template argument deduction and place the
723     // specialization into the result set. We do this to avoid forcing all
724     // callers to perform special deduction for conversion functions.
725     TemplateDeductionInfo Info(R.getNameLoc());
726     FunctionDecl *Specialization = 0;
727 
728     const FunctionProtoType *ConvProto
729       = ConvTemplate->getTemplatedDecl()->getType()->getAs<FunctionProtoType>();
730     assert(ConvProto && "Nonsensical conversion function template type");
731 
732     // Compute the type of the function that we would expect the conversion
733     // function to have, if it were to match the name given.
734     // FIXME: Calling convention!
735     FunctionProtoType::ExtProtoInfo EPI = ConvProto->getExtProtoInfo();
736     EPI.ExtInfo = EPI.ExtInfo.withCallingConv(CC_C);
737     EPI.ExceptionSpecType = EST_None;
738     EPI.NumExceptions = 0;
739     QualType ExpectedType
740       = R.getSema().Context.getFunctionType(R.getLookupName().getCXXNameType(),
741                                             None, EPI);
742 
743     // Perform template argument deduction against the type that we would
744     // expect the function to have.
745     if (R.getSema().DeduceTemplateArguments(ConvTemplate, 0, ExpectedType,
746                                             Specialization, Info)
747           == Sema::TDK_Success) {
748       R.addDecl(Specialization);
749       Found = true;
750     }
751   }
752 
753   return Found;
754 }
755 
756 // Performs C++ unqualified lookup into the given file context.
757 static bool
758 CppNamespaceLookup(Sema &S, LookupResult &R, ASTContext &Context,
759                    DeclContext *NS, UnqualUsingDirectiveSet &UDirs) {
760 
761   assert(NS && NS->isFileContext() && "CppNamespaceLookup() requires namespace!");
762 
763   // Perform direct name lookup into the LookupCtx.
764   bool Found = LookupDirect(S, R, NS);
765 
766   // Perform direct name lookup into the namespaces nominated by the
767   // using directives whose common ancestor is this namespace.
768   UnqualUsingDirectiveSet::const_iterator UI, UEnd;
769   std::tie(UI, UEnd) = UDirs.getNamespacesFor(NS);
770 
771   for (; UI != UEnd; ++UI)
772     if (LookupDirect(S, R, UI->getNominatedNamespace()))
773       Found = true;
774 
775   R.resolveKind();
776 
777   return Found;
778 }
779 
780 static bool isNamespaceOrTranslationUnitScope(Scope *S) {
781   if (DeclContext *Ctx = S->getEntity())
782     return Ctx->isFileContext();
783   return false;
784 }
785 
786 // Find the next outer declaration context from this scope. This
787 // routine actually returns the semantic outer context, which may
788 // differ from the lexical context (encoded directly in the Scope
789 // stack) when we are parsing a member of a class template. In this
790 // case, the second element of the pair will be true, to indicate that
791 // name lookup should continue searching in this semantic context when
792 // it leaves the current template parameter scope.
793 static std::pair<DeclContext *, bool> findOuterContext(Scope *S) {
794   DeclContext *DC = S->getEntity();
795   DeclContext *Lexical = 0;
796   for (Scope *OuterS = S->getParent(); OuterS;
797        OuterS = OuterS->getParent()) {
798     if (OuterS->getEntity()) {
799       Lexical = OuterS->getEntity();
800       break;
801     }
802   }
803 
804   // C++ [temp.local]p8:
805   //   In the definition of a member of a class template that appears
806   //   outside of the namespace containing the class template
807   //   definition, the name of a template-parameter hides the name of
808   //   a member of this namespace.
809   //
810   // Example:
811   //
812   //   namespace N {
813   //     class C { };
814   //
815   //     template<class T> class B {
816   //       void f(T);
817   //     };
818   //   }
819   //
820   //   template<class C> void N::B<C>::f(C) {
821   //     C b;  // C is the template parameter, not N::C
822   //   }
823   //
824   // In this example, the lexical context we return is the
825   // TranslationUnit, while the semantic context is the namespace N.
826   if (!Lexical || !DC || !S->getParent() ||
827       !S->getParent()->isTemplateParamScope())
828     return std::make_pair(Lexical, false);
829 
830   // Find the outermost template parameter scope.
831   // For the example, this is the scope for the template parameters of
832   // template<class C>.
833   Scope *OutermostTemplateScope = S->getParent();
834   while (OutermostTemplateScope->getParent() &&
835          OutermostTemplateScope->getParent()->isTemplateParamScope())
836     OutermostTemplateScope = OutermostTemplateScope->getParent();
837 
838   // Find the namespace context in which the original scope occurs. In
839   // the example, this is namespace N.
840   DeclContext *Semantic = DC;
841   while (!Semantic->isFileContext())
842     Semantic = Semantic->getParent();
843 
844   // Find the declaration context just outside of the template
845   // parameter scope. This is the context in which the template is
846   // being lexically declaration (a namespace context). In the
847   // example, this is the global scope.
848   if (Lexical->isFileContext() && !Lexical->Equals(Semantic) &&
849       Lexical->Encloses(Semantic))
850     return std::make_pair(Semantic, true);
851 
852   return std::make_pair(Lexical, false);
853 }
854 
855 namespace {
856 /// An RAII object to specify that we want to find block scope extern
857 /// declarations.
858 struct FindLocalExternScope {
859   FindLocalExternScope(LookupResult &R)
860       : R(R), OldFindLocalExtern(R.getIdentifierNamespace() &
861                                  Decl::IDNS_LocalExtern) {
862     R.setFindLocalExtern(R.getIdentifierNamespace() & Decl::IDNS_Ordinary);
863   }
864   void restore() {
865     R.setFindLocalExtern(OldFindLocalExtern);
866   }
867   ~FindLocalExternScope() {
868     restore();
869   }
870   LookupResult &R;
871   bool OldFindLocalExtern;
872 };
873 }
874 
875 bool Sema::CppLookupName(LookupResult &R, Scope *S) {
876   assert(getLangOpts().CPlusPlus && "Can perform only C++ lookup");
877 
878   DeclarationName Name = R.getLookupName();
879   Sema::LookupNameKind NameKind = R.getLookupKind();
880 
881   // If this is the name of an implicitly-declared special member function,
882   // go through the scope stack to implicitly declare
883   if (isImplicitlyDeclaredMemberFunctionName(Name)) {
884     for (Scope *PreS = S; PreS; PreS = PreS->getParent())
885       if (DeclContext *DC = PreS->getEntity())
886         DeclareImplicitMemberFunctionsWithName(*this, Name, DC);
887   }
888 
889   // Implicitly declare member functions with the name we're looking for, if in
890   // fact we are in a scope where it matters.
891 
892   Scope *Initial = S;
893   IdentifierResolver::iterator
894     I = IdResolver.begin(Name),
895     IEnd = IdResolver.end();
896 
897   // First we lookup local scope.
898   // We don't consider using-directives, as per 7.3.4.p1 [namespace.udir]
899   // ...During unqualified name lookup (3.4.1), the names appear as if
900   // they were declared in the nearest enclosing namespace which contains
901   // both the using-directive and the nominated namespace.
902   // [Note: in this context, "contains" means "contains directly or
903   // indirectly".
904   //
905   // For example:
906   // namespace A { int i; }
907   // void foo() {
908   //   int i;
909   //   {
910   //     using namespace A;
911   //     ++i; // finds local 'i', A::i appears at global scope
912   //   }
913   // }
914   //
915   UnqualUsingDirectiveSet UDirs;
916   bool VisitedUsingDirectives = false;
917   bool LeftStartingScope = false;
918   DeclContext *OutsideOfTemplateParamDC = 0;
919 
920   // When performing a scope lookup, we want to find local extern decls.
921   FindLocalExternScope FindLocals(R);
922 
923   for (; S && !isNamespaceOrTranslationUnitScope(S); S = S->getParent()) {
924     DeclContext *Ctx = S->getEntity();
925 
926     // Check whether the IdResolver has anything in this scope.
927     bool Found = false;
928     for (; I != IEnd && S->isDeclScope(*I); ++I) {
929       if (NamedDecl *ND = R.getAcceptableDecl(*I)) {
930         if (NameKind == LookupRedeclarationWithLinkage) {
931           // Determine whether this (or a previous) declaration is
932           // out-of-scope.
933           if (!LeftStartingScope && !Initial->isDeclScope(*I))
934             LeftStartingScope = true;
935 
936           // If we found something outside of our starting scope that
937           // does not have linkage, skip it. If it's a template parameter,
938           // we still find it, so we can diagnose the invalid redeclaration.
939           if (LeftStartingScope && !((*I)->hasLinkage()) &&
940               !(*I)->isTemplateParameter()) {
941             R.setShadowed();
942             continue;
943           }
944         }
945 
946         Found = true;
947         R.addDecl(ND);
948       }
949     }
950     if (Found) {
951       R.resolveKind();
952       if (S->isClassScope())
953         if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(Ctx))
954           R.setNamingClass(Record);
955       return true;
956     }
957 
958     if (NameKind == LookupLocalFriendName && !S->isClassScope()) {
959       // C++11 [class.friend]p11:
960       //   If a friend declaration appears in a local class and the name
961       //   specified is an unqualified name, a prior declaration is
962       //   looked up without considering scopes that are outside the
963       //   innermost enclosing non-class scope.
964       return false;
965     }
966 
967     if (!Ctx && S->isTemplateParamScope() && OutsideOfTemplateParamDC &&
968         S->getParent() && !S->getParent()->isTemplateParamScope()) {
969       // We've just searched the last template parameter scope and
970       // found nothing, so look into the contexts between the
971       // lexical and semantic declaration contexts returned by
972       // findOuterContext(). This implements the name lookup behavior
973       // of C++ [temp.local]p8.
974       Ctx = OutsideOfTemplateParamDC;
975       OutsideOfTemplateParamDC = 0;
976     }
977 
978     if (Ctx) {
979       DeclContext *OuterCtx;
980       bool SearchAfterTemplateScope;
981       std::tie(OuterCtx, SearchAfterTemplateScope) = findOuterContext(S);
982       if (SearchAfterTemplateScope)
983         OutsideOfTemplateParamDC = OuterCtx;
984 
985       for (; Ctx && !Ctx->Equals(OuterCtx); Ctx = Ctx->getLookupParent()) {
986         // We do not directly look into transparent contexts, since
987         // those entities will be found in the nearest enclosing
988         // non-transparent context.
989         if (Ctx->isTransparentContext())
990           continue;
991 
992         // We do not look directly into function or method contexts,
993         // since all of the local variables and parameters of the
994         // function/method are present within the Scope.
995         if (Ctx->isFunctionOrMethod()) {
996           // If we have an Objective-C instance method, look for ivars
997           // in the corresponding interface.
998           if (ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(Ctx)) {
999             if (Method->isInstanceMethod() && Name.getAsIdentifierInfo())
1000               if (ObjCInterfaceDecl *Class = Method->getClassInterface()) {
1001                 ObjCInterfaceDecl *ClassDeclared;
1002                 if (ObjCIvarDecl *Ivar = Class->lookupInstanceVariable(
1003                                                  Name.getAsIdentifierInfo(),
1004                                                              ClassDeclared)) {
1005                   if (NamedDecl *ND = R.getAcceptableDecl(Ivar)) {
1006                     R.addDecl(ND);
1007                     R.resolveKind();
1008                     return true;
1009                   }
1010                 }
1011               }
1012           }
1013 
1014           continue;
1015         }
1016 
1017         // If this is a file context, we need to perform unqualified name
1018         // lookup considering using directives.
1019         if (Ctx->isFileContext()) {
1020           // If we haven't handled using directives yet, do so now.
1021           if (!VisitedUsingDirectives) {
1022             // Add using directives from this context up to the top level.
1023             for (DeclContext *UCtx = Ctx; UCtx; UCtx = UCtx->getParent()) {
1024               if (UCtx->isTransparentContext())
1025                 continue;
1026 
1027               UDirs.visit(UCtx, UCtx);
1028             }
1029 
1030             // Find the innermost file scope, so we can add using directives
1031             // from local scopes.
1032             Scope *InnermostFileScope = S;
1033             while (InnermostFileScope &&
1034                    !isNamespaceOrTranslationUnitScope(InnermostFileScope))
1035               InnermostFileScope = InnermostFileScope->getParent();
1036             UDirs.visitScopeChain(Initial, InnermostFileScope);
1037 
1038             UDirs.done();
1039 
1040             VisitedUsingDirectives = true;
1041           }
1042 
1043           if (CppNamespaceLookup(*this, R, Context, Ctx, UDirs)) {
1044             R.resolveKind();
1045             return true;
1046           }
1047 
1048           continue;
1049         }
1050 
1051         // Perform qualified name lookup into this context.
1052         // FIXME: In some cases, we know that every name that could be found by
1053         // this qualified name lookup will also be on the identifier chain. For
1054         // example, inside a class without any base classes, we never need to
1055         // perform qualified lookup because all of the members are on top of the
1056         // identifier chain.
1057         if (LookupQualifiedName(R, Ctx, /*InUnqualifiedLookup=*/true))
1058           return true;
1059       }
1060     }
1061   }
1062 
1063   // Stop if we ran out of scopes.
1064   // FIXME:  This really, really shouldn't be happening.
1065   if (!S) return false;
1066 
1067   // If we are looking for members, no need to look into global/namespace scope.
1068   if (NameKind == LookupMemberName)
1069     return false;
1070 
1071   // Collect UsingDirectiveDecls in all scopes, and recursively all
1072   // nominated namespaces by those using-directives.
1073   //
1074   // FIXME: Cache this sorted list in Scope structure, and DeclContext, so we
1075   // don't build it for each lookup!
1076   if (!VisitedUsingDirectives) {
1077     UDirs.visitScopeChain(Initial, S);
1078     UDirs.done();
1079   }
1080 
1081   // If we're not performing redeclaration lookup, do not look for local
1082   // extern declarations outside of a function scope.
1083   if (!R.isForRedeclaration())
1084     FindLocals.restore();
1085 
1086   // Lookup namespace scope, and global scope.
1087   // Unqualified name lookup in C++ requires looking into scopes
1088   // that aren't strictly lexical, and therefore we walk through the
1089   // context as well as walking through the scopes.
1090   for (; S; S = S->getParent()) {
1091     // Check whether the IdResolver has anything in this scope.
1092     bool Found = false;
1093     for (; I != IEnd && S->isDeclScope(*I); ++I) {
1094       if (NamedDecl *ND = R.getAcceptableDecl(*I)) {
1095         // We found something.  Look for anything else in our scope
1096         // with this same name and in an acceptable identifier
1097         // namespace, so that we can construct an overload set if we
1098         // need to.
1099         Found = true;
1100         R.addDecl(ND);
1101       }
1102     }
1103 
1104     if (Found && S->isTemplateParamScope()) {
1105       R.resolveKind();
1106       return true;
1107     }
1108 
1109     DeclContext *Ctx = S->getEntity();
1110     if (!Ctx && S->isTemplateParamScope() && OutsideOfTemplateParamDC &&
1111         S->getParent() && !S->getParent()->isTemplateParamScope()) {
1112       // We've just searched the last template parameter scope and
1113       // found nothing, so look into the contexts between the
1114       // lexical and semantic declaration contexts returned by
1115       // findOuterContext(). This implements the name lookup behavior
1116       // of C++ [temp.local]p8.
1117       Ctx = OutsideOfTemplateParamDC;
1118       OutsideOfTemplateParamDC = 0;
1119     }
1120 
1121     if (Ctx) {
1122       DeclContext *OuterCtx;
1123       bool SearchAfterTemplateScope;
1124       std::tie(OuterCtx, SearchAfterTemplateScope) = findOuterContext(S);
1125       if (SearchAfterTemplateScope)
1126         OutsideOfTemplateParamDC = OuterCtx;
1127 
1128       for (; Ctx && !Ctx->Equals(OuterCtx); Ctx = Ctx->getLookupParent()) {
1129         // We do not directly look into transparent contexts, since
1130         // those entities will be found in the nearest enclosing
1131         // non-transparent context.
1132         if (Ctx->isTransparentContext())
1133           continue;
1134 
1135         // If we have a context, and it's not a context stashed in the
1136         // template parameter scope for an out-of-line definition, also
1137         // look into that context.
1138         if (!(Found && S && S->isTemplateParamScope())) {
1139           assert(Ctx->isFileContext() &&
1140               "We should have been looking only at file context here already.");
1141 
1142           // Look into context considering using-directives.
1143           if (CppNamespaceLookup(*this, R, Context, Ctx, UDirs))
1144             Found = true;
1145         }
1146 
1147         if (Found) {
1148           R.resolveKind();
1149           return true;
1150         }
1151 
1152         if (R.isForRedeclaration() && !Ctx->isTransparentContext())
1153           return false;
1154       }
1155     }
1156 
1157     if (R.isForRedeclaration() && Ctx && !Ctx->isTransparentContext())
1158       return false;
1159   }
1160 
1161   return !R.empty();
1162 }
1163 
1164 /// \brief Find the declaration that a class temploid member specialization was
1165 /// instantiated from, or the member itself if it is an explicit specialization.
1166 static Decl *getInstantiatedFrom(Decl *D, MemberSpecializationInfo *MSInfo) {
1167   return MSInfo->isExplicitSpecialization() ? D : MSInfo->getInstantiatedFrom();
1168 }
1169 
1170 /// \brief Find the module in which the given declaration was defined.
1171 static Module *getDefiningModule(Decl *Entity) {
1172   if (FunctionDecl *FD = dyn_cast<FunctionDecl>(Entity)) {
1173     // If this function was instantiated from a template, the defining module is
1174     // the module containing the pattern.
1175     if (FunctionDecl *Pattern = FD->getTemplateInstantiationPattern())
1176       Entity = Pattern;
1177   } else if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Entity)) {
1178     // If it's a class template specialization, find the template or partial
1179     // specialization from which it was instantiated.
1180     if (ClassTemplateSpecializationDecl *SpecRD =
1181             dyn_cast<ClassTemplateSpecializationDecl>(RD)) {
1182       llvm::PointerUnion<ClassTemplateDecl*,
1183                          ClassTemplatePartialSpecializationDecl*> From =
1184           SpecRD->getInstantiatedFrom();
1185       if (ClassTemplateDecl *FromTemplate = From.dyn_cast<ClassTemplateDecl*>())
1186         Entity = FromTemplate->getTemplatedDecl();
1187       else if (From)
1188         Entity = From.get<ClassTemplatePartialSpecializationDecl*>();
1189       // Otherwise, it's an explicit specialization.
1190     } else if (MemberSpecializationInfo *MSInfo =
1191                    RD->getMemberSpecializationInfo())
1192       Entity = getInstantiatedFrom(RD, MSInfo);
1193   } else if (EnumDecl *ED = dyn_cast<EnumDecl>(Entity)) {
1194     if (MemberSpecializationInfo *MSInfo = ED->getMemberSpecializationInfo())
1195       Entity = getInstantiatedFrom(ED, MSInfo);
1196   } else if (VarDecl *VD = dyn_cast<VarDecl>(Entity)) {
1197     // FIXME: Map from variable template specializations back to the template.
1198     if (MemberSpecializationInfo *MSInfo = VD->getMemberSpecializationInfo())
1199       Entity = getInstantiatedFrom(VD, MSInfo);
1200   }
1201 
1202   // Walk up to the containing context. That might also have been instantiated
1203   // from a template.
1204   DeclContext *Context = Entity->getDeclContext();
1205   if (Context->isFileContext())
1206     return Entity->getOwningModule();
1207   return getDefiningModule(cast<Decl>(Context));
1208 }
1209 
1210 llvm::DenseSet<Module*> &Sema::getLookupModules() {
1211   unsigned N = ActiveTemplateInstantiations.size();
1212   for (unsigned I = ActiveTemplateInstantiationLookupModules.size();
1213        I != N; ++I) {
1214     Module *M = getDefiningModule(ActiveTemplateInstantiations[I].Entity);
1215     if (M && !LookupModulesCache.insert(M).second)
1216       M = 0;
1217     ActiveTemplateInstantiationLookupModules.push_back(M);
1218   }
1219   return LookupModulesCache;
1220 }
1221 
1222 /// \brief Determine whether a declaration is visible to name lookup.
1223 ///
1224 /// This routine determines whether the declaration D is visible in the current
1225 /// lookup context, taking into account the current template instantiation
1226 /// stack. During template instantiation, a declaration is visible if it is
1227 /// visible from a module containing any entity on the template instantiation
1228 /// path (by instantiating a template, you allow it to see the declarations that
1229 /// your module can see, including those later on in your module).
1230 bool LookupResult::isVisibleSlow(Sema &SemaRef, NamedDecl *D) {
1231   assert(D->isHidden() && !SemaRef.ActiveTemplateInstantiations.empty() &&
1232          "should not call this: not in slow case");
1233   Module *DeclModule = D->getOwningModule();
1234   assert(DeclModule && "hidden decl not from a module");
1235 
1236   // Find the extra places where we need to look.
1237   llvm::DenseSet<Module*> &LookupModules = SemaRef.getLookupModules();
1238   if (LookupModules.empty())
1239     return false;
1240 
1241   // If our lookup set contains the decl's module, it's visible.
1242   if (LookupModules.count(DeclModule))
1243     return true;
1244 
1245   // If the declaration isn't exported, it's not visible in any other module.
1246   if (D->isModulePrivate())
1247     return false;
1248 
1249   // Check whether DeclModule is transitively exported to an import of
1250   // the lookup set.
1251   for (llvm::DenseSet<Module *>::iterator I = LookupModules.begin(),
1252                                           E = LookupModules.end();
1253        I != E; ++I)
1254     if ((*I)->isModuleVisible(DeclModule))
1255       return true;
1256   return false;
1257 }
1258 
1259 /// \brief Retrieve the visible declaration corresponding to D, if any.
1260 ///
1261 /// This routine determines whether the declaration D is visible in the current
1262 /// module, with the current imports. If not, it checks whether any
1263 /// redeclaration of D is visible, and if so, returns that declaration.
1264 ///
1265 /// \returns D, or a visible previous declaration of D, whichever is more recent
1266 /// and visible. If no declaration of D is visible, returns null.
1267 static NamedDecl *findAcceptableDecl(Sema &SemaRef, NamedDecl *D) {
1268   assert(!LookupResult::isVisible(SemaRef, D) && "not in slow case");
1269 
1270   for (auto RD : D->redecls()) {
1271     if (auto ND = dyn_cast<NamedDecl>(RD)) {
1272       if (LookupResult::isVisible(SemaRef, ND))
1273         return ND;
1274     }
1275   }
1276 
1277   return 0;
1278 }
1279 
1280 NamedDecl *LookupResult::getAcceptableDeclSlow(NamedDecl *D) const {
1281   return findAcceptableDecl(SemaRef, D);
1282 }
1283 
1284 /// @brief Perform unqualified name lookup starting from a given
1285 /// scope.
1286 ///
1287 /// Unqualified name lookup (C++ [basic.lookup.unqual], C99 6.2.1) is
1288 /// used to find names within the current scope. For example, 'x' in
1289 /// @code
1290 /// int x;
1291 /// int f() {
1292 ///   return x; // unqualified name look finds 'x' in the global scope
1293 /// }
1294 /// @endcode
1295 ///
1296 /// Different lookup criteria can find different names. For example, a
1297 /// particular scope can have both a struct and a function of the same
1298 /// name, and each can be found by certain lookup criteria. For more
1299 /// information about lookup criteria, see the documentation for the
1300 /// class LookupCriteria.
1301 ///
1302 /// @param S        The scope from which unqualified name lookup will
1303 /// begin. If the lookup criteria permits, name lookup may also search
1304 /// in the parent scopes.
1305 ///
1306 /// @param [in,out] R Specifies the lookup to perform (e.g., the name to
1307 /// look up and the lookup kind), and is updated with the results of lookup
1308 /// including zero or more declarations and possibly additional information
1309 /// used to diagnose ambiguities.
1310 ///
1311 /// @returns \c true if lookup succeeded and false otherwise.
1312 bool Sema::LookupName(LookupResult &R, Scope *S, bool AllowBuiltinCreation) {
1313   DeclarationName Name = R.getLookupName();
1314   if (!Name) return false;
1315 
1316   LookupNameKind NameKind = R.getLookupKind();
1317 
1318   if (!getLangOpts().CPlusPlus) {
1319     // Unqualified name lookup in C/Objective-C is purely lexical, so
1320     // search in the declarations attached to the name.
1321     if (NameKind == Sema::LookupRedeclarationWithLinkage) {
1322       // Find the nearest non-transparent declaration scope.
1323       while (!(S->getFlags() & Scope::DeclScope) ||
1324              (S->getEntity() && S->getEntity()->isTransparentContext()))
1325         S = S->getParent();
1326     }
1327 
1328     // When performing a scope lookup, we want to find local extern decls.
1329     FindLocalExternScope FindLocals(R);
1330 
1331     // Scan up the scope chain looking for a decl that matches this
1332     // identifier that is in the appropriate namespace.  This search
1333     // should not take long, as shadowing of names is uncommon, and
1334     // deep shadowing is extremely uncommon.
1335     bool LeftStartingScope = false;
1336 
1337     for (IdentifierResolver::iterator I = IdResolver.begin(Name),
1338                                    IEnd = IdResolver.end();
1339          I != IEnd; ++I)
1340       if (NamedDecl *D = R.getAcceptableDecl(*I)) {
1341         if (NameKind == LookupRedeclarationWithLinkage) {
1342           // Determine whether this (or a previous) declaration is
1343           // out-of-scope.
1344           if (!LeftStartingScope && !S->isDeclScope(*I))
1345             LeftStartingScope = true;
1346 
1347           // If we found something outside of our starting scope that
1348           // does not have linkage, skip it.
1349           if (LeftStartingScope && !((*I)->hasLinkage())) {
1350             R.setShadowed();
1351             continue;
1352           }
1353         }
1354         else if (NameKind == LookupObjCImplicitSelfParam &&
1355                  !isa<ImplicitParamDecl>(*I))
1356           continue;
1357 
1358         R.addDecl(D);
1359 
1360         // Check whether there are any other declarations with the same name
1361         // and in the same scope.
1362         if (I != IEnd) {
1363           // Find the scope in which this declaration was declared (if it
1364           // actually exists in a Scope).
1365           while (S && !S->isDeclScope(D))
1366             S = S->getParent();
1367 
1368           // If the scope containing the declaration is the translation unit,
1369           // then we'll need to perform our checks based on the matching
1370           // DeclContexts rather than matching scopes.
1371           if (S && isNamespaceOrTranslationUnitScope(S))
1372             S = 0;
1373 
1374           // Compute the DeclContext, if we need it.
1375           DeclContext *DC = 0;
1376           if (!S)
1377             DC = (*I)->getDeclContext()->getRedeclContext();
1378 
1379           IdentifierResolver::iterator LastI = I;
1380           for (++LastI; LastI != IEnd; ++LastI) {
1381             if (S) {
1382               // Match based on scope.
1383               if (!S->isDeclScope(*LastI))
1384                 break;
1385             } else {
1386               // Match based on DeclContext.
1387               DeclContext *LastDC
1388                 = (*LastI)->getDeclContext()->getRedeclContext();
1389               if (!LastDC->Equals(DC))
1390                 break;
1391             }
1392 
1393             // If the declaration is in the right namespace and visible, add it.
1394             if (NamedDecl *LastD = R.getAcceptableDecl(*LastI))
1395               R.addDecl(LastD);
1396           }
1397 
1398           R.resolveKind();
1399         }
1400 
1401         return true;
1402       }
1403   } else {
1404     // Perform C++ unqualified name lookup.
1405     if (CppLookupName(R, S))
1406       return true;
1407   }
1408 
1409   // If we didn't find a use of this identifier, and if the identifier
1410   // corresponds to a compiler builtin, create the decl object for the builtin
1411   // now, injecting it into translation unit scope, and return it.
1412   if (AllowBuiltinCreation && LookupBuiltin(*this, R))
1413     return true;
1414 
1415   // If we didn't find a use of this identifier, the ExternalSource
1416   // may be able to handle the situation.
1417   // Note: some lookup failures are expected!
1418   // See e.g. R.isForRedeclaration().
1419   return (ExternalSource && ExternalSource->LookupUnqualified(R, S));
1420 }
1421 
1422 /// @brief Perform qualified name lookup in the namespaces nominated by
1423 /// using directives by the given context.
1424 ///
1425 /// C++98 [namespace.qual]p2:
1426 ///   Given X::m (where X is a user-declared namespace), or given \::m
1427 ///   (where X is the global namespace), let S be the set of all
1428 ///   declarations of m in X and in the transitive closure of all
1429 ///   namespaces nominated by using-directives in X and its used
1430 ///   namespaces, except that using-directives are ignored in any
1431 ///   namespace, including X, directly containing one or more
1432 ///   declarations of m. No namespace is searched more than once in
1433 ///   the lookup of a name. If S is the empty set, the program is
1434 ///   ill-formed. Otherwise, if S has exactly one member, or if the
1435 ///   context of the reference is a using-declaration
1436 ///   (namespace.udecl), S is the required set of declarations of
1437 ///   m. Otherwise if the use of m is not one that allows a unique
1438 ///   declaration to be chosen from S, the program is ill-formed.
1439 ///
1440 /// C++98 [namespace.qual]p5:
1441 ///   During the lookup of a qualified namespace member name, if the
1442 ///   lookup finds more than one declaration of the member, and if one
1443 ///   declaration introduces a class name or enumeration name and the
1444 ///   other declarations either introduce the same object, the same
1445 ///   enumerator or a set of functions, the non-type name hides the
1446 ///   class or enumeration name if and only if the declarations are
1447 ///   from the same namespace; otherwise (the declarations are from
1448 ///   different namespaces), the program is ill-formed.
1449 static bool LookupQualifiedNameInUsingDirectives(Sema &S, LookupResult &R,
1450                                                  DeclContext *StartDC) {
1451   assert(StartDC->isFileContext() && "start context is not a file context");
1452 
1453   DeclContext::udir_range UsingDirectives = StartDC->using_directives();
1454   if (UsingDirectives.begin() == UsingDirectives.end()) return false;
1455 
1456   // We have at least added all these contexts to the queue.
1457   llvm::SmallPtrSet<DeclContext*, 8> Visited;
1458   Visited.insert(StartDC);
1459 
1460   // We have not yet looked into these namespaces, much less added
1461   // their "using-children" to the queue.
1462   SmallVector<NamespaceDecl*, 8> Queue;
1463 
1464   // We have already looked into the initial namespace; seed the queue
1465   // with its using-children.
1466   for (auto *I : UsingDirectives) {
1467     NamespaceDecl *ND = I->getNominatedNamespace()->getOriginalNamespace();
1468     if (Visited.insert(ND))
1469       Queue.push_back(ND);
1470   }
1471 
1472   // The easiest way to implement the restriction in [namespace.qual]p5
1473   // is to check whether any of the individual results found a tag
1474   // and, if so, to declare an ambiguity if the final result is not
1475   // a tag.
1476   bool FoundTag = false;
1477   bool FoundNonTag = false;
1478 
1479   LookupResult LocalR(LookupResult::Temporary, R);
1480 
1481   bool Found = false;
1482   while (!Queue.empty()) {
1483     NamespaceDecl *ND = Queue.pop_back_val();
1484 
1485     // We go through some convolutions here to avoid copying results
1486     // between LookupResults.
1487     bool UseLocal = !R.empty();
1488     LookupResult &DirectR = UseLocal ? LocalR : R;
1489     bool FoundDirect = LookupDirect(S, DirectR, ND);
1490 
1491     if (FoundDirect) {
1492       // First do any local hiding.
1493       DirectR.resolveKind();
1494 
1495       // If the local result is a tag, remember that.
1496       if (DirectR.isSingleTagDecl())
1497         FoundTag = true;
1498       else
1499         FoundNonTag = true;
1500 
1501       // Append the local results to the total results if necessary.
1502       if (UseLocal) {
1503         R.addAllDecls(LocalR);
1504         LocalR.clear();
1505       }
1506     }
1507 
1508     // If we find names in this namespace, ignore its using directives.
1509     if (FoundDirect) {
1510       Found = true;
1511       continue;
1512     }
1513 
1514     for (auto I : ND->using_directives()) {
1515       NamespaceDecl *Nom = I->getNominatedNamespace();
1516       if (Visited.insert(Nom))
1517         Queue.push_back(Nom);
1518     }
1519   }
1520 
1521   if (Found) {
1522     if (FoundTag && FoundNonTag)
1523       R.setAmbiguousQualifiedTagHiding();
1524     else
1525       R.resolveKind();
1526   }
1527 
1528   return Found;
1529 }
1530 
1531 /// \brief Callback that looks for any member of a class with the given name.
1532 static bool LookupAnyMember(const CXXBaseSpecifier *Specifier,
1533                             CXXBasePath &Path,
1534                             void *Name) {
1535   RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
1536 
1537   DeclarationName N = DeclarationName::getFromOpaquePtr(Name);
1538   Path.Decls = BaseRecord->lookup(N);
1539   return !Path.Decls.empty();
1540 }
1541 
1542 /// \brief Determine whether the given set of member declarations contains only
1543 /// static members, nested types, and enumerators.
1544 template<typename InputIterator>
1545 static bool HasOnlyStaticMembers(InputIterator First, InputIterator Last) {
1546   Decl *D = (*First)->getUnderlyingDecl();
1547   if (isa<VarDecl>(D) || isa<TypeDecl>(D) || isa<EnumConstantDecl>(D))
1548     return true;
1549 
1550   if (isa<CXXMethodDecl>(D)) {
1551     // Determine whether all of the methods are static.
1552     bool AllMethodsAreStatic = true;
1553     for(; First != Last; ++First) {
1554       D = (*First)->getUnderlyingDecl();
1555 
1556       if (!isa<CXXMethodDecl>(D)) {
1557         assert(isa<TagDecl>(D) && "Non-function must be a tag decl");
1558         break;
1559       }
1560 
1561       if (!cast<CXXMethodDecl>(D)->isStatic()) {
1562         AllMethodsAreStatic = false;
1563         break;
1564       }
1565     }
1566 
1567     if (AllMethodsAreStatic)
1568       return true;
1569   }
1570 
1571   return false;
1572 }
1573 
1574 /// \brief Perform qualified name lookup into a given context.
1575 ///
1576 /// Qualified name lookup (C++ [basic.lookup.qual]) is used to find
1577 /// names when the context of those names is explicit specified, e.g.,
1578 /// "std::vector" or "x->member", or as part of unqualified name lookup.
1579 ///
1580 /// Different lookup criteria can find different names. For example, a
1581 /// particular scope can have both a struct and a function of the same
1582 /// name, and each can be found by certain lookup criteria. For more
1583 /// information about lookup criteria, see the documentation for the
1584 /// class LookupCriteria.
1585 ///
1586 /// \param R captures both the lookup criteria and any lookup results found.
1587 ///
1588 /// \param LookupCtx The context in which qualified name lookup will
1589 /// search. If the lookup criteria permits, name lookup may also search
1590 /// in the parent contexts or (for C++ classes) base classes.
1591 ///
1592 /// \param InUnqualifiedLookup true if this is qualified name lookup that
1593 /// occurs as part of unqualified name lookup.
1594 ///
1595 /// \returns true if lookup succeeded, false if it failed.
1596 bool Sema::LookupQualifiedName(LookupResult &R, DeclContext *LookupCtx,
1597                                bool InUnqualifiedLookup) {
1598   assert(LookupCtx && "Sema::LookupQualifiedName requires a lookup context");
1599 
1600   if (!R.getLookupName())
1601     return false;
1602 
1603   // Make sure that the declaration context is complete.
1604   assert((!isa<TagDecl>(LookupCtx) ||
1605           LookupCtx->isDependentContext() ||
1606           cast<TagDecl>(LookupCtx)->isCompleteDefinition() ||
1607           cast<TagDecl>(LookupCtx)->isBeingDefined()) &&
1608          "Declaration context must already be complete!");
1609 
1610   // Perform qualified name lookup into the LookupCtx.
1611   if (LookupDirect(*this, R, LookupCtx)) {
1612     R.resolveKind();
1613     if (isa<CXXRecordDecl>(LookupCtx))
1614       R.setNamingClass(cast<CXXRecordDecl>(LookupCtx));
1615     return true;
1616   }
1617 
1618   // Don't descend into implied contexts for redeclarations.
1619   // C++98 [namespace.qual]p6:
1620   //   In a declaration for a namespace member in which the
1621   //   declarator-id is a qualified-id, given that the qualified-id
1622   //   for the namespace member has the form
1623   //     nested-name-specifier unqualified-id
1624   //   the unqualified-id shall name a member of the namespace
1625   //   designated by the nested-name-specifier.
1626   // See also [class.mfct]p5 and [class.static.data]p2.
1627   if (R.isForRedeclaration())
1628     return false;
1629 
1630   // If this is a namespace, look it up in the implied namespaces.
1631   if (LookupCtx->isFileContext())
1632     return LookupQualifiedNameInUsingDirectives(*this, R, LookupCtx);
1633 
1634   // If this isn't a C++ class, we aren't allowed to look into base
1635   // classes, we're done.
1636   CXXRecordDecl *LookupRec = dyn_cast<CXXRecordDecl>(LookupCtx);
1637   if (!LookupRec || !LookupRec->getDefinition())
1638     return false;
1639 
1640   // If we're performing qualified name lookup into a dependent class,
1641   // then we are actually looking into a current instantiation. If we have any
1642   // dependent base classes, then we either have to delay lookup until
1643   // template instantiation time (at which point all bases will be available)
1644   // or we have to fail.
1645   if (!InUnqualifiedLookup && LookupRec->isDependentContext() &&
1646       LookupRec->hasAnyDependentBases()) {
1647     R.setNotFoundInCurrentInstantiation();
1648     return false;
1649   }
1650 
1651   // Perform lookup into our base classes.
1652   CXXBasePaths Paths;
1653   Paths.setOrigin(LookupRec);
1654 
1655   // Look for this member in our base classes
1656   CXXRecordDecl::BaseMatchesCallback *BaseCallback = 0;
1657   switch (R.getLookupKind()) {
1658     case LookupObjCImplicitSelfParam:
1659     case LookupOrdinaryName:
1660     case LookupMemberName:
1661     case LookupRedeclarationWithLinkage:
1662     case LookupLocalFriendName:
1663       BaseCallback = &CXXRecordDecl::FindOrdinaryMember;
1664       break;
1665 
1666     case LookupTagName:
1667       BaseCallback = &CXXRecordDecl::FindTagMember;
1668       break;
1669 
1670     case LookupAnyName:
1671       BaseCallback = &LookupAnyMember;
1672       break;
1673 
1674     case LookupUsingDeclName:
1675       // This lookup is for redeclarations only.
1676 
1677     case LookupOperatorName:
1678     case LookupNamespaceName:
1679     case LookupObjCProtocolName:
1680     case LookupLabel:
1681       // These lookups will never find a member in a C++ class (or base class).
1682       return false;
1683 
1684     case LookupNestedNameSpecifierName:
1685       BaseCallback = &CXXRecordDecl::FindNestedNameSpecifierMember;
1686       break;
1687   }
1688 
1689   if (!LookupRec->lookupInBases(BaseCallback,
1690                                 R.getLookupName().getAsOpaquePtr(), Paths))
1691     return false;
1692 
1693   R.setNamingClass(LookupRec);
1694 
1695   // C++ [class.member.lookup]p2:
1696   //   [...] If the resulting set of declarations are not all from
1697   //   sub-objects of the same type, or the set has a nonstatic member
1698   //   and includes members from distinct sub-objects, there is an
1699   //   ambiguity and the program is ill-formed. Otherwise that set is
1700   //   the result of the lookup.
1701   QualType SubobjectType;
1702   int SubobjectNumber = 0;
1703   AccessSpecifier SubobjectAccess = AS_none;
1704 
1705   for (CXXBasePaths::paths_iterator Path = Paths.begin(), PathEnd = Paths.end();
1706        Path != PathEnd; ++Path) {
1707     const CXXBasePathElement &PathElement = Path->back();
1708 
1709     // Pick the best (i.e. most permissive i.e. numerically lowest) access
1710     // across all paths.
1711     SubobjectAccess = std::min(SubobjectAccess, Path->Access);
1712 
1713     // Determine whether we're looking at a distinct sub-object or not.
1714     if (SubobjectType.isNull()) {
1715       // This is the first subobject we've looked at. Record its type.
1716       SubobjectType = Context.getCanonicalType(PathElement.Base->getType());
1717       SubobjectNumber = PathElement.SubobjectNumber;
1718       continue;
1719     }
1720 
1721     if (SubobjectType
1722                  != Context.getCanonicalType(PathElement.Base->getType())) {
1723       // We found members of the given name in two subobjects of
1724       // different types. If the declaration sets aren't the same, this
1725       // this lookup is ambiguous.
1726       if (HasOnlyStaticMembers(Path->Decls.begin(), Path->Decls.end())) {
1727         CXXBasePaths::paths_iterator FirstPath = Paths.begin();
1728         DeclContext::lookup_iterator FirstD = FirstPath->Decls.begin();
1729         DeclContext::lookup_iterator CurrentD = Path->Decls.begin();
1730 
1731         while (FirstD != FirstPath->Decls.end() &&
1732                CurrentD != Path->Decls.end()) {
1733          if ((*FirstD)->getUnderlyingDecl()->getCanonicalDecl() !=
1734              (*CurrentD)->getUnderlyingDecl()->getCanonicalDecl())
1735            break;
1736 
1737           ++FirstD;
1738           ++CurrentD;
1739         }
1740 
1741         if (FirstD == FirstPath->Decls.end() &&
1742             CurrentD == Path->Decls.end())
1743           continue;
1744       }
1745 
1746       R.setAmbiguousBaseSubobjectTypes(Paths);
1747       return true;
1748     }
1749 
1750     if (SubobjectNumber != PathElement.SubobjectNumber) {
1751       // We have a different subobject of the same type.
1752 
1753       // C++ [class.member.lookup]p5:
1754       //   A static member, a nested type or an enumerator defined in
1755       //   a base class T can unambiguously be found even if an object
1756       //   has more than one base class subobject of type T.
1757       if (HasOnlyStaticMembers(Path->Decls.begin(), Path->Decls.end()))
1758         continue;
1759 
1760       // We have found a nonstatic member name in multiple, distinct
1761       // subobjects. Name lookup is ambiguous.
1762       R.setAmbiguousBaseSubobjects(Paths);
1763       return true;
1764     }
1765   }
1766 
1767   // Lookup in a base class succeeded; return these results.
1768 
1769   DeclContext::lookup_result DR = Paths.front().Decls;
1770   for (DeclContext::lookup_iterator I = DR.begin(), E = DR.end(); I != E; ++I) {
1771     NamedDecl *D = *I;
1772     AccessSpecifier AS = CXXRecordDecl::MergeAccess(SubobjectAccess,
1773                                                     D->getAccess());
1774     R.addDecl(D, AS);
1775   }
1776   R.resolveKind();
1777   return true;
1778 }
1779 
1780 /// @brief Performs name lookup for a name that was parsed in the
1781 /// source code, and may contain a C++ scope specifier.
1782 ///
1783 /// This routine is a convenience routine meant to be called from
1784 /// contexts that receive a name and an optional C++ scope specifier
1785 /// (e.g., "N::M::x"). It will then perform either qualified or
1786 /// unqualified name lookup (with LookupQualifiedName or LookupName,
1787 /// respectively) on the given name and return those results.
1788 ///
1789 /// @param S        The scope from which unqualified name lookup will
1790 /// begin.
1791 ///
1792 /// @param SS       An optional C++ scope-specifier, e.g., "::N::M".
1793 ///
1794 /// @param EnteringContext Indicates whether we are going to enter the
1795 /// context of the scope-specifier SS (if present).
1796 ///
1797 /// @returns True if any decls were found (but possibly ambiguous)
1798 bool Sema::LookupParsedName(LookupResult &R, Scope *S, CXXScopeSpec *SS,
1799                             bool AllowBuiltinCreation, bool EnteringContext) {
1800   if (SS && SS->isInvalid()) {
1801     // When the scope specifier is invalid, don't even look for
1802     // anything.
1803     return false;
1804   }
1805 
1806   if (SS && SS->isSet()) {
1807     if (DeclContext *DC = computeDeclContext(*SS, EnteringContext)) {
1808       // We have resolved the scope specifier to a particular declaration
1809       // contex, and will perform name lookup in that context.
1810       if (!DC->isDependentContext() && RequireCompleteDeclContext(*SS, DC))
1811         return false;
1812 
1813       R.setContextRange(SS->getRange());
1814       return LookupQualifiedName(R, DC);
1815     }
1816 
1817     // We could not resolve the scope specified to a specific declaration
1818     // context, which means that SS refers to an unknown specialization.
1819     // Name lookup can't find anything in this case.
1820     R.setNotFoundInCurrentInstantiation();
1821     R.setContextRange(SS->getRange());
1822     return false;
1823   }
1824 
1825   // Perform unqualified name lookup starting in the given scope.
1826   return LookupName(R, S, AllowBuiltinCreation);
1827 }
1828 
1829 
1830 /// \brief Produce a diagnostic describing the ambiguity that resulted
1831 /// from name lookup.
1832 ///
1833 /// \param Result The result of the ambiguous lookup to be diagnosed.
1834 void Sema::DiagnoseAmbiguousLookup(LookupResult &Result) {
1835   assert(Result.isAmbiguous() && "Lookup result must be ambiguous");
1836 
1837   DeclarationName Name = Result.getLookupName();
1838   SourceLocation NameLoc = Result.getNameLoc();
1839   SourceRange LookupRange = Result.getContextRange();
1840 
1841   switch (Result.getAmbiguityKind()) {
1842   case LookupResult::AmbiguousBaseSubobjects: {
1843     CXXBasePaths *Paths = Result.getBasePaths();
1844     QualType SubobjectType = Paths->front().back().Base->getType();
1845     Diag(NameLoc, diag::err_ambiguous_member_multiple_subobjects)
1846       << Name << SubobjectType << getAmbiguousPathsDisplayString(*Paths)
1847       << LookupRange;
1848 
1849     DeclContext::lookup_iterator Found = Paths->front().Decls.begin();
1850     while (isa<CXXMethodDecl>(*Found) &&
1851            cast<CXXMethodDecl>(*Found)->isStatic())
1852       ++Found;
1853 
1854     Diag((*Found)->getLocation(), diag::note_ambiguous_member_found);
1855     break;
1856   }
1857 
1858   case LookupResult::AmbiguousBaseSubobjectTypes: {
1859     Diag(NameLoc, diag::err_ambiguous_member_multiple_subobject_types)
1860       << Name << LookupRange;
1861 
1862     CXXBasePaths *Paths = Result.getBasePaths();
1863     std::set<Decl *> DeclsPrinted;
1864     for (CXXBasePaths::paths_iterator Path = Paths->begin(),
1865                                       PathEnd = Paths->end();
1866          Path != PathEnd; ++Path) {
1867       Decl *D = Path->Decls.front();
1868       if (DeclsPrinted.insert(D).second)
1869         Diag(D->getLocation(), diag::note_ambiguous_member_found);
1870     }
1871     break;
1872   }
1873 
1874   case LookupResult::AmbiguousTagHiding: {
1875     Diag(NameLoc, diag::err_ambiguous_tag_hiding) << Name << LookupRange;
1876 
1877     llvm::SmallPtrSet<NamedDecl*,8> TagDecls;
1878 
1879     LookupResult::iterator DI, DE = Result.end();
1880     for (DI = Result.begin(); DI != DE; ++DI)
1881       if (TagDecl *TD = dyn_cast<TagDecl>(*DI)) {
1882         TagDecls.insert(TD);
1883         Diag(TD->getLocation(), diag::note_hidden_tag);
1884       }
1885 
1886     for (DI = Result.begin(); DI != DE; ++DI)
1887       if (!isa<TagDecl>(*DI))
1888         Diag((*DI)->getLocation(), diag::note_hiding_object);
1889 
1890     // For recovery purposes, go ahead and implement the hiding.
1891     LookupResult::Filter F = Result.makeFilter();
1892     while (F.hasNext()) {
1893       if (TagDecls.count(F.next()))
1894         F.erase();
1895     }
1896     F.done();
1897     break;
1898   }
1899 
1900   case LookupResult::AmbiguousReference: {
1901     Diag(NameLoc, diag::err_ambiguous_reference) << Name << LookupRange;
1902 
1903     LookupResult::iterator DI = Result.begin(), DE = Result.end();
1904     for (; DI != DE; ++DI)
1905       Diag((*DI)->getLocation(), diag::note_ambiguous_candidate) << *DI;
1906     break;
1907   }
1908   }
1909 }
1910 
1911 namespace {
1912   struct AssociatedLookup {
1913     AssociatedLookup(Sema &S, SourceLocation InstantiationLoc,
1914                      Sema::AssociatedNamespaceSet &Namespaces,
1915                      Sema::AssociatedClassSet &Classes)
1916       : S(S), Namespaces(Namespaces), Classes(Classes),
1917         InstantiationLoc(InstantiationLoc) {
1918     }
1919 
1920     Sema &S;
1921     Sema::AssociatedNamespaceSet &Namespaces;
1922     Sema::AssociatedClassSet &Classes;
1923     SourceLocation InstantiationLoc;
1924   };
1925 }
1926 
1927 static void
1928 addAssociatedClassesAndNamespaces(AssociatedLookup &Result, QualType T);
1929 
1930 static void CollectEnclosingNamespace(Sema::AssociatedNamespaceSet &Namespaces,
1931                                       DeclContext *Ctx) {
1932   // Add the associated namespace for this class.
1933 
1934   // We don't use DeclContext::getEnclosingNamespaceContext() as this may
1935   // be a locally scoped record.
1936 
1937   // We skip out of inline namespaces. The innermost non-inline namespace
1938   // contains all names of all its nested inline namespaces anyway, so we can
1939   // replace the entire inline namespace tree with its root.
1940   while (Ctx->isRecord() || Ctx->isTransparentContext() ||
1941          Ctx->isInlineNamespace())
1942     Ctx = Ctx->getParent();
1943 
1944   if (Ctx->isFileContext())
1945     Namespaces.insert(Ctx->getPrimaryContext());
1946 }
1947 
1948 // \brief Add the associated classes and namespaces for argument-dependent
1949 // lookup that involves a template argument (C++ [basic.lookup.koenig]p2).
1950 static void
1951 addAssociatedClassesAndNamespaces(AssociatedLookup &Result,
1952                                   const TemplateArgument &Arg) {
1953   // C++ [basic.lookup.koenig]p2, last bullet:
1954   //   -- [...] ;
1955   switch (Arg.getKind()) {
1956     case TemplateArgument::Null:
1957       break;
1958 
1959     case TemplateArgument::Type:
1960       // [...] the namespaces and classes associated with the types of the
1961       // template arguments provided for template type parameters (excluding
1962       // template template parameters)
1963       addAssociatedClassesAndNamespaces(Result, Arg.getAsType());
1964       break;
1965 
1966     case TemplateArgument::Template:
1967     case TemplateArgument::TemplateExpansion: {
1968       // [...] the namespaces in which any template template arguments are
1969       // defined; and the classes in which any member templates used as
1970       // template template arguments are defined.
1971       TemplateName Template = Arg.getAsTemplateOrTemplatePattern();
1972       if (ClassTemplateDecl *ClassTemplate
1973                  = dyn_cast<ClassTemplateDecl>(Template.getAsTemplateDecl())) {
1974         DeclContext *Ctx = ClassTemplate->getDeclContext();
1975         if (CXXRecordDecl *EnclosingClass = dyn_cast<CXXRecordDecl>(Ctx))
1976           Result.Classes.insert(EnclosingClass);
1977         // Add the associated namespace for this class.
1978         CollectEnclosingNamespace(Result.Namespaces, Ctx);
1979       }
1980       break;
1981     }
1982 
1983     case TemplateArgument::Declaration:
1984     case TemplateArgument::Integral:
1985     case TemplateArgument::Expression:
1986     case TemplateArgument::NullPtr:
1987       // [Note: non-type template arguments do not contribute to the set of
1988       //  associated namespaces. ]
1989       break;
1990 
1991     case TemplateArgument::Pack:
1992       for (TemplateArgument::pack_iterator P = Arg.pack_begin(),
1993                                         PEnd = Arg.pack_end();
1994            P != PEnd; ++P)
1995         addAssociatedClassesAndNamespaces(Result, *P);
1996       break;
1997   }
1998 }
1999 
2000 // \brief Add the associated classes and namespaces for
2001 // argument-dependent lookup with an argument of class type
2002 // (C++ [basic.lookup.koenig]p2).
2003 static void
2004 addAssociatedClassesAndNamespaces(AssociatedLookup &Result,
2005                                   CXXRecordDecl *Class) {
2006 
2007   // Just silently ignore anything whose name is __va_list_tag.
2008   if (Class->getDeclName() == Result.S.VAListTagName)
2009     return;
2010 
2011   // C++ [basic.lookup.koenig]p2:
2012   //   [...]
2013   //     -- If T is a class type (including unions), its associated
2014   //        classes are: the class itself; the class of which it is a
2015   //        member, if any; and its direct and indirect base
2016   //        classes. Its associated namespaces are the namespaces in
2017   //        which its associated classes are defined.
2018 
2019   // Add the class of which it is a member, if any.
2020   DeclContext *Ctx = Class->getDeclContext();
2021   if (CXXRecordDecl *EnclosingClass = dyn_cast<CXXRecordDecl>(Ctx))
2022     Result.Classes.insert(EnclosingClass);
2023   // Add the associated namespace for this class.
2024   CollectEnclosingNamespace(Result.Namespaces, Ctx);
2025 
2026   // Add the class itself. If we've already seen this class, we don't
2027   // need to visit base classes.
2028   //
2029   // FIXME: That's not correct, we may have added this class only because it
2030   // was the enclosing class of another class, and in that case we won't have
2031   // added its base classes yet.
2032   if (!Result.Classes.insert(Class))
2033     return;
2034 
2035   // -- If T is a template-id, its associated namespaces and classes are
2036   //    the namespace in which the template is defined; for member
2037   //    templates, the member template's class; the namespaces and classes
2038   //    associated with the types of the template arguments provided for
2039   //    template type parameters (excluding template template parameters); the
2040   //    namespaces in which any template template arguments are defined; and
2041   //    the classes in which any member templates used as template template
2042   //    arguments are defined. [Note: non-type template arguments do not
2043   //    contribute to the set of associated namespaces. ]
2044   if (ClassTemplateSpecializationDecl *Spec
2045         = dyn_cast<ClassTemplateSpecializationDecl>(Class)) {
2046     DeclContext *Ctx = Spec->getSpecializedTemplate()->getDeclContext();
2047     if (CXXRecordDecl *EnclosingClass = dyn_cast<CXXRecordDecl>(Ctx))
2048       Result.Classes.insert(EnclosingClass);
2049     // Add the associated namespace for this class.
2050     CollectEnclosingNamespace(Result.Namespaces, Ctx);
2051 
2052     const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
2053     for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
2054       addAssociatedClassesAndNamespaces(Result, TemplateArgs[I]);
2055   }
2056 
2057   // Only recurse into base classes for complete types.
2058   if (!Class->hasDefinition())
2059     return;
2060 
2061   // Add direct and indirect base classes along with their associated
2062   // namespaces.
2063   SmallVector<CXXRecordDecl *, 32> Bases;
2064   Bases.push_back(Class);
2065   while (!Bases.empty()) {
2066     // Pop this class off the stack.
2067     Class = Bases.pop_back_val();
2068 
2069     // Visit the base classes.
2070     for (const auto &Base : Class->bases()) {
2071       const RecordType *BaseType = Base.getType()->getAs<RecordType>();
2072       // In dependent contexts, we do ADL twice, and the first time around,
2073       // the base type might be a dependent TemplateSpecializationType, or a
2074       // TemplateTypeParmType. If that happens, simply ignore it.
2075       // FIXME: If we want to support export, we probably need to add the
2076       // namespace of the template in a TemplateSpecializationType, or even
2077       // the classes and namespaces of known non-dependent arguments.
2078       if (!BaseType)
2079         continue;
2080       CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(BaseType->getDecl());
2081       if (Result.Classes.insert(BaseDecl)) {
2082         // Find the associated namespace for this base class.
2083         DeclContext *BaseCtx = BaseDecl->getDeclContext();
2084         CollectEnclosingNamespace(Result.Namespaces, BaseCtx);
2085 
2086         // Make sure we visit the bases of this base class.
2087         if (BaseDecl->bases_begin() != BaseDecl->bases_end())
2088           Bases.push_back(BaseDecl);
2089       }
2090     }
2091   }
2092 }
2093 
2094 // \brief Add the associated classes and namespaces for
2095 // argument-dependent lookup with an argument of type T
2096 // (C++ [basic.lookup.koenig]p2).
2097 static void
2098 addAssociatedClassesAndNamespaces(AssociatedLookup &Result, QualType Ty) {
2099   // C++ [basic.lookup.koenig]p2:
2100   //
2101   //   For each argument type T in the function call, there is a set
2102   //   of zero or more associated namespaces and a set of zero or more
2103   //   associated classes to be considered. The sets of namespaces and
2104   //   classes is determined entirely by the types of the function
2105   //   arguments (and the namespace of any template template
2106   //   argument). Typedef names and using-declarations used to specify
2107   //   the types do not contribute to this set. The sets of namespaces
2108   //   and classes are determined in the following way:
2109 
2110   SmallVector<const Type *, 16> Queue;
2111   const Type *T = Ty->getCanonicalTypeInternal().getTypePtr();
2112 
2113   while (true) {
2114     switch (T->getTypeClass()) {
2115 
2116 #define TYPE(Class, Base)
2117 #define DEPENDENT_TYPE(Class, Base) case Type::Class:
2118 #define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
2119 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) case Type::Class:
2120 #define ABSTRACT_TYPE(Class, Base)
2121 #include "clang/AST/TypeNodes.def"
2122       // T is canonical.  We can also ignore dependent types because
2123       // we don't need to do ADL at the definition point, but if we
2124       // wanted to implement template export (or if we find some other
2125       // use for associated classes and namespaces...) this would be
2126       // wrong.
2127       break;
2128 
2129     //    -- If T is a pointer to U or an array of U, its associated
2130     //       namespaces and classes are those associated with U.
2131     case Type::Pointer:
2132       T = cast<PointerType>(T)->getPointeeType().getTypePtr();
2133       continue;
2134     case Type::ConstantArray:
2135     case Type::IncompleteArray:
2136     case Type::VariableArray:
2137       T = cast<ArrayType>(T)->getElementType().getTypePtr();
2138       continue;
2139 
2140     //     -- If T is a fundamental type, its associated sets of
2141     //        namespaces and classes are both empty.
2142     case Type::Builtin:
2143       break;
2144 
2145     //     -- If T is a class type (including unions), its associated
2146     //        classes are: the class itself; the class of which it is a
2147     //        member, if any; and its direct and indirect base
2148     //        classes. Its associated namespaces are the namespaces in
2149     //        which its associated classes are defined.
2150     case Type::Record: {
2151       Result.S.RequireCompleteType(Result.InstantiationLoc, QualType(T, 0),
2152                                    /*no diagnostic*/ 0);
2153       CXXRecordDecl *Class
2154         = cast<CXXRecordDecl>(cast<RecordType>(T)->getDecl());
2155       addAssociatedClassesAndNamespaces(Result, Class);
2156       break;
2157     }
2158 
2159     //     -- If T is an enumeration type, its associated namespace is
2160     //        the namespace in which it is defined. If it is class
2161     //        member, its associated class is the member's class; else
2162     //        it has no associated class.
2163     case Type::Enum: {
2164       EnumDecl *Enum = cast<EnumType>(T)->getDecl();
2165 
2166       DeclContext *Ctx = Enum->getDeclContext();
2167       if (CXXRecordDecl *EnclosingClass = dyn_cast<CXXRecordDecl>(Ctx))
2168         Result.Classes.insert(EnclosingClass);
2169 
2170       // Add the associated namespace for this class.
2171       CollectEnclosingNamespace(Result.Namespaces, Ctx);
2172 
2173       break;
2174     }
2175 
2176     //     -- If T is a function type, its associated namespaces and
2177     //        classes are those associated with the function parameter
2178     //        types and those associated with the return type.
2179     case Type::FunctionProto: {
2180       const FunctionProtoType *Proto = cast<FunctionProtoType>(T);
2181       for (const auto &Arg : Proto->param_types())
2182         Queue.push_back(Arg.getTypePtr());
2183       // fallthrough
2184     }
2185     case Type::FunctionNoProto: {
2186       const FunctionType *FnType = cast<FunctionType>(T);
2187       T = FnType->getReturnType().getTypePtr();
2188       continue;
2189     }
2190 
2191     //     -- If T is a pointer to a member function of a class X, its
2192     //        associated namespaces and classes are those associated
2193     //        with the function parameter types and return type,
2194     //        together with those associated with X.
2195     //
2196     //     -- If T is a pointer to a data member of class X, its
2197     //        associated namespaces and classes are those associated
2198     //        with the member type together with those associated with
2199     //        X.
2200     case Type::MemberPointer: {
2201       const MemberPointerType *MemberPtr = cast<MemberPointerType>(T);
2202 
2203       // Queue up the class type into which this points.
2204       Queue.push_back(MemberPtr->getClass());
2205 
2206       // And directly continue with the pointee type.
2207       T = MemberPtr->getPointeeType().getTypePtr();
2208       continue;
2209     }
2210 
2211     // As an extension, treat this like a normal pointer.
2212     case Type::BlockPointer:
2213       T = cast<BlockPointerType>(T)->getPointeeType().getTypePtr();
2214       continue;
2215 
2216     // References aren't covered by the standard, but that's such an
2217     // obvious defect that we cover them anyway.
2218     case Type::LValueReference:
2219     case Type::RValueReference:
2220       T = cast<ReferenceType>(T)->getPointeeType().getTypePtr();
2221       continue;
2222 
2223     // These are fundamental types.
2224     case Type::Vector:
2225     case Type::ExtVector:
2226     case Type::Complex:
2227       break;
2228 
2229     // Non-deduced auto types only get here for error cases.
2230     case Type::Auto:
2231       break;
2232 
2233     // If T is an Objective-C object or interface type, or a pointer to an
2234     // object or interface type, the associated namespace is the global
2235     // namespace.
2236     case Type::ObjCObject:
2237     case Type::ObjCInterface:
2238     case Type::ObjCObjectPointer:
2239       Result.Namespaces.insert(Result.S.Context.getTranslationUnitDecl());
2240       break;
2241 
2242     // Atomic types are just wrappers; use the associations of the
2243     // contained type.
2244     case Type::Atomic:
2245       T = cast<AtomicType>(T)->getValueType().getTypePtr();
2246       continue;
2247     }
2248 
2249     if (Queue.empty())
2250       break;
2251     T = Queue.pop_back_val();
2252   }
2253 }
2254 
2255 /// \brief Find the associated classes and namespaces for
2256 /// argument-dependent lookup for a call with the given set of
2257 /// arguments.
2258 ///
2259 /// This routine computes the sets of associated classes and associated
2260 /// namespaces searched by argument-dependent lookup
2261 /// (C++ [basic.lookup.argdep]) for a given set of arguments.
2262 void Sema::FindAssociatedClassesAndNamespaces(
2263     SourceLocation InstantiationLoc, ArrayRef<Expr *> Args,
2264     AssociatedNamespaceSet &AssociatedNamespaces,
2265     AssociatedClassSet &AssociatedClasses) {
2266   AssociatedNamespaces.clear();
2267   AssociatedClasses.clear();
2268 
2269   AssociatedLookup Result(*this, InstantiationLoc,
2270                           AssociatedNamespaces, AssociatedClasses);
2271 
2272   // C++ [basic.lookup.koenig]p2:
2273   //   For each argument type T in the function call, there is a set
2274   //   of zero or more associated namespaces and a set of zero or more
2275   //   associated classes to be considered. The sets of namespaces and
2276   //   classes is determined entirely by the types of the function
2277   //   arguments (and the namespace of any template template
2278   //   argument).
2279   for (unsigned ArgIdx = 0; ArgIdx != Args.size(); ++ArgIdx) {
2280     Expr *Arg = Args[ArgIdx];
2281 
2282     if (Arg->getType() != Context.OverloadTy) {
2283       addAssociatedClassesAndNamespaces(Result, Arg->getType());
2284       continue;
2285     }
2286 
2287     // [...] In addition, if the argument is the name or address of a
2288     // set of overloaded functions and/or function templates, its
2289     // associated classes and namespaces are the union of those
2290     // associated with each of the members of the set: the namespace
2291     // in which the function or function template is defined and the
2292     // classes and namespaces associated with its (non-dependent)
2293     // parameter types and return type.
2294     Arg = Arg->IgnoreParens();
2295     if (UnaryOperator *unaryOp = dyn_cast<UnaryOperator>(Arg))
2296       if (unaryOp->getOpcode() == UO_AddrOf)
2297         Arg = unaryOp->getSubExpr();
2298 
2299     UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(Arg);
2300     if (!ULE) continue;
2301 
2302     for (UnresolvedSetIterator I = ULE->decls_begin(), E = ULE->decls_end();
2303            I != E; ++I) {
2304       // Look through any using declarations to find the underlying function.
2305       FunctionDecl *FDecl = (*I)->getUnderlyingDecl()->getAsFunction();
2306 
2307       // Add the classes and namespaces associated with the parameter
2308       // types and return type of this function.
2309       addAssociatedClassesAndNamespaces(Result, FDecl->getType());
2310     }
2311   }
2312 }
2313 
2314 /// IsAcceptableNonMemberOperatorCandidate - Determine whether Fn is
2315 /// an acceptable non-member overloaded operator for a call whose
2316 /// arguments have types T1 (and, if non-empty, T2). This routine
2317 /// implements the check in C++ [over.match.oper]p3b2 concerning
2318 /// enumeration types.
2319 static bool
2320 IsAcceptableNonMemberOperatorCandidate(FunctionDecl *Fn,
2321                                        QualType T1, QualType T2,
2322                                        ASTContext &Context) {
2323   if (T1->isDependentType() || (!T2.isNull() && T2->isDependentType()))
2324     return true;
2325 
2326   if (T1->isRecordType() || (!T2.isNull() && T2->isRecordType()))
2327     return true;
2328 
2329   const FunctionProtoType *Proto = Fn->getType()->getAs<FunctionProtoType>();
2330   if (Proto->getNumParams() < 1)
2331     return false;
2332 
2333   if (T1->isEnumeralType()) {
2334     QualType ArgType = Proto->getParamType(0).getNonReferenceType();
2335     if (Context.hasSameUnqualifiedType(T1, ArgType))
2336       return true;
2337   }
2338 
2339   if (Proto->getNumParams() < 2)
2340     return false;
2341 
2342   if (!T2.isNull() && T2->isEnumeralType()) {
2343     QualType ArgType = Proto->getParamType(1).getNonReferenceType();
2344     if (Context.hasSameUnqualifiedType(T2, ArgType))
2345       return true;
2346   }
2347 
2348   return false;
2349 }
2350 
2351 NamedDecl *Sema::LookupSingleName(Scope *S, DeclarationName Name,
2352                                   SourceLocation Loc,
2353                                   LookupNameKind NameKind,
2354                                   RedeclarationKind Redecl) {
2355   LookupResult R(*this, Name, Loc, NameKind, Redecl);
2356   LookupName(R, S);
2357   return R.getAsSingle<NamedDecl>();
2358 }
2359 
2360 /// \brief Find the protocol with the given name, if any.
2361 ObjCProtocolDecl *Sema::LookupProtocol(IdentifierInfo *II,
2362                                        SourceLocation IdLoc,
2363                                        RedeclarationKind Redecl) {
2364   Decl *D = LookupSingleName(TUScope, II, IdLoc,
2365                              LookupObjCProtocolName, Redecl);
2366   return cast_or_null<ObjCProtocolDecl>(D);
2367 }
2368 
2369 void Sema::LookupOverloadedOperatorName(OverloadedOperatorKind Op, Scope *S,
2370                                         QualType T1, QualType T2,
2371                                         UnresolvedSetImpl &Functions) {
2372   // C++ [over.match.oper]p3:
2373   //     -- The set of non-member candidates is the result of the
2374   //        unqualified lookup of operator@ in the context of the
2375   //        expression according to the usual rules for name lookup in
2376   //        unqualified function calls (3.4.2) except that all member
2377   //        functions are ignored. However, if no operand has a class
2378   //        type, only those non-member functions in the lookup set
2379   //        that have a first parameter of type T1 or "reference to
2380   //        (possibly cv-qualified) T1", when T1 is an enumeration
2381   //        type, or (if there is a right operand) a second parameter
2382   //        of type T2 or "reference to (possibly cv-qualified) T2",
2383   //        when T2 is an enumeration type, are candidate functions.
2384   DeclarationName OpName = Context.DeclarationNames.getCXXOperatorName(Op);
2385   LookupResult Operators(*this, OpName, SourceLocation(), LookupOperatorName);
2386   LookupName(Operators, S);
2387 
2388   assert(!Operators.isAmbiguous() && "Operator lookup cannot be ambiguous");
2389 
2390   if (Operators.empty())
2391     return;
2392 
2393   for (LookupResult::iterator Op = Operators.begin(), OpEnd = Operators.end();
2394        Op != OpEnd; ++Op) {
2395     NamedDecl *Found = (*Op)->getUnderlyingDecl();
2396     if (FunctionDecl *FD = dyn_cast<FunctionDecl>(Found)) {
2397       if (IsAcceptableNonMemberOperatorCandidate(FD, T1, T2, Context))
2398         Functions.addDecl(*Op, Op.getAccess()); // FIXME: canonical FD
2399     } else if (FunctionTemplateDecl *FunTmpl
2400                  = dyn_cast<FunctionTemplateDecl>(Found)) {
2401       // FIXME: friend operators?
2402       // FIXME: do we need to check IsAcceptableNonMemberOperatorCandidate,
2403       // later?
2404       if (!FunTmpl->getDeclContext()->isRecord())
2405         Functions.addDecl(*Op, Op.getAccess());
2406     }
2407   }
2408 }
2409 
2410 Sema::SpecialMemberOverloadResult *Sema::LookupSpecialMember(CXXRecordDecl *RD,
2411                                                             CXXSpecialMember SM,
2412                                                             bool ConstArg,
2413                                                             bool VolatileArg,
2414                                                             bool RValueThis,
2415                                                             bool ConstThis,
2416                                                             bool VolatileThis) {
2417   assert(CanDeclareSpecialMemberFunction(RD) &&
2418          "doing special member lookup into record that isn't fully complete");
2419   RD = RD->getDefinition();
2420   if (RValueThis || ConstThis || VolatileThis)
2421     assert((SM == CXXCopyAssignment || SM == CXXMoveAssignment) &&
2422            "constructors and destructors always have unqualified lvalue this");
2423   if (ConstArg || VolatileArg)
2424     assert((SM != CXXDefaultConstructor && SM != CXXDestructor) &&
2425            "parameter-less special members can't have qualified arguments");
2426 
2427   llvm::FoldingSetNodeID ID;
2428   ID.AddPointer(RD);
2429   ID.AddInteger(SM);
2430   ID.AddInteger(ConstArg);
2431   ID.AddInteger(VolatileArg);
2432   ID.AddInteger(RValueThis);
2433   ID.AddInteger(ConstThis);
2434   ID.AddInteger(VolatileThis);
2435 
2436   void *InsertPoint;
2437   SpecialMemberOverloadResult *Result =
2438     SpecialMemberCache.FindNodeOrInsertPos(ID, InsertPoint);
2439 
2440   // This was already cached
2441   if (Result)
2442     return Result;
2443 
2444   Result = BumpAlloc.Allocate<SpecialMemberOverloadResult>();
2445   Result = new (Result) SpecialMemberOverloadResult(ID);
2446   SpecialMemberCache.InsertNode(Result, InsertPoint);
2447 
2448   if (SM == CXXDestructor) {
2449     if (RD->needsImplicitDestructor())
2450       DeclareImplicitDestructor(RD);
2451     CXXDestructorDecl *DD = RD->getDestructor();
2452     assert(DD && "record without a destructor");
2453     Result->setMethod(DD);
2454     Result->setKind(DD->isDeleted() ?
2455                     SpecialMemberOverloadResult::NoMemberOrDeleted :
2456                     SpecialMemberOverloadResult::Success);
2457     return Result;
2458   }
2459 
2460   // Prepare for overload resolution. Here we construct a synthetic argument
2461   // if necessary and make sure that implicit functions are declared.
2462   CanQualType CanTy = Context.getCanonicalType(Context.getTagDeclType(RD));
2463   DeclarationName Name;
2464   Expr *Arg = 0;
2465   unsigned NumArgs;
2466 
2467   QualType ArgType = CanTy;
2468   ExprValueKind VK = VK_LValue;
2469 
2470   if (SM == CXXDefaultConstructor) {
2471     Name = Context.DeclarationNames.getCXXConstructorName(CanTy);
2472     NumArgs = 0;
2473     if (RD->needsImplicitDefaultConstructor())
2474       DeclareImplicitDefaultConstructor(RD);
2475   } else {
2476     if (SM == CXXCopyConstructor || SM == CXXMoveConstructor) {
2477       Name = Context.DeclarationNames.getCXXConstructorName(CanTy);
2478       if (RD->needsImplicitCopyConstructor())
2479         DeclareImplicitCopyConstructor(RD);
2480       if (getLangOpts().CPlusPlus11 && RD->needsImplicitMoveConstructor())
2481         DeclareImplicitMoveConstructor(RD);
2482     } else {
2483       Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
2484       if (RD->needsImplicitCopyAssignment())
2485         DeclareImplicitCopyAssignment(RD);
2486       if (getLangOpts().CPlusPlus11 && RD->needsImplicitMoveAssignment())
2487         DeclareImplicitMoveAssignment(RD);
2488     }
2489 
2490     if (ConstArg)
2491       ArgType.addConst();
2492     if (VolatileArg)
2493       ArgType.addVolatile();
2494 
2495     // This isn't /really/ specified by the standard, but it's implied
2496     // we should be working from an RValue in the case of move to ensure
2497     // that we prefer to bind to rvalue references, and an LValue in the
2498     // case of copy to ensure we don't bind to rvalue references.
2499     // Possibly an XValue is actually correct in the case of move, but
2500     // there is no semantic difference for class types in this restricted
2501     // case.
2502     if (SM == CXXCopyConstructor || SM == CXXCopyAssignment)
2503       VK = VK_LValue;
2504     else
2505       VK = VK_RValue;
2506   }
2507 
2508   OpaqueValueExpr FakeArg(SourceLocation(), ArgType, VK);
2509 
2510   if (SM != CXXDefaultConstructor) {
2511     NumArgs = 1;
2512     Arg = &FakeArg;
2513   }
2514 
2515   // Create the object argument
2516   QualType ThisTy = CanTy;
2517   if (ConstThis)
2518     ThisTy.addConst();
2519   if (VolatileThis)
2520     ThisTy.addVolatile();
2521   Expr::Classification Classification =
2522     OpaqueValueExpr(SourceLocation(), ThisTy,
2523                     RValueThis ? VK_RValue : VK_LValue).Classify(Context);
2524 
2525   // Now we perform lookup on the name we computed earlier and do overload
2526   // resolution. Lookup is only performed directly into the class since there
2527   // will always be a (possibly implicit) declaration to shadow any others.
2528   OverloadCandidateSet OCS(RD->getLocation());
2529   DeclContext::lookup_result R = RD->lookup(Name);
2530   assert(!R.empty() &&
2531          "lookup for a constructor or assignment operator was empty");
2532 
2533   // Copy the candidates as our processing of them may load new declarations
2534   // from an external source and invalidate lookup_result.
2535   SmallVector<NamedDecl *, 8> Candidates(R.begin(), R.end());
2536 
2537   for (SmallVectorImpl<NamedDecl *>::iterator I = Candidates.begin(),
2538                                               E = Candidates.end();
2539        I != E; ++I) {
2540     NamedDecl *Cand = *I;
2541 
2542     if (Cand->isInvalidDecl())
2543       continue;
2544 
2545     if (UsingShadowDecl *U = dyn_cast<UsingShadowDecl>(Cand)) {
2546       // FIXME: [namespace.udecl]p15 says that we should only consider a
2547       // using declaration here if it does not match a declaration in the
2548       // derived class. We do not implement this correctly in other cases
2549       // either.
2550       Cand = U->getTargetDecl();
2551 
2552       if (Cand->isInvalidDecl())
2553         continue;
2554     }
2555 
2556     if (CXXMethodDecl *M = dyn_cast<CXXMethodDecl>(Cand)) {
2557       if (SM == CXXCopyAssignment || SM == CXXMoveAssignment)
2558         AddMethodCandidate(M, DeclAccessPair::make(M, AS_public), RD, ThisTy,
2559                            Classification, llvm::makeArrayRef(&Arg, NumArgs),
2560                            OCS, true);
2561       else
2562         AddOverloadCandidate(M, DeclAccessPair::make(M, AS_public),
2563                              llvm::makeArrayRef(&Arg, NumArgs), OCS, true);
2564     } else if (FunctionTemplateDecl *Tmpl =
2565                  dyn_cast<FunctionTemplateDecl>(Cand)) {
2566       if (SM == CXXCopyAssignment || SM == CXXMoveAssignment)
2567         AddMethodTemplateCandidate(Tmpl, DeclAccessPair::make(Tmpl, AS_public),
2568                                    RD, 0, ThisTy, Classification,
2569                                    llvm::makeArrayRef(&Arg, NumArgs),
2570                                    OCS, true);
2571       else
2572         AddTemplateOverloadCandidate(Tmpl, DeclAccessPair::make(Tmpl, AS_public),
2573                                      0, llvm::makeArrayRef(&Arg, NumArgs),
2574                                      OCS, true);
2575     } else {
2576       assert(isa<UsingDecl>(Cand) && "illegal Kind of operator = Decl");
2577     }
2578   }
2579 
2580   OverloadCandidateSet::iterator Best;
2581   switch (OCS.BestViableFunction(*this, SourceLocation(), Best)) {
2582     case OR_Success:
2583       Result->setMethod(cast<CXXMethodDecl>(Best->Function));
2584       Result->setKind(SpecialMemberOverloadResult::Success);
2585       break;
2586 
2587     case OR_Deleted:
2588       Result->setMethod(cast<CXXMethodDecl>(Best->Function));
2589       Result->setKind(SpecialMemberOverloadResult::NoMemberOrDeleted);
2590       break;
2591 
2592     case OR_Ambiguous:
2593       Result->setMethod(0);
2594       Result->setKind(SpecialMemberOverloadResult::Ambiguous);
2595       break;
2596 
2597     case OR_No_Viable_Function:
2598       Result->setMethod(0);
2599       Result->setKind(SpecialMemberOverloadResult::NoMemberOrDeleted);
2600       break;
2601   }
2602 
2603   return Result;
2604 }
2605 
2606 /// \brief Look up the default constructor for the given class.
2607 CXXConstructorDecl *Sema::LookupDefaultConstructor(CXXRecordDecl *Class) {
2608   SpecialMemberOverloadResult *Result =
2609     LookupSpecialMember(Class, CXXDefaultConstructor, false, false, false,
2610                         false, false);
2611 
2612   return cast_or_null<CXXConstructorDecl>(Result->getMethod());
2613 }
2614 
2615 /// \brief Look up the copying constructor for the given class.
2616 CXXConstructorDecl *Sema::LookupCopyingConstructor(CXXRecordDecl *Class,
2617                                                    unsigned Quals) {
2618   assert(!(Quals & ~(Qualifiers::Const | Qualifiers::Volatile)) &&
2619          "non-const, non-volatile qualifiers for copy ctor arg");
2620   SpecialMemberOverloadResult *Result =
2621     LookupSpecialMember(Class, CXXCopyConstructor, Quals & Qualifiers::Const,
2622                         Quals & Qualifiers::Volatile, false, false, false);
2623 
2624   return cast_or_null<CXXConstructorDecl>(Result->getMethod());
2625 }
2626 
2627 /// \brief Look up the moving constructor for the given class.
2628 CXXConstructorDecl *Sema::LookupMovingConstructor(CXXRecordDecl *Class,
2629                                                   unsigned Quals) {
2630   SpecialMemberOverloadResult *Result =
2631     LookupSpecialMember(Class, CXXMoveConstructor, Quals & Qualifiers::Const,
2632                         Quals & Qualifiers::Volatile, false, false, false);
2633 
2634   return cast_or_null<CXXConstructorDecl>(Result->getMethod());
2635 }
2636 
2637 /// \brief Look up the constructors for the given class.
2638 DeclContext::lookup_result Sema::LookupConstructors(CXXRecordDecl *Class) {
2639   // If the implicit constructors have not yet been declared, do so now.
2640   if (CanDeclareSpecialMemberFunction(Class)) {
2641     if (Class->needsImplicitDefaultConstructor())
2642       DeclareImplicitDefaultConstructor(Class);
2643     if (Class->needsImplicitCopyConstructor())
2644       DeclareImplicitCopyConstructor(Class);
2645     if (getLangOpts().CPlusPlus11 && Class->needsImplicitMoveConstructor())
2646       DeclareImplicitMoveConstructor(Class);
2647   }
2648 
2649   CanQualType T = Context.getCanonicalType(Context.getTypeDeclType(Class));
2650   DeclarationName Name = Context.DeclarationNames.getCXXConstructorName(T);
2651   return Class->lookup(Name);
2652 }
2653 
2654 /// \brief Look up the copying assignment operator for the given class.
2655 CXXMethodDecl *Sema::LookupCopyingAssignment(CXXRecordDecl *Class,
2656                                              unsigned Quals, bool RValueThis,
2657                                              unsigned ThisQuals) {
2658   assert(!(Quals & ~(Qualifiers::Const | Qualifiers::Volatile)) &&
2659          "non-const, non-volatile qualifiers for copy assignment arg");
2660   assert(!(ThisQuals & ~(Qualifiers::Const | Qualifiers::Volatile)) &&
2661          "non-const, non-volatile qualifiers for copy assignment this");
2662   SpecialMemberOverloadResult *Result =
2663     LookupSpecialMember(Class, CXXCopyAssignment, Quals & Qualifiers::Const,
2664                         Quals & Qualifiers::Volatile, RValueThis,
2665                         ThisQuals & Qualifiers::Const,
2666                         ThisQuals & Qualifiers::Volatile);
2667 
2668   return Result->getMethod();
2669 }
2670 
2671 /// \brief Look up the moving assignment operator for the given class.
2672 CXXMethodDecl *Sema::LookupMovingAssignment(CXXRecordDecl *Class,
2673                                             unsigned Quals,
2674                                             bool RValueThis,
2675                                             unsigned ThisQuals) {
2676   assert(!(ThisQuals & ~(Qualifiers::Const | Qualifiers::Volatile)) &&
2677          "non-const, non-volatile qualifiers for copy assignment this");
2678   SpecialMemberOverloadResult *Result =
2679     LookupSpecialMember(Class, CXXMoveAssignment, Quals & Qualifiers::Const,
2680                         Quals & Qualifiers::Volatile, RValueThis,
2681                         ThisQuals & Qualifiers::Const,
2682                         ThisQuals & Qualifiers::Volatile);
2683 
2684   return Result->getMethod();
2685 }
2686 
2687 /// \brief Look for the destructor of the given class.
2688 ///
2689 /// During semantic analysis, this routine should be used in lieu of
2690 /// CXXRecordDecl::getDestructor().
2691 ///
2692 /// \returns The destructor for this class.
2693 CXXDestructorDecl *Sema::LookupDestructor(CXXRecordDecl *Class) {
2694   return cast<CXXDestructorDecl>(LookupSpecialMember(Class, CXXDestructor,
2695                                                      false, false, false,
2696                                                      false, false)->getMethod());
2697 }
2698 
2699 /// LookupLiteralOperator - Determine which literal operator should be used for
2700 /// a user-defined literal, per C++11 [lex.ext].
2701 ///
2702 /// Normal overload resolution is not used to select which literal operator to
2703 /// call for a user-defined literal. Look up the provided literal operator name,
2704 /// and filter the results to the appropriate set for the given argument types.
2705 Sema::LiteralOperatorLookupResult
2706 Sema::LookupLiteralOperator(Scope *S, LookupResult &R,
2707                             ArrayRef<QualType> ArgTys,
2708                             bool AllowRaw, bool AllowTemplate,
2709                             bool AllowStringTemplate) {
2710   LookupName(R, S);
2711   assert(R.getResultKind() != LookupResult::Ambiguous &&
2712          "literal operator lookup can't be ambiguous");
2713 
2714   // Filter the lookup results appropriately.
2715   LookupResult::Filter F = R.makeFilter();
2716 
2717   bool FoundRaw = false;
2718   bool FoundTemplate = false;
2719   bool FoundStringTemplate = false;
2720   bool FoundExactMatch = false;
2721 
2722   while (F.hasNext()) {
2723     Decl *D = F.next();
2724     if (UsingShadowDecl *USD = dyn_cast<UsingShadowDecl>(D))
2725       D = USD->getTargetDecl();
2726 
2727     // If the declaration we found is invalid, skip it.
2728     if (D->isInvalidDecl()) {
2729       F.erase();
2730       continue;
2731     }
2732 
2733     bool IsRaw = false;
2734     bool IsTemplate = false;
2735     bool IsStringTemplate = false;
2736     bool IsExactMatch = false;
2737 
2738     if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
2739       if (FD->getNumParams() == 1 &&
2740           FD->getParamDecl(0)->getType()->getAs<PointerType>())
2741         IsRaw = true;
2742       else if (FD->getNumParams() == ArgTys.size()) {
2743         IsExactMatch = true;
2744         for (unsigned ArgIdx = 0; ArgIdx != ArgTys.size(); ++ArgIdx) {
2745           QualType ParamTy = FD->getParamDecl(ArgIdx)->getType();
2746           if (!Context.hasSameUnqualifiedType(ArgTys[ArgIdx], ParamTy)) {
2747             IsExactMatch = false;
2748             break;
2749           }
2750         }
2751       }
2752     }
2753     if (FunctionTemplateDecl *FD = dyn_cast<FunctionTemplateDecl>(D)) {
2754       TemplateParameterList *Params = FD->getTemplateParameters();
2755       if (Params->size() == 1)
2756         IsTemplate = true;
2757       else
2758         IsStringTemplate = true;
2759     }
2760 
2761     if (IsExactMatch) {
2762       FoundExactMatch = true;
2763       AllowRaw = false;
2764       AllowTemplate = false;
2765       AllowStringTemplate = false;
2766       if (FoundRaw || FoundTemplate || FoundStringTemplate) {
2767         // Go through again and remove the raw and template decls we've
2768         // already found.
2769         F.restart();
2770         FoundRaw = FoundTemplate = FoundStringTemplate = false;
2771       }
2772     } else if (AllowRaw && IsRaw) {
2773       FoundRaw = true;
2774     } else if (AllowTemplate && IsTemplate) {
2775       FoundTemplate = true;
2776     } else if (AllowStringTemplate && IsStringTemplate) {
2777       FoundStringTemplate = true;
2778     } else {
2779       F.erase();
2780     }
2781   }
2782 
2783   F.done();
2784 
2785   // C++11 [lex.ext]p3, p4: If S contains a literal operator with a matching
2786   // parameter type, that is used in preference to a raw literal operator
2787   // or literal operator template.
2788   if (FoundExactMatch)
2789     return LOLR_Cooked;
2790 
2791   // C++11 [lex.ext]p3, p4: S shall contain a raw literal operator or a literal
2792   // operator template, but not both.
2793   if (FoundRaw && FoundTemplate) {
2794     Diag(R.getNameLoc(), diag::err_ovl_ambiguous_call) << R.getLookupName();
2795     for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
2796       NoteOverloadCandidate((*I)->getUnderlyingDecl()->getAsFunction());
2797     return LOLR_Error;
2798   }
2799 
2800   if (FoundRaw)
2801     return LOLR_Raw;
2802 
2803   if (FoundTemplate)
2804     return LOLR_Template;
2805 
2806   if (FoundStringTemplate)
2807     return LOLR_StringTemplate;
2808 
2809   // Didn't find anything we could use.
2810   Diag(R.getNameLoc(), diag::err_ovl_no_viable_literal_operator)
2811     << R.getLookupName() << (int)ArgTys.size() << ArgTys[0]
2812     << (ArgTys.size() == 2 ? ArgTys[1] : QualType()) << AllowRaw
2813     << (AllowTemplate || AllowStringTemplate);
2814   return LOLR_Error;
2815 }
2816 
2817 void ADLResult::insert(NamedDecl *New) {
2818   NamedDecl *&Old = Decls[cast<NamedDecl>(New->getCanonicalDecl())];
2819 
2820   // If we haven't yet seen a decl for this key, or the last decl
2821   // was exactly this one, we're done.
2822   if (Old == 0 || Old == New) {
2823     Old = New;
2824     return;
2825   }
2826 
2827   // Otherwise, decide which is a more recent redeclaration.
2828   FunctionDecl *OldFD = Old->getAsFunction();
2829   FunctionDecl *NewFD = New->getAsFunction();
2830 
2831   FunctionDecl *Cursor = NewFD;
2832   while (true) {
2833     Cursor = Cursor->getPreviousDecl();
2834 
2835     // If we got to the end without finding OldFD, OldFD is the newer
2836     // declaration;  leave things as they are.
2837     if (!Cursor) return;
2838 
2839     // If we do find OldFD, then NewFD is newer.
2840     if (Cursor == OldFD) break;
2841 
2842     // Otherwise, keep looking.
2843   }
2844 
2845   Old = New;
2846 }
2847 
2848 void Sema::ArgumentDependentLookup(DeclarationName Name, bool Operator,
2849                                    SourceLocation Loc, ArrayRef<Expr *> Args,
2850                                    ADLResult &Result) {
2851   // Find all of the associated namespaces and classes based on the
2852   // arguments we have.
2853   AssociatedNamespaceSet AssociatedNamespaces;
2854   AssociatedClassSet AssociatedClasses;
2855   FindAssociatedClassesAndNamespaces(Loc, Args,
2856                                      AssociatedNamespaces,
2857                                      AssociatedClasses);
2858 
2859   QualType T1, T2;
2860   if (Operator) {
2861     T1 = Args[0]->getType();
2862     if (Args.size() >= 2)
2863       T2 = Args[1]->getType();
2864   }
2865 
2866   // C++ [basic.lookup.argdep]p3:
2867   //   Let X be the lookup set produced by unqualified lookup (3.4.1)
2868   //   and let Y be the lookup set produced by argument dependent
2869   //   lookup (defined as follows). If X contains [...] then Y is
2870   //   empty. Otherwise Y is the set of declarations found in the
2871   //   namespaces associated with the argument types as described
2872   //   below. The set of declarations found by the lookup of the name
2873   //   is the union of X and Y.
2874   //
2875   // Here, we compute Y and add its members to the overloaded
2876   // candidate set.
2877   for (AssociatedNamespaceSet::iterator NS = AssociatedNamespaces.begin(),
2878                                      NSEnd = AssociatedNamespaces.end();
2879        NS != NSEnd; ++NS) {
2880     //   When considering an associated namespace, the lookup is the
2881     //   same as the lookup performed when the associated namespace is
2882     //   used as a qualifier (3.4.3.2) except that:
2883     //
2884     //     -- Any using-directives in the associated namespace are
2885     //        ignored.
2886     //
2887     //     -- Any namespace-scope friend functions declared in
2888     //        associated classes are visible within their respective
2889     //        namespaces even if they are not visible during an ordinary
2890     //        lookup (11.4).
2891     DeclContext::lookup_result R = (*NS)->lookup(Name);
2892     for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E;
2893          ++I) {
2894       NamedDecl *D = *I;
2895       // If the only declaration here is an ordinary friend, consider
2896       // it only if it was declared in an associated classes.
2897       if ((D->getIdentifierNamespace() & Decl::IDNS_Ordinary) == 0) {
2898         // If it's neither ordinarily visible nor a friend, we can't find it.
2899         if ((D->getIdentifierNamespace() & Decl::IDNS_OrdinaryFriend) == 0)
2900           continue;
2901 
2902         bool DeclaredInAssociatedClass = false;
2903         for (Decl *DI = D; DI; DI = DI->getPreviousDecl()) {
2904           DeclContext *LexDC = DI->getLexicalDeclContext();
2905           if (isa<CXXRecordDecl>(LexDC) &&
2906               AssociatedClasses.count(cast<CXXRecordDecl>(LexDC))) {
2907             DeclaredInAssociatedClass = true;
2908             break;
2909           }
2910         }
2911         if (!DeclaredInAssociatedClass)
2912           continue;
2913       }
2914 
2915       if (isa<UsingShadowDecl>(D))
2916         D = cast<UsingShadowDecl>(D)->getTargetDecl();
2917 
2918       if (isa<FunctionDecl>(D)) {
2919         if (Operator &&
2920             !IsAcceptableNonMemberOperatorCandidate(cast<FunctionDecl>(D),
2921                                                     T1, T2, Context))
2922           continue;
2923       } else if (!isa<FunctionTemplateDecl>(D))
2924         continue;
2925 
2926       Result.insert(D);
2927     }
2928   }
2929 }
2930 
2931 //----------------------------------------------------------------------------
2932 // Search for all visible declarations.
2933 //----------------------------------------------------------------------------
2934 VisibleDeclConsumer::~VisibleDeclConsumer() { }
2935 
2936 bool VisibleDeclConsumer::includeHiddenDecls() const { return false; }
2937 
2938 namespace {
2939 
2940 class ShadowContextRAII;
2941 
2942 class VisibleDeclsRecord {
2943 public:
2944   /// \brief An entry in the shadow map, which is optimized to store a
2945   /// single declaration (the common case) but can also store a list
2946   /// of declarations.
2947   typedef llvm::TinyPtrVector<NamedDecl*> ShadowMapEntry;
2948 
2949 private:
2950   /// \brief A mapping from declaration names to the declarations that have
2951   /// this name within a particular scope.
2952   typedef llvm::DenseMap<DeclarationName, ShadowMapEntry> ShadowMap;
2953 
2954   /// \brief A list of shadow maps, which is used to model name hiding.
2955   std::list<ShadowMap> ShadowMaps;
2956 
2957   /// \brief The declaration contexts we have already visited.
2958   llvm::SmallPtrSet<DeclContext *, 8> VisitedContexts;
2959 
2960   friend class ShadowContextRAII;
2961 
2962 public:
2963   /// \brief Determine whether we have already visited this context
2964   /// (and, if not, note that we are going to visit that context now).
2965   bool visitedContext(DeclContext *Ctx) {
2966     return !VisitedContexts.insert(Ctx);
2967   }
2968 
2969   bool alreadyVisitedContext(DeclContext *Ctx) {
2970     return VisitedContexts.count(Ctx);
2971   }
2972 
2973   /// \brief Determine whether the given declaration is hidden in the
2974   /// current scope.
2975   ///
2976   /// \returns the declaration that hides the given declaration, or
2977   /// NULL if no such declaration exists.
2978   NamedDecl *checkHidden(NamedDecl *ND);
2979 
2980   /// \brief Add a declaration to the current shadow map.
2981   void add(NamedDecl *ND) {
2982     ShadowMaps.back()[ND->getDeclName()].push_back(ND);
2983   }
2984 };
2985 
2986 /// \brief RAII object that records when we've entered a shadow context.
2987 class ShadowContextRAII {
2988   VisibleDeclsRecord &Visible;
2989 
2990   typedef VisibleDeclsRecord::ShadowMap ShadowMap;
2991 
2992 public:
2993   ShadowContextRAII(VisibleDeclsRecord &Visible) : Visible(Visible) {
2994     Visible.ShadowMaps.push_back(ShadowMap());
2995   }
2996 
2997   ~ShadowContextRAII() {
2998     Visible.ShadowMaps.pop_back();
2999   }
3000 };
3001 
3002 } // end anonymous namespace
3003 
3004 NamedDecl *VisibleDeclsRecord::checkHidden(NamedDecl *ND) {
3005   // Look through using declarations.
3006   ND = ND->getUnderlyingDecl();
3007 
3008   unsigned IDNS = ND->getIdentifierNamespace();
3009   std::list<ShadowMap>::reverse_iterator SM = ShadowMaps.rbegin();
3010   for (std::list<ShadowMap>::reverse_iterator SMEnd = ShadowMaps.rend();
3011        SM != SMEnd; ++SM) {
3012     ShadowMap::iterator Pos = SM->find(ND->getDeclName());
3013     if (Pos == SM->end())
3014       continue;
3015 
3016     for (ShadowMapEntry::iterator I = Pos->second.begin(),
3017                                IEnd = Pos->second.end();
3018          I != IEnd; ++I) {
3019       // A tag declaration does not hide a non-tag declaration.
3020       if ((*I)->hasTagIdentifierNamespace() &&
3021           (IDNS & (Decl::IDNS_Member | Decl::IDNS_Ordinary |
3022                    Decl::IDNS_ObjCProtocol)))
3023         continue;
3024 
3025       // Protocols are in distinct namespaces from everything else.
3026       if ((((*I)->getIdentifierNamespace() & Decl::IDNS_ObjCProtocol)
3027            || (IDNS & Decl::IDNS_ObjCProtocol)) &&
3028           (*I)->getIdentifierNamespace() != IDNS)
3029         continue;
3030 
3031       // Functions and function templates in the same scope overload
3032       // rather than hide.  FIXME: Look for hiding based on function
3033       // signatures!
3034       if ((*I)->getUnderlyingDecl()->isFunctionOrFunctionTemplate() &&
3035           ND->getUnderlyingDecl()->isFunctionOrFunctionTemplate() &&
3036           SM == ShadowMaps.rbegin())
3037         continue;
3038 
3039       // We've found a declaration that hides this one.
3040       return *I;
3041     }
3042   }
3043 
3044   return 0;
3045 }
3046 
3047 static void LookupVisibleDecls(DeclContext *Ctx, LookupResult &Result,
3048                                bool QualifiedNameLookup,
3049                                bool InBaseClass,
3050                                VisibleDeclConsumer &Consumer,
3051                                VisibleDeclsRecord &Visited) {
3052   if (!Ctx)
3053     return;
3054 
3055   // Make sure we don't visit the same context twice.
3056   if (Visited.visitedContext(Ctx->getPrimaryContext()))
3057     return;
3058 
3059   if (CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(Ctx))
3060     Result.getSema().ForceDeclarationOfImplicitMembers(Class);
3061 
3062   // Enumerate all of the results in this context.
3063   for (const auto &R : Ctx->lookups()) {
3064     for (auto *I : R) {
3065       if (NamedDecl *ND = dyn_cast<NamedDecl>(I)) {
3066         if ((ND = Result.getAcceptableDecl(ND))) {
3067           Consumer.FoundDecl(ND, Visited.checkHidden(ND), Ctx, InBaseClass);
3068           Visited.add(ND);
3069         }
3070       }
3071     }
3072   }
3073 
3074   // Traverse using directives for qualified name lookup.
3075   if (QualifiedNameLookup) {
3076     ShadowContextRAII Shadow(Visited);
3077     for (auto I : Ctx->using_directives()) {
3078       LookupVisibleDecls(I->getNominatedNamespace(), Result,
3079                          QualifiedNameLookup, InBaseClass, Consumer, Visited);
3080     }
3081   }
3082 
3083   // Traverse the contexts of inherited C++ classes.
3084   if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx)) {
3085     if (!Record->hasDefinition())
3086       return;
3087 
3088     for (const auto &B : Record->bases()) {
3089       QualType BaseType = B.getType();
3090 
3091       // Don't look into dependent bases, because name lookup can't look
3092       // there anyway.
3093       if (BaseType->isDependentType())
3094         continue;
3095 
3096       const RecordType *Record = BaseType->getAs<RecordType>();
3097       if (!Record)
3098         continue;
3099 
3100       // FIXME: It would be nice to be able to determine whether referencing
3101       // a particular member would be ambiguous. For example, given
3102       //
3103       //   struct A { int member; };
3104       //   struct B { int member; };
3105       //   struct C : A, B { };
3106       //
3107       //   void f(C *c) { c->### }
3108       //
3109       // accessing 'member' would result in an ambiguity. However, we
3110       // could be smart enough to qualify the member with the base
3111       // class, e.g.,
3112       //
3113       //   c->B::member
3114       //
3115       // or
3116       //
3117       //   c->A::member
3118 
3119       // Find results in this base class (and its bases).
3120       ShadowContextRAII Shadow(Visited);
3121       LookupVisibleDecls(Record->getDecl(), Result, QualifiedNameLookup,
3122                          true, Consumer, Visited);
3123     }
3124   }
3125 
3126   // Traverse the contexts of Objective-C classes.
3127   if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Ctx)) {
3128     // Traverse categories.
3129     for (auto *Cat : IFace->visible_categories()) {
3130       ShadowContextRAII Shadow(Visited);
3131       LookupVisibleDecls(Cat, Result, QualifiedNameLookup, false,
3132                          Consumer, Visited);
3133     }
3134 
3135     // Traverse protocols.
3136     for (auto *I : IFace->all_referenced_protocols()) {
3137       ShadowContextRAII Shadow(Visited);
3138       LookupVisibleDecls(I, Result, QualifiedNameLookup, false, Consumer,
3139                          Visited);
3140     }
3141 
3142     // Traverse the superclass.
3143     if (IFace->getSuperClass()) {
3144       ShadowContextRAII Shadow(Visited);
3145       LookupVisibleDecls(IFace->getSuperClass(), Result, QualifiedNameLookup,
3146                          true, Consumer, Visited);
3147     }
3148 
3149     // If there is an implementation, traverse it. We do this to find
3150     // synthesized ivars.
3151     if (IFace->getImplementation()) {
3152       ShadowContextRAII Shadow(Visited);
3153       LookupVisibleDecls(IFace->getImplementation(), Result,
3154                          QualifiedNameLookup, InBaseClass, Consumer, Visited);
3155     }
3156   } else if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Ctx)) {
3157     for (auto *I : Protocol->protocols()) {
3158       ShadowContextRAII Shadow(Visited);
3159       LookupVisibleDecls(I, Result, QualifiedNameLookup, false, Consumer,
3160                          Visited);
3161     }
3162   } else if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(Ctx)) {
3163     for (auto *I : Category->protocols()) {
3164       ShadowContextRAII Shadow(Visited);
3165       LookupVisibleDecls(I, Result, QualifiedNameLookup, false, Consumer,
3166                          Visited);
3167     }
3168 
3169     // If there is an implementation, traverse it.
3170     if (Category->getImplementation()) {
3171       ShadowContextRAII Shadow(Visited);
3172       LookupVisibleDecls(Category->getImplementation(), Result,
3173                          QualifiedNameLookup, true, Consumer, Visited);
3174     }
3175   }
3176 }
3177 
3178 static void LookupVisibleDecls(Scope *S, LookupResult &Result,
3179                                UnqualUsingDirectiveSet &UDirs,
3180                                VisibleDeclConsumer &Consumer,
3181                                VisibleDeclsRecord &Visited) {
3182   if (!S)
3183     return;
3184 
3185   if (!S->getEntity() ||
3186       (!S->getParent() &&
3187        !Visited.alreadyVisitedContext(S->getEntity())) ||
3188       (S->getEntity())->isFunctionOrMethod()) {
3189     FindLocalExternScope FindLocals(Result);
3190     // Walk through the declarations in this Scope.
3191     for (auto *D : S->decls()) {
3192       if (NamedDecl *ND = dyn_cast<NamedDecl>(D))
3193         if ((ND = Result.getAcceptableDecl(ND))) {
3194           Consumer.FoundDecl(ND, Visited.checkHidden(ND), 0, false);
3195           Visited.add(ND);
3196         }
3197     }
3198   }
3199 
3200   // FIXME: C++ [temp.local]p8
3201   DeclContext *Entity = 0;
3202   if (S->getEntity()) {
3203     // Look into this scope's declaration context, along with any of its
3204     // parent lookup contexts (e.g., enclosing classes), up to the point
3205     // where we hit the context stored in the next outer scope.
3206     Entity = S->getEntity();
3207     DeclContext *OuterCtx = findOuterContext(S).first; // FIXME
3208 
3209     for (DeclContext *Ctx = Entity; Ctx && !Ctx->Equals(OuterCtx);
3210          Ctx = Ctx->getLookupParent()) {
3211       if (ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(Ctx)) {
3212         if (Method->isInstanceMethod()) {
3213           // For instance methods, look for ivars in the method's interface.
3214           LookupResult IvarResult(Result.getSema(), Result.getLookupName(),
3215                                   Result.getNameLoc(), Sema::LookupMemberName);
3216           if (ObjCInterfaceDecl *IFace = Method->getClassInterface()) {
3217             LookupVisibleDecls(IFace, IvarResult, /*QualifiedNameLookup=*/false,
3218                                /*InBaseClass=*/false, Consumer, Visited);
3219           }
3220         }
3221 
3222         // We've already performed all of the name lookup that we need
3223         // to for Objective-C methods; the next context will be the
3224         // outer scope.
3225         break;
3226       }
3227 
3228       if (Ctx->isFunctionOrMethod())
3229         continue;
3230 
3231       LookupVisibleDecls(Ctx, Result, /*QualifiedNameLookup=*/false,
3232                          /*InBaseClass=*/false, Consumer, Visited);
3233     }
3234   } else if (!S->getParent()) {
3235     // Look into the translation unit scope. We walk through the translation
3236     // unit's declaration context, because the Scope itself won't have all of
3237     // the declarations if we loaded a precompiled header.
3238     // FIXME: We would like the translation unit's Scope object to point to the
3239     // translation unit, so we don't need this special "if" branch. However,
3240     // doing so would force the normal C++ name-lookup code to look into the
3241     // translation unit decl when the IdentifierInfo chains would suffice.
3242     // Once we fix that problem (which is part of a more general "don't look
3243     // in DeclContexts unless we have to" optimization), we can eliminate this.
3244     Entity = Result.getSema().Context.getTranslationUnitDecl();
3245     LookupVisibleDecls(Entity, Result, /*QualifiedNameLookup=*/false,
3246                        /*InBaseClass=*/false, Consumer, Visited);
3247   }
3248 
3249   if (Entity) {
3250     // Lookup visible declarations in any namespaces found by using
3251     // directives.
3252     UnqualUsingDirectiveSet::const_iterator UI, UEnd;
3253     std::tie(UI, UEnd) = UDirs.getNamespacesFor(Entity);
3254     for (; UI != UEnd; ++UI)
3255       LookupVisibleDecls(const_cast<DeclContext *>(UI->getNominatedNamespace()),
3256                          Result, /*QualifiedNameLookup=*/false,
3257                          /*InBaseClass=*/false, Consumer, Visited);
3258   }
3259 
3260   // Lookup names in the parent scope.
3261   ShadowContextRAII Shadow(Visited);
3262   LookupVisibleDecls(S->getParent(), Result, UDirs, Consumer, Visited);
3263 }
3264 
3265 void Sema::LookupVisibleDecls(Scope *S, LookupNameKind Kind,
3266                               VisibleDeclConsumer &Consumer,
3267                               bool IncludeGlobalScope) {
3268   // Determine the set of using directives available during
3269   // unqualified name lookup.
3270   Scope *Initial = S;
3271   UnqualUsingDirectiveSet UDirs;
3272   if (getLangOpts().CPlusPlus) {
3273     // Find the first namespace or translation-unit scope.
3274     while (S && !isNamespaceOrTranslationUnitScope(S))
3275       S = S->getParent();
3276 
3277     UDirs.visitScopeChain(Initial, S);
3278   }
3279   UDirs.done();
3280 
3281   // Look for visible declarations.
3282   LookupResult Result(*this, DeclarationName(), SourceLocation(), Kind);
3283   Result.setAllowHidden(Consumer.includeHiddenDecls());
3284   VisibleDeclsRecord Visited;
3285   if (!IncludeGlobalScope)
3286     Visited.visitedContext(Context.getTranslationUnitDecl());
3287   ShadowContextRAII Shadow(Visited);
3288   ::LookupVisibleDecls(Initial, Result, UDirs, Consumer, Visited);
3289 }
3290 
3291 void Sema::LookupVisibleDecls(DeclContext *Ctx, LookupNameKind Kind,
3292                               VisibleDeclConsumer &Consumer,
3293                               bool IncludeGlobalScope) {
3294   LookupResult Result(*this, DeclarationName(), SourceLocation(), Kind);
3295   Result.setAllowHidden(Consumer.includeHiddenDecls());
3296   VisibleDeclsRecord Visited;
3297   if (!IncludeGlobalScope)
3298     Visited.visitedContext(Context.getTranslationUnitDecl());
3299   ShadowContextRAII Shadow(Visited);
3300   ::LookupVisibleDecls(Ctx, Result, /*QualifiedNameLookup=*/true,
3301                        /*InBaseClass=*/false, Consumer, Visited);
3302 }
3303 
3304 /// LookupOrCreateLabel - Do a name lookup of a label with the specified name.
3305 /// If GnuLabelLoc is a valid source location, then this is a definition
3306 /// of an __label__ label name, otherwise it is a normal label definition
3307 /// or use.
3308 LabelDecl *Sema::LookupOrCreateLabel(IdentifierInfo *II, SourceLocation Loc,
3309                                      SourceLocation GnuLabelLoc) {
3310   // Do a lookup to see if we have a label with this name already.
3311   NamedDecl *Res = 0;
3312 
3313   if (GnuLabelLoc.isValid()) {
3314     // Local label definitions always shadow existing labels.
3315     Res = LabelDecl::Create(Context, CurContext, Loc, II, GnuLabelLoc);
3316     Scope *S = CurScope;
3317     PushOnScopeChains(Res, S, true);
3318     return cast<LabelDecl>(Res);
3319   }
3320 
3321   // Not a GNU local label.
3322   Res = LookupSingleName(CurScope, II, Loc, LookupLabel, NotForRedeclaration);
3323   // If we found a label, check to see if it is in the same context as us.
3324   // When in a Block, we don't want to reuse a label in an enclosing function.
3325   if (Res && Res->getDeclContext() != CurContext)
3326     Res = 0;
3327   if (Res == 0) {
3328     // If not forward referenced or defined already, create the backing decl.
3329     Res = LabelDecl::Create(Context, CurContext, Loc, II);
3330     Scope *S = CurScope->getFnParent();
3331     assert(S && "Not in a function?");
3332     PushOnScopeChains(Res, S, true);
3333   }
3334   return cast<LabelDecl>(Res);
3335 }
3336 
3337 //===----------------------------------------------------------------------===//
3338 // Typo correction
3339 //===----------------------------------------------------------------------===//
3340 
3341 namespace {
3342 
3343 typedef SmallVector<TypoCorrection, 1> TypoResultList;
3344 typedef llvm::StringMap<TypoResultList, llvm::BumpPtrAllocator> TypoResultsMap;
3345 typedef std::map<unsigned, TypoResultsMap> TypoEditDistanceMap;
3346 
3347 static const unsigned MaxTypoDistanceResultSets = 5;
3348 
3349 class TypoCorrectionConsumer : public VisibleDeclConsumer {
3350   /// \brief The name written that is a typo in the source.
3351   StringRef Typo;
3352 
3353   /// \brief The results found that have the smallest edit distance
3354   /// found (so far) with the typo name.
3355   ///
3356   /// The pointer value being set to the current DeclContext indicates
3357   /// whether there is a keyword with this name.
3358   TypoEditDistanceMap CorrectionResults;
3359 
3360   Sema &SemaRef;
3361 
3362 public:
3363   explicit TypoCorrectionConsumer(Sema &SemaRef, IdentifierInfo *Typo)
3364     : Typo(Typo->getName()),
3365       SemaRef(SemaRef) {}
3366 
3367   bool includeHiddenDecls() const override { return true; }
3368 
3369   void FoundDecl(NamedDecl *ND, NamedDecl *Hiding, DeclContext *Ctx,
3370                  bool InBaseClass) override;
3371   void FoundName(StringRef Name);
3372   void addKeywordResult(StringRef Keyword);
3373   void addName(StringRef Name, NamedDecl *ND, NestedNameSpecifier *NNS = NULL,
3374                bool isKeyword = false);
3375   void addCorrection(TypoCorrection Correction);
3376 
3377   typedef TypoResultsMap::iterator result_iterator;
3378   typedef TypoEditDistanceMap::iterator distance_iterator;
3379   distance_iterator begin() { return CorrectionResults.begin(); }
3380   distance_iterator end()  { return CorrectionResults.end(); }
3381   void erase(distance_iterator I) { CorrectionResults.erase(I); }
3382   unsigned size() const { return CorrectionResults.size(); }
3383   bool empty() const { return CorrectionResults.empty(); }
3384 
3385   TypoResultList &operator[](StringRef Name) {
3386     return CorrectionResults.begin()->second[Name];
3387   }
3388 
3389   unsigned getBestEditDistance(bool Normalized) {
3390     if (CorrectionResults.empty())
3391       return (std::numeric_limits<unsigned>::max)();
3392 
3393     unsigned BestED = CorrectionResults.begin()->first;
3394     return Normalized ? TypoCorrection::NormalizeEditDistance(BestED) : BestED;
3395   }
3396 
3397   TypoResultsMap &getBestResults() {
3398     return CorrectionResults.begin()->second;
3399   }
3400 
3401 };
3402 
3403 }
3404 
3405 void TypoCorrectionConsumer::FoundDecl(NamedDecl *ND, NamedDecl *Hiding,
3406                                        DeclContext *Ctx, bool InBaseClass) {
3407   // Don't consider hidden names for typo correction.
3408   if (Hiding)
3409     return;
3410 
3411   // Only consider entities with identifiers for names, ignoring
3412   // special names (constructors, overloaded operators, selectors,
3413   // etc.).
3414   IdentifierInfo *Name = ND->getIdentifier();
3415   if (!Name)
3416     return;
3417 
3418   // Only consider visible declarations and declarations from modules with
3419   // names that exactly match.
3420   if (!LookupResult::isVisible(SemaRef, ND) && Name->getName() != Typo &&
3421       !findAcceptableDecl(SemaRef, ND))
3422     return;
3423 
3424   FoundName(Name->getName());
3425 }
3426 
3427 void TypoCorrectionConsumer::FoundName(StringRef Name) {
3428   // Compute the edit distance between the typo and the name of this
3429   // entity, and add the identifier to the list of results.
3430   addName(Name, NULL);
3431 }
3432 
3433 void TypoCorrectionConsumer::addKeywordResult(StringRef Keyword) {
3434   // Compute the edit distance between the typo and this keyword,
3435   // and add the keyword to the list of results.
3436   addName(Keyword, NULL, NULL, true);
3437 }
3438 
3439 void TypoCorrectionConsumer::addName(StringRef Name, NamedDecl *ND,
3440                                      NestedNameSpecifier *NNS, bool isKeyword) {
3441   // Use a simple length-based heuristic to determine the minimum possible
3442   // edit distance. If the minimum isn't good enough, bail out early.
3443   unsigned MinED = abs((int)Name.size() - (int)Typo.size());
3444   if (MinED && Typo.size() / MinED < 3)
3445     return;
3446 
3447   // Compute an upper bound on the allowable edit distance, so that the
3448   // edit-distance algorithm can short-circuit.
3449   unsigned UpperBound = (Typo.size() + 2) / 3 + 1;
3450   unsigned ED = Typo.edit_distance(Name, true, UpperBound);
3451   if (ED >= UpperBound) return;
3452 
3453   TypoCorrection TC(&SemaRef.Context.Idents.get(Name), ND, NNS, ED);
3454   if (isKeyword) TC.makeKeyword();
3455   addCorrection(TC);
3456 }
3457 
3458 void TypoCorrectionConsumer::addCorrection(TypoCorrection Correction) {
3459   StringRef Name = Correction.getCorrectionAsIdentifierInfo()->getName();
3460   TypoResultList &CList =
3461       CorrectionResults[Correction.getEditDistance(false)][Name];
3462 
3463   if (!CList.empty() && !CList.back().isResolved())
3464     CList.pop_back();
3465   if (NamedDecl *NewND = Correction.getCorrectionDecl()) {
3466     std::string CorrectionStr = Correction.getAsString(SemaRef.getLangOpts());
3467     for (TypoResultList::iterator RI = CList.begin(), RIEnd = CList.end();
3468          RI != RIEnd; ++RI) {
3469       // If the Correction refers to a decl already in the result list,
3470       // replace the existing result if the string representation of Correction
3471       // comes before the current result alphabetically, then stop as there is
3472       // nothing more to be done to add Correction to the candidate set.
3473       if (RI->getCorrectionDecl() == NewND) {
3474         if (CorrectionStr < RI->getAsString(SemaRef.getLangOpts()))
3475           *RI = Correction;
3476         return;
3477       }
3478     }
3479   }
3480   if (CList.empty() || Correction.isResolved())
3481     CList.push_back(Correction);
3482 
3483   while (CorrectionResults.size() > MaxTypoDistanceResultSets)
3484     erase(std::prev(CorrectionResults.end()));
3485 }
3486 
3487 // Fill the supplied vector with the IdentifierInfo pointers for each piece of
3488 // the given NestedNameSpecifier (i.e. given a NestedNameSpecifier "foo::bar::",
3489 // fill the vector with the IdentifierInfo pointers for "foo" and "bar").
3490 static void getNestedNameSpecifierIdentifiers(
3491     NestedNameSpecifier *NNS,
3492     SmallVectorImpl<const IdentifierInfo*> &Identifiers) {
3493   if (NestedNameSpecifier *Prefix = NNS->getPrefix())
3494     getNestedNameSpecifierIdentifiers(Prefix, Identifiers);
3495   else
3496     Identifiers.clear();
3497 
3498   const IdentifierInfo *II = NULL;
3499 
3500   switch (NNS->getKind()) {
3501   case NestedNameSpecifier::Identifier:
3502     II = NNS->getAsIdentifier();
3503     break;
3504 
3505   case NestedNameSpecifier::Namespace:
3506     if (NNS->getAsNamespace()->isAnonymousNamespace())
3507       return;
3508     II = NNS->getAsNamespace()->getIdentifier();
3509     break;
3510 
3511   case NestedNameSpecifier::NamespaceAlias:
3512     II = NNS->getAsNamespaceAlias()->getIdentifier();
3513     break;
3514 
3515   case NestedNameSpecifier::TypeSpecWithTemplate:
3516   case NestedNameSpecifier::TypeSpec:
3517     II = QualType(NNS->getAsType(), 0).getBaseTypeIdentifier();
3518     break;
3519 
3520   case NestedNameSpecifier::Global:
3521     return;
3522   }
3523 
3524   if (II)
3525     Identifiers.push_back(II);
3526 }
3527 
3528 namespace {
3529 
3530 class SpecifierInfo {
3531  public:
3532   DeclContext* DeclCtx;
3533   NestedNameSpecifier* NameSpecifier;
3534   unsigned EditDistance;
3535 
3536   SpecifierInfo(DeclContext *Ctx, NestedNameSpecifier *NNS, unsigned ED)
3537       : DeclCtx(Ctx), NameSpecifier(NNS), EditDistance(ED) {}
3538 };
3539 
3540 typedef SmallVector<DeclContext*, 4> DeclContextList;
3541 typedef SmallVector<SpecifierInfo, 16> SpecifierInfoList;
3542 
3543 class NamespaceSpecifierSet {
3544   ASTContext &Context;
3545   DeclContextList CurContextChain;
3546   std::string CurNameSpecifier;
3547   SmallVector<const IdentifierInfo*, 4> CurContextIdentifiers;
3548   SmallVector<const IdentifierInfo*, 4> CurNameSpecifierIdentifiers;
3549   bool isSorted;
3550 
3551   SpecifierInfoList Specifiers;
3552   llvm::SmallSetVector<unsigned, 4> Distances;
3553   llvm::DenseMap<unsigned, SpecifierInfoList> DistanceMap;
3554 
3555   /// \brief Helper for building the list of DeclContexts between the current
3556   /// context and the top of the translation unit
3557   static DeclContextList BuildContextChain(DeclContext *Start);
3558 
3559   void SortNamespaces();
3560 
3561  public:
3562   NamespaceSpecifierSet(ASTContext &Context, DeclContext *CurContext,
3563                         CXXScopeSpec *CurScopeSpec)
3564       : Context(Context), CurContextChain(BuildContextChain(CurContext)),
3565         isSorted(false) {
3566     if (NestedNameSpecifier *NNS =
3567             CurScopeSpec ? CurScopeSpec->getScopeRep() : 0) {
3568       llvm::raw_string_ostream SpecifierOStream(CurNameSpecifier);
3569       NNS->print(SpecifierOStream, Context.getPrintingPolicy());
3570 
3571       getNestedNameSpecifierIdentifiers(NNS, CurNameSpecifierIdentifiers);
3572     }
3573     // Build the list of identifiers that would be used for an absolute
3574     // (from the global context) NestedNameSpecifier referring to the current
3575     // context.
3576     for (DeclContextList::reverse_iterator C = CurContextChain.rbegin(),
3577                                         CEnd = CurContextChain.rend();
3578          C != CEnd; ++C) {
3579       if (NamespaceDecl *ND = dyn_cast_or_null<NamespaceDecl>(*C))
3580         CurContextIdentifiers.push_back(ND->getIdentifier());
3581     }
3582 
3583     // Add the global context as a NestedNameSpecifier
3584     Distances.insert(1);
3585     DistanceMap[1].push_back(
3586         SpecifierInfo(cast<DeclContext>(Context.getTranslationUnitDecl()),
3587                       NestedNameSpecifier::GlobalSpecifier(Context), 1));
3588   }
3589 
3590   /// \brief Add the DeclContext (a namespace or record) to the set, computing
3591   /// the corresponding NestedNameSpecifier and its distance in the process.
3592   void AddNameSpecifier(DeclContext *Ctx);
3593 
3594   typedef SpecifierInfoList::iterator iterator;
3595   iterator begin() {
3596     if (!isSorted) SortNamespaces();
3597     return Specifiers.begin();
3598   }
3599   iterator end() { return Specifiers.end(); }
3600 };
3601 
3602 }
3603 
3604 DeclContextList NamespaceSpecifierSet::BuildContextChain(DeclContext *Start) {
3605   assert(Start && "Building a context chain from a null context");
3606   DeclContextList Chain;
3607   for (DeclContext *DC = Start->getPrimaryContext(); DC != NULL;
3608        DC = DC->getLookupParent()) {
3609     NamespaceDecl *ND = dyn_cast_or_null<NamespaceDecl>(DC);
3610     if (!DC->isInlineNamespace() && !DC->isTransparentContext() &&
3611         !(ND && ND->isAnonymousNamespace()))
3612       Chain.push_back(DC->getPrimaryContext());
3613   }
3614   return Chain;
3615 }
3616 
3617 void NamespaceSpecifierSet::SortNamespaces() {
3618   SmallVector<unsigned, 4> sortedDistances;
3619   sortedDistances.append(Distances.begin(), Distances.end());
3620 
3621   if (sortedDistances.size() > 1)
3622     std::sort(sortedDistances.begin(), sortedDistances.end());
3623 
3624   Specifiers.clear();
3625   for (SmallVectorImpl<unsigned>::iterator DI = sortedDistances.begin(),
3626                                         DIEnd = sortedDistances.end();
3627        DI != DIEnd; ++DI) {
3628     SpecifierInfoList &SpecList = DistanceMap[*DI];
3629     Specifiers.append(SpecList.begin(), SpecList.end());
3630   }
3631 
3632   isSorted = true;
3633 }
3634 
3635 static unsigned BuildNestedNameSpecifier(ASTContext &Context,
3636                                          DeclContextList &DeclChain,
3637                                          NestedNameSpecifier *&NNS) {
3638   unsigned NumSpecifiers = 0;
3639   for (DeclContextList::reverse_iterator C = DeclChain.rbegin(),
3640                                       CEnd = DeclChain.rend();
3641        C != CEnd; ++C) {
3642     if (NamespaceDecl *ND = dyn_cast_or_null<NamespaceDecl>(*C)) {
3643       NNS = NestedNameSpecifier::Create(Context, NNS, ND);
3644       ++NumSpecifiers;
3645     } else if (RecordDecl *RD = dyn_cast_or_null<RecordDecl>(*C)) {
3646       NNS = NestedNameSpecifier::Create(Context, NNS, RD->isTemplateDecl(),
3647                                         RD->getTypeForDecl());
3648       ++NumSpecifiers;
3649     }
3650   }
3651   return NumSpecifiers;
3652 }
3653 
3654 void NamespaceSpecifierSet::AddNameSpecifier(DeclContext *Ctx) {
3655   NestedNameSpecifier *NNS = NULL;
3656   unsigned NumSpecifiers = 0;
3657   DeclContextList NamespaceDeclChain(BuildContextChain(Ctx));
3658   DeclContextList FullNamespaceDeclChain(NamespaceDeclChain);
3659 
3660   // Eliminate common elements from the two DeclContext chains.
3661   for (DeclContextList::reverse_iterator C = CurContextChain.rbegin(),
3662                                       CEnd = CurContextChain.rend();
3663        C != CEnd && !NamespaceDeclChain.empty() &&
3664        NamespaceDeclChain.back() == *C; ++C) {
3665     NamespaceDeclChain.pop_back();
3666   }
3667 
3668   // Build the NestedNameSpecifier from what is left of the NamespaceDeclChain
3669   NumSpecifiers = BuildNestedNameSpecifier(Context, NamespaceDeclChain, NNS);
3670 
3671   // Add an explicit leading '::' specifier if needed.
3672   if (NamespaceDeclChain.empty()) {
3673     // Rebuild the NestedNameSpecifier as a globally-qualified specifier.
3674     NNS = NestedNameSpecifier::GlobalSpecifier(Context);
3675     NumSpecifiers =
3676         BuildNestedNameSpecifier(Context, FullNamespaceDeclChain, NNS);
3677   } else if (NamedDecl *ND =
3678                  dyn_cast_or_null<NamedDecl>(NamespaceDeclChain.back())) {
3679     IdentifierInfo *Name = ND->getIdentifier();
3680     bool SameNameSpecifier = false;
3681     if (std::find(CurNameSpecifierIdentifiers.begin(),
3682                   CurNameSpecifierIdentifiers.end(),
3683                   Name) != CurNameSpecifierIdentifiers.end()) {
3684       std::string NewNameSpecifier;
3685       llvm::raw_string_ostream SpecifierOStream(NewNameSpecifier);
3686       SmallVector<const IdentifierInfo *, 4> NewNameSpecifierIdentifiers;
3687       getNestedNameSpecifierIdentifiers(NNS, NewNameSpecifierIdentifiers);
3688       NNS->print(SpecifierOStream, Context.getPrintingPolicy());
3689       SpecifierOStream.flush();
3690       SameNameSpecifier = NewNameSpecifier == CurNameSpecifier;
3691     }
3692     if (SameNameSpecifier ||
3693         std::find(CurContextIdentifiers.begin(), CurContextIdentifiers.end(),
3694                   Name) != CurContextIdentifiers.end()) {
3695       // Rebuild the NestedNameSpecifier as a globally-qualified specifier.
3696       NNS = NestedNameSpecifier::GlobalSpecifier(Context);
3697       NumSpecifiers =
3698           BuildNestedNameSpecifier(Context, FullNamespaceDeclChain, NNS);
3699     }
3700   }
3701 
3702   // If the built NestedNameSpecifier would be replacing an existing
3703   // NestedNameSpecifier, use the number of component identifiers that
3704   // would need to be changed as the edit distance instead of the number
3705   // of components in the built NestedNameSpecifier.
3706   if (NNS && !CurNameSpecifierIdentifiers.empty()) {
3707     SmallVector<const IdentifierInfo*, 4> NewNameSpecifierIdentifiers;
3708     getNestedNameSpecifierIdentifiers(NNS, NewNameSpecifierIdentifiers);
3709     NumSpecifiers = llvm::ComputeEditDistance(
3710         ArrayRef<const IdentifierInfo *>(CurNameSpecifierIdentifiers),
3711         ArrayRef<const IdentifierInfo *>(NewNameSpecifierIdentifiers));
3712   }
3713 
3714   isSorted = false;
3715   Distances.insert(NumSpecifiers);
3716   DistanceMap[NumSpecifiers].push_back(SpecifierInfo(Ctx, NNS, NumSpecifiers));
3717 }
3718 
3719 /// \brief Perform name lookup for a possible result for typo correction.
3720 static void LookupPotentialTypoResult(Sema &SemaRef,
3721                                       LookupResult &Res,
3722                                       IdentifierInfo *Name,
3723                                       Scope *S, CXXScopeSpec *SS,
3724                                       DeclContext *MemberContext,
3725                                       bool EnteringContext,
3726                                       bool isObjCIvarLookup,
3727                                       bool FindHidden) {
3728   Res.suppressDiagnostics();
3729   Res.clear();
3730   Res.setLookupName(Name);
3731   Res.setAllowHidden(FindHidden);
3732   if (MemberContext) {
3733     if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(MemberContext)) {
3734       if (isObjCIvarLookup) {
3735         if (ObjCIvarDecl *Ivar = Class->lookupInstanceVariable(Name)) {
3736           Res.addDecl(Ivar);
3737           Res.resolveKind();
3738           return;
3739         }
3740       }
3741 
3742       if (ObjCPropertyDecl *Prop = Class->FindPropertyDeclaration(Name)) {
3743         Res.addDecl(Prop);
3744         Res.resolveKind();
3745         return;
3746       }
3747     }
3748 
3749     SemaRef.LookupQualifiedName(Res, MemberContext);
3750     return;
3751   }
3752 
3753   SemaRef.LookupParsedName(Res, S, SS, /*AllowBuiltinCreation=*/false,
3754                            EnteringContext);
3755 
3756   // Fake ivar lookup; this should really be part of
3757   // LookupParsedName.
3758   if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl()) {
3759     if (Method->isInstanceMethod() && Method->getClassInterface() &&
3760         (Res.empty() ||
3761          (Res.isSingleResult() &&
3762           Res.getFoundDecl()->isDefinedOutsideFunctionOrMethod()))) {
3763        if (ObjCIvarDecl *IV
3764              = Method->getClassInterface()->lookupInstanceVariable(Name)) {
3765          Res.addDecl(IV);
3766          Res.resolveKind();
3767        }
3768      }
3769   }
3770 }
3771 
3772 /// \brief Add keywords to the consumer as possible typo corrections.
3773 static void AddKeywordsToConsumer(Sema &SemaRef,
3774                                   TypoCorrectionConsumer &Consumer,
3775                                   Scope *S, CorrectionCandidateCallback &CCC,
3776                                   bool AfterNestedNameSpecifier) {
3777   if (AfterNestedNameSpecifier) {
3778     // For 'X::', we know exactly which keywords can appear next.
3779     Consumer.addKeywordResult("template");
3780     if (CCC.WantExpressionKeywords)
3781       Consumer.addKeywordResult("operator");
3782     return;
3783   }
3784 
3785   if (CCC.WantObjCSuper)
3786     Consumer.addKeywordResult("super");
3787 
3788   if (CCC.WantTypeSpecifiers) {
3789     // Add type-specifier keywords to the set of results.
3790     static const char *const CTypeSpecs[] = {
3791       "char", "const", "double", "enum", "float", "int", "long", "short",
3792       "signed", "struct", "union", "unsigned", "void", "volatile",
3793       "_Complex", "_Imaginary",
3794       // storage-specifiers as well
3795       "extern", "inline", "static", "typedef"
3796     };
3797 
3798     const unsigned NumCTypeSpecs = llvm::array_lengthof(CTypeSpecs);
3799     for (unsigned I = 0; I != NumCTypeSpecs; ++I)
3800       Consumer.addKeywordResult(CTypeSpecs[I]);
3801 
3802     if (SemaRef.getLangOpts().C99)
3803       Consumer.addKeywordResult("restrict");
3804     if (SemaRef.getLangOpts().Bool || SemaRef.getLangOpts().CPlusPlus)
3805       Consumer.addKeywordResult("bool");
3806     else if (SemaRef.getLangOpts().C99)
3807       Consumer.addKeywordResult("_Bool");
3808 
3809     if (SemaRef.getLangOpts().CPlusPlus) {
3810       Consumer.addKeywordResult("class");
3811       Consumer.addKeywordResult("typename");
3812       Consumer.addKeywordResult("wchar_t");
3813 
3814       if (SemaRef.getLangOpts().CPlusPlus11) {
3815         Consumer.addKeywordResult("char16_t");
3816         Consumer.addKeywordResult("char32_t");
3817         Consumer.addKeywordResult("constexpr");
3818         Consumer.addKeywordResult("decltype");
3819         Consumer.addKeywordResult("thread_local");
3820       }
3821     }
3822 
3823     if (SemaRef.getLangOpts().GNUMode)
3824       Consumer.addKeywordResult("typeof");
3825   }
3826 
3827   if (CCC.WantCXXNamedCasts && SemaRef.getLangOpts().CPlusPlus) {
3828     Consumer.addKeywordResult("const_cast");
3829     Consumer.addKeywordResult("dynamic_cast");
3830     Consumer.addKeywordResult("reinterpret_cast");
3831     Consumer.addKeywordResult("static_cast");
3832   }
3833 
3834   if (CCC.WantExpressionKeywords) {
3835     Consumer.addKeywordResult("sizeof");
3836     if (SemaRef.getLangOpts().Bool || SemaRef.getLangOpts().CPlusPlus) {
3837       Consumer.addKeywordResult("false");
3838       Consumer.addKeywordResult("true");
3839     }
3840 
3841     if (SemaRef.getLangOpts().CPlusPlus) {
3842       static const char *const CXXExprs[] = {
3843         "delete", "new", "operator", "throw", "typeid"
3844       };
3845       const unsigned NumCXXExprs = llvm::array_lengthof(CXXExprs);
3846       for (unsigned I = 0; I != NumCXXExprs; ++I)
3847         Consumer.addKeywordResult(CXXExprs[I]);
3848 
3849       if (isa<CXXMethodDecl>(SemaRef.CurContext) &&
3850           cast<CXXMethodDecl>(SemaRef.CurContext)->isInstance())
3851         Consumer.addKeywordResult("this");
3852 
3853       if (SemaRef.getLangOpts().CPlusPlus11) {
3854         Consumer.addKeywordResult("alignof");
3855         Consumer.addKeywordResult("nullptr");
3856       }
3857     }
3858 
3859     if (SemaRef.getLangOpts().C11) {
3860       // FIXME: We should not suggest _Alignof if the alignof macro
3861       // is present.
3862       Consumer.addKeywordResult("_Alignof");
3863     }
3864   }
3865 
3866   if (CCC.WantRemainingKeywords) {
3867     if (SemaRef.getCurFunctionOrMethodDecl() || SemaRef.getCurBlock()) {
3868       // Statements.
3869       static const char *const CStmts[] = {
3870         "do", "else", "for", "goto", "if", "return", "switch", "while" };
3871       const unsigned NumCStmts = llvm::array_lengthof(CStmts);
3872       for (unsigned I = 0; I != NumCStmts; ++I)
3873         Consumer.addKeywordResult(CStmts[I]);
3874 
3875       if (SemaRef.getLangOpts().CPlusPlus) {
3876         Consumer.addKeywordResult("catch");
3877         Consumer.addKeywordResult("try");
3878       }
3879 
3880       if (S && S->getBreakParent())
3881         Consumer.addKeywordResult("break");
3882 
3883       if (S && S->getContinueParent())
3884         Consumer.addKeywordResult("continue");
3885 
3886       if (!SemaRef.getCurFunction()->SwitchStack.empty()) {
3887         Consumer.addKeywordResult("case");
3888         Consumer.addKeywordResult("default");
3889       }
3890     } else {
3891       if (SemaRef.getLangOpts().CPlusPlus) {
3892         Consumer.addKeywordResult("namespace");
3893         Consumer.addKeywordResult("template");
3894       }
3895 
3896       if (S && S->isClassScope()) {
3897         Consumer.addKeywordResult("explicit");
3898         Consumer.addKeywordResult("friend");
3899         Consumer.addKeywordResult("mutable");
3900         Consumer.addKeywordResult("private");
3901         Consumer.addKeywordResult("protected");
3902         Consumer.addKeywordResult("public");
3903         Consumer.addKeywordResult("virtual");
3904       }
3905     }
3906 
3907     if (SemaRef.getLangOpts().CPlusPlus) {
3908       Consumer.addKeywordResult("using");
3909 
3910       if (SemaRef.getLangOpts().CPlusPlus11)
3911         Consumer.addKeywordResult("static_assert");
3912     }
3913   }
3914 }
3915 
3916 static bool isCandidateViable(CorrectionCandidateCallback &CCC,
3917                               TypoCorrection &Candidate) {
3918   Candidate.setCallbackDistance(CCC.RankCandidate(Candidate));
3919   return Candidate.getEditDistance(false) != TypoCorrection::InvalidDistance;
3920 }
3921 
3922 /// \brief Check whether the declarations found for a typo correction are
3923 /// visible, and if none of them are, convert the correction to an 'import
3924 /// a module' correction.
3925 static void checkCorrectionVisibility(Sema &SemaRef, TypoCorrection &TC,
3926                                       DeclarationName TypoName) {
3927   if (TC.begin() == TC.end())
3928     return;
3929 
3930   TypoCorrection::decl_iterator DI = TC.begin(), DE = TC.end();
3931 
3932   for (/**/; DI != DE; ++DI)
3933     if (!LookupResult::isVisible(SemaRef, *DI))
3934       break;
3935   // Nothing to do if all decls are visible.
3936   if (DI == DE)
3937     return;
3938 
3939   llvm::SmallVector<NamedDecl*, 4> NewDecls(TC.begin(), DI);
3940   bool AnyVisibleDecls = !NewDecls.empty();
3941 
3942   for (/**/; DI != DE; ++DI) {
3943     NamedDecl *VisibleDecl = *DI;
3944     if (!LookupResult::isVisible(SemaRef, *DI))
3945       VisibleDecl = findAcceptableDecl(SemaRef, *DI);
3946 
3947     if (VisibleDecl) {
3948       if (!AnyVisibleDecls) {
3949         // Found a visible decl, discard all hidden ones.
3950         AnyVisibleDecls = true;
3951         NewDecls.clear();
3952       }
3953       NewDecls.push_back(VisibleDecl);
3954     } else if (!AnyVisibleDecls && !(*DI)->isModulePrivate())
3955       NewDecls.push_back(*DI);
3956   }
3957 
3958   if (NewDecls.empty())
3959     TC = TypoCorrection();
3960   else {
3961     TC.setCorrectionDecls(NewDecls);
3962     TC.setRequiresImport(!AnyVisibleDecls);
3963   }
3964 }
3965 
3966 /// \brief Try to "correct" a typo in the source code by finding
3967 /// visible declarations whose names are similar to the name that was
3968 /// present in the source code.
3969 ///
3970 /// \param TypoName the \c DeclarationNameInfo structure that contains
3971 /// the name that was present in the source code along with its location.
3972 ///
3973 /// \param LookupKind the name-lookup criteria used to search for the name.
3974 ///
3975 /// \param S the scope in which name lookup occurs.
3976 ///
3977 /// \param SS the nested-name-specifier that precedes the name we're
3978 /// looking for, if present.
3979 ///
3980 /// \param CCC A CorrectionCandidateCallback object that provides further
3981 /// validation of typo correction candidates. It also provides flags for
3982 /// determining the set of keywords permitted.
3983 ///
3984 /// \param MemberContext if non-NULL, the context in which to look for
3985 /// a member access expression.
3986 ///
3987 /// \param EnteringContext whether we're entering the context described by
3988 /// the nested-name-specifier SS.
3989 ///
3990 /// \param OPT when non-NULL, the search for visible declarations will
3991 /// also walk the protocols in the qualified interfaces of \p OPT.
3992 ///
3993 /// \returns a \c TypoCorrection containing the corrected name if the typo
3994 /// along with information such as the \c NamedDecl where the corrected name
3995 /// was declared, and any additional \c NestedNameSpecifier needed to access
3996 /// it (C++ only). The \c TypoCorrection is empty if there is no correction.
3997 TypoCorrection Sema::CorrectTypo(const DeclarationNameInfo &TypoName,
3998                                  Sema::LookupNameKind LookupKind,
3999                                  Scope *S, CXXScopeSpec *SS,
4000                                  CorrectionCandidateCallback &CCC,
4001                                  DeclContext *MemberContext,
4002                                  bool EnteringContext,
4003                                  const ObjCObjectPointerType *OPT,
4004                                  bool RecordFailure) {
4005   // Always let the ExternalSource have the first chance at correction, even
4006   // if we would otherwise have given up.
4007   if (ExternalSource) {
4008     if (TypoCorrection Correction = ExternalSource->CorrectTypo(
4009         TypoName, LookupKind, S, SS, CCC, MemberContext, EnteringContext, OPT))
4010       return Correction;
4011   }
4012 
4013   if (Diags.hasFatalErrorOccurred() || !getLangOpts().SpellChecking ||
4014       DisableTypoCorrection)
4015     return TypoCorrection();
4016 
4017   // In Microsoft mode, don't perform typo correction in a template member
4018   // function dependent context because it interferes with the "lookup into
4019   // dependent bases of class templates" feature.
4020   if (getLangOpts().MSVCCompat && CurContext->isDependentContext() &&
4021       isa<CXXMethodDecl>(CurContext))
4022     return TypoCorrection();
4023 
4024   // We only attempt to correct typos for identifiers.
4025   IdentifierInfo *Typo = TypoName.getName().getAsIdentifierInfo();
4026   if (!Typo)
4027     return TypoCorrection();
4028 
4029   // If the scope specifier itself was invalid, don't try to correct
4030   // typos.
4031   if (SS && SS->isInvalid())
4032     return TypoCorrection();
4033 
4034   // Never try to correct typos during template deduction or
4035   // instantiation.
4036   if (!ActiveTemplateInstantiations.empty())
4037     return TypoCorrection();
4038 
4039   // Don't try to correct 'super'.
4040   if (S && S->isInObjcMethodScope() && Typo == getSuperIdentifier())
4041     return TypoCorrection();
4042 
4043   // Abort if typo correction already failed for this specific typo.
4044   IdentifierSourceLocations::iterator locs = TypoCorrectionFailures.find(Typo);
4045   if (locs != TypoCorrectionFailures.end() &&
4046       locs->second.count(TypoName.getLoc()))
4047     return TypoCorrection();
4048 
4049   // Don't try to correct the identifier "vector" when in AltiVec mode.
4050   // TODO: Figure out why typo correction misbehaves in this case, fix it, and
4051   // remove this workaround.
4052   if (getLangOpts().AltiVec && Typo->isStr("vector"))
4053     return TypoCorrection();
4054 
4055   NamespaceSpecifierSet Namespaces(Context, CurContext, SS);
4056 
4057   TypoCorrectionConsumer Consumer(*this, Typo);
4058 
4059   // If a callback object considers an empty typo correction candidate to be
4060   // viable, assume it does not do any actual validation of the candidates.
4061   TypoCorrection EmptyCorrection;
4062   bool ValidatingCallback = !isCandidateViable(CCC, EmptyCorrection);
4063 
4064   // Perform name lookup to find visible, similarly-named entities.
4065   bool IsUnqualifiedLookup = false;
4066   DeclContext *QualifiedDC = MemberContext;
4067   if (MemberContext) {
4068     LookupVisibleDecls(MemberContext, LookupKind, Consumer);
4069 
4070     // Look in qualified interfaces.
4071     if (OPT) {
4072       for (auto *I : OPT->quals())
4073         LookupVisibleDecls(I, LookupKind, Consumer);
4074     }
4075   } else if (SS && SS->isSet()) {
4076     QualifiedDC = computeDeclContext(*SS, EnteringContext);
4077     if (!QualifiedDC)
4078       return TypoCorrection();
4079 
4080     // Provide a stop gap for files that are just seriously broken.  Trying
4081     // to correct all typos can turn into a HUGE performance penalty, causing
4082     // some files to take minutes to get rejected by the parser.
4083     if (TyposCorrected + UnqualifiedTyposCorrected.size() >= 20)
4084       return TypoCorrection();
4085     ++TyposCorrected;
4086 
4087     LookupVisibleDecls(QualifiedDC, LookupKind, Consumer);
4088   } else {
4089     IsUnqualifiedLookup = true;
4090     UnqualifiedTyposCorrectedMap::iterator Cached
4091       = UnqualifiedTyposCorrected.find(Typo);
4092     if (Cached != UnqualifiedTyposCorrected.end()) {
4093       // Add the cached value, unless it's a keyword or fails validation. In the
4094       // keyword case, we'll end up adding the keyword below.
4095       if (Cached->second) {
4096         if (!Cached->second.isKeyword() &&
4097             isCandidateViable(CCC, Cached->second)) {
4098           // Do not use correction that is unaccessible in the given scope.
4099           NamedDecl *CorrectionDecl = Cached->second.getCorrectionDecl();
4100           DeclarationNameInfo NameInfo(CorrectionDecl->getDeclName(),
4101                                        CorrectionDecl->getLocation());
4102           LookupResult R(*this, NameInfo, LookupOrdinaryName);
4103           if (LookupName(R, S))
4104             Consumer.addCorrection(Cached->second);
4105         }
4106       } else {
4107         // Only honor no-correction cache hits when a callback that will validate
4108         // correction candidates is not being used.
4109         if (!ValidatingCallback)
4110           return TypoCorrection();
4111       }
4112     }
4113     if (Cached == UnqualifiedTyposCorrected.end()) {
4114       // Provide a stop gap for files that are just seriously broken.  Trying
4115       // to correct all typos can turn into a HUGE performance penalty, causing
4116       // some files to take minutes to get rejected by the parser.
4117       if (TyposCorrected + UnqualifiedTyposCorrected.size() >= 20)
4118         return TypoCorrection();
4119     }
4120   }
4121 
4122   // Determine whether we are going to search in the various namespaces for
4123   // corrections.
4124   bool SearchNamespaces
4125     = getLangOpts().CPlusPlus &&
4126       (IsUnqualifiedLookup || (SS && SS->isSet()));
4127   // In a few cases we *only* want to search for corrections based on just
4128   // adding or changing the nested name specifier.
4129   unsigned TypoLen = Typo->getName().size();
4130   bool AllowOnlyNNSChanges = TypoLen < 3;
4131 
4132   if (IsUnqualifiedLookup || SearchNamespaces) {
4133     // For unqualified lookup, look through all of the names that we have
4134     // seen in this translation unit.
4135     // FIXME: Re-add the ability to skip very unlikely potential corrections.
4136     for (IdentifierTable::iterator I = Context.Idents.begin(),
4137                                 IEnd = Context.Idents.end();
4138          I != IEnd; ++I)
4139       Consumer.FoundName(I->getKey());
4140 
4141     // Walk through identifiers in external identifier sources.
4142     // FIXME: Re-add the ability to skip very unlikely potential corrections.
4143     if (IdentifierInfoLookup *External
4144                             = Context.Idents.getExternalIdentifierLookup()) {
4145       std::unique_ptr<IdentifierIterator> Iter(External->getIdentifiers());
4146       do {
4147         StringRef Name = Iter->Next();
4148         if (Name.empty())
4149           break;
4150 
4151         Consumer.FoundName(Name);
4152       } while (true);
4153     }
4154   }
4155 
4156   AddKeywordsToConsumer(*this, Consumer, S, CCC, SS && SS->isNotEmpty());
4157 
4158   // If we haven't found anything, we're done.
4159   if (Consumer.empty())
4160     return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure,
4161                             IsUnqualifiedLookup);
4162 
4163   // Make sure the best edit distance (prior to adding any namespace qualifiers)
4164   // is not more that about a third of the length of the typo's identifier.
4165   unsigned ED = Consumer.getBestEditDistance(true);
4166   if (ED > 0 && TypoLen / ED < 3)
4167     return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure,
4168                             IsUnqualifiedLookup);
4169 
4170   // Build the NestedNameSpecifiers for the KnownNamespaces, if we're going
4171   // to search those namespaces.
4172   if (SearchNamespaces) {
4173     // Load any externally-known namespaces.
4174     if (ExternalSource && !LoadedExternalKnownNamespaces) {
4175       SmallVector<NamespaceDecl *, 4> ExternalKnownNamespaces;
4176       LoadedExternalKnownNamespaces = true;
4177       ExternalSource->ReadKnownNamespaces(ExternalKnownNamespaces);
4178       for (unsigned I = 0, N = ExternalKnownNamespaces.size(); I != N; ++I)
4179         KnownNamespaces[ExternalKnownNamespaces[I]] = true;
4180     }
4181 
4182     for (auto KNPair : KnownNamespaces)
4183       Namespaces.AddNameSpecifier(KNPair.first);
4184 
4185     bool SSIsTemplate = false;
4186     if (NestedNameSpecifier *NNS =
4187             (SS && SS->isValid()) ? SS->getScopeRep() : 0) {
4188       if (const Type *T = NNS->getAsType())
4189         SSIsTemplate = T->getTypeClass() == Type::TemplateSpecialization;
4190     }
4191     for (const auto *TI : Context.types()) {
4192       if (CXXRecordDecl *CD = TI->getAsCXXRecordDecl()) {
4193         CD = CD->getCanonicalDecl();
4194         if (!CD->isDependentType() && !CD->isAnonymousStructOrUnion() &&
4195             !CD->isUnion() && CD->getIdentifier() &&
4196             (SSIsTemplate || !isa<ClassTemplateSpecializationDecl>(CD)) &&
4197             (CD->isBeingDefined() || CD->isCompleteDefinition()))
4198           Namespaces.AddNameSpecifier(CD);
4199       }
4200     }
4201   }
4202 
4203   // Weed out any names that could not be found by name lookup or, if a
4204   // CorrectionCandidateCallback object was provided, failed validation.
4205   SmallVector<TypoCorrection, 16> QualifiedResults;
4206   LookupResult TmpRes(*this, TypoName, LookupKind);
4207   TmpRes.suppressDiagnostics();
4208   while (!Consumer.empty()) {
4209     TypoCorrectionConsumer::distance_iterator DI = Consumer.begin();
4210     for (TypoCorrectionConsumer::result_iterator I = DI->second.begin(),
4211                                               IEnd = DI->second.end();
4212          I != IEnd; /* Increment in loop. */) {
4213       // If we only want nested name specifier corrections, ignore potential
4214       // corrections that have a different base identifier from the typo or
4215       // which have a normalized edit distance longer than the typo itself.
4216       if (AllowOnlyNNSChanges) {
4217         TypoCorrection &TC = I->second.front();
4218         if (TC.getCorrectionAsIdentifierInfo() != Typo ||
4219             TC.getEditDistance(true) > TypoLen) {
4220           TypoCorrectionConsumer::result_iterator Prev = I;
4221           ++I;
4222           DI->second.erase(Prev);
4223           continue;
4224         }
4225       }
4226 
4227       // If the item already has been looked up or is a keyword, keep it.
4228       // If a validator callback object was given, drop the correction
4229       // unless it passes validation.
4230       bool Viable = false;
4231       for (TypoResultList::iterator RI = I->second.begin();
4232            RI != I->second.end(); /* Increment in loop. */) {
4233         TypoResultList::iterator Prev = RI;
4234         ++RI;
4235         if (Prev->isResolved()) {
4236           if (!isCandidateViable(CCC, *Prev))
4237             RI = I->second.erase(Prev);
4238           else
4239             Viable = true;
4240         }
4241       }
4242       if (Viable || I->second.empty()) {
4243         TypoCorrectionConsumer::result_iterator Prev = I;
4244         ++I;
4245         if (!Viable)
4246           DI->second.erase(Prev);
4247         continue;
4248       }
4249       assert(I->second.size() == 1 && "Expected a single unresolved candidate");
4250 
4251       // Perform name lookup on this name.
4252       TypoCorrection &Candidate = I->second.front();
4253       IdentifierInfo *Name = Candidate.getCorrectionAsIdentifierInfo();
4254       DeclContext *TempMemberContext = MemberContext;
4255       CXXScopeSpec *TempSS = SS;
4256 retry_lookup:
4257       LookupPotentialTypoResult(*this, TmpRes, Name, S, TempSS,
4258                                 TempMemberContext, EnteringContext,
4259                                 CCC.IsObjCIvarLookup,
4260                                 Name == TypoName.getName() &&
4261                                   !Candidate.WillReplaceSpecifier());
4262 
4263       switch (TmpRes.getResultKind()) {
4264       case LookupResult::NotFound:
4265       case LookupResult::NotFoundInCurrentInstantiation:
4266       case LookupResult::FoundUnresolvedValue:
4267         if (TempSS) {
4268           // Immediately retry the lookup without the given CXXScopeSpec
4269           TempSS = NULL;
4270           Candidate.WillReplaceSpecifier(true);
4271           goto retry_lookup;
4272         }
4273         if (TempMemberContext) {
4274           if (SS && !TempSS)
4275             TempSS = SS;
4276           TempMemberContext = NULL;
4277           goto retry_lookup;
4278         }
4279         QualifiedResults.push_back(Candidate);
4280         // We didn't find this name in our scope, or didn't like what we found;
4281         // ignore it.
4282         {
4283           TypoCorrectionConsumer::result_iterator Next = I;
4284           ++Next;
4285           DI->second.erase(I);
4286           I = Next;
4287         }
4288         break;
4289 
4290       case LookupResult::Ambiguous:
4291         // We don't deal with ambiguities.
4292         return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure);
4293 
4294       case LookupResult::FoundOverloaded: {
4295         TypoCorrectionConsumer::result_iterator Prev = I;
4296         // Store all of the Decls for overloaded symbols
4297         for (auto *TRD : TmpRes)
4298           Candidate.addCorrectionDecl(TRD);
4299         ++I;
4300         if (!isCandidateViable(CCC, Candidate)) {
4301           QualifiedResults.push_back(Candidate);
4302           DI->second.erase(Prev);
4303         }
4304         break;
4305       }
4306 
4307       case LookupResult::Found: {
4308         TypoCorrectionConsumer::result_iterator Prev = I;
4309         Candidate.setCorrectionDecl(TmpRes.getAsSingle<NamedDecl>());
4310         ++I;
4311         if (!isCandidateViable(CCC, Candidate)) {
4312           QualifiedResults.push_back(Candidate);
4313           DI->second.erase(Prev);
4314         }
4315         break;
4316       }
4317 
4318       }
4319     }
4320 
4321     if (DI->second.empty())
4322       Consumer.erase(DI);
4323     else if (!getLangOpts().CPlusPlus || QualifiedResults.empty() || !DI->first)
4324       // If there are results in the closest possible bucket, stop
4325       break;
4326 
4327     // Only perform the qualified lookups for C++
4328     if (SearchNamespaces) {
4329       TmpRes.suppressDiagnostics();
4330       for (auto QR : QualifiedResults) {
4331         for (auto NSI : Namespaces) {
4332           DeclContext *Ctx = NSI.DeclCtx;
4333           const Type *NSType = NSI.NameSpecifier->getAsType();
4334 
4335           // If the current NestedNameSpecifier refers to a class and the
4336           // current correction candidate is the name of that class, then skip
4337           // it as it is unlikely a qualified version of the class' constructor
4338           // is an appropriate correction.
4339           if (CXXRecordDecl *NSDecl =
4340                   NSType ? NSType->getAsCXXRecordDecl() : 0) {
4341             if (NSDecl->getIdentifier() == QR.getCorrectionAsIdentifierInfo())
4342               continue;
4343           }
4344 
4345           TypoCorrection TC(QR);
4346           TC.ClearCorrectionDecls();
4347           TC.setCorrectionSpecifier(NSI.NameSpecifier);
4348           TC.setQualifierDistance(NSI.EditDistance);
4349           TC.setCallbackDistance(0); // Reset the callback distance
4350 
4351           // If the current correction candidate and namespace combination are
4352           // too far away from the original typo based on the normalized edit
4353           // distance, then skip performing a qualified name lookup.
4354           unsigned TmpED = TC.getEditDistance(true);
4355           if (QR.getCorrectionAsIdentifierInfo() != Typo &&
4356               TmpED && TypoLen / TmpED < 3)
4357             continue;
4358 
4359           TmpRes.clear();
4360           TmpRes.setLookupName(QR.getCorrectionAsIdentifierInfo());
4361           if (!LookupQualifiedName(TmpRes, Ctx)) continue;
4362 
4363           // Any corrections added below will be validated in subsequent
4364           // iterations of the main while() loop over the Consumer's contents.
4365           switch (TmpRes.getResultKind()) {
4366           case LookupResult::Found:
4367           case LookupResult::FoundOverloaded: {
4368             if (SS && SS->isValid()) {
4369               std::string NewQualified = TC.getAsString(getLangOpts());
4370               std::string OldQualified;
4371               llvm::raw_string_ostream OldOStream(OldQualified);
4372               SS->getScopeRep()->print(OldOStream, getPrintingPolicy());
4373               OldOStream << TypoName;
4374               // If correction candidate would be an identical written qualified
4375               // identifer, then the existing CXXScopeSpec probably included a
4376               // typedef that didn't get accounted for properly.
4377               if (OldOStream.str() == NewQualified)
4378                 break;
4379             }
4380             for (LookupResult::iterator TRD = TmpRes.begin(),
4381                                      TRDEnd = TmpRes.end();
4382                  TRD != TRDEnd; ++TRD) {
4383               if (CheckMemberAccess(TC.getCorrectionRange().getBegin(),
4384                                     NSType ? NSType->getAsCXXRecordDecl() : 0,
4385                                     TRD.getPair()) == AR_accessible)
4386                 TC.addCorrectionDecl(*TRD);
4387             }
4388             if (TC.isResolved())
4389               Consumer.addCorrection(TC);
4390             break;
4391           }
4392           case LookupResult::NotFound:
4393           case LookupResult::NotFoundInCurrentInstantiation:
4394           case LookupResult::Ambiguous:
4395           case LookupResult::FoundUnresolvedValue:
4396             break;
4397           }
4398         }
4399       }
4400     }
4401 
4402     QualifiedResults.clear();
4403   }
4404 
4405   // No corrections remain...
4406   if (Consumer.empty())
4407     return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure);
4408 
4409   TypoResultsMap &BestResults = Consumer.getBestResults();
4410   ED = Consumer.getBestEditDistance(true);
4411 
4412   if (!AllowOnlyNNSChanges && ED > 0 && TypoLen / ED < 3) {
4413     // If this was an unqualified lookup and we believe the callback
4414     // object wouldn't have filtered out possible corrections, note
4415     // that no correction was found.
4416     return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure,
4417                             IsUnqualifiedLookup && !ValidatingCallback);
4418   }
4419 
4420   // If only a single name remains, return that result.
4421   if (BestResults.size() == 1) {
4422     const TypoResultList &CorrectionList = BestResults.begin()->second;
4423     const TypoCorrection &Result = CorrectionList.front();
4424     if (CorrectionList.size() != 1)
4425       return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure);
4426 
4427     // Don't correct to a keyword that's the same as the typo; the keyword
4428     // wasn't actually in scope.
4429     if (ED == 0 && Result.isKeyword())
4430       return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure);
4431 
4432     // Record the correction for unqualified lookup.
4433     if (IsUnqualifiedLookup)
4434       UnqualifiedTyposCorrected[Typo] = Result;
4435 
4436     TypoCorrection TC = Result;
4437     TC.setCorrectionRange(SS, TypoName);
4438     checkCorrectionVisibility(*this, TC, TypoName.getName());
4439     return TC;
4440   }
4441   else if (BestResults.size() > 1
4442            // Ugly hack equivalent to CTC == CTC_ObjCMessageReceiver;
4443            // WantObjCSuper is only true for CTC_ObjCMessageReceiver and for
4444            // some instances of CTC_Unknown, while WantRemainingKeywords is true
4445            // for CTC_Unknown but not for CTC_ObjCMessageReceiver.
4446            && CCC.WantObjCSuper && !CCC.WantRemainingKeywords
4447            && BestResults["super"].front().isKeyword()) {
4448     // Prefer 'super' when we're completing in a message-receiver
4449     // context.
4450 
4451     // Don't correct to a keyword that's the same as the typo; the keyword
4452     // wasn't actually in scope.
4453     if (ED == 0)
4454       return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure);
4455 
4456     // Record the correction for unqualified lookup.
4457     if (IsUnqualifiedLookup)
4458       UnqualifiedTyposCorrected[Typo] = BestResults["super"].front();
4459 
4460     TypoCorrection TC = BestResults["super"].front();
4461     TC.setCorrectionRange(SS, TypoName);
4462     return TC;
4463   }
4464 
4465   // If this was an unqualified lookup and we believe the callback object did
4466   // not filter out possible corrections, note that no correction was found.
4467   if (IsUnqualifiedLookup && !ValidatingCallback)
4468     (void)UnqualifiedTyposCorrected[Typo];
4469 
4470   return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure);
4471 }
4472 
4473 void TypoCorrection::addCorrectionDecl(NamedDecl *CDecl) {
4474   if (!CDecl) return;
4475 
4476   if (isKeyword())
4477     CorrectionDecls.clear();
4478 
4479   CorrectionDecls.push_back(CDecl->getUnderlyingDecl());
4480 
4481   if (!CorrectionName)
4482     CorrectionName = CDecl->getDeclName();
4483 }
4484 
4485 std::string TypoCorrection::getAsString(const LangOptions &LO) const {
4486   if (CorrectionNameSpec) {
4487     std::string tmpBuffer;
4488     llvm::raw_string_ostream PrefixOStream(tmpBuffer);
4489     CorrectionNameSpec->print(PrefixOStream, PrintingPolicy(LO));
4490     PrefixOStream << CorrectionName;
4491     return PrefixOStream.str();
4492   }
4493 
4494   return CorrectionName.getAsString();
4495 }
4496 
4497 bool CorrectionCandidateCallback::ValidateCandidate(const TypoCorrection &candidate) {
4498   if (!candidate.isResolved())
4499     return true;
4500 
4501   if (candidate.isKeyword())
4502     return WantTypeSpecifiers || WantExpressionKeywords || WantCXXNamedCasts ||
4503            WantRemainingKeywords || WantObjCSuper;
4504 
4505   for (TypoCorrection::const_decl_iterator CDecl = candidate.begin(),
4506                                            CDeclEnd = candidate.end();
4507        CDecl != CDeclEnd; ++CDecl) {
4508     if (!isa<TypeDecl>(*CDecl))
4509       return true;
4510   }
4511 
4512   return WantTypeSpecifiers;
4513 }
4514 
4515 FunctionCallFilterCCC::FunctionCallFilterCCC(Sema &SemaRef, unsigned NumArgs,
4516                                              bool HasExplicitTemplateArgs,
4517                                              MemberExpr *ME)
4518     : NumArgs(NumArgs), HasExplicitTemplateArgs(HasExplicitTemplateArgs),
4519       CurContext(SemaRef.CurContext), MemberFn(ME) {
4520   WantTypeSpecifiers = SemaRef.getLangOpts().CPlusPlus;
4521   WantRemainingKeywords = false;
4522 }
4523 
4524 bool FunctionCallFilterCCC::ValidateCandidate(const TypoCorrection &candidate) {
4525   if (!candidate.getCorrectionDecl())
4526     return candidate.isKeyword();
4527 
4528   for (TypoCorrection::const_decl_iterator DI = candidate.begin(),
4529                                            DIEnd = candidate.end();
4530        DI != DIEnd; ++DI) {
4531     FunctionDecl *FD = 0;
4532     NamedDecl *ND = (*DI)->getUnderlyingDecl();
4533     if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
4534       FD = FTD->getTemplatedDecl();
4535     if (!HasExplicitTemplateArgs && !FD) {
4536       if (!(FD = dyn_cast<FunctionDecl>(ND)) && isa<ValueDecl>(ND)) {
4537         // If the Decl is neither a function nor a template function,
4538         // determine if it is a pointer or reference to a function. If so,
4539         // check against the number of arguments expected for the pointee.
4540         QualType ValType = cast<ValueDecl>(ND)->getType();
4541         if (ValType->isAnyPointerType() || ValType->isReferenceType())
4542           ValType = ValType->getPointeeType();
4543         if (const FunctionProtoType *FPT = ValType->getAs<FunctionProtoType>())
4544           if (FPT->getNumParams() == NumArgs)
4545             return true;
4546       }
4547     }
4548 
4549     // Skip the current candidate if it is not a FunctionDecl or does not accept
4550     // the current number of arguments.
4551     if (!FD || !(FD->getNumParams() >= NumArgs &&
4552                  FD->getMinRequiredArguments() <= NumArgs))
4553       continue;
4554 
4555     // If the current candidate is a non-static C++ method, skip the candidate
4556     // unless the method being corrected--or the current DeclContext, if the
4557     // function being corrected is not a method--is a method in the same class
4558     // or a descendent class of the candidate's parent class.
4559     if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
4560       if (MemberFn || !MD->isStatic()) {
4561         CXXMethodDecl *CurMD =
4562             MemberFn
4563                 ? dyn_cast_or_null<CXXMethodDecl>(MemberFn->getMemberDecl())
4564                 : dyn_cast_or_null<CXXMethodDecl>(CurContext);
4565         CXXRecordDecl *CurRD =
4566             CurMD ? CurMD->getParent()->getCanonicalDecl() : 0;
4567         CXXRecordDecl *RD = MD->getParent()->getCanonicalDecl();
4568         if (!CurRD || (CurRD != RD && !CurRD->isDerivedFrom(RD)))
4569           continue;
4570       }
4571     }
4572     return true;
4573   }
4574   return false;
4575 }
4576 
4577 void Sema::diagnoseTypo(const TypoCorrection &Correction,
4578                         const PartialDiagnostic &TypoDiag,
4579                         bool ErrorRecovery) {
4580   diagnoseTypo(Correction, TypoDiag, PDiag(diag::note_previous_decl),
4581                ErrorRecovery);
4582 }
4583 
4584 /// Find which declaration we should import to provide the definition of
4585 /// the given declaration.
4586 static const NamedDecl *getDefinitionToImport(const NamedDecl *D) {
4587   if (const VarDecl *VD = dyn_cast<VarDecl>(D))
4588     return VD->getDefinition();
4589   if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
4590     return FD->isDefined(FD) ? FD : 0;
4591   if (const TagDecl *TD = dyn_cast<TagDecl>(D))
4592     return TD->getDefinition();
4593   if (const ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D))
4594     return ID->getDefinition();
4595   if (const ObjCProtocolDecl *PD = dyn_cast<ObjCProtocolDecl>(D))
4596     return PD->getDefinition();
4597   if (const TemplateDecl *TD = dyn_cast<TemplateDecl>(D))
4598     return getDefinitionToImport(TD->getTemplatedDecl());
4599   return 0;
4600 }
4601 
4602 /// \brief Diagnose a successfully-corrected typo. Separated from the correction
4603 /// itself to allow external validation of the result, etc.
4604 ///
4605 /// \param Correction The result of performing typo correction.
4606 /// \param TypoDiag The diagnostic to produce. This will have the corrected
4607 ///        string added to it (and usually also a fixit).
4608 /// \param PrevNote A note to use when indicating the location of the entity to
4609 ///        which we are correcting. Will have the correction string added to it.
4610 /// \param ErrorRecovery If \c true (the default), the caller is going to
4611 ///        recover from the typo as if the corrected string had been typed.
4612 ///        In this case, \c PDiag must be an error, and we will attach a fixit
4613 ///        to it.
4614 void Sema::diagnoseTypo(const TypoCorrection &Correction,
4615                         const PartialDiagnostic &TypoDiag,
4616                         const PartialDiagnostic &PrevNote,
4617                         bool ErrorRecovery) {
4618   std::string CorrectedStr = Correction.getAsString(getLangOpts());
4619   std::string CorrectedQuotedStr = Correction.getQuoted(getLangOpts());
4620   FixItHint FixTypo = FixItHint::CreateReplacement(
4621       Correction.getCorrectionRange(), CorrectedStr);
4622 
4623   // Maybe we're just missing a module import.
4624   if (Correction.requiresImport()) {
4625     NamedDecl *Decl = Correction.getCorrectionDecl();
4626     assert(Decl && "import required but no declaration to import");
4627 
4628     // Suggest importing a module providing the definition of this entity, if
4629     // possible.
4630     const NamedDecl *Def = getDefinitionToImport(Decl);
4631     if (!Def)
4632       Def = Decl;
4633     Module *Owner = Def->getOwningModule();
4634     assert(Owner && "definition of hidden declaration is not in a module");
4635 
4636     Diag(Correction.getCorrectionRange().getBegin(),
4637          diag::err_module_private_declaration)
4638       << Def << Owner->getFullModuleName();
4639     Diag(Def->getLocation(), diag::note_previous_declaration);
4640 
4641     // Recover by implicitly importing this module.
4642     if (!isSFINAEContext() && ErrorRecovery)
4643       createImplicitModuleImport(Correction.getCorrectionRange().getBegin(),
4644                                  Owner);
4645     return;
4646   }
4647 
4648   Diag(Correction.getCorrectionRange().getBegin(), TypoDiag)
4649     << CorrectedQuotedStr << (ErrorRecovery ? FixTypo : FixItHint());
4650 
4651   NamedDecl *ChosenDecl =
4652       Correction.isKeyword() ? 0 : Correction.getCorrectionDecl();
4653   if (PrevNote.getDiagID() && ChosenDecl)
4654     Diag(ChosenDecl->getLocation(), PrevNote)
4655       << CorrectedQuotedStr << (ErrorRecovery ? FixItHint() : FixTypo);
4656 }
4657