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