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