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