SemaCXXScopeSpec.cpp revision 9ab14541716928894821cf5d53d6b4c95ffdf3a3
1//===--- SemaCXXScopeSpec.cpp - Semantic Analysis for C++ scope specifiers-===// 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 C++ semantic analysis for scope specifiers. 11// 12//===----------------------------------------------------------------------===// 13 14#include "Sema.h" 15#include "Lookup.h" 16#include "clang/AST/ASTContext.h" 17#include "clang/AST/DeclTemplate.h" 18#include "clang/AST/ExprCXX.h" 19#include "clang/AST/NestedNameSpecifier.h" 20#include "clang/Basic/PartialDiagnostic.h" 21#include "clang/Parse/DeclSpec.h" 22#include "llvm/ADT/STLExtras.h" 23#include "llvm/Support/raw_ostream.h" 24using namespace clang; 25 26/// \brief Find the current instantiation that associated with the given type. 27static CXXRecordDecl * 28getCurrentInstantiationOf(ASTContext &Context, DeclContext *CurContext, 29 QualType T) { 30 if (T.isNull()) 31 return 0; 32 33 T = Context.getCanonicalType(T).getUnqualifiedType(); 34 35 for (DeclContext *Ctx = CurContext; Ctx; Ctx = Ctx->getLookupParent()) { 36 // If we've hit a namespace or the global scope, then the 37 // nested-name-specifier can't refer to the current instantiation. 38 if (Ctx->isFileContext()) 39 return 0; 40 41 // Skip non-class contexts. 42 CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx); 43 if (!Record) 44 continue; 45 46 // If this record type is not dependent, 47 if (!Record->isDependentType()) 48 return 0; 49 50 // C++ [temp.dep.type]p1: 51 // 52 // In the definition of a class template, a nested class of a 53 // class template, a member of a class template, or a member of a 54 // nested class of a class template, a name refers to the current 55 // instantiation if it is 56 // -- the injected-class-name (9) of the class template or 57 // nested class, 58 // -- in the definition of a primary class template, the name 59 // of the class template followed by the template argument 60 // list of the primary template (as described below) 61 // enclosed in <>, 62 // -- in the definition of a nested class of a class template, 63 // the name of the nested class referenced as a member of 64 // the current instantiation, or 65 // -- in the definition of a partial specialization, the name 66 // of the class template followed by the template argument 67 // list of the partial specialization enclosed in <>. If 68 // the nth template parameter is a parameter pack, the nth 69 // template argument is a pack expansion (14.6.3) whose 70 // pattern is the name of the parameter pack. 71 // (FIXME: parameter packs) 72 // 73 // All of these options come down to having the 74 // nested-name-specifier type that is equivalent to the 75 // injected-class-name of one of the types that is currently in 76 // our context. 77 if (Context.getCanonicalType(Context.getTypeDeclType(Record)) == T) 78 return Record; 79 } 80 81 return 0; 82} 83 84/// \brief Compute the DeclContext that is associated with the given type. 85/// 86/// \param T the type for which we are attempting to find a DeclContext. 87/// 88/// \returns the declaration context represented by the type T, 89/// or NULL if the declaration context cannot be computed (e.g., because it is 90/// dependent and not the current instantiation). 91DeclContext *Sema::computeDeclContext(QualType T) { 92 if (const TagType *Tag = T->getAs<TagType>()) 93 return Tag->getDecl(); 94 95 return ::getCurrentInstantiationOf(Context, CurContext, T); 96} 97 98/// \brief Compute the DeclContext that is associated with the given 99/// scope specifier. 100/// 101/// \param SS the C++ scope specifier as it appears in the source 102/// 103/// \param EnteringContext when true, we will be entering the context of 104/// this scope specifier, so we can retrieve the declaration context of a 105/// class template or class template partial specialization even if it is 106/// not the current instantiation. 107/// 108/// \returns the declaration context represented by the scope specifier @p SS, 109/// or NULL if the declaration context cannot be computed (e.g., because it is 110/// dependent and not the current instantiation). 111DeclContext *Sema::computeDeclContext(const CXXScopeSpec &SS, 112 bool EnteringContext) { 113 if (!SS.isSet() || SS.isInvalid()) 114 return 0; 115 116 NestedNameSpecifier *NNS 117 = static_cast<NestedNameSpecifier *>(SS.getScopeRep()); 118 if (NNS->isDependent()) { 119 // If this nested-name-specifier refers to the current 120 // instantiation, return its DeclContext. 121 if (CXXRecordDecl *Record = getCurrentInstantiationOf(NNS)) 122 return Record; 123 124 if (EnteringContext) { 125 const Type *NNSType = NNS->getAsType(); 126 if (!NNSType) { 127 // do nothing, fall out 128 } else if (const TemplateSpecializationType *SpecType 129 = NNSType->getAs<TemplateSpecializationType>()) { 130 // We are entering the context of the nested name specifier, so try to 131 // match the nested name specifier to either a primary class template 132 // or a class template partial specialization. 133 if (ClassTemplateDecl *ClassTemplate 134 = dyn_cast_or_null<ClassTemplateDecl>( 135 SpecType->getTemplateName().getAsTemplateDecl())) { 136 QualType ContextType 137 = Context.getCanonicalType(QualType(SpecType, 0)); 138 139 // If the type of the nested name specifier is the same as the 140 // injected class name of the named class template, we're entering 141 // into that class template definition. 142 QualType Injected 143 = ClassTemplate->getInjectedClassNameSpecialization(Context); 144 if (Context.hasSameType(Injected, ContextType)) 145 return ClassTemplate->getTemplatedDecl(); 146 147 // If the type of the nested name specifier is the same as the 148 // type of one of the class template's class template partial 149 // specializations, we're entering into the definition of that 150 // class template partial specialization. 151 if (ClassTemplatePartialSpecializationDecl *PartialSpec 152 = ClassTemplate->findPartialSpecialization(ContextType)) 153 return PartialSpec; 154 } 155 } else if (const RecordType *RecordT = NNSType->getAs<RecordType>()) { 156 // The nested name specifier refers to a member of a class template. 157 return RecordT->getDecl(); 158 } 159 } 160 161 return 0; 162 } 163 164 switch (NNS->getKind()) { 165 case NestedNameSpecifier::Identifier: 166 assert(false && "Dependent nested-name-specifier has no DeclContext"); 167 break; 168 169 case NestedNameSpecifier::Namespace: 170 return NNS->getAsNamespace(); 171 172 case NestedNameSpecifier::TypeSpec: 173 case NestedNameSpecifier::TypeSpecWithTemplate: { 174 const TagType *Tag = NNS->getAsType()->getAs<TagType>(); 175 assert(Tag && "Non-tag type in nested-name-specifier"); 176 return Tag->getDecl(); 177 } break; 178 179 case NestedNameSpecifier::Global: 180 return Context.getTranslationUnitDecl(); 181 } 182 183 // Required to silence a GCC warning. 184 return 0; 185} 186 187bool Sema::isDependentScopeSpecifier(const CXXScopeSpec &SS) { 188 if (!SS.isSet() || SS.isInvalid()) 189 return false; 190 191 NestedNameSpecifier *NNS 192 = static_cast<NestedNameSpecifier *>(SS.getScopeRep()); 193 return NNS->isDependent(); 194} 195 196// \brief Determine whether this C++ scope specifier refers to an 197// unknown specialization, i.e., a dependent type that is not the 198// current instantiation. 199bool Sema::isUnknownSpecialization(const CXXScopeSpec &SS) { 200 if (!isDependentScopeSpecifier(SS)) 201 return false; 202 203 NestedNameSpecifier *NNS 204 = static_cast<NestedNameSpecifier *>(SS.getScopeRep()); 205 return getCurrentInstantiationOf(NNS) == 0; 206} 207 208/// \brief If the given nested name specifier refers to the current 209/// instantiation, return the declaration that corresponds to that 210/// current instantiation (C++0x [temp.dep.type]p1). 211/// 212/// \param NNS a dependent nested name specifier. 213CXXRecordDecl *Sema::getCurrentInstantiationOf(NestedNameSpecifier *NNS) { 214 assert(getLangOptions().CPlusPlus && "Only callable in C++"); 215 assert(NNS->isDependent() && "Only dependent nested-name-specifier allowed"); 216 217 if (!NNS->getAsType()) 218 return 0; 219 220 QualType T = QualType(NNS->getAsType(), 0); 221 return ::getCurrentInstantiationOf(Context, CurContext, T); 222} 223 224/// \brief Require that the context specified by SS be complete. 225/// 226/// If SS refers to a type, this routine checks whether the type is 227/// complete enough (or can be made complete enough) for name lookup 228/// into the DeclContext. A type that is not yet completed can be 229/// considered "complete enough" if it is a class/struct/union/enum 230/// that is currently being defined. Or, if we have a type that names 231/// a class template specialization that is not a complete type, we 232/// will attempt to instantiate that class template. 233bool Sema::RequireCompleteDeclContext(CXXScopeSpec &SS) { 234 if (!SS.isSet() || SS.isInvalid()) 235 return false; 236 237 DeclContext *DC = computeDeclContext(SS, true); 238 if (TagDecl *Tag = dyn_cast<TagDecl>(DC)) { 239 // If this is a dependent type, then we consider it complete. 240 if (Tag->isDependentContext()) 241 return false; 242 243 // If we're currently defining this type, then lookup into the 244 // type is okay: don't complain that it isn't complete yet. 245 const TagType *TagT = Context.getTypeDeclType(Tag)->getAs<TagType>(); 246 if (TagT && TagT->isBeingDefined()) 247 return false; 248 249 // The type must be complete. 250 if (RequireCompleteType(SS.getRange().getBegin(), 251 Context.getTypeDeclType(Tag), 252 PDiag(diag::err_incomplete_nested_name_spec) 253 << SS.getRange())) { 254 SS.setScopeRep(0); // Mark the ScopeSpec invalid. 255 return true; 256 } 257 } 258 259 return false; 260} 261 262/// ActOnCXXGlobalScopeSpecifier - Return the object that represents the 263/// global scope ('::'). 264Sema::CXXScopeTy *Sema::ActOnCXXGlobalScopeSpecifier(Scope *S, 265 SourceLocation CCLoc) { 266 return NestedNameSpecifier::GlobalSpecifier(Context); 267} 268 269/// \brief Determines whether the given declaration is an valid acceptable 270/// result for name lookup of a nested-name-specifier. 271bool Sema::isAcceptableNestedNameSpecifier(NamedDecl *SD) { 272 if (!SD) 273 return false; 274 275 // Namespace and namespace aliases are fine. 276 if (isa<NamespaceDecl>(SD) || isa<NamespaceAliasDecl>(SD)) 277 return true; 278 279 if (!isa<TypeDecl>(SD)) 280 return false; 281 282 // Determine whether we have a class (or, in C++0x, an enum) or 283 // a typedef thereof. If so, build the nested-name-specifier. 284 QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD)); 285 if (T->isDependentType()) 286 return true; 287 else if (TypedefDecl *TD = dyn_cast<TypedefDecl>(SD)) { 288 if (TD->getUnderlyingType()->isRecordType() || 289 (Context.getLangOptions().CPlusPlus0x && 290 TD->getUnderlyingType()->isEnumeralType())) 291 return true; 292 } else if (isa<RecordDecl>(SD) || 293 (Context.getLangOptions().CPlusPlus0x && isa<EnumDecl>(SD))) 294 return true; 295 296 return false; 297} 298 299/// \brief If the given nested-name-specifier begins with a bare identifier 300/// (e.g., Base::), perform name lookup for that identifier as a 301/// nested-name-specifier within the given scope, and return the result of that 302/// name lookup. 303NamedDecl *Sema::FindFirstQualifierInScope(Scope *S, NestedNameSpecifier *NNS) { 304 if (!S || !NNS) 305 return 0; 306 307 while (NNS->getPrefix()) 308 NNS = NNS->getPrefix(); 309 310 if (NNS->getKind() != NestedNameSpecifier::Identifier) 311 return 0; 312 313 LookupResult Found(*this, NNS->getAsIdentifier(), SourceLocation(), 314 LookupNestedNameSpecifierName); 315 LookupName(Found, S); 316 assert(!Found.isAmbiguous() && "Cannot handle ambiguities here yet"); 317 318 if (!Found.isSingleResult()) 319 return 0; 320 321 NamedDecl *Result = Found.getFoundDecl(); 322 if (isAcceptableNestedNameSpecifier(Result)) 323 return Result; 324 325 return 0; 326} 327 328bool Sema::isNonTypeNestedNameSpecifier(Scope *S, CXXScopeSpec &SS, 329 SourceLocation IdLoc, 330 IdentifierInfo &II, 331 TypeTy *ObjectTypePtr) { 332 QualType ObjectType = GetTypeFromParser(ObjectTypePtr); 333 LookupResult Found(*this, &II, IdLoc, LookupNestedNameSpecifierName); 334 335 // Determine where to perform name lookup 336 DeclContext *LookupCtx = 0; 337 bool isDependent = false; 338 if (!ObjectType.isNull()) { 339 // This nested-name-specifier occurs in a member access expression, e.g., 340 // x->B::f, and we are looking into the type of the object. 341 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist"); 342 LookupCtx = computeDeclContext(ObjectType); 343 isDependent = ObjectType->isDependentType(); 344 } else if (SS.isSet()) { 345 // This nested-name-specifier occurs after another nested-name-specifier, 346 // so long into the context associated with the prior nested-name-specifier. 347 LookupCtx = computeDeclContext(SS, false); 348 isDependent = isDependentScopeSpecifier(SS); 349 Found.setContextRange(SS.getRange()); 350 } 351 352 if (LookupCtx) { 353 // Perform "qualified" name lookup into the declaration context we 354 // computed, which is either the type of the base of a member access 355 // expression or the declaration context associated with a prior 356 // nested-name-specifier. 357 358 // The declaration context must be complete. 359 if (!LookupCtx->isDependentContext() && RequireCompleteDeclContext(SS)) 360 return false; 361 362 LookupQualifiedName(Found, LookupCtx); 363 } else if (isDependent) { 364 return false; 365 } else { 366 LookupName(Found, S); 367 } 368 Found.suppressDiagnostics(); 369 370 if (NamedDecl *ND = Found.getAsSingle<NamedDecl>()) 371 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND); 372 373 return false; 374} 375 376/// \brief Build a new nested-name-specifier for "identifier::", as described 377/// by ActOnCXXNestedNameSpecifier. 378/// 379/// This routine differs only slightly from ActOnCXXNestedNameSpecifier, in 380/// that it contains an extra parameter \p ScopeLookupResult, which provides 381/// the result of name lookup within the scope of the nested-name-specifier 382/// that was computed at template definition time. 383/// 384/// If ErrorRecoveryLookup is true, then this call is used to improve error 385/// recovery. This means that it should not emit diagnostics, it should 386/// just return null on failure. It also means it should only return a valid 387/// scope if it *knows* that the result is correct. It should not return in a 388/// dependent context, for example. 389Sema::CXXScopeTy *Sema::BuildCXXNestedNameSpecifier(Scope *S, 390 CXXScopeSpec &SS, 391 SourceLocation IdLoc, 392 SourceLocation CCLoc, 393 IdentifierInfo &II, 394 QualType ObjectType, 395 NamedDecl *ScopeLookupResult, 396 bool EnteringContext, 397 bool ErrorRecoveryLookup) { 398 NestedNameSpecifier *Prefix 399 = static_cast<NestedNameSpecifier *>(SS.getScopeRep()); 400 401 LookupResult Found(*this, &II, IdLoc, LookupNestedNameSpecifierName); 402 403 // Determine where to perform name lookup 404 DeclContext *LookupCtx = 0; 405 bool isDependent = false; 406 if (!ObjectType.isNull()) { 407 // This nested-name-specifier occurs in a member access expression, e.g., 408 // x->B::f, and we are looking into the type of the object. 409 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist"); 410 LookupCtx = computeDeclContext(ObjectType); 411 isDependent = ObjectType->isDependentType(); 412 } else if (SS.isSet()) { 413 // This nested-name-specifier occurs after another nested-name-specifier, 414 // so long into the context associated with the prior nested-name-specifier. 415 LookupCtx = computeDeclContext(SS, EnteringContext); 416 isDependent = isDependentScopeSpecifier(SS); 417 Found.setContextRange(SS.getRange()); 418 } 419 420 421 bool ObjectTypeSearchedInScope = false; 422 if (LookupCtx) { 423 // Perform "qualified" name lookup into the declaration context we 424 // computed, which is either the type of the base of a member access 425 // expression or the declaration context associated with a prior 426 // nested-name-specifier. 427 428 // The declaration context must be complete. 429 if (!LookupCtx->isDependentContext() && RequireCompleteDeclContext(SS)) 430 return 0; 431 432 LookupQualifiedName(Found, LookupCtx); 433 434 if (!ObjectType.isNull() && Found.empty()) { 435 // C++ [basic.lookup.classref]p4: 436 // If the id-expression in a class member access is a qualified-id of 437 // the form 438 // 439 // class-name-or-namespace-name::... 440 // 441 // the class-name-or-namespace-name following the . or -> operator is 442 // looked up both in the context of the entire postfix-expression and in 443 // the scope of the class of the object expression. If the name is found 444 // only in the scope of the class of the object expression, the name 445 // shall refer to a class-name. If the name is found only in the 446 // context of the entire postfix-expression, the name shall refer to a 447 // class-name or namespace-name. [...] 448 // 449 // Qualified name lookup into a class will not find a namespace-name, 450 // so we do not need to diagnoste that case specifically. However, 451 // this qualified name lookup may find nothing. In that case, perform 452 // unqualified name lookup in the given scope (if available) or 453 // reconstruct the result from when name lookup was performed at template 454 // definition time. 455 if (S) 456 LookupName(Found, S); 457 else if (ScopeLookupResult) 458 Found.addDecl(ScopeLookupResult); 459 460 ObjectTypeSearchedInScope = true; 461 } 462 } else if (isDependent) { 463 // Don't speculate if we're just trying to improve error recovery. 464 if (ErrorRecoveryLookup) 465 return 0; 466 467 // We were not able to compute the declaration context for a dependent 468 // base object type or prior nested-name-specifier, so this 469 // nested-name-specifier refers to an unknown specialization. Just build 470 // a dependent nested-name-specifier. 471 if (!Prefix) 472 return NestedNameSpecifier::Create(Context, &II); 473 474 return NestedNameSpecifier::Create(Context, Prefix, &II); 475 } else { 476 // Perform unqualified name lookup in the current scope. 477 LookupName(Found, S); 478 } 479 480 // FIXME: Deal with ambiguities cleanly. 481 482 if (Found.empty() && !ErrorRecoveryLookup) { 483 // We haven't found anything, and we're not recovering from a 484 // different kind of error, so look for typos. 485 DeclarationName Name = Found.getLookupName(); 486 if (CorrectTypo(Found, S, &SS, LookupCtx, EnteringContext) && 487 Found.isSingleResult() && 488 isAcceptableNestedNameSpecifier(Found.getAsSingle<NamedDecl>())) { 489 if (LookupCtx) 490 Diag(Found.getNameLoc(), diag::err_no_member_suggest) 491 << Name << LookupCtx << Found.getLookupName() << SS.getRange() 492 << FixItHint::CreateReplacement(Found.getNameLoc(), 493 Found.getLookupName().getAsString()); 494 else 495 Diag(Found.getNameLoc(), diag::err_undeclared_var_use_suggest) 496 << Name << Found.getLookupName() 497 << FixItHint::CreateReplacement(Found.getNameLoc(), 498 Found.getLookupName().getAsString()); 499 500 if (NamedDecl *ND = Found.getAsSingle<NamedDecl>()) 501 Diag(ND->getLocation(), diag::note_previous_decl) 502 << ND->getDeclName(); 503 } else 504 Found.clear(); 505 } 506 507 NamedDecl *SD = Found.getAsSingle<NamedDecl>(); 508 if (isAcceptableNestedNameSpecifier(SD)) { 509 if (!ObjectType.isNull() && !ObjectTypeSearchedInScope) { 510 // C++ [basic.lookup.classref]p4: 511 // [...] If the name is found in both contexts, the 512 // class-name-or-namespace-name shall refer to the same entity. 513 // 514 // We already found the name in the scope of the object. Now, look 515 // into the current scope (the scope of the postfix-expression) to 516 // see if we can find the same name there. As above, if there is no 517 // scope, reconstruct the result from the template instantiation itself. 518 NamedDecl *OuterDecl; 519 if (S) { 520 LookupResult FoundOuter(*this, &II, IdLoc, LookupNestedNameSpecifierName); 521 LookupName(FoundOuter, S); 522 OuterDecl = FoundOuter.getAsSingle<NamedDecl>(); 523 } else 524 OuterDecl = ScopeLookupResult; 525 526 if (isAcceptableNestedNameSpecifier(OuterDecl) && 527 OuterDecl->getCanonicalDecl() != SD->getCanonicalDecl() && 528 (!isa<TypeDecl>(OuterDecl) || !isa<TypeDecl>(SD) || 529 !Context.hasSameType( 530 Context.getTypeDeclType(cast<TypeDecl>(OuterDecl)), 531 Context.getTypeDeclType(cast<TypeDecl>(SD))))) { 532 if (ErrorRecoveryLookup) 533 return 0; 534 535 Diag(IdLoc, diag::err_nested_name_member_ref_lookup_ambiguous) 536 << &II; 537 Diag(SD->getLocation(), diag::note_ambig_member_ref_object_type) 538 << ObjectType; 539 Diag(OuterDecl->getLocation(), diag::note_ambig_member_ref_scope); 540 541 // Fall through so that we'll pick the name we found in the object 542 // type, since that's probably what the user wanted anyway. 543 } 544 } 545 546 if (NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(SD)) 547 return NestedNameSpecifier::Create(Context, Prefix, Namespace); 548 549 // FIXME: It would be nice to maintain the namespace alias name, then 550 // see through that alias when resolving the nested-name-specifier down to 551 // a declaration context. 552 if (NamespaceAliasDecl *Alias = dyn_cast<NamespaceAliasDecl>(SD)) 553 return NestedNameSpecifier::Create(Context, Prefix, 554 555 Alias->getNamespace()); 556 557 QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD)); 558 return NestedNameSpecifier::Create(Context, Prefix, false, 559 T.getTypePtr()); 560 } 561 562 // Otherwise, we have an error case. If we don't want diagnostics, just 563 // return an error now. 564 if (ErrorRecoveryLookup) 565 return 0; 566 567 // If we didn't find anything during our lookup, try again with 568 // ordinary name lookup, which can help us produce better error 569 // messages. 570 if (Found.empty()) { 571 Found.clear(LookupOrdinaryName); 572 LookupName(Found, S); 573 } 574 575 unsigned DiagID; 576 if (!Found.empty()) 577 DiagID = diag::err_expected_class_or_namespace; 578 else if (SS.isSet()) { 579 Diag(IdLoc, diag::err_no_member) << &II << LookupCtx << SS.getRange(); 580 return 0; 581 } else 582 DiagID = diag::err_undeclared_var_use; 583 584 if (SS.isSet()) 585 Diag(IdLoc, DiagID) << &II << SS.getRange(); 586 else 587 Diag(IdLoc, DiagID) << &II; 588 589 return 0; 590} 591 592/// ActOnCXXNestedNameSpecifier - Called during parsing of a 593/// nested-name-specifier. e.g. for "foo::bar::" we parsed "foo::" and now 594/// we want to resolve "bar::". 'SS' is empty or the previously parsed 595/// nested-name part ("foo::"), 'IdLoc' is the source location of 'bar', 596/// 'CCLoc' is the location of '::' and 'II' is the identifier for 'bar'. 597/// Returns a CXXScopeTy* object representing the C++ scope. 598Sema::CXXScopeTy *Sema::ActOnCXXNestedNameSpecifier(Scope *S, 599 CXXScopeSpec &SS, 600 SourceLocation IdLoc, 601 SourceLocation CCLoc, 602 IdentifierInfo &II, 603 TypeTy *ObjectTypePtr, 604 bool EnteringContext) { 605 return BuildCXXNestedNameSpecifier(S, SS, IdLoc, CCLoc, II, 606 QualType::getFromOpaquePtr(ObjectTypePtr), 607 /*ScopeLookupResult=*/0, EnteringContext, 608 false); 609} 610 611/// IsInvalidUnlessNestedName - This method is used for error recovery 612/// purposes to determine whether the specified identifier is only valid as 613/// a nested name specifier, for example a namespace name. It is 614/// conservatively correct to always return false from this method. 615/// 616/// The arguments are the same as those passed to ActOnCXXNestedNameSpecifier. 617bool Sema::IsInvalidUnlessNestedName(Scope *S, CXXScopeSpec &SS, 618 IdentifierInfo &II, TypeTy *ObjectType, 619 bool EnteringContext) { 620 return BuildCXXNestedNameSpecifier(S, SS, SourceLocation(), SourceLocation(), 621 II, QualType::getFromOpaquePtr(ObjectType), 622 /*ScopeLookupResult=*/0, EnteringContext, 623 true); 624} 625 626Sema::CXXScopeTy *Sema::ActOnCXXNestedNameSpecifier(Scope *S, 627 const CXXScopeSpec &SS, 628 TypeTy *Ty, 629 SourceRange TypeRange, 630 SourceLocation CCLoc) { 631 NestedNameSpecifier *Prefix 632 = static_cast<NestedNameSpecifier *>(SS.getScopeRep()); 633 QualType T = GetTypeFromParser(Ty); 634 return NestedNameSpecifier::Create(Context, Prefix, /*FIXME:*/false, 635 T.getTypePtr()); 636} 637 638bool Sema::ShouldEnterDeclaratorScope(Scope *S, const CXXScopeSpec &SS) { 639 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec."); 640 641 NestedNameSpecifier *Qualifier = 642 static_cast<NestedNameSpecifier*>(SS.getScopeRep()); 643 644 // There are only two places a well-formed program may qualify a 645 // declarator: first, when defining a namespace or class member 646 // out-of-line, and second, when naming an explicitly-qualified 647 // friend function. The latter case is governed by 648 // C++03 [basic.lookup.unqual]p10: 649 // In a friend declaration naming a member function, a name used 650 // in the function declarator and not part of a template-argument 651 // in a template-id is first looked up in the scope of the member 652 // function's class. If it is not found, or if the name is part of 653 // a template-argument in a template-id, the look up is as 654 // described for unqualified names in the definition of the class 655 // granting friendship. 656 // i.e. we don't push a scope unless it's a class member. 657 658 switch (Qualifier->getKind()) { 659 case NestedNameSpecifier::Global: 660 case NestedNameSpecifier::Namespace: 661 // These are always namespace scopes. We never want to enter a 662 // namespace scope from anything but a file context. 663 return CurContext->getLookupContext()->isFileContext(); 664 665 case NestedNameSpecifier::Identifier: 666 case NestedNameSpecifier::TypeSpec: 667 case NestedNameSpecifier::TypeSpecWithTemplate: 668 // These are never namespace scopes. 669 return true; 670 } 671 672 // Silence bogus warning. 673 return false; 674} 675 676/// ActOnCXXEnterDeclaratorScope - Called when a C++ scope specifier (global 677/// scope or nested-name-specifier) is parsed, part of a declarator-id. 678/// After this method is called, according to [C++ 3.4.3p3], names should be 679/// looked up in the declarator-id's scope, until the declarator is parsed and 680/// ActOnCXXExitDeclaratorScope is called. 681/// The 'SS' should be a non-empty valid CXXScopeSpec. 682bool Sema::ActOnCXXEnterDeclaratorScope(Scope *S, CXXScopeSpec &SS) { 683 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec."); 684 685 if (SS.isInvalid()) return true; 686 687 DeclContext *DC = computeDeclContext(SS, true); 688 if (!DC) return true; 689 690 // Before we enter a declarator's context, we need to make sure that 691 // it is a complete declaration context. 692 if (!DC->isDependentContext() && RequireCompleteDeclContext(SS)) 693 return true; 694 695 EnterDeclaratorContext(S, DC); 696 return false; 697} 698 699/// ActOnCXXExitDeclaratorScope - Called when a declarator that previously 700/// invoked ActOnCXXEnterDeclaratorScope(), is finished. 'SS' is the same 701/// CXXScopeSpec that was passed to ActOnCXXEnterDeclaratorScope as well. 702/// Used to indicate that names should revert to being looked up in the 703/// defining scope. 704void Sema::ActOnCXXExitDeclaratorScope(Scope *S, const CXXScopeSpec &SS) { 705 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec."); 706 if (SS.isInvalid()) 707 return; 708 assert(!SS.isInvalid() && computeDeclContext(SS, true) && 709 "exiting declarator scope we never really entered"); 710 ExitDeclaratorContext(S); 711} 712