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 break; 2698 2699 // If T is an Objective-C object or interface type, or a pointer to an 2700 // object or interface type, the associated namespace is the global 2701 // namespace. 2702 case Type::ObjCObject: 2703 case Type::ObjCInterface: 2704 case Type::ObjCObjectPointer: 2705 Result.Namespaces.insert(Result.S.Context.getTranslationUnitDecl()); 2706 break; 2707 2708 // Atomic types are just wrappers; use the associations of the 2709 // contained type. 2710 case Type::Atomic: 2711 T = cast<AtomicType>(T)->getValueType().getTypePtr(); 2712 continue; 2713 case Type::Pipe: 2714 T = cast<PipeType>(T)->getElementType().getTypePtr(); 2715 continue; 2716 } 2717 2718 if (Queue.empty()) 2719 break; 2720 T = Queue.pop_back_val(); 2721 } 2722 } 2723 2724 /// \brief Find the associated classes and namespaces for 2725 /// argument-dependent lookup for a call with the given set of 2726 /// arguments. 2727 /// 2728 /// This routine computes the sets of associated classes and associated 2729 /// namespaces searched by argument-dependent lookup 2730 /// (C++ [basic.lookup.argdep]) for a given set of arguments. 2731 void Sema::FindAssociatedClassesAndNamespaces( 2732 SourceLocation InstantiationLoc, ArrayRef<Expr *> Args, 2733 AssociatedNamespaceSet &AssociatedNamespaces, 2734 AssociatedClassSet &AssociatedClasses) { 2735 AssociatedNamespaces.clear(); 2736 AssociatedClasses.clear(); 2737 2738 AssociatedLookup Result(*this, InstantiationLoc, 2739 AssociatedNamespaces, AssociatedClasses); 2740 2741 // C++ [basic.lookup.koenig]p2: 2742 // For each argument type T in the function call, there is a set 2743 // of zero or more associated namespaces and a set of zero or more 2744 // associated classes to be considered. The sets of namespaces and 2745 // classes is determined entirely by the types of the function 2746 // arguments (and the namespace of any template template 2747 // argument). 2748 for (unsigned ArgIdx = 0; ArgIdx != Args.size(); ++ArgIdx) { 2749 Expr *Arg = Args[ArgIdx]; 2750 2751 if (Arg->getType() != Context.OverloadTy) { 2752 addAssociatedClassesAndNamespaces(Result, Arg->getType()); 2753 continue; 2754 } 2755 2756 // [...] In addition, if the argument is the name or address of a 2757 // set of overloaded functions and/or function templates, its 2758 // associated classes and namespaces are the union of those 2759 // associated with each of the members of the set: the namespace 2760 // in which the function or function template is defined and the 2761 // classes and namespaces associated with its (non-dependent) 2762 // parameter types and return type. 2763 Arg = Arg->IgnoreParens(); 2764 if (UnaryOperator *unaryOp = dyn_cast<UnaryOperator>(Arg)) 2765 if (unaryOp->getOpcode() == UO_AddrOf) 2766 Arg = unaryOp->getSubExpr(); 2767 2768 UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(Arg); 2769 if (!ULE) continue; 2770 2771 for (const auto *D : ULE->decls()) { 2772 // Look through any using declarations to find the underlying function. 2773 const FunctionDecl *FDecl = D->getUnderlyingDecl()->getAsFunction(); 2774 2775 // Add the classes and namespaces associated with the parameter 2776 // types and return type of this function. 2777 addAssociatedClassesAndNamespaces(Result, FDecl->getType()); 2778 } 2779 } 2780 } 2781 2782 NamedDecl *Sema::LookupSingleName(Scope *S, DeclarationName Name, 2783 SourceLocation Loc, 2784 LookupNameKind NameKind, 2785 RedeclarationKind Redecl) { 2786 LookupResult R(*this, Name, Loc, NameKind, Redecl); 2787 LookupName(R, S); 2788 return R.getAsSingle<NamedDecl>(); 2789 } 2790 2791 /// \brief Find the protocol with the given name, if any. 2792 ObjCProtocolDecl *Sema::LookupProtocol(IdentifierInfo *II, 2793 SourceLocation IdLoc, 2794 RedeclarationKind Redecl) { 2795 Decl *D = LookupSingleName(TUScope, II, IdLoc, 2796 LookupObjCProtocolName, Redecl); 2797 return cast_or_null<ObjCProtocolDecl>(D); 2798 } 2799 2800 void Sema::LookupOverloadedOperatorName(OverloadedOperatorKind Op, Scope *S, 2801 QualType T1, QualType T2, 2802 UnresolvedSetImpl &Functions) { 2803 // C++ [over.match.oper]p3: 2804 // -- The set of non-member candidates is the result of the 2805 // unqualified lookup of operator@ in the context of the 2806 // expression according to the usual rules for name lookup in 2807 // unqualified function calls (3.4.2) except that all member 2808 // functions are ignored. 2809 DeclarationName OpName = Context.DeclarationNames.getCXXOperatorName(Op); 2810 LookupResult Operators(*this, OpName, SourceLocation(), LookupOperatorName); 2811 LookupName(Operators, S); 2812 2813 assert(!Operators.isAmbiguous() && "Operator lookup cannot be ambiguous"); 2814 Functions.append(Operators.begin(), Operators.end()); 2815 } 2816 2817 Sema::SpecialMemberOverloadResult *Sema::LookupSpecialMember(CXXRecordDecl *RD, 2818 CXXSpecialMember SM, 2819 bool ConstArg, 2820 bool VolatileArg, 2821 bool RValueThis, 2822 bool ConstThis, 2823 bool VolatileThis) { 2824 assert(CanDeclareSpecialMemberFunction(RD) && 2825 "doing special member lookup into record that isn't fully complete"); 2826 RD = RD->getDefinition(); 2827 if (RValueThis || ConstThis || VolatileThis) 2828 assert((SM == CXXCopyAssignment || SM == CXXMoveAssignment) && 2829 "constructors and destructors always have unqualified lvalue this"); 2830 if (ConstArg || VolatileArg) 2831 assert((SM != CXXDefaultConstructor && SM != CXXDestructor) && 2832 "parameter-less special members can't have qualified arguments"); 2833 2834 llvm::FoldingSetNodeID ID; 2835 ID.AddPointer(RD); 2836 ID.AddInteger(SM); 2837 ID.AddInteger(ConstArg); 2838 ID.AddInteger(VolatileArg); 2839 ID.AddInteger(RValueThis); 2840 ID.AddInteger(ConstThis); 2841 ID.AddInteger(VolatileThis); 2842 2843 void *InsertPoint; 2844 SpecialMemberOverloadResult *Result = 2845 SpecialMemberCache.FindNodeOrInsertPos(ID, InsertPoint); 2846 2847 // This was already cached 2848 if (Result) 2849 return Result; 2850 2851 Result = BumpAlloc.Allocate<SpecialMemberOverloadResult>(); 2852 Result = new (Result) SpecialMemberOverloadResult(ID); 2853 SpecialMemberCache.InsertNode(Result, InsertPoint); 2854 2855 if (SM == CXXDestructor) { 2856 if (RD->needsImplicitDestructor()) 2857 DeclareImplicitDestructor(RD); 2858 CXXDestructorDecl *DD = RD->getDestructor(); 2859 assert(DD && "record without a destructor"); 2860 Result->setMethod(DD); 2861 Result->setKind(DD->isDeleted() ? 2862 SpecialMemberOverloadResult::NoMemberOrDeleted : 2863 SpecialMemberOverloadResult::Success); 2864 return Result; 2865 } 2866 2867 // Prepare for overload resolution. Here we construct a synthetic argument 2868 // if necessary and make sure that implicit functions are declared. 2869 CanQualType CanTy = Context.getCanonicalType(Context.getTagDeclType(RD)); 2870 DeclarationName Name; 2871 Expr *Arg = nullptr; 2872 unsigned NumArgs; 2873 2874 QualType ArgType = CanTy; 2875 ExprValueKind VK = VK_LValue; 2876 2877 if (SM == CXXDefaultConstructor) { 2878 Name = Context.DeclarationNames.getCXXConstructorName(CanTy); 2879 NumArgs = 0; 2880 if (RD->needsImplicitDefaultConstructor()) 2881 DeclareImplicitDefaultConstructor(RD); 2882 } else { 2883 if (SM == CXXCopyConstructor || SM == CXXMoveConstructor) { 2884 Name = Context.DeclarationNames.getCXXConstructorName(CanTy); 2885 if (RD->needsImplicitCopyConstructor()) 2886 DeclareImplicitCopyConstructor(RD); 2887 if (getLangOpts().CPlusPlus11 && RD->needsImplicitMoveConstructor()) 2888 DeclareImplicitMoveConstructor(RD); 2889 } else { 2890 Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal); 2891 if (RD->needsImplicitCopyAssignment()) 2892 DeclareImplicitCopyAssignment(RD); 2893 if (getLangOpts().CPlusPlus11 && RD->needsImplicitMoveAssignment()) 2894 DeclareImplicitMoveAssignment(RD); 2895 } 2896 2897 if (ConstArg) 2898 ArgType.addConst(); 2899 if (VolatileArg) 2900 ArgType.addVolatile(); 2901 2902 // This isn't /really/ specified by the standard, but it's implied 2903 // we should be working from an RValue in the case of move to ensure 2904 // that we prefer to bind to rvalue references, and an LValue in the 2905 // case of copy to ensure we don't bind to rvalue references. 2906 // Possibly an XValue is actually correct in the case of move, but 2907 // there is no semantic difference for class types in this restricted 2908 // case. 2909 if (SM == CXXCopyConstructor || SM == CXXCopyAssignment) 2910 VK = VK_LValue; 2911 else 2912 VK = VK_RValue; 2913 } 2914 2915 OpaqueValueExpr FakeArg(SourceLocation(), ArgType, VK); 2916 2917 if (SM != CXXDefaultConstructor) { 2918 NumArgs = 1; 2919 Arg = &FakeArg; 2920 } 2921 2922 // Create the object argument 2923 QualType ThisTy = CanTy; 2924 if (ConstThis) 2925 ThisTy.addConst(); 2926 if (VolatileThis) 2927 ThisTy.addVolatile(); 2928 Expr::Classification Classification = 2929 OpaqueValueExpr(SourceLocation(), ThisTy, 2930 RValueThis ? VK_RValue : VK_LValue).Classify(Context); 2931 2932 // Now we perform lookup on the name we computed earlier and do overload 2933 // resolution. Lookup is only performed directly into the class since there 2934 // will always be a (possibly implicit) declaration to shadow any others. 2935 OverloadCandidateSet OCS(RD->getLocation(), OverloadCandidateSet::CSK_Normal); 2936 DeclContext::lookup_result R = RD->lookup(Name); 2937 2938 if (R.empty()) { 2939 // We might have no default constructor because we have a lambda's closure 2940 // type, rather than because there's some other declared constructor. 2941 // Every class has a copy/move constructor, copy/move assignment, and 2942 // destructor. 2943 assert(SM == CXXDefaultConstructor && 2944 "lookup for a constructor or assignment operator was empty"); 2945 Result->setMethod(nullptr); 2946 Result->setKind(SpecialMemberOverloadResult::NoMemberOrDeleted); 2947 return Result; 2948 } 2949 2950 // Copy the candidates as our processing of them may load new declarations 2951 // from an external source and invalidate lookup_result. 2952 SmallVector<NamedDecl *, 8> Candidates(R.begin(), R.end()); 2953 2954 for (NamedDecl *CandDecl : Candidates) { 2955 if (CandDecl->isInvalidDecl()) 2956 continue; 2957 2958 DeclAccessPair Cand = DeclAccessPair::make(CandDecl, AS_public); 2959 auto CtorInfo = getConstructorInfo(Cand); 2960 if (CXXMethodDecl *M = dyn_cast<CXXMethodDecl>(Cand->getUnderlyingDecl())) { 2961 if (SM == CXXCopyAssignment || SM == CXXMoveAssignment) 2962 AddMethodCandidate(M, Cand, RD, ThisTy, Classification, 2963 /*ThisArg=*/nullptr, 2964 llvm::makeArrayRef(&Arg, NumArgs), OCS, true); 2965 else if (CtorInfo) 2966 AddOverloadCandidate(CtorInfo.Constructor, CtorInfo.FoundDecl, 2967 llvm::makeArrayRef(&Arg, NumArgs), OCS, true); 2968 else 2969 AddOverloadCandidate(M, Cand, llvm::makeArrayRef(&Arg, NumArgs), OCS, 2970 true); 2971 } else if (FunctionTemplateDecl *Tmpl = 2972 dyn_cast<FunctionTemplateDecl>(Cand->getUnderlyingDecl())) { 2973 if (SM == CXXCopyAssignment || SM == CXXMoveAssignment) 2974 AddMethodTemplateCandidate( 2975 Tmpl, Cand, RD, nullptr, ThisTy, Classification, 2976 /*ThisArg=*/nullptr, llvm::makeArrayRef(&Arg, NumArgs), OCS, true); 2977 else if (CtorInfo) 2978 AddTemplateOverloadCandidate( 2979 CtorInfo.ConstructorTmpl, CtorInfo.FoundDecl, nullptr, 2980 llvm::makeArrayRef(&Arg, NumArgs), OCS, true); 2981 else 2982 AddTemplateOverloadCandidate( 2983 Tmpl, Cand, nullptr, llvm::makeArrayRef(&Arg, NumArgs), OCS, true); 2984 } else { 2985 assert(isa<UsingDecl>(Cand.getDecl()) && 2986 "illegal Kind of operator = Decl"); 2987 } 2988 } 2989 2990 OverloadCandidateSet::iterator Best; 2991 switch (OCS.BestViableFunction(*this, SourceLocation(), Best)) { 2992 case OR_Success: 2993 Result->setMethod(cast<CXXMethodDecl>(Best->Function)); 2994 Result->setKind(SpecialMemberOverloadResult::Success); 2995 break; 2996 2997 case OR_Deleted: 2998 Result->setMethod(cast<CXXMethodDecl>(Best->Function)); 2999 Result->setKind(SpecialMemberOverloadResult::NoMemberOrDeleted); 3000 break; 3001 3002 case OR_Ambiguous: 3003 Result->setMethod(nullptr); 3004 Result->setKind(SpecialMemberOverloadResult::Ambiguous); 3005 break; 3006 3007 case OR_No_Viable_Function: 3008 Result->setMethod(nullptr); 3009 Result->setKind(SpecialMemberOverloadResult::NoMemberOrDeleted); 3010 break; 3011 } 3012 3013 return Result; 3014 } 3015 3016 /// \brief Look up the default constructor for the given class. 3017 CXXConstructorDecl *Sema::LookupDefaultConstructor(CXXRecordDecl *Class) { 3018 SpecialMemberOverloadResult *Result = 3019 LookupSpecialMember(Class, CXXDefaultConstructor, false, false, false, 3020 false, false); 3021 3022 return cast_or_null<CXXConstructorDecl>(Result->getMethod()); 3023 } 3024 3025 /// \brief Look up the copying constructor for the given class. 3026 CXXConstructorDecl *Sema::LookupCopyingConstructor(CXXRecordDecl *Class, 3027 unsigned Quals) { 3028 assert(!(Quals & ~(Qualifiers::Const | Qualifiers::Volatile)) && 3029 "non-const, non-volatile qualifiers for copy ctor arg"); 3030 SpecialMemberOverloadResult *Result = 3031 LookupSpecialMember(Class, CXXCopyConstructor, Quals & Qualifiers::Const, 3032 Quals & Qualifiers::Volatile, false, false, false); 3033 3034 return cast_or_null<CXXConstructorDecl>(Result->getMethod()); 3035 } 3036 3037 /// \brief Look up the moving constructor for the given class. 3038 CXXConstructorDecl *Sema::LookupMovingConstructor(CXXRecordDecl *Class, 3039 unsigned Quals) { 3040 SpecialMemberOverloadResult *Result = 3041 LookupSpecialMember(Class, CXXMoveConstructor, Quals & Qualifiers::Const, 3042 Quals & Qualifiers::Volatile, false, false, false); 3043 3044 return cast_or_null<CXXConstructorDecl>(Result->getMethod()); 3045 } 3046 3047 /// \brief Look up the constructors for the given class. 3048 DeclContext::lookup_result Sema::LookupConstructors(CXXRecordDecl *Class) { 3049 // If the implicit constructors have not yet been declared, do so now. 3050 if (CanDeclareSpecialMemberFunction(Class)) { 3051 if (Class->needsImplicitDefaultConstructor()) 3052 DeclareImplicitDefaultConstructor(Class); 3053 if (Class->needsImplicitCopyConstructor()) 3054 DeclareImplicitCopyConstructor(Class); 3055 if (getLangOpts().CPlusPlus11 && Class->needsImplicitMoveConstructor()) 3056 DeclareImplicitMoveConstructor(Class); 3057 } 3058 3059 CanQualType T = Context.getCanonicalType(Context.getTypeDeclType(Class)); 3060 DeclarationName Name = Context.DeclarationNames.getCXXConstructorName(T); 3061 return Class->lookup(Name); 3062 } 3063 3064 /// \brief Look up the copying assignment operator for the given class. 3065 CXXMethodDecl *Sema::LookupCopyingAssignment(CXXRecordDecl *Class, 3066 unsigned Quals, bool RValueThis, 3067 unsigned ThisQuals) { 3068 assert(!(Quals & ~(Qualifiers::Const | Qualifiers::Volatile)) && 3069 "non-const, non-volatile qualifiers for copy assignment arg"); 3070 assert(!(ThisQuals & ~(Qualifiers::Const | Qualifiers::Volatile)) && 3071 "non-const, non-volatile qualifiers for copy assignment this"); 3072 SpecialMemberOverloadResult *Result = 3073 LookupSpecialMember(Class, CXXCopyAssignment, Quals & Qualifiers::Const, 3074 Quals & Qualifiers::Volatile, RValueThis, 3075 ThisQuals & Qualifiers::Const, 3076 ThisQuals & Qualifiers::Volatile); 3077 3078 return Result->getMethod(); 3079 } 3080 3081 /// \brief Look up the moving assignment operator for the given class. 3082 CXXMethodDecl *Sema::LookupMovingAssignment(CXXRecordDecl *Class, 3083 unsigned Quals, 3084 bool RValueThis, 3085 unsigned ThisQuals) { 3086 assert(!(ThisQuals & ~(Qualifiers::Const | Qualifiers::Volatile)) && 3087 "non-const, non-volatile qualifiers for copy assignment this"); 3088 SpecialMemberOverloadResult *Result = 3089 LookupSpecialMember(Class, CXXMoveAssignment, Quals & Qualifiers::Const, 3090 Quals & Qualifiers::Volatile, RValueThis, 3091 ThisQuals & Qualifiers::Const, 3092 ThisQuals & Qualifiers::Volatile); 3093 3094 return Result->getMethod(); 3095 } 3096 3097 /// \brief Look for the destructor of the given class. 3098 /// 3099 /// During semantic analysis, this routine should be used in lieu of 3100 /// CXXRecordDecl::getDestructor(). 3101 /// 3102 /// \returns The destructor for this class. 3103 CXXDestructorDecl *Sema::LookupDestructor(CXXRecordDecl *Class) { 3104 return cast<CXXDestructorDecl>(LookupSpecialMember(Class, CXXDestructor, 3105 false, false, false, 3106 false, false)->getMethod()); 3107 } 3108 3109 /// LookupLiteralOperator - Determine which literal operator should be used for 3110 /// a user-defined literal, per C++11 [lex.ext]. 3111 /// 3112 /// Normal overload resolution is not used to select which literal operator to 3113 /// call for a user-defined literal. Look up the provided literal operator name, 3114 /// and filter the results to the appropriate set for the given argument types. 3115 Sema::LiteralOperatorLookupResult 3116 Sema::LookupLiteralOperator(Scope *S, LookupResult &R, 3117 ArrayRef<QualType> ArgTys, 3118 bool AllowRaw, bool AllowTemplate, 3119 bool AllowStringTemplate) { 3120 LookupName(R, S); 3121 assert(R.getResultKind() != LookupResult::Ambiguous && 3122 "literal operator lookup can't be ambiguous"); 3123 3124 // Filter the lookup results appropriately. 3125 LookupResult::Filter F = R.makeFilter(); 3126 3127 bool FoundRaw = false; 3128 bool FoundTemplate = false; 3129 bool FoundStringTemplate = false; 3130 bool FoundExactMatch = false; 3131 3132 while (F.hasNext()) { 3133 Decl *D = F.next(); 3134 if (UsingShadowDecl *USD = dyn_cast<UsingShadowDecl>(D)) 3135 D = USD->getTargetDecl(); 3136 3137 // If the declaration we found is invalid, skip it. 3138 if (D->isInvalidDecl()) { 3139 F.erase(); 3140 continue; 3141 } 3142 3143 bool IsRaw = false; 3144 bool IsTemplate = false; 3145 bool IsStringTemplate = false; 3146 bool IsExactMatch = false; 3147 3148 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 3149 if (FD->getNumParams() == 1 && 3150 FD->getParamDecl(0)->getType()->getAs<PointerType>()) 3151 IsRaw = true; 3152 else if (FD->getNumParams() == ArgTys.size()) { 3153 IsExactMatch = true; 3154 for (unsigned ArgIdx = 0; ArgIdx != ArgTys.size(); ++ArgIdx) { 3155 QualType ParamTy = FD->getParamDecl(ArgIdx)->getType(); 3156 if (!Context.hasSameUnqualifiedType(ArgTys[ArgIdx], ParamTy)) { 3157 IsExactMatch = false; 3158 break; 3159 } 3160 } 3161 } 3162 } 3163 if (FunctionTemplateDecl *FD = dyn_cast<FunctionTemplateDecl>(D)) { 3164 TemplateParameterList *Params = FD->getTemplateParameters(); 3165 if (Params->size() == 1) 3166 IsTemplate = true; 3167 else 3168 IsStringTemplate = true; 3169 } 3170 3171 if (IsExactMatch) { 3172 FoundExactMatch = true; 3173 AllowRaw = false; 3174 AllowTemplate = false; 3175 AllowStringTemplate = false; 3176 if (FoundRaw || FoundTemplate || FoundStringTemplate) { 3177 // Go through again and remove the raw and template decls we've 3178 // already found. 3179 F.restart(); 3180 FoundRaw = FoundTemplate = FoundStringTemplate = false; 3181 } 3182 } else if (AllowRaw && IsRaw) { 3183 FoundRaw = true; 3184 } else if (AllowTemplate && IsTemplate) { 3185 FoundTemplate = true; 3186 } else if (AllowStringTemplate && IsStringTemplate) { 3187 FoundStringTemplate = true; 3188 } else { 3189 F.erase(); 3190 } 3191 } 3192 3193 F.done(); 3194 3195 // C++11 [lex.ext]p3, p4: If S contains a literal operator with a matching 3196 // parameter type, that is used in preference to a raw literal operator 3197 // or literal operator template. 3198 if (FoundExactMatch) 3199 return LOLR_Cooked; 3200 3201 // C++11 [lex.ext]p3, p4: S shall contain a raw literal operator or a literal 3202 // operator template, but not both. 3203 if (FoundRaw && FoundTemplate) { 3204 Diag(R.getNameLoc(), diag::err_ovl_ambiguous_call) << R.getLookupName(); 3205 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) 3206 NoteOverloadCandidate(*I, (*I)->getUnderlyingDecl()->getAsFunction()); 3207 return LOLR_Error; 3208 } 3209 3210 if (FoundRaw) 3211 return LOLR_Raw; 3212 3213 if (FoundTemplate) 3214 return LOLR_Template; 3215 3216 if (FoundStringTemplate) 3217 return LOLR_StringTemplate; 3218 3219 // Didn't find anything we could use. 3220 Diag(R.getNameLoc(), diag::err_ovl_no_viable_literal_operator) 3221 << R.getLookupName() << (int)ArgTys.size() << ArgTys[0] 3222 << (ArgTys.size() == 2 ? ArgTys[1] : QualType()) << AllowRaw 3223 << (AllowTemplate || AllowStringTemplate); 3224 return LOLR_Error; 3225 } 3226 3227 void ADLResult::insert(NamedDecl *New) { 3228 NamedDecl *&Old = Decls[cast<NamedDecl>(New->getCanonicalDecl())]; 3229 3230 // If we haven't yet seen a decl for this key, or the last decl 3231 // was exactly this one, we're done. 3232 if (Old == nullptr || Old == New) { 3233 Old = New; 3234 return; 3235 } 3236 3237 // Otherwise, decide which is a more recent redeclaration. 3238 FunctionDecl *OldFD = Old->getAsFunction(); 3239 FunctionDecl *NewFD = New->getAsFunction(); 3240 3241 FunctionDecl *Cursor = NewFD; 3242 while (true) { 3243 Cursor = Cursor->getPreviousDecl(); 3244 3245 // If we got to the end without finding OldFD, OldFD is the newer 3246 // declaration; leave things as they are. 3247 if (!Cursor) return; 3248 3249 // If we do find OldFD, then NewFD is newer. 3250 if (Cursor == OldFD) break; 3251 3252 // Otherwise, keep looking. 3253 } 3254 3255 Old = New; 3256 } 3257 3258 void Sema::ArgumentDependentLookup(DeclarationName Name, SourceLocation Loc, 3259 ArrayRef<Expr *> Args, ADLResult &Result) { 3260 // Find all of the associated namespaces and classes based on the 3261 // arguments we have. 3262 AssociatedNamespaceSet AssociatedNamespaces; 3263 AssociatedClassSet AssociatedClasses; 3264 FindAssociatedClassesAndNamespaces(Loc, Args, 3265 AssociatedNamespaces, 3266 AssociatedClasses); 3267 3268 // C++ [basic.lookup.argdep]p3: 3269 // Let X be the lookup set produced by unqualified lookup (3.4.1) 3270 // and let Y be the lookup set produced by argument dependent 3271 // lookup (defined as follows). If X contains [...] then Y is 3272 // empty. Otherwise Y is the set of declarations found in the 3273 // namespaces associated with the argument types as described 3274 // below. The set of declarations found by the lookup of the name 3275 // is the union of X and Y. 3276 // 3277 // Here, we compute Y and add its members to the overloaded 3278 // candidate set. 3279 for (auto *NS : AssociatedNamespaces) { 3280 // When considering an associated namespace, the lookup is the 3281 // same as the lookup performed when the associated namespace is 3282 // used as a qualifier (3.4.3.2) except that: 3283 // 3284 // -- Any using-directives in the associated namespace are 3285 // ignored. 3286 // 3287 // -- Any namespace-scope friend functions declared in 3288 // associated classes are visible within their respective 3289 // namespaces even if they are not visible during an ordinary 3290 // lookup (11.4). 3291 DeclContext::lookup_result R = NS->lookup(Name); 3292 for (auto *D : R) { 3293 // If the only declaration here is an ordinary friend, consider 3294 // it only if it was declared in an associated classes. 3295 if ((D->getIdentifierNamespace() & Decl::IDNS_Ordinary) == 0) { 3296 // If it's neither ordinarily visible nor a friend, we can't find it. 3297 if ((D->getIdentifierNamespace() & Decl::IDNS_OrdinaryFriend) == 0) 3298 continue; 3299 3300 bool DeclaredInAssociatedClass = false; 3301 for (Decl *DI = D; DI; DI = DI->getPreviousDecl()) { 3302 DeclContext *LexDC = DI->getLexicalDeclContext(); 3303 if (isa<CXXRecordDecl>(LexDC) && 3304 AssociatedClasses.count(cast<CXXRecordDecl>(LexDC)) && 3305 isVisible(cast<NamedDecl>(DI))) { 3306 DeclaredInAssociatedClass = true; 3307 break; 3308 } 3309 } 3310 if (!DeclaredInAssociatedClass) 3311 continue; 3312 } 3313 3314 if (isa<UsingShadowDecl>(D)) 3315 D = cast<UsingShadowDecl>(D)->getTargetDecl(); 3316 3317 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) 3318 continue; 3319 3320 if (!isVisible(D) && !(D = findAcceptableDecl(*this, D))) 3321 continue; 3322 3323 Result.insert(D); 3324 } 3325 } 3326 } 3327 3328 //---------------------------------------------------------------------------- 3329 // Search for all visible declarations. 3330 //---------------------------------------------------------------------------- 3331 VisibleDeclConsumer::~VisibleDeclConsumer() { } 3332 3333 bool VisibleDeclConsumer::includeHiddenDecls() const { return false; } 3334 3335 namespace { 3336 3337 class ShadowContextRAII; 3338 3339 class VisibleDeclsRecord { 3340 public: 3341 /// \brief An entry in the shadow map, which is optimized to store a 3342 /// single declaration (the common case) but can also store a list 3343 /// of declarations. 3344 typedef llvm::TinyPtrVector<NamedDecl*> ShadowMapEntry; 3345 3346 private: 3347 /// \brief A mapping from declaration names to the declarations that have 3348 /// this name within a particular scope. 3349 typedef llvm::DenseMap<DeclarationName, ShadowMapEntry> ShadowMap; 3350 3351 /// \brief A list of shadow maps, which is used to model name hiding. 3352 std::list<ShadowMap> ShadowMaps; 3353 3354 /// \brief The declaration contexts we have already visited. 3355 llvm::SmallPtrSet<DeclContext *, 8> VisitedContexts; 3356 3357 friend class ShadowContextRAII; 3358 3359 public: 3360 /// \brief Determine whether we have already visited this context 3361 /// (and, if not, note that we are going to visit that context now). 3362 bool visitedContext(DeclContext *Ctx) { 3363 return !VisitedContexts.insert(Ctx).second; 3364 } 3365 3366 bool alreadyVisitedContext(DeclContext *Ctx) { 3367 return VisitedContexts.count(Ctx); 3368 } 3369 3370 /// \brief Determine whether the given declaration is hidden in the 3371 /// current scope. 3372 /// 3373 /// \returns the declaration that hides the given declaration, or 3374 /// NULL if no such declaration exists. 3375 NamedDecl *checkHidden(NamedDecl *ND); 3376 3377 /// \brief Add a declaration to the current shadow map. 3378 void add(NamedDecl *ND) { 3379 ShadowMaps.back()[ND->getDeclName()].push_back(ND); 3380 } 3381 }; 3382 3383 /// \brief RAII object that records when we've entered a shadow context. 3384 class ShadowContextRAII { 3385 VisibleDeclsRecord &Visible; 3386 3387 typedef VisibleDeclsRecord::ShadowMap ShadowMap; 3388 3389 public: 3390 ShadowContextRAII(VisibleDeclsRecord &Visible) : Visible(Visible) { 3391 Visible.ShadowMaps.emplace_back(); 3392 } 3393 3394 ~ShadowContextRAII() { 3395 Visible.ShadowMaps.pop_back(); 3396 } 3397 }; 3398 3399 } // end anonymous namespace 3400 3401 NamedDecl *VisibleDeclsRecord::checkHidden(NamedDecl *ND) { 3402 unsigned IDNS = ND->getIdentifierNamespace(); 3403 std::list<ShadowMap>::reverse_iterator SM = ShadowMaps.rbegin(); 3404 for (std::list<ShadowMap>::reverse_iterator SMEnd = ShadowMaps.rend(); 3405 SM != SMEnd; ++SM) { 3406 ShadowMap::iterator Pos = SM->find(ND->getDeclName()); 3407 if (Pos == SM->end()) 3408 continue; 3409 3410 for (auto *D : Pos->second) { 3411 // A tag declaration does not hide a non-tag declaration. 3412 if (D->hasTagIdentifierNamespace() && 3413 (IDNS & (Decl::IDNS_Member | Decl::IDNS_Ordinary | 3414 Decl::IDNS_ObjCProtocol))) 3415 continue; 3416 3417 // Protocols are in distinct namespaces from everything else. 3418 if (((D->getIdentifierNamespace() & Decl::IDNS_ObjCProtocol) 3419 || (IDNS & Decl::IDNS_ObjCProtocol)) && 3420 D->getIdentifierNamespace() != IDNS) 3421 continue; 3422 3423 // Functions and function templates in the same scope overload 3424 // rather than hide. FIXME: Look for hiding based on function 3425 // signatures! 3426 if (D->getUnderlyingDecl()->isFunctionOrFunctionTemplate() && 3427 ND->getUnderlyingDecl()->isFunctionOrFunctionTemplate() && 3428 SM == ShadowMaps.rbegin()) 3429 continue; 3430 3431 // We've found a declaration that hides this one. 3432 return D; 3433 } 3434 } 3435 3436 return nullptr; 3437 } 3438 3439 static void LookupVisibleDecls(DeclContext *Ctx, LookupResult &Result, 3440 bool QualifiedNameLookup, 3441 bool InBaseClass, 3442 VisibleDeclConsumer &Consumer, 3443 VisibleDeclsRecord &Visited) { 3444 if (!Ctx) 3445 return; 3446 3447 // Make sure we don't visit the same context twice. 3448 if (Visited.visitedContext(Ctx->getPrimaryContext())) 3449 return; 3450 3451 // Outside C++, lookup results for the TU live on identifiers. 3452 if (isa<TranslationUnitDecl>(Ctx) && 3453 !Result.getSema().getLangOpts().CPlusPlus) { 3454 auto &S = Result.getSema(); 3455 auto &Idents = S.Context.Idents; 3456 3457 // Ensure all external identifiers are in the identifier table. 3458 if (IdentifierInfoLookup *External = Idents.getExternalIdentifierLookup()) { 3459 std::unique_ptr<IdentifierIterator> Iter(External->getIdentifiers()); 3460 for (StringRef Name = Iter->Next(); !Name.empty(); Name = Iter->Next()) 3461 Idents.get(Name); 3462 } 3463 3464 // Walk all lookup results in the TU for each identifier. 3465 for (const auto &Ident : Idents) { 3466 for (auto I = S.IdResolver.begin(Ident.getValue()), 3467 E = S.IdResolver.end(); 3468 I != E; ++I) { 3469 if (S.IdResolver.isDeclInScope(*I, Ctx)) { 3470 if (NamedDecl *ND = Result.getAcceptableDecl(*I)) { 3471 Consumer.FoundDecl(ND, Visited.checkHidden(ND), Ctx, InBaseClass); 3472 Visited.add(ND); 3473 } 3474 } 3475 } 3476 } 3477 3478 return; 3479 } 3480 3481 if (CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(Ctx)) 3482 Result.getSema().ForceDeclarationOfImplicitMembers(Class); 3483 3484 // Enumerate all of the results in this context. 3485 for (DeclContextLookupResult R : Ctx->lookups()) { 3486 for (auto *D : R) { 3487 if (auto *ND = Result.getAcceptableDecl(D)) { 3488 Consumer.FoundDecl(ND, Visited.checkHidden(ND), Ctx, InBaseClass); 3489 Visited.add(ND); 3490 } 3491 } 3492 } 3493 3494 // Traverse using directives for qualified name lookup. 3495 if (QualifiedNameLookup) { 3496 ShadowContextRAII Shadow(Visited); 3497 for (auto I : Ctx->using_directives()) { 3498 LookupVisibleDecls(I->getNominatedNamespace(), Result, 3499 QualifiedNameLookup, InBaseClass, Consumer, Visited); 3500 } 3501 } 3502 3503 // Traverse the contexts of inherited C++ classes. 3504 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx)) { 3505 if (!Record->hasDefinition()) 3506 return; 3507 3508 for (const auto &B : Record->bases()) { 3509 QualType BaseType = B.getType(); 3510 3511 // Don't look into dependent bases, because name lookup can't look 3512 // there anyway. 3513 if (BaseType->isDependentType()) 3514 continue; 3515 3516 const RecordType *Record = BaseType->getAs<RecordType>(); 3517 if (!Record) 3518 continue; 3519 3520 // FIXME: It would be nice to be able to determine whether referencing 3521 // a particular member would be ambiguous. For example, given 3522 // 3523 // struct A { int member; }; 3524 // struct B { int member; }; 3525 // struct C : A, B { }; 3526 // 3527 // void f(C *c) { c->### } 3528 // 3529 // accessing 'member' would result in an ambiguity. However, we 3530 // could be smart enough to qualify the member with the base 3531 // class, e.g., 3532 // 3533 // c->B::member 3534 // 3535 // or 3536 // 3537 // c->A::member 3538 3539 // Find results in this base class (and its bases). 3540 ShadowContextRAII Shadow(Visited); 3541 LookupVisibleDecls(Record->getDecl(), Result, QualifiedNameLookup, 3542 true, Consumer, Visited); 3543 } 3544 } 3545 3546 // Traverse the contexts of Objective-C classes. 3547 if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Ctx)) { 3548 // Traverse categories. 3549 for (auto *Cat : IFace->visible_categories()) { 3550 ShadowContextRAII Shadow(Visited); 3551 LookupVisibleDecls(Cat, Result, QualifiedNameLookup, false, 3552 Consumer, Visited); 3553 } 3554 3555 // Traverse protocols. 3556 for (auto *I : IFace->all_referenced_protocols()) { 3557 ShadowContextRAII Shadow(Visited); 3558 LookupVisibleDecls(I, Result, QualifiedNameLookup, false, Consumer, 3559 Visited); 3560 } 3561 3562 // Traverse the superclass. 3563 if (IFace->getSuperClass()) { 3564 ShadowContextRAII Shadow(Visited); 3565 LookupVisibleDecls(IFace->getSuperClass(), Result, QualifiedNameLookup, 3566 true, Consumer, Visited); 3567 } 3568 3569 // If there is an implementation, traverse it. We do this to find 3570 // synthesized ivars. 3571 if (IFace->getImplementation()) { 3572 ShadowContextRAII Shadow(Visited); 3573 LookupVisibleDecls(IFace->getImplementation(), Result, 3574 QualifiedNameLookup, InBaseClass, Consumer, Visited); 3575 } 3576 } else if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Ctx)) { 3577 for (auto *I : Protocol->protocols()) { 3578 ShadowContextRAII Shadow(Visited); 3579 LookupVisibleDecls(I, Result, QualifiedNameLookup, false, Consumer, 3580 Visited); 3581 } 3582 } else if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(Ctx)) { 3583 for (auto *I : Category->protocols()) { 3584 ShadowContextRAII Shadow(Visited); 3585 LookupVisibleDecls(I, Result, QualifiedNameLookup, false, Consumer, 3586 Visited); 3587 } 3588 3589 // If there is an implementation, traverse it. 3590 if (Category->getImplementation()) { 3591 ShadowContextRAII Shadow(Visited); 3592 LookupVisibleDecls(Category->getImplementation(), Result, 3593 QualifiedNameLookup, true, Consumer, Visited); 3594 } 3595 } 3596 } 3597 3598 static void LookupVisibleDecls(Scope *S, LookupResult &Result, 3599 UnqualUsingDirectiveSet &UDirs, 3600 VisibleDeclConsumer &Consumer, 3601 VisibleDeclsRecord &Visited) { 3602 if (!S) 3603 return; 3604 3605 if (!S->getEntity() || 3606 (!S->getParent() && 3607 !Visited.alreadyVisitedContext(S->getEntity())) || 3608 (S->getEntity())->isFunctionOrMethod()) { 3609 FindLocalExternScope FindLocals(Result); 3610 // Walk through the declarations in this Scope. 3611 for (auto *D : S->decls()) { 3612 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) 3613 if ((ND = Result.getAcceptableDecl(ND))) { 3614 Consumer.FoundDecl(ND, Visited.checkHidden(ND), nullptr, false); 3615 Visited.add(ND); 3616 } 3617 } 3618 } 3619 3620 // FIXME: C++ [temp.local]p8 3621 DeclContext *Entity = nullptr; 3622 if (S->getEntity()) { 3623 // Look into this scope's declaration context, along with any of its 3624 // parent lookup contexts (e.g., enclosing classes), up to the point 3625 // where we hit the context stored in the next outer scope. 3626 Entity = S->getEntity(); 3627 DeclContext *OuterCtx = findOuterContext(S).first; // FIXME 3628 3629 for (DeclContext *Ctx = Entity; Ctx && !Ctx->Equals(OuterCtx); 3630 Ctx = Ctx->getLookupParent()) { 3631 if (ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(Ctx)) { 3632 if (Method->isInstanceMethod()) { 3633 // For instance methods, look for ivars in the method's interface. 3634 LookupResult IvarResult(Result.getSema(), Result.getLookupName(), 3635 Result.getNameLoc(), Sema::LookupMemberName); 3636 if (ObjCInterfaceDecl *IFace = Method->getClassInterface()) { 3637 LookupVisibleDecls(IFace, IvarResult, /*QualifiedNameLookup=*/false, 3638 /*InBaseClass=*/false, Consumer, Visited); 3639 } 3640 } 3641 3642 // We've already performed all of the name lookup that we need 3643 // to for Objective-C methods; the next context will be the 3644 // outer scope. 3645 break; 3646 } 3647 3648 if (Ctx->isFunctionOrMethod()) 3649 continue; 3650 3651 LookupVisibleDecls(Ctx, Result, /*QualifiedNameLookup=*/false, 3652 /*InBaseClass=*/false, Consumer, Visited); 3653 } 3654 } else if (!S->getParent()) { 3655 // Look into the translation unit scope. We walk through the translation 3656 // unit's declaration context, because the Scope itself won't have all of 3657 // the declarations if we loaded a precompiled header. 3658 // FIXME: We would like the translation unit's Scope object to point to the 3659 // translation unit, so we don't need this special "if" branch. However, 3660 // doing so would force the normal C++ name-lookup code to look into the 3661 // translation unit decl when the IdentifierInfo chains would suffice. 3662 // Once we fix that problem (which is part of a more general "don't look 3663 // in DeclContexts unless we have to" optimization), we can eliminate this. 3664 Entity = Result.getSema().Context.getTranslationUnitDecl(); 3665 LookupVisibleDecls(Entity, Result, /*QualifiedNameLookup=*/false, 3666 /*InBaseClass=*/false, Consumer, Visited); 3667 } 3668 3669 if (Entity) { 3670 // Lookup visible declarations in any namespaces found by using 3671 // directives. 3672 for (const UnqualUsingEntry &UUE : UDirs.getNamespacesFor(Entity)) 3673 LookupVisibleDecls(const_cast<DeclContext *>(UUE.getNominatedNamespace()), 3674 Result, /*QualifiedNameLookup=*/false, 3675 /*InBaseClass=*/false, Consumer, Visited); 3676 } 3677 3678 // Lookup names in the parent scope. 3679 ShadowContextRAII Shadow(Visited); 3680 LookupVisibleDecls(S->getParent(), Result, UDirs, Consumer, Visited); 3681 } 3682 3683 void Sema::LookupVisibleDecls(Scope *S, LookupNameKind Kind, 3684 VisibleDeclConsumer &Consumer, 3685 bool IncludeGlobalScope) { 3686 // Determine the set of using directives available during 3687 // unqualified name lookup. 3688 Scope *Initial = S; 3689 UnqualUsingDirectiveSet UDirs; 3690 if (getLangOpts().CPlusPlus) { 3691 // Find the first namespace or translation-unit scope. 3692 while (S && !isNamespaceOrTranslationUnitScope(S)) 3693 S = S->getParent(); 3694 3695 UDirs.visitScopeChain(Initial, S); 3696 } 3697 UDirs.done(); 3698 3699 // Look for visible declarations. 3700 LookupResult Result(*this, DeclarationName(), SourceLocation(), Kind); 3701 Result.setAllowHidden(Consumer.includeHiddenDecls()); 3702 VisibleDeclsRecord Visited; 3703 if (!IncludeGlobalScope) 3704 Visited.visitedContext(Context.getTranslationUnitDecl()); 3705 ShadowContextRAII Shadow(Visited); 3706 ::LookupVisibleDecls(Initial, Result, UDirs, Consumer, Visited); 3707 } 3708 3709 void Sema::LookupVisibleDecls(DeclContext *Ctx, LookupNameKind Kind, 3710 VisibleDeclConsumer &Consumer, 3711 bool IncludeGlobalScope) { 3712 LookupResult Result(*this, DeclarationName(), SourceLocation(), Kind); 3713 Result.setAllowHidden(Consumer.includeHiddenDecls()); 3714 VisibleDeclsRecord Visited; 3715 if (!IncludeGlobalScope) 3716 Visited.visitedContext(Context.getTranslationUnitDecl()); 3717 ShadowContextRAII Shadow(Visited); 3718 ::LookupVisibleDecls(Ctx, Result, /*QualifiedNameLookup=*/true, 3719 /*InBaseClass=*/false, Consumer, Visited); 3720 } 3721 3722 /// LookupOrCreateLabel - Do a name lookup of a label with the specified name. 3723 /// If GnuLabelLoc is a valid source location, then this is a definition 3724 /// of an __label__ label name, otherwise it is a normal label definition 3725 /// or use. 3726 LabelDecl *Sema::LookupOrCreateLabel(IdentifierInfo *II, SourceLocation Loc, 3727 SourceLocation GnuLabelLoc) { 3728 // Do a lookup to see if we have a label with this name already. 3729 NamedDecl *Res = nullptr; 3730 3731 if (GnuLabelLoc.isValid()) { 3732 // Local label definitions always shadow existing labels. 3733 Res = LabelDecl::Create(Context, CurContext, Loc, II, GnuLabelLoc); 3734 Scope *S = CurScope; 3735 PushOnScopeChains(Res, S, true); 3736 return cast<LabelDecl>(Res); 3737 } 3738 3739 // Not a GNU local label. 3740 Res = LookupSingleName(CurScope, II, Loc, LookupLabel, NotForRedeclaration); 3741 // If we found a label, check to see if it is in the same context as us. 3742 // When in a Block, we don't want to reuse a label in an enclosing function. 3743 if (Res && Res->getDeclContext() != CurContext) 3744 Res = nullptr; 3745 if (!Res) { 3746 // If not forward referenced or defined already, create the backing decl. 3747 Res = LabelDecl::Create(Context, CurContext, Loc, II); 3748 Scope *S = CurScope->getFnParent(); 3749 assert(S && "Not in a function?"); 3750 PushOnScopeChains(Res, S, true); 3751 } 3752 return cast<LabelDecl>(Res); 3753 } 3754 3755 //===----------------------------------------------------------------------===// 3756 // Typo correction 3757 //===----------------------------------------------------------------------===// 3758 3759 static bool isCandidateViable(CorrectionCandidateCallback &CCC, 3760 TypoCorrection &Candidate) { 3761 Candidate.setCallbackDistance(CCC.RankCandidate(Candidate)); 3762 return Candidate.getEditDistance(false) != TypoCorrection::InvalidDistance; 3763 } 3764 3765 static void LookupPotentialTypoResult(Sema &SemaRef, 3766 LookupResult &Res, 3767 IdentifierInfo *Name, 3768 Scope *S, CXXScopeSpec *SS, 3769 DeclContext *MemberContext, 3770 bool EnteringContext, 3771 bool isObjCIvarLookup, 3772 bool FindHidden); 3773 3774 /// \brief Check whether the declarations found for a typo correction are 3775 /// visible, and if none of them are, convert the correction to an 'import 3776 /// a module' correction. 3777 static void checkCorrectionVisibility(Sema &SemaRef, TypoCorrection &TC) { 3778 if (TC.begin() == TC.end()) 3779 return; 3780 3781 TypoCorrection::decl_iterator DI = TC.begin(), DE = TC.end(); 3782 3783 for (/**/; DI != DE; ++DI) 3784 if (!LookupResult::isVisible(SemaRef, *DI)) 3785 break; 3786 // Nothing to do if all decls are visible. 3787 if (DI == DE) 3788 return; 3789 3790 llvm::SmallVector<NamedDecl*, 4> NewDecls(TC.begin(), DI); 3791 bool AnyVisibleDecls = !NewDecls.empty(); 3792 3793 for (/**/; DI != DE; ++DI) { 3794 NamedDecl *VisibleDecl = *DI; 3795 if (!LookupResult::isVisible(SemaRef, *DI)) 3796 VisibleDecl = findAcceptableDecl(SemaRef, *DI); 3797 3798 if (VisibleDecl) { 3799 if (!AnyVisibleDecls) { 3800 // Found a visible decl, discard all hidden ones. 3801 AnyVisibleDecls = true; 3802 NewDecls.clear(); 3803 } 3804 NewDecls.push_back(VisibleDecl); 3805 } else if (!AnyVisibleDecls && !(*DI)->isModulePrivate()) 3806 NewDecls.push_back(*DI); 3807 } 3808 3809 if (NewDecls.empty()) 3810 TC = TypoCorrection(); 3811 else { 3812 TC.setCorrectionDecls(NewDecls); 3813 TC.setRequiresImport(!AnyVisibleDecls); 3814 } 3815 } 3816 3817 // Fill the supplied vector with the IdentifierInfo pointers for each piece of 3818 // the given NestedNameSpecifier (i.e. given a NestedNameSpecifier "foo::bar::", 3819 // fill the vector with the IdentifierInfo pointers for "foo" and "bar"). 3820 static void getNestedNameSpecifierIdentifiers( 3821 NestedNameSpecifier *NNS, 3822 SmallVectorImpl<const IdentifierInfo*> &Identifiers) { 3823 if (NestedNameSpecifier *Prefix = NNS->getPrefix()) 3824 getNestedNameSpecifierIdentifiers(Prefix, Identifiers); 3825 else 3826 Identifiers.clear(); 3827 3828 const IdentifierInfo *II = nullptr; 3829 3830 switch (NNS->getKind()) { 3831 case NestedNameSpecifier::Identifier: 3832 II = NNS->getAsIdentifier(); 3833 break; 3834 3835 case NestedNameSpecifier::Namespace: 3836 if (NNS->getAsNamespace()->isAnonymousNamespace()) 3837 return; 3838 II = NNS->getAsNamespace()->getIdentifier(); 3839 break; 3840 3841 case NestedNameSpecifier::NamespaceAlias: 3842 II = NNS->getAsNamespaceAlias()->getIdentifier(); 3843 break; 3844 3845 case NestedNameSpecifier::TypeSpecWithTemplate: 3846 case NestedNameSpecifier::TypeSpec: 3847 II = QualType(NNS->getAsType(), 0).getBaseTypeIdentifier(); 3848 break; 3849 3850 case NestedNameSpecifier::Global: 3851 case NestedNameSpecifier::Super: 3852 return; 3853 } 3854 3855 if (II) 3856 Identifiers.push_back(II); 3857 } 3858 3859 void TypoCorrectionConsumer::FoundDecl(NamedDecl *ND, NamedDecl *Hiding, 3860 DeclContext *Ctx, bool InBaseClass) { 3861 // Don't consider hidden names for typo correction. 3862 if (Hiding) 3863 return; 3864 3865 // Only consider entities with identifiers for names, ignoring 3866 // special names (constructors, overloaded operators, selectors, 3867 // etc.). 3868 IdentifierInfo *Name = ND->getIdentifier(); 3869 if (!Name) 3870 return; 3871 3872 // Only consider visible declarations and declarations from modules with 3873 // names that exactly match. 3874 if (!LookupResult::isVisible(SemaRef, ND) && Name != Typo && 3875 !findAcceptableDecl(SemaRef, ND)) 3876 return; 3877 3878 FoundName(Name->getName()); 3879 } 3880 3881 void TypoCorrectionConsumer::FoundName(StringRef Name) { 3882 // Compute the edit distance between the typo and the name of this 3883 // entity, and add the identifier to the list of results. 3884 addName(Name, nullptr); 3885 } 3886 3887 void TypoCorrectionConsumer::addKeywordResult(StringRef Keyword) { 3888 // Compute the edit distance between the typo and this keyword, 3889 // and add the keyword to the list of results. 3890 addName(Keyword, nullptr, nullptr, true); 3891 } 3892 3893 void TypoCorrectionConsumer::addName(StringRef Name, NamedDecl *ND, 3894 NestedNameSpecifier *NNS, bool isKeyword) { 3895 // Use a simple length-based heuristic to determine the minimum possible 3896 // edit distance. If the minimum isn't good enough, bail out early. 3897 StringRef TypoStr = Typo->getName(); 3898 unsigned MinED = abs((int)Name.size() - (int)TypoStr.size()); 3899 if (MinED && TypoStr.size() / MinED < 3) 3900 return; 3901 3902 // Compute an upper bound on the allowable edit distance, so that the 3903 // edit-distance algorithm can short-circuit. 3904 unsigned UpperBound = (TypoStr.size() + 2) / 3 + 1; 3905 unsigned ED = TypoStr.edit_distance(Name, true, UpperBound); 3906 if (ED >= UpperBound) return; 3907 3908 TypoCorrection TC(&SemaRef.Context.Idents.get(Name), ND, NNS, ED); 3909 if (isKeyword) TC.makeKeyword(); 3910 TC.setCorrectionRange(nullptr, Result.getLookupNameInfo()); 3911 addCorrection(TC); 3912 } 3913 3914 static const unsigned MaxTypoDistanceResultSets = 5; 3915 3916 void TypoCorrectionConsumer::addCorrection(TypoCorrection Correction) { 3917 StringRef TypoStr = Typo->getName(); 3918 StringRef Name = Correction.getCorrectionAsIdentifierInfo()->getName(); 3919 3920 // For very short typos, ignore potential corrections that have a different 3921 // base identifier from the typo or which have a normalized edit distance 3922 // longer than the typo itself. 3923 if (TypoStr.size() < 3 && 3924 (Name != TypoStr || Correction.getEditDistance(true) > TypoStr.size())) 3925 return; 3926 3927 // If the correction is resolved but is not viable, ignore it. 3928 if (Correction.isResolved()) { 3929 checkCorrectionVisibility(SemaRef, Correction); 3930 if (!Correction || !isCandidateViable(*CorrectionValidator, Correction)) 3931 return; 3932 } 3933 3934 TypoResultList &CList = 3935 CorrectionResults[Correction.getEditDistance(false)][Name]; 3936 3937 if (!CList.empty() && !CList.back().isResolved()) 3938 CList.pop_back(); 3939 if (NamedDecl *NewND = Correction.getCorrectionDecl()) { 3940 std::string CorrectionStr = Correction.getAsString(SemaRef.getLangOpts()); 3941 for (TypoResultList::iterator RI = CList.begin(), RIEnd = CList.end(); 3942 RI != RIEnd; ++RI) { 3943 // If the Correction refers to a decl already in the result list, 3944 // replace the existing result if the string representation of Correction 3945 // comes before the current result alphabetically, then stop as there is 3946 // nothing more to be done to add Correction to the candidate set. 3947 if (RI->getCorrectionDecl() == NewND) { 3948 if (CorrectionStr < RI->getAsString(SemaRef.getLangOpts())) 3949 *RI = Correction; 3950 return; 3951 } 3952 } 3953 } 3954 if (CList.empty() || Correction.isResolved()) 3955 CList.push_back(Correction); 3956 3957 while (CorrectionResults.size() > MaxTypoDistanceResultSets) 3958 CorrectionResults.erase(std::prev(CorrectionResults.end())); 3959 } 3960 3961 void TypoCorrectionConsumer::addNamespaces( 3962 const llvm::MapVector<NamespaceDecl *, bool> &KnownNamespaces) { 3963 SearchNamespaces = true; 3964 3965 for (auto KNPair : KnownNamespaces) 3966 Namespaces.addNameSpecifier(KNPair.first); 3967 3968 bool SSIsTemplate = false; 3969 if (NestedNameSpecifier *NNS = 3970 (SS && SS->isValid()) ? SS->getScopeRep() : nullptr) { 3971 if (const Type *T = NNS->getAsType()) 3972 SSIsTemplate = T->getTypeClass() == Type::TemplateSpecialization; 3973 } 3974 // Do not transform this into an iterator-based loop. The loop body can 3975 // trigger the creation of further types (through lazy deserialization) and 3976 // invalide iterators into this list. 3977 auto &Types = SemaRef.getASTContext().getTypes(); 3978 for (unsigned I = 0; I != Types.size(); ++I) { 3979 const auto *TI = Types[I]; 3980 if (CXXRecordDecl *CD = TI->getAsCXXRecordDecl()) { 3981 CD = CD->getCanonicalDecl(); 3982 if (!CD->isDependentType() && !CD->isAnonymousStructOrUnion() && 3983 !CD->isUnion() && CD->getIdentifier() && 3984 (SSIsTemplate || !isa<ClassTemplateSpecializationDecl>(CD)) && 3985 (CD->isBeingDefined() || CD->isCompleteDefinition())) 3986 Namespaces.addNameSpecifier(CD); 3987 } 3988 } 3989 } 3990 3991 const TypoCorrection &TypoCorrectionConsumer::getNextCorrection() { 3992 if (++CurrentTCIndex < ValidatedCorrections.size()) 3993 return ValidatedCorrections[CurrentTCIndex]; 3994 3995 CurrentTCIndex = ValidatedCorrections.size(); 3996 while (!CorrectionResults.empty()) { 3997 auto DI = CorrectionResults.begin(); 3998 if (DI->second.empty()) { 3999 CorrectionResults.erase(DI); 4000 continue; 4001 } 4002 4003 auto RI = DI->second.begin(); 4004 if (RI->second.empty()) { 4005 DI->second.erase(RI); 4006 performQualifiedLookups(); 4007 continue; 4008 } 4009 4010 TypoCorrection TC = RI->second.pop_back_val(); 4011 if (TC.isResolved() || TC.requiresImport() || resolveCorrection(TC)) { 4012 ValidatedCorrections.push_back(TC); 4013 return ValidatedCorrections[CurrentTCIndex]; 4014 } 4015 } 4016 return ValidatedCorrections[0]; // The empty correction. 4017 } 4018 4019 bool TypoCorrectionConsumer::resolveCorrection(TypoCorrection &Candidate) { 4020 IdentifierInfo *Name = Candidate.getCorrectionAsIdentifierInfo(); 4021 DeclContext *TempMemberContext = MemberContext; 4022 CXXScopeSpec *TempSS = SS.get(); 4023 retry_lookup: 4024 LookupPotentialTypoResult(SemaRef, Result, Name, S, TempSS, TempMemberContext, 4025 EnteringContext, 4026 CorrectionValidator->IsObjCIvarLookup, 4027 Name == Typo && !Candidate.WillReplaceSpecifier()); 4028 switch (Result.getResultKind()) { 4029 case LookupResult::NotFound: 4030 case LookupResult::NotFoundInCurrentInstantiation: 4031 case LookupResult::FoundUnresolvedValue: 4032 if (TempSS) { 4033 // Immediately retry the lookup without the given CXXScopeSpec 4034 TempSS = nullptr; 4035 Candidate.WillReplaceSpecifier(true); 4036 goto retry_lookup; 4037 } 4038 if (TempMemberContext) { 4039 if (SS && !TempSS) 4040 TempSS = SS.get(); 4041 TempMemberContext = nullptr; 4042 goto retry_lookup; 4043 } 4044 if (SearchNamespaces) 4045 QualifiedResults.push_back(Candidate); 4046 break; 4047 4048 case LookupResult::Ambiguous: 4049 // We don't deal with ambiguities. 4050 break; 4051 4052 case LookupResult::Found: 4053 case LookupResult::FoundOverloaded: 4054 // Store all of the Decls for overloaded symbols 4055 for (auto *TRD : Result) 4056 Candidate.addCorrectionDecl(TRD); 4057 checkCorrectionVisibility(SemaRef, Candidate); 4058 if (!isCandidateViable(*CorrectionValidator, Candidate)) { 4059 if (SearchNamespaces) 4060 QualifiedResults.push_back(Candidate); 4061 break; 4062 } 4063 Candidate.setCorrectionRange(SS.get(), Result.getLookupNameInfo()); 4064 return true; 4065 } 4066 return false; 4067 } 4068 4069 void TypoCorrectionConsumer::performQualifiedLookups() { 4070 unsigned TypoLen = Typo->getName().size(); 4071 for (const TypoCorrection &QR : QualifiedResults) { 4072 for (const auto &NSI : Namespaces) { 4073 DeclContext *Ctx = NSI.DeclCtx; 4074 const Type *NSType = NSI.NameSpecifier->getAsType(); 4075 4076 // If the current NestedNameSpecifier refers to a class and the 4077 // current correction candidate is the name of that class, then skip 4078 // it as it is unlikely a qualified version of the class' constructor 4079 // is an appropriate correction. 4080 if (CXXRecordDecl *NSDecl = NSType ? NSType->getAsCXXRecordDecl() : 4081 nullptr) { 4082 if (NSDecl->getIdentifier() == QR.getCorrectionAsIdentifierInfo()) 4083 continue; 4084 } 4085 4086 TypoCorrection TC(QR); 4087 TC.ClearCorrectionDecls(); 4088 TC.setCorrectionSpecifier(NSI.NameSpecifier); 4089 TC.setQualifierDistance(NSI.EditDistance); 4090 TC.setCallbackDistance(0); // Reset the callback distance 4091 4092 // If the current correction candidate and namespace combination are 4093 // too far away from the original typo based on the normalized edit 4094 // distance, then skip performing a qualified name lookup. 4095 unsigned TmpED = TC.getEditDistance(true); 4096 if (QR.getCorrectionAsIdentifierInfo() != Typo && TmpED && 4097 TypoLen / TmpED < 3) 4098 continue; 4099 4100 Result.clear(); 4101 Result.setLookupName(QR.getCorrectionAsIdentifierInfo()); 4102 if (!SemaRef.LookupQualifiedName(Result, Ctx)) 4103 continue; 4104 4105 // Any corrections added below will be validated in subsequent 4106 // iterations of the main while() loop over the Consumer's contents. 4107 switch (Result.getResultKind()) { 4108 case LookupResult::Found: 4109 case LookupResult::FoundOverloaded: { 4110 if (SS && SS->isValid()) { 4111 std::string NewQualified = TC.getAsString(SemaRef.getLangOpts()); 4112 std::string OldQualified; 4113 llvm::raw_string_ostream OldOStream(OldQualified); 4114 SS->getScopeRep()->print(OldOStream, SemaRef.getPrintingPolicy()); 4115 OldOStream << Typo->getName(); 4116 // If correction candidate would be an identical written qualified 4117 // identifer, then the existing CXXScopeSpec probably included a 4118 // typedef that didn't get accounted for properly. 4119 if (OldOStream.str() == NewQualified) 4120 break; 4121 } 4122 for (LookupResult::iterator TRD = Result.begin(), TRDEnd = Result.end(); 4123 TRD != TRDEnd; ++TRD) { 4124 if (SemaRef.CheckMemberAccess(TC.getCorrectionRange().getBegin(), 4125 NSType ? NSType->getAsCXXRecordDecl() 4126 : nullptr, 4127 TRD.getPair()) == Sema::AR_accessible) 4128 TC.addCorrectionDecl(*TRD); 4129 } 4130 if (TC.isResolved()) { 4131 TC.setCorrectionRange(SS.get(), Result.getLookupNameInfo()); 4132 addCorrection(TC); 4133 } 4134 break; 4135 } 4136 case LookupResult::NotFound: 4137 case LookupResult::NotFoundInCurrentInstantiation: 4138 case LookupResult::Ambiguous: 4139 case LookupResult::FoundUnresolvedValue: 4140 break; 4141 } 4142 } 4143 } 4144 QualifiedResults.clear(); 4145 } 4146 4147 TypoCorrectionConsumer::NamespaceSpecifierSet::NamespaceSpecifierSet( 4148 ASTContext &Context, DeclContext *CurContext, CXXScopeSpec *CurScopeSpec) 4149 : Context(Context), CurContextChain(buildContextChain(CurContext)) { 4150 if (NestedNameSpecifier *NNS = 4151 CurScopeSpec ? CurScopeSpec->getScopeRep() : nullptr) { 4152 llvm::raw_string_ostream SpecifierOStream(CurNameSpecifier); 4153 NNS->print(SpecifierOStream, Context.getPrintingPolicy()); 4154 4155 getNestedNameSpecifierIdentifiers(NNS, CurNameSpecifierIdentifiers); 4156 } 4157 // Build the list of identifiers that would be used for an absolute 4158 // (from the global context) NestedNameSpecifier referring to the current 4159 // context. 4160 for (DeclContext *C : llvm::reverse(CurContextChain)) { 4161 if (auto *ND = dyn_cast_or_null<NamespaceDecl>(C)) 4162 CurContextIdentifiers.push_back(ND->getIdentifier()); 4163 } 4164 4165 // Add the global context as a NestedNameSpecifier 4166 SpecifierInfo SI = {cast<DeclContext>(Context.getTranslationUnitDecl()), 4167 NestedNameSpecifier::GlobalSpecifier(Context), 1}; 4168 DistanceMap[1].push_back(SI); 4169 } 4170 4171 auto TypoCorrectionConsumer::NamespaceSpecifierSet::buildContextChain( 4172 DeclContext *Start) -> DeclContextList { 4173 assert(Start && "Building a context chain from a null context"); 4174 DeclContextList Chain; 4175 for (DeclContext *DC = Start->getPrimaryContext(); DC != nullptr; 4176 DC = DC->getLookupParent()) { 4177 NamespaceDecl *ND = dyn_cast_or_null<NamespaceDecl>(DC); 4178 if (!DC->isInlineNamespace() && !DC->isTransparentContext() && 4179 !(ND && ND->isAnonymousNamespace())) 4180 Chain.push_back(DC->getPrimaryContext()); 4181 } 4182 return Chain; 4183 } 4184 4185 unsigned 4186 TypoCorrectionConsumer::NamespaceSpecifierSet::buildNestedNameSpecifier( 4187 DeclContextList &DeclChain, NestedNameSpecifier *&NNS) { 4188 unsigned NumSpecifiers = 0; 4189 for (DeclContext *C : llvm::reverse(DeclChain)) { 4190 if (auto *ND = dyn_cast_or_null<NamespaceDecl>(C)) { 4191 NNS = NestedNameSpecifier::Create(Context, NNS, ND); 4192 ++NumSpecifiers; 4193 } else if (auto *RD = dyn_cast_or_null<RecordDecl>(C)) { 4194 NNS = NestedNameSpecifier::Create(Context, NNS, RD->isTemplateDecl(), 4195 RD->getTypeForDecl()); 4196 ++NumSpecifiers; 4197 } 4198 } 4199 return NumSpecifiers; 4200 } 4201 4202 void TypoCorrectionConsumer::NamespaceSpecifierSet::addNameSpecifier( 4203 DeclContext *Ctx) { 4204 NestedNameSpecifier *NNS = nullptr; 4205 unsigned NumSpecifiers = 0; 4206 DeclContextList NamespaceDeclChain(buildContextChain(Ctx)); 4207 DeclContextList FullNamespaceDeclChain(NamespaceDeclChain); 4208 4209 // Eliminate common elements from the two DeclContext chains. 4210 for (DeclContext *C : llvm::reverse(CurContextChain)) { 4211 if (NamespaceDeclChain.empty() || NamespaceDeclChain.back() != C) 4212 break; 4213 NamespaceDeclChain.pop_back(); 4214 } 4215 4216 // Build the NestedNameSpecifier from what is left of the NamespaceDeclChain 4217 NumSpecifiers = buildNestedNameSpecifier(NamespaceDeclChain, NNS); 4218 4219 // Add an explicit leading '::' specifier if needed. 4220 if (NamespaceDeclChain.empty()) { 4221 // Rebuild the NestedNameSpecifier as a globally-qualified specifier. 4222 NNS = NestedNameSpecifier::GlobalSpecifier(Context); 4223 NumSpecifiers = 4224 buildNestedNameSpecifier(FullNamespaceDeclChain, NNS); 4225 } else if (NamedDecl *ND = 4226 dyn_cast_or_null<NamedDecl>(NamespaceDeclChain.back())) { 4227 IdentifierInfo *Name = ND->getIdentifier(); 4228 bool SameNameSpecifier = false; 4229 if (std::find(CurNameSpecifierIdentifiers.begin(), 4230 CurNameSpecifierIdentifiers.end(), 4231 Name) != CurNameSpecifierIdentifiers.end()) { 4232 std::string NewNameSpecifier; 4233 llvm::raw_string_ostream SpecifierOStream(NewNameSpecifier); 4234 SmallVector<const IdentifierInfo *, 4> NewNameSpecifierIdentifiers; 4235 getNestedNameSpecifierIdentifiers(NNS, NewNameSpecifierIdentifiers); 4236 NNS->print(SpecifierOStream, Context.getPrintingPolicy()); 4237 SpecifierOStream.flush(); 4238 SameNameSpecifier = NewNameSpecifier == CurNameSpecifier; 4239 } 4240 if (SameNameSpecifier || 4241 std::find(CurContextIdentifiers.begin(), CurContextIdentifiers.end(), 4242 Name) != CurContextIdentifiers.end()) { 4243 // Rebuild the NestedNameSpecifier as a globally-qualified specifier. 4244 NNS = NestedNameSpecifier::GlobalSpecifier(Context); 4245 NumSpecifiers = 4246 buildNestedNameSpecifier(FullNamespaceDeclChain, NNS); 4247 } 4248 } 4249 4250 // If the built NestedNameSpecifier would be replacing an existing 4251 // NestedNameSpecifier, use the number of component identifiers that 4252 // would need to be changed as the edit distance instead of the number 4253 // of components in the built NestedNameSpecifier. 4254 if (NNS && !CurNameSpecifierIdentifiers.empty()) { 4255 SmallVector<const IdentifierInfo*, 4> NewNameSpecifierIdentifiers; 4256 getNestedNameSpecifierIdentifiers(NNS, NewNameSpecifierIdentifiers); 4257 NumSpecifiers = llvm::ComputeEditDistance( 4258 llvm::makeArrayRef(CurNameSpecifierIdentifiers), 4259 llvm::makeArrayRef(NewNameSpecifierIdentifiers)); 4260 } 4261 4262 SpecifierInfo SI = {Ctx, NNS, NumSpecifiers}; 4263 DistanceMap[NumSpecifiers].push_back(SI); 4264 } 4265 4266 /// \brief Perform name lookup for a possible result for typo correction. 4267 static void LookupPotentialTypoResult(Sema &SemaRef, 4268 LookupResult &Res, 4269 IdentifierInfo *Name, 4270 Scope *S, CXXScopeSpec *SS, 4271 DeclContext *MemberContext, 4272 bool EnteringContext, 4273 bool isObjCIvarLookup, 4274 bool FindHidden) { 4275 Res.suppressDiagnostics(); 4276 Res.clear(); 4277 Res.setLookupName(Name); 4278 Res.setAllowHidden(FindHidden); 4279 if (MemberContext) { 4280 if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(MemberContext)) { 4281 if (isObjCIvarLookup) { 4282 if (ObjCIvarDecl *Ivar = Class->lookupInstanceVariable(Name)) { 4283 Res.addDecl(Ivar); 4284 Res.resolveKind(); 4285 return; 4286 } 4287 } 4288 4289 if (ObjCPropertyDecl *Prop = Class->FindPropertyDeclaration( 4290 Name, ObjCPropertyQueryKind::OBJC_PR_query_instance)) { 4291 Res.addDecl(Prop); 4292 Res.resolveKind(); 4293 return; 4294 } 4295 } 4296 4297 SemaRef.LookupQualifiedName(Res, MemberContext); 4298 return; 4299 } 4300 4301 SemaRef.LookupParsedName(Res, S, SS, /*AllowBuiltinCreation=*/false, 4302 EnteringContext); 4303 4304 // Fake ivar lookup; this should really be part of 4305 // LookupParsedName. 4306 if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl()) { 4307 if (Method->isInstanceMethod() && Method->getClassInterface() && 4308 (Res.empty() || 4309 (Res.isSingleResult() && 4310 Res.getFoundDecl()->isDefinedOutsideFunctionOrMethod()))) { 4311 if (ObjCIvarDecl *IV 4312 = Method->getClassInterface()->lookupInstanceVariable(Name)) { 4313 Res.addDecl(IV); 4314 Res.resolveKind(); 4315 } 4316 } 4317 } 4318 } 4319 4320 /// \brief Add keywords to the consumer as possible typo corrections. 4321 static void AddKeywordsToConsumer(Sema &SemaRef, 4322 TypoCorrectionConsumer &Consumer, 4323 Scope *S, CorrectionCandidateCallback &CCC, 4324 bool AfterNestedNameSpecifier) { 4325 if (AfterNestedNameSpecifier) { 4326 // For 'X::', we know exactly which keywords can appear next. 4327 Consumer.addKeywordResult("template"); 4328 if (CCC.WantExpressionKeywords) 4329 Consumer.addKeywordResult("operator"); 4330 return; 4331 } 4332 4333 if (CCC.WantObjCSuper) 4334 Consumer.addKeywordResult("super"); 4335 4336 if (CCC.WantTypeSpecifiers) { 4337 // Add type-specifier keywords to the set of results. 4338 static const char *const CTypeSpecs[] = { 4339 "char", "const", "double", "enum", "float", "int", "long", "short", 4340 "signed", "struct", "union", "unsigned", "void", "volatile", 4341 "_Complex", "_Imaginary", 4342 // storage-specifiers as well 4343 "extern", "inline", "static", "typedef" 4344 }; 4345 4346 const unsigned NumCTypeSpecs = llvm::array_lengthof(CTypeSpecs); 4347 for (unsigned I = 0; I != NumCTypeSpecs; ++I) 4348 Consumer.addKeywordResult(CTypeSpecs[I]); 4349 4350 if (SemaRef.getLangOpts().C99) 4351 Consumer.addKeywordResult("restrict"); 4352 if (SemaRef.getLangOpts().Bool || SemaRef.getLangOpts().CPlusPlus) 4353 Consumer.addKeywordResult("bool"); 4354 else if (SemaRef.getLangOpts().C99) 4355 Consumer.addKeywordResult("_Bool"); 4356 4357 if (SemaRef.getLangOpts().CPlusPlus) { 4358 Consumer.addKeywordResult("class"); 4359 Consumer.addKeywordResult("typename"); 4360 Consumer.addKeywordResult("wchar_t"); 4361 4362 if (SemaRef.getLangOpts().CPlusPlus11) { 4363 Consumer.addKeywordResult("char16_t"); 4364 Consumer.addKeywordResult("char32_t"); 4365 Consumer.addKeywordResult("constexpr"); 4366 Consumer.addKeywordResult("decltype"); 4367 Consumer.addKeywordResult("thread_local"); 4368 } 4369 } 4370 4371 if (SemaRef.getLangOpts().GNUMode) 4372 Consumer.addKeywordResult("typeof"); 4373 } else if (CCC.WantFunctionLikeCasts) { 4374 static const char *const CastableTypeSpecs[] = { 4375 "char", "double", "float", "int", "long", "short", 4376 "signed", "unsigned", "void" 4377 }; 4378 for (auto *kw : CastableTypeSpecs) 4379 Consumer.addKeywordResult(kw); 4380 } 4381 4382 if (CCC.WantCXXNamedCasts && SemaRef.getLangOpts().CPlusPlus) { 4383 Consumer.addKeywordResult("const_cast"); 4384 Consumer.addKeywordResult("dynamic_cast"); 4385 Consumer.addKeywordResult("reinterpret_cast"); 4386 Consumer.addKeywordResult("static_cast"); 4387 } 4388 4389 if (CCC.WantExpressionKeywords) { 4390 Consumer.addKeywordResult("sizeof"); 4391 if (SemaRef.getLangOpts().Bool || SemaRef.getLangOpts().CPlusPlus) { 4392 Consumer.addKeywordResult("false"); 4393 Consumer.addKeywordResult("true"); 4394 } 4395 4396 if (SemaRef.getLangOpts().CPlusPlus) { 4397 static const char *const CXXExprs[] = { 4398 "delete", "new", "operator", "throw", "typeid" 4399 }; 4400 const unsigned NumCXXExprs = llvm::array_lengthof(CXXExprs); 4401 for (unsigned I = 0; I != NumCXXExprs; ++I) 4402 Consumer.addKeywordResult(CXXExprs[I]); 4403 4404 if (isa<CXXMethodDecl>(SemaRef.CurContext) && 4405 cast<CXXMethodDecl>(SemaRef.CurContext)->isInstance()) 4406 Consumer.addKeywordResult("this"); 4407 4408 if (SemaRef.getLangOpts().CPlusPlus11) { 4409 Consumer.addKeywordResult("alignof"); 4410 Consumer.addKeywordResult("nullptr"); 4411 } 4412 } 4413 4414 if (SemaRef.getLangOpts().C11) { 4415 // FIXME: We should not suggest _Alignof if the alignof macro 4416 // is present. 4417 Consumer.addKeywordResult("_Alignof"); 4418 } 4419 } 4420 4421 if (CCC.WantRemainingKeywords) { 4422 if (SemaRef.getCurFunctionOrMethodDecl() || SemaRef.getCurBlock()) { 4423 // Statements. 4424 static const char *const CStmts[] = { 4425 "do", "else", "for", "goto", "if", "return", "switch", "while" }; 4426 const unsigned NumCStmts = llvm::array_lengthof(CStmts); 4427 for (unsigned I = 0; I != NumCStmts; ++I) 4428 Consumer.addKeywordResult(CStmts[I]); 4429 4430 if (SemaRef.getLangOpts().CPlusPlus) { 4431 Consumer.addKeywordResult("catch"); 4432 Consumer.addKeywordResult("try"); 4433 } 4434 4435 if (S && S->getBreakParent()) 4436 Consumer.addKeywordResult("break"); 4437 4438 if (S && S->getContinueParent()) 4439 Consumer.addKeywordResult("continue"); 4440 4441 if (!SemaRef.getCurFunction()->SwitchStack.empty()) { 4442 Consumer.addKeywordResult("case"); 4443 Consumer.addKeywordResult("default"); 4444 } 4445 } else { 4446 if (SemaRef.getLangOpts().CPlusPlus) { 4447 Consumer.addKeywordResult("namespace"); 4448 Consumer.addKeywordResult("template"); 4449 } 4450 4451 if (S && S->isClassScope()) { 4452 Consumer.addKeywordResult("explicit"); 4453 Consumer.addKeywordResult("friend"); 4454 Consumer.addKeywordResult("mutable"); 4455 Consumer.addKeywordResult("private"); 4456 Consumer.addKeywordResult("protected"); 4457 Consumer.addKeywordResult("public"); 4458 Consumer.addKeywordResult("virtual"); 4459 } 4460 } 4461 4462 if (SemaRef.getLangOpts().CPlusPlus) { 4463 Consumer.addKeywordResult("using"); 4464 4465 if (SemaRef.getLangOpts().CPlusPlus11) 4466 Consumer.addKeywordResult("static_assert"); 4467 } 4468 } 4469 } 4470 4471 std::unique_ptr<TypoCorrectionConsumer> Sema::makeTypoCorrectionConsumer( 4472 const DeclarationNameInfo &TypoName, Sema::LookupNameKind LookupKind, 4473 Scope *S, CXXScopeSpec *SS, 4474 std::unique_ptr<CorrectionCandidateCallback> CCC, 4475 DeclContext *MemberContext, bool EnteringContext, 4476 const ObjCObjectPointerType *OPT, bool ErrorRecovery) { 4477 4478 if (Diags.hasFatalErrorOccurred() || !getLangOpts().SpellChecking || 4479 DisableTypoCorrection) 4480 return nullptr; 4481 4482 // In Microsoft mode, don't perform typo correction in a template member 4483 // function dependent context because it interferes with the "lookup into 4484 // dependent bases of class templates" feature. 4485 if (getLangOpts().MSVCCompat && CurContext->isDependentContext() && 4486 isa<CXXMethodDecl>(CurContext)) 4487 return nullptr; 4488 4489 // We only attempt to correct typos for identifiers. 4490 IdentifierInfo *Typo = TypoName.getName().getAsIdentifierInfo(); 4491 if (!Typo) 4492 return nullptr; 4493 4494 // If the scope specifier itself was invalid, don't try to correct 4495 // typos. 4496 if (SS && SS->isInvalid()) 4497 return nullptr; 4498 4499 // Never try to correct typos during template deduction or 4500 // instantiation. 4501 if (!ActiveTemplateInstantiations.empty()) 4502 return nullptr; 4503 4504 // Don't try to correct 'super'. 4505 if (S && S->isInObjcMethodScope() && Typo == getSuperIdentifier()) 4506 return nullptr; 4507 4508 // Abort if typo correction already failed for this specific typo. 4509 IdentifierSourceLocations::iterator locs = TypoCorrectionFailures.find(Typo); 4510 if (locs != TypoCorrectionFailures.end() && 4511 locs->second.count(TypoName.getLoc())) 4512 return nullptr; 4513 4514 // Don't try to correct the identifier "vector" when in AltiVec mode. 4515 // TODO: Figure out why typo correction misbehaves in this case, fix it, and 4516 // remove this workaround. 4517 if ((getLangOpts().AltiVec || getLangOpts().ZVector) && Typo->isStr("vector")) 4518 return nullptr; 4519 4520 // Provide a stop gap for files that are just seriously broken. Trying 4521 // to correct all typos can turn into a HUGE performance penalty, causing 4522 // some files to take minutes to get rejected by the parser. 4523 unsigned Limit = getDiagnostics().getDiagnosticOptions().SpellCheckingLimit; 4524 if (Limit && TyposCorrected >= Limit) 4525 return nullptr; 4526 ++TyposCorrected; 4527 4528 // If we're handling a missing symbol error, using modules, and the 4529 // special search all modules option is used, look for a missing import. 4530 if (ErrorRecovery && getLangOpts().Modules && 4531 getLangOpts().ModulesSearchAll) { 4532 // The following has the side effect of loading the missing module. 4533 getModuleLoader().lookupMissingImports(Typo->getName(), 4534 TypoName.getLocStart()); 4535 } 4536 4537 CorrectionCandidateCallback &CCCRef = *CCC; 4538 auto Consumer = llvm::make_unique<TypoCorrectionConsumer>( 4539 *this, TypoName, LookupKind, S, SS, std::move(CCC), MemberContext, 4540 EnteringContext); 4541 4542 // Perform name lookup to find visible, similarly-named entities. 4543 bool IsUnqualifiedLookup = false; 4544 DeclContext *QualifiedDC = MemberContext; 4545 if (MemberContext) { 4546 LookupVisibleDecls(MemberContext, LookupKind, *Consumer); 4547 4548 // Look in qualified interfaces. 4549 if (OPT) { 4550 for (auto *I : OPT->quals()) 4551 LookupVisibleDecls(I, LookupKind, *Consumer); 4552 } 4553 } else if (SS && SS->isSet()) { 4554 QualifiedDC = computeDeclContext(*SS, EnteringContext); 4555 if (!QualifiedDC) 4556 return nullptr; 4557 4558 LookupVisibleDecls(QualifiedDC, LookupKind, *Consumer); 4559 } else { 4560 IsUnqualifiedLookup = true; 4561 } 4562 4563 // Determine whether we are going to search in the various namespaces for 4564 // corrections. 4565 bool SearchNamespaces 4566 = getLangOpts().CPlusPlus && 4567 (IsUnqualifiedLookup || (SS && SS->isSet())); 4568 4569 if (IsUnqualifiedLookup || SearchNamespaces) { 4570 // For unqualified lookup, look through all of the names that we have 4571 // seen in this translation unit. 4572 // FIXME: Re-add the ability to skip very unlikely potential corrections. 4573 for (const auto &I : Context.Idents) 4574 Consumer->FoundName(I.getKey()); 4575 4576 // Walk through identifiers in external identifier sources. 4577 // FIXME: Re-add the ability to skip very unlikely potential corrections. 4578 if (IdentifierInfoLookup *External 4579 = Context.Idents.getExternalIdentifierLookup()) { 4580 std::unique_ptr<IdentifierIterator> Iter(External->getIdentifiers()); 4581 do { 4582 StringRef Name = Iter->Next(); 4583 if (Name.empty()) 4584 break; 4585 4586 Consumer->FoundName(Name); 4587 } while (true); 4588 } 4589 } 4590 4591 AddKeywordsToConsumer(*this, *Consumer, S, CCCRef, SS && SS->isNotEmpty()); 4592 4593 // Build the NestedNameSpecifiers for the KnownNamespaces, if we're going 4594 // to search those namespaces. 4595 if (SearchNamespaces) { 4596 // Load any externally-known namespaces. 4597 if (ExternalSource && !LoadedExternalKnownNamespaces) { 4598 SmallVector<NamespaceDecl *, 4> ExternalKnownNamespaces; 4599 LoadedExternalKnownNamespaces = true; 4600 ExternalSource->ReadKnownNamespaces(ExternalKnownNamespaces); 4601 for (auto *N : ExternalKnownNamespaces) 4602 KnownNamespaces[N] = true; 4603 } 4604 4605 Consumer->addNamespaces(KnownNamespaces); 4606 } 4607 4608 return Consumer; 4609 } 4610 4611 /// \brief Try to "correct" a typo in the source code by finding 4612 /// visible declarations whose names are similar to the name that was 4613 /// present in the source code. 4614 /// 4615 /// \param TypoName the \c DeclarationNameInfo structure that contains 4616 /// the name that was present in the source code along with its location. 4617 /// 4618 /// \param LookupKind the name-lookup criteria used to search for the name. 4619 /// 4620 /// \param S the scope in which name lookup occurs. 4621 /// 4622 /// \param SS the nested-name-specifier that precedes the name we're 4623 /// looking for, if present. 4624 /// 4625 /// \param CCC A CorrectionCandidateCallback object that provides further 4626 /// validation of typo correction candidates. It also provides flags for 4627 /// determining the set of keywords permitted. 4628 /// 4629 /// \param MemberContext if non-NULL, the context in which to look for 4630 /// a member access expression. 4631 /// 4632 /// \param EnteringContext whether we're entering the context described by 4633 /// the nested-name-specifier SS. 4634 /// 4635 /// \param OPT when non-NULL, the search for visible declarations will 4636 /// also walk the protocols in the qualified interfaces of \p OPT. 4637 /// 4638 /// \returns a \c TypoCorrection containing the corrected name if the typo 4639 /// along with information such as the \c NamedDecl where the corrected name 4640 /// was declared, and any additional \c NestedNameSpecifier needed to access 4641 /// it (C++ only). The \c TypoCorrection is empty if there is no correction. 4642 TypoCorrection Sema::CorrectTypo(const DeclarationNameInfo &TypoName, 4643 Sema::LookupNameKind LookupKind, 4644 Scope *S, CXXScopeSpec *SS, 4645 std::unique_ptr<CorrectionCandidateCallback> CCC, 4646 CorrectTypoKind Mode, 4647 DeclContext *MemberContext, 4648 bool EnteringContext, 4649 const ObjCObjectPointerType *OPT, 4650 bool RecordFailure) { 4651 assert(CCC && "CorrectTypo requires a CorrectionCandidateCallback"); 4652 4653 // Always let the ExternalSource have the first chance at correction, even 4654 // if we would otherwise have given up. 4655 if (ExternalSource) { 4656 if (TypoCorrection Correction = ExternalSource->CorrectTypo( 4657 TypoName, LookupKind, S, SS, *CCC, MemberContext, EnteringContext, OPT)) 4658 return Correction; 4659 } 4660 4661 // Ugly hack equivalent to CTC == CTC_ObjCMessageReceiver; 4662 // WantObjCSuper is only true for CTC_ObjCMessageReceiver and for 4663 // some instances of CTC_Unknown, while WantRemainingKeywords is true 4664 // for CTC_Unknown but not for CTC_ObjCMessageReceiver. 4665 bool ObjCMessageReceiver = CCC->WantObjCSuper && !CCC->WantRemainingKeywords; 4666 4667 IdentifierInfo *Typo = TypoName.getName().getAsIdentifierInfo(); 4668 auto Consumer = makeTypoCorrectionConsumer( 4669 TypoName, LookupKind, S, SS, std::move(CCC), MemberContext, 4670 EnteringContext, OPT, Mode == CTK_ErrorRecovery); 4671 4672 if (!Consumer) 4673 return TypoCorrection(); 4674 4675 // If we haven't found anything, we're done. 4676 if (Consumer->empty()) 4677 return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure); 4678 4679 // Make sure the best edit distance (prior to adding any namespace qualifiers) 4680 // is not more that about a third of the length of the typo's identifier. 4681 unsigned ED = Consumer->getBestEditDistance(true); 4682 unsigned TypoLen = Typo->getName().size(); 4683 if (ED > 0 && TypoLen / ED < 3) 4684 return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure); 4685 4686 TypoCorrection BestTC = Consumer->getNextCorrection(); 4687 TypoCorrection SecondBestTC = Consumer->getNextCorrection(); 4688 if (!BestTC) 4689 return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure); 4690 4691 ED = BestTC.getEditDistance(); 4692 4693 if (TypoLen >= 3 && ED > 0 && TypoLen / ED < 3) { 4694 // If this was an unqualified lookup and we believe the callback 4695 // object wouldn't have filtered out possible corrections, note 4696 // that no correction was found. 4697 return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure); 4698 } 4699 4700 // If only a single name remains, return that result. 4701 if (!SecondBestTC || 4702 SecondBestTC.getEditDistance(false) > BestTC.getEditDistance(false)) { 4703 const TypoCorrection &Result = BestTC; 4704 4705 // Don't correct to a keyword that's the same as the typo; the keyword 4706 // wasn't actually in scope. 4707 if (ED == 0 && Result.isKeyword()) 4708 return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure); 4709 4710 TypoCorrection TC = Result; 4711 TC.setCorrectionRange(SS, TypoName); 4712 checkCorrectionVisibility(*this, TC); 4713 return TC; 4714 } else if (SecondBestTC && ObjCMessageReceiver) { 4715 // Prefer 'super' when we're completing in a message-receiver 4716 // context. 4717 4718 if (BestTC.getCorrection().getAsString() != "super") { 4719 if (SecondBestTC.getCorrection().getAsString() == "super") 4720 BestTC = SecondBestTC; 4721 else if ((*Consumer)["super"].front().isKeyword()) 4722 BestTC = (*Consumer)["super"].front(); 4723 } 4724 // Don't correct to a keyword that's the same as the typo; the keyword 4725 // wasn't actually in scope. 4726 if (BestTC.getEditDistance() == 0 || 4727 BestTC.getCorrection().getAsString() != "super") 4728 return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure); 4729 4730 BestTC.setCorrectionRange(SS, TypoName); 4731 return BestTC; 4732 } 4733 4734 // Record the failure's location if needed and return an empty correction. If 4735 // this was an unqualified lookup and we believe the callback object did not 4736 // filter out possible corrections, also cache the failure for the typo. 4737 return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure && !SecondBestTC); 4738 } 4739 4740 /// \brief Try to "correct" a typo in the source code by finding 4741 /// visible declarations whose names are similar to the name that was 4742 /// present in the source code. 4743 /// 4744 /// \param TypoName the \c DeclarationNameInfo structure that contains 4745 /// the name that was present in the source code along with its location. 4746 /// 4747 /// \param LookupKind the name-lookup criteria used to search for the name. 4748 /// 4749 /// \param S the scope in which name lookup occurs. 4750 /// 4751 /// \param SS the nested-name-specifier that precedes the name we're 4752 /// looking for, if present. 4753 /// 4754 /// \param CCC A CorrectionCandidateCallback object that provides further 4755 /// validation of typo correction candidates. It also provides flags for 4756 /// determining the set of keywords permitted. 4757 /// 4758 /// \param TDG A TypoDiagnosticGenerator functor that will be used to print 4759 /// diagnostics when the actual typo correction is attempted. 4760 /// 4761 /// \param TRC A TypoRecoveryCallback functor that will be used to build an 4762 /// Expr from a typo correction candidate. 4763 /// 4764 /// \param MemberContext if non-NULL, the context in which to look for 4765 /// a member access expression. 4766 /// 4767 /// \param EnteringContext whether we're entering the context described by 4768 /// the nested-name-specifier SS. 4769 /// 4770 /// \param OPT when non-NULL, the search for visible declarations will 4771 /// also walk the protocols in the qualified interfaces of \p OPT. 4772 /// 4773 /// \returns a new \c TypoExpr that will later be replaced in the AST with an 4774 /// Expr representing the result of performing typo correction, or nullptr if 4775 /// typo correction is not possible. If nullptr is returned, no diagnostics will 4776 /// be emitted and it is the responsibility of the caller to emit any that are 4777 /// needed. 4778 TypoExpr *Sema::CorrectTypoDelayed( 4779 const DeclarationNameInfo &TypoName, Sema::LookupNameKind LookupKind, 4780 Scope *S, CXXScopeSpec *SS, 4781 std::unique_ptr<CorrectionCandidateCallback> CCC, 4782 TypoDiagnosticGenerator TDG, TypoRecoveryCallback TRC, CorrectTypoKind Mode, 4783 DeclContext *MemberContext, bool EnteringContext, 4784 const ObjCObjectPointerType *OPT) { 4785 assert(CCC && "CorrectTypoDelayed requires a CorrectionCandidateCallback"); 4786 4787 auto Consumer = makeTypoCorrectionConsumer( 4788 TypoName, LookupKind, S, SS, std::move(CCC), MemberContext, 4789 EnteringContext, OPT, Mode == CTK_ErrorRecovery); 4790 4791 // Give the external sema source a chance to correct the typo. 4792 TypoCorrection ExternalTypo; 4793 if (ExternalSource && Consumer) { 4794 ExternalTypo = ExternalSource->CorrectTypo( 4795 TypoName, LookupKind, S, SS, *Consumer->getCorrectionValidator(), 4796 MemberContext, EnteringContext, OPT); 4797 if (ExternalTypo) 4798 Consumer->addCorrection(ExternalTypo); 4799 } 4800 4801 if (!Consumer || Consumer->empty()) 4802 return nullptr; 4803 4804 // Make sure the best edit distance (prior to adding any namespace qualifiers) 4805 // is not more that about a third of the length of the typo's identifier. 4806 unsigned ED = Consumer->getBestEditDistance(true); 4807 IdentifierInfo *Typo = TypoName.getName().getAsIdentifierInfo(); 4808 if (!ExternalTypo && ED > 0 && Typo->getName().size() / ED < 3) 4809 return nullptr; 4810 4811 ExprEvalContexts.back().NumTypos++; 4812 return createDelayedTypo(std::move(Consumer), std::move(TDG), std::move(TRC)); 4813 } 4814 4815 void TypoCorrection::addCorrectionDecl(NamedDecl *CDecl) { 4816 if (!CDecl) return; 4817 4818 if (isKeyword()) 4819 CorrectionDecls.clear(); 4820 4821 CorrectionDecls.push_back(CDecl); 4822 4823 if (!CorrectionName) 4824 CorrectionName = CDecl->getDeclName(); 4825 } 4826 4827 std::string TypoCorrection::getAsString(const LangOptions &LO) const { 4828 if (CorrectionNameSpec) { 4829 std::string tmpBuffer; 4830 llvm::raw_string_ostream PrefixOStream(tmpBuffer); 4831 CorrectionNameSpec->print(PrefixOStream, PrintingPolicy(LO)); 4832 PrefixOStream << CorrectionName; 4833 return PrefixOStream.str(); 4834 } 4835 4836 return CorrectionName.getAsString(); 4837 } 4838 4839 bool CorrectionCandidateCallback::ValidateCandidate( 4840 const TypoCorrection &candidate) { 4841 if (!candidate.isResolved()) 4842 return true; 4843 4844 if (candidate.isKeyword()) 4845 return WantTypeSpecifiers || WantExpressionKeywords || WantCXXNamedCasts || 4846 WantRemainingKeywords || WantObjCSuper; 4847 4848 bool HasNonType = false; 4849 bool HasStaticMethod = false; 4850 bool HasNonStaticMethod = false; 4851 for (Decl *D : candidate) { 4852 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(D)) 4853 D = FTD->getTemplatedDecl(); 4854 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { 4855 if (Method->isStatic()) 4856 HasStaticMethod = true; 4857 else 4858 HasNonStaticMethod = true; 4859 } 4860 if (!isa<TypeDecl>(D)) 4861 HasNonType = true; 4862 } 4863 4864 if (IsAddressOfOperand && HasNonStaticMethod && !HasStaticMethod && 4865 !candidate.getCorrectionSpecifier()) 4866 return false; 4867 4868 return WantTypeSpecifiers || HasNonType; 4869 } 4870 4871 FunctionCallFilterCCC::FunctionCallFilterCCC(Sema &SemaRef, unsigned NumArgs, 4872 bool HasExplicitTemplateArgs, 4873 MemberExpr *ME) 4874 : NumArgs(NumArgs), HasExplicitTemplateArgs(HasExplicitTemplateArgs), 4875 CurContext(SemaRef.CurContext), MemberFn(ME) { 4876 WantTypeSpecifiers = false; 4877 WantFunctionLikeCasts = SemaRef.getLangOpts().CPlusPlus && NumArgs == 1; 4878 WantRemainingKeywords = false; 4879 } 4880 4881 bool FunctionCallFilterCCC::ValidateCandidate(const TypoCorrection &candidate) { 4882 if (!candidate.getCorrectionDecl()) 4883 return candidate.isKeyword(); 4884 4885 for (auto *C : candidate) { 4886 FunctionDecl *FD = nullptr; 4887 NamedDecl *ND = C->getUnderlyingDecl(); 4888 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND)) 4889 FD = FTD->getTemplatedDecl(); 4890 if (!HasExplicitTemplateArgs && !FD) { 4891 if (!(FD = dyn_cast<FunctionDecl>(ND)) && isa<ValueDecl>(ND)) { 4892 // If the Decl is neither a function nor a template function, 4893 // determine if it is a pointer or reference to a function. If so, 4894 // check against the number of arguments expected for the pointee. 4895 QualType ValType = cast<ValueDecl>(ND)->getType(); 4896 if (ValType->isAnyPointerType() || ValType->isReferenceType()) 4897 ValType = ValType->getPointeeType(); 4898 if (const FunctionProtoType *FPT = ValType->getAs<FunctionProtoType>()) 4899 if (FPT->getNumParams() == NumArgs) 4900 return true; 4901 } 4902 } 4903 4904 // Skip the current candidate if it is not a FunctionDecl or does not accept 4905 // the current number of arguments. 4906 if (!FD || !(FD->getNumParams() >= NumArgs && 4907 FD->getMinRequiredArguments() <= NumArgs)) 4908 continue; 4909 4910 // If the current candidate is a non-static C++ method, skip the candidate 4911 // unless the method being corrected--or the current DeclContext, if the 4912 // function being corrected is not a method--is a method in the same class 4913 // or a descendent class of the candidate's parent class. 4914 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) { 4915 if (MemberFn || !MD->isStatic()) { 4916 CXXMethodDecl *CurMD = 4917 MemberFn 4918 ? dyn_cast_or_null<CXXMethodDecl>(MemberFn->getMemberDecl()) 4919 : dyn_cast_or_null<CXXMethodDecl>(CurContext); 4920 CXXRecordDecl *CurRD = 4921 CurMD ? CurMD->getParent()->getCanonicalDecl() : nullptr; 4922 CXXRecordDecl *RD = MD->getParent()->getCanonicalDecl(); 4923 if (!CurRD || (CurRD != RD && !CurRD->isDerivedFrom(RD))) 4924 continue; 4925 } 4926 } 4927 return true; 4928 } 4929 return false; 4930 } 4931 4932 void Sema::diagnoseTypo(const TypoCorrection &Correction, 4933 const PartialDiagnostic &TypoDiag, 4934 bool ErrorRecovery) { 4935 diagnoseTypo(Correction, TypoDiag, PDiag(diag::note_previous_decl), 4936 ErrorRecovery); 4937 } 4938 4939 /// Find which declaration we should import to provide the definition of 4940 /// the given declaration. 4941 static NamedDecl *getDefinitionToImport(NamedDecl *D) { 4942 if (VarDecl *VD = dyn_cast<VarDecl>(D)) 4943 return VD->getDefinition(); 4944 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) 4945 return FD->getDefinition(); 4946 if (TagDecl *TD = dyn_cast<TagDecl>(D)) 4947 return TD->getDefinition(); 4948 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D)) 4949 return ID->getDefinition(); 4950 if (ObjCProtocolDecl *PD = dyn_cast<ObjCProtocolDecl>(D)) 4951 return PD->getDefinition(); 4952 if (TemplateDecl *TD = dyn_cast<TemplateDecl>(D)) 4953 return getDefinitionToImport(TD->getTemplatedDecl()); 4954 return nullptr; 4955 } 4956 4957 void Sema::diagnoseMissingImport(SourceLocation Loc, NamedDecl *Decl, 4958 MissingImportKind MIK, bool Recover) { 4959 assert(!isVisible(Decl) && "missing import for non-hidden decl?"); 4960 4961 // Suggest importing a module providing the definition of this entity, if 4962 // possible. 4963 NamedDecl *Def = getDefinitionToImport(Decl); 4964 if (!Def) 4965 Def = Decl; 4966 4967 Module *Owner = getOwningModule(Decl); 4968 assert(Owner && "definition of hidden declaration is not in a module"); 4969 4970 llvm::SmallVector<Module*, 8> OwningModules; 4971 OwningModules.push_back(Owner); 4972 auto Merged = Context.getModulesWithMergedDefinition(Decl); 4973 OwningModules.insert(OwningModules.end(), Merged.begin(), Merged.end()); 4974 4975 diagnoseMissingImport(Loc, Decl, Decl->getLocation(), OwningModules, MIK, 4976 Recover); 4977 } 4978 4979 /// \brief Get a "quoted.h" or <angled.h> include path to use in a diagnostic 4980 /// suggesting the addition of a #include of the specified file. 4981 static std::string getIncludeStringForHeader(Preprocessor &PP, 4982 const FileEntry *E) { 4983 bool IsSystem; 4984 auto Path = 4985 PP.getHeaderSearchInfo().suggestPathToFileForDiagnostics(E, &IsSystem); 4986 return (IsSystem ? '<' : '"') + Path + (IsSystem ? '>' : '"'); 4987 } 4988 4989 void Sema::diagnoseMissingImport(SourceLocation UseLoc, NamedDecl *Decl, 4990 SourceLocation DeclLoc, 4991 ArrayRef<Module *> Modules, 4992 MissingImportKind MIK, bool Recover) { 4993 assert(!Modules.empty()); 4994 4995 if (Modules.size() > 1) { 4996 std::string ModuleList; 4997 unsigned N = 0; 4998 for (Module *M : Modules) { 4999 ModuleList += "\n "; 5000 if (++N == 5 && N != Modules.size()) { 5001 ModuleList += "[...]"; 5002 break; 5003 } 5004 ModuleList += M->getFullModuleName(); 5005 } 5006 5007 Diag(UseLoc, diag::err_module_unimported_use_multiple) 5008 << (int)MIK << Decl << ModuleList; 5009 } else if (const FileEntry *E = 5010 PP.getModuleHeaderToIncludeForDiagnostics(UseLoc, DeclLoc)) { 5011 // The right way to make the declaration visible is to include a header; 5012 // suggest doing so. 5013 // 5014 // FIXME: Find a smart place to suggest inserting a #include, and add 5015 // a FixItHint there. 5016 Diag(UseLoc, diag::err_module_unimported_use_header) 5017 << (int)MIK << Decl << Modules[0]->getFullModuleName() 5018 << getIncludeStringForHeader(PP, E); 5019 } else { 5020 // FIXME: Add a FixItHint that imports the corresponding module. 5021 Diag(UseLoc, diag::err_module_unimported_use) 5022 << (int)MIK << Decl << Modules[0]->getFullModuleName(); 5023 } 5024 5025 unsigned DiagID; 5026 switch (MIK) { 5027 case MissingImportKind::Declaration: 5028 DiagID = diag::note_previous_declaration; 5029 break; 5030 case MissingImportKind::Definition: 5031 DiagID = diag::note_previous_definition; 5032 break; 5033 case MissingImportKind::DefaultArgument: 5034 DiagID = diag::note_default_argument_declared_here; 5035 break; 5036 case MissingImportKind::ExplicitSpecialization: 5037 DiagID = diag::note_explicit_specialization_declared_here; 5038 break; 5039 case MissingImportKind::PartialSpecialization: 5040 DiagID = diag::note_partial_specialization_declared_here; 5041 break; 5042 } 5043 Diag(DeclLoc, DiagID); 5044 5045 // Try to recover by implicitly importing this module. 5046 if (Recover) 5047 createImplicitModuleImportForErrorRecovery(UseLoc, Modules[0]); 5048 } 5049 5050 /// \brief Diagnose a successfully-corrected typo. Separated from the correction 5051 /// itself to allow external validation of the result, etc. 5052 /// 5053 /// \param Correction The result of performing typo correction. 5054 /// \param TypoDiag The diagnostic to produce. This will have the corrected 5055 /// string added to it (and usually also a fixit). 5056 /// \param PrevNote A note to use when indicating the location of the entity to 5057 /// which we are correcting. Will have the correction string added to it. 5058 /// \param ErrorRecovery If \c true (the default), the caller is going to 5059 /// recover from the typo as if the corrected string had been typed. 5060 /// In this case, \c PDiag must be an error, and we will attach a fixit 5061 /// to it. 5062 void Sema::diagnoseTypo(const TypoCorrection &Correction, 5063 const PartialDiagnostic &TypoDiag, 5064 const PartialDiagnostic &PrevNote, 5065 bool ErrorRecovery) { 5066 std::string CorrectedStr = Correction.getAsString(getLangOpts()); 5067 std::string CorrectedQuotedStr = Correction.getQuoted(getLangOpts()); 5068 FixItHint FixTypo = FixItHint::CreateReplacement( 5069 Correction.getCorrectionRange(), CorrectedStr); 5070 5071 // Maybe we're just missing a module import. 5072 if (Correction.requiresImport()) { 5073 NamedDecl *Decl = Correction.getFoundDecl(); 5074 assert(Decl && "import required but no declaration to import"); 5075 5076 diagnoseMissingImport(Correction.getCorrectionRange().getBegin(), Decl, 5077 MissingImportKind::Declaration, ErrorRecovery); 5078 return; 5079 } 5080 5081 Diag(Correction.getCorrectionRange().getBegin(), TypoDiag) 5082 << CorrectedQuotedStr << (ErrorRecovery ? FixTypo : FixItHint()); 5083 5084 NamedDecl *ChosenDecl = 5085 Correction.isKeyword() ? nullptr : Correction.getFoundDecl(); 5086 if (PrevNote.getDiagID() && ChosenDecl) 5087 Diag(ChosenDecl->getLocation(), PrevNote) 5088 << CorrectedQuotedStr << (ErrorRecovery ? FixItHint() : FixTypo); 5089 5090 // Add any extra diagnostics. 5091 for (const PartialDiagnostic &PD : Correction.getExtraDiagnostics()) 5092 Diag(Correction.getCorrectionRange().getBegin(), PD); 5093 } 5094 5095 TypoExpr *Sema::createDelayedTypo(std::unique_ptr<TypoCorrectionConsumer> TCC, 5096 TypoDiagnosticGenerator TDG, 5097 TypoRecoveryCallback TRC) { 5098 assert(TCC && "createDelayedTypo requires a valid TypoCorrectionConsumer"); 5099 auto TE = new (Context) TypoExpr(Context.DependentTy); 5100 auto &State = DelayedTypos[TE]; 5101 State.Consumer = std::move(TCC); 5102 State.DiagHandler = std::move(TDG); 5103 State.RecoveryHandler = std::move(TRC); 5104 return TE; 5105 } 5106 5107 const Sema::TypoExprState &Sema::getTypoExprState(TypoExpr *TE) const { 5108 auto Entry = DelayedTypos.find(TE); 5109 assert(Entry != DelayedTypos.end() && 5110 "Failed to get the state for a TypoExpr!"); 5111 return Entry->second; 5112 } 5113 5114 void Sema::clearDelayedTypo(TypoExpr *TE) { 5115 DelayedTypos.erase(TE); 5116 } 5117 5118 void Sema::ActOnPragmaDump(Scope *S, SourceLocation IILoc, IdentifierInfo *II) { 5119 DeclarationNameInfo Name(II, IILoc); 5120 LookupResult R(*this, Name, LookupAnyName, Sema::NotForRedeclaration); 5121 R.suppressDiagnostics(); 5122 R.setHideTags(false); 5123 LookupName(R, S); 5124 R.dump(); 5125 } 5126