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