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