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 "clang/Sema/SemaInternal.h"
15 #include "TypeLocBuilder.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/Sema/DeclSpec.h"
22 #include "clang/Sema/Lookup.h"
23 #include "clang/Sema/Template.h"
24 #include "llvm/ADT/STLExtras.h"
25 #include "llvm/Support/raw_ostream.h"
26 using namespace clang;
27 
28 /// \brief Find the current instantiation that associated with the given type.
29 static CXXRecordDecl *getCurrentInstantiationOf(QualType T,
30                                                 DeclContext *CurContext) {
31   if (T.isNull())
32     return nullptr;
33 
34   const Type *Ty = T->getCanonicalTypeInternal().getTypePtr();
35   if (const RecordType *RecordTy = dyn_cast<RecordType>(Ty)) {
36     CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordTy->getDecl());
37     if (!Record->isDependentContext() ||
38         Record->isCurrentInstantiation(CurContext))
39       return Record;
40 
41     return nullptr;
42   } else if (isa<InjectedClassNameType>(Ty))
43     return cast<InjectedClassNameType>(Ty)->getDecl();
44   else
45     return nullptr;
46 }
47 
48 /// \brief Compute the DeclContext that is associated with the given type.
49 ///
50 /// \param T the type for which we are attempting to find a DeclContext.
51 ///
52 /// \returns the declaration context represented by the type T,
53 /// or NULL if the declaration context cannot be computed (e.g., because it is
54 /// dependent and not the current instantiation).
55 DeclContext *Sema::computeDeclContext(QualType T) {
56   if (!T->isDependentType())
57     if (const TagType *Tag = T->getAs<TagType>())
58       return Tag->getDecl();
59 
60   return ::getCurrentInstantiationOf(T, CurContext);
61 }
62 
63 /// \brief Compute the DeclContext that is associated with the given
64 /// scope specifier.
65 ///
66 /// \param SS the C++ scope specifier as it appears in the source
67 ///
68 /// \param EnteringContext when true, we will be entering the context of
69 /// this scope specifier, so we can retrieve the declaration context of a
70 /// class template or class template partial specialization even if it is
71 /// not the current instantiation.
72 ///
73 /// \returns the declaration context represented by the scope specifier @p SS,
74 /// or NULL if the declaration context cannot be computed (e.g., because it is
75 /// dependent and not the current instantiation).
76 DeclContext *Sema::computeDeclContext(const CXXScopeSpec &SS,
77                                       bool EnteringContext) {
78   if (!SS.isSet() || SS.isInvalid())
79     return nullptr;
80 
81   NestedNameSpecifier *NNS = SS.getScopeRep();
82   if (NNS->isDependent()) {
83     // If this nested-name-specifier refers to the current
84     // instantiation, return its DeclContext.
85     if (CXXRecordDecl *Record = getCurrentInstantiationOf(NNS))
86       return Record;
87 
88     if (EnteringContext) {
89       const Type *NNSType = NNS->getAsType();
90       if (!NNSType) {
91         return nullptr;
92       }
93 
94       // Look through type alias templates, per C++0x [temp.dep.type]p1.
95       NNSType = Context.getCanonicalType(NNSType);
96       if (const TemplateSpecializationType *SpecType
97             = NNSType->getAs<TemplateSpecializationType>()) {
98         // We are entering the context of the nested name specifier, so try to
99         // match the nested name specifier to either a primary class template
100         // or a class template partial specialization.
101         if (ClassTemplateDecl *ClassTemplate
102               = dyn_cast_or_null<ClassTemplateDecl>(
103                             SpecType->getTemplateName().getAsTemplateDecl())) {
104           QualType ContextType
105             = Context.getCanonicalType(QualType(SpecType, 0));
106 
107           // If the type of the nested name specifier is the same as the
108           // injected class name of the named class template, we're entering
109           // into that class template definition.
110           QualType Injected
111             = ClassTemplate->getInjectedClassNameSpecialization();
112           if (Context.hasSameType(Injected, ContextType))
113             return ClassTemplate->getTemplatedDecl();
114 
115           // If the type of the nested name specifier is the same as the
116           // type of one of the class template's class template partial
117           // specializations, we're entering into the definition of that
118           // class template partial specialization.
119           if (ClassTemplatePartialSpecializationDecl *PartialSpec
120                 = ClassTemplate->findPartialSpecialization(ContextType))
121             return PartialSpec;
122         }
123       } else if (const RecordType *RecordT = NNSType->getAs<RecordType>()) {
124         // The nested name specifier refers to a member of a class template.
125         return RecordT->getDecl();
126       }
127     }
128 
129     return nullptr;
130   }
131 
132   switch (NNS->getKind()) {
133   case NestedNameSpecifier::Identifier:
134     llvm_unreachable("Dependent nested-name-specifier has no DeclContext");
135 
136   case NestedNameSpecifier::Namespace:
137     return NNS->getAsNamespace();
138 
139   case NestedNameSpecifier::NamespaceAlias:
140     return NNS->getAsNamespaceAlias()->getNamespace();
141 
142   case NestedNameSpecifier::TypeSpec:
143   case NestedNameSpecifier::TypeSpecWithTemplate: {
144     const TagType *Tag = NNS->getAsType()->getAs<TagType>();
145     assert(Tag && "Non-tag type in nested-name-specifier");
146     return Tag->getDecl();
147   }
148 
149   case NestedNameSpecifier::Global:
150     return Context.getTranslationUnitDecl();
151 
152   case NestedNameSpecifier::Super:
153     return NNS->getAsRecordDecl();
154   }
155 
156   llvm_unreachable("Invalid NestedNameSpecifier::Kind!");
157 }
158 
159 bool Sema::isDependentScopeSpecifier(const CXXScopeSpec &SS) {
160   if (!SS.isSet() || SS.isInvalid())
161     return false;
162 
163   return SS.getScopeRep()->isDependent();
164 }
165 
166 /// \brief If the given nested name specifier refers to the current
167 /// instantiation, return the declaration that corresponds to that
168 /// current instantiation (C++0x [temp.dep.type]p1).
169 ///
170 /// \param NNS a dependent nested name specifier.
171 CXXRecordDecl *Sema::getCurrentInstantiationOf(NestedNameSpecifier *NNS) {
172   assert(getLangOpts().CPlusPlus && "Only callable in C++");
173   assert(NNS->isDependent() && "Only dependent nested-name-specifier allowed");
174 
175   if (!NNS->getAsType())
176     return nullptr;
177 
178   QualType T = QualType(NNS->getAsType(), 0);
179   return ::getCurrentInstantiationOf(T, CurContext);
180 }
181 
182 /// \brief Require that the context specified by SS be complete.
183 ///
184 /// If SS refers to a type, this routine checks whether the type is
185 /// complete enough (or can be made complete enough) for name lookup
186 /// into the DeclContext. A type that is not yet completed can be
187 /// considered "complete enough" if it is a class/struct/union/enum
188 /// that is currently being defined. Or, if we have a type that names
189 /// a class template specialization that is not a complete type, we
190 /// will attempt to instantiate that class template.
191 bool Sema::RequireCompleteDeclContext(CXXScopeSpec &SS,
192                                       DeclContext *DC) {
193   assert(DC && "given null context");
194 
195   TagDecl *tag = dyn_cast<TagDecl>(DC);
196 
197   // If this is a dependent type, then we consider it complete.
198   if (!tag || tag->isDependentContext())
199     return false;
200 
201   // If we're currently defining this type, then lookup into the
202   // type is okay: don't complain that it isn't complete yet.
203   QualType type = Context.getTypeDeclType(tag);
204   const TagType *tagType = type->getAs<TagType>();
205   if (tagType && tagType->isBeingDefined())
206     return false;
207 
208   SourceLocation loc = SS.getLastQualifierNameLoc();
209   if (loc.isInvalid()) loc = SS.getRange().getBegin();
210 
211   // The type must be complete.
212   if (RequireCompleteType(loc, type, diag::err_incomplete_nested_name_spec,
213                           SS.getRange())) {
214     SS.SetInvalid(SS.getRange());
215     return true;
216   }
217 
218   // Fixed enum types are complete, but they aren't valid as scopes
219   // until we see a definition, so awkwardly pull out this special
220   // case.
221   const EnumType *enumType = dyn_cast_or_null<EnumType>(tagType);
222   if (!enumType || enumType->getDecl()->isCompleteDefinition())
223     return false;
224 
225   // Try to instantiate the definition, if this is a specialization of an
226   // enumeration temploid.
227   EnumDecl *ED = enumType->getDecl();
228   if (EnumDecl *Pattern = ED->getInstantiatedFromMemberEnum()) {
229     MemberSpecializationInfo *MSI = ED->getMemberSpecializationInfo();
230     if (MSI->getTemplateSpecializationKind() != TSK_ExplicitSpecialization) {
231       if (InstantiateEnum(loc, ED, Pattern, getTemplateInstantiationArgs(ED),
232                           TSK_ImplicitInstantiation)) {
233         SS.SetInvalid(SS.getRange());
234         return true;
235       }
236       return false;
237     }
238   }
239 
240   Diag(loc, diag::err_incomplete_nested_name_spec)
241     << type << SS.getRange();
242   SS.SetInvalid(SS.getRange());
243   return true;
244 }
245 
246 bool Sema::ActOnCXXGlobalScopeSpecifier(SourceLocation CCLoc,
247                                         CXXScopeSpec &SS) {
248   SS.MakeGlobal(Context, CCLoc);
249   return false;
250 }
251 
252 bool Sema::ActOnSuperScopeSpecifier(SourceLocation SuperLoc,
253                                     SourceLocation ColonColonLoc,
254                                     CXXScopeSpec &SS) {
255   CXXRecordDecl *RD = nullptr;
256   for (Scope *S = getCurScope(); S; S = S->getParent()) {
257     if (S->isFunctionScope()) {
258       if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(S->getEntity()))
259         RD = MD->getParent();
260       break;
261     }
262     if (S->isClassScope()) {
263       RD = cast<CXXRecordDecl>(S->getEntity());
264       break;
265     }
266   }
267 
268   if (!RD) {
269     Diag(SuperLoc, diag::err_invalid_super_scope);
270     return true;
271   } else if (RD->isLambda()) {
272     Diag(SuperLoc, diag::err_super_in_lambda_unsupported);
273     return true;
274   } else if (RD->getNumBases() == 0) {
275     Diag(SuperLoc, diag::err_no_base_classes) << RD->getName();
276     return true;
277   }
278 
279   SS.MakeSuper(Context, RD, SuperLoc, ColonColonLoc);
280   return false;
281 }
282 
283 /// \brief Determines whether the given declaration is an valid acceptable
284 /// result for name lookup of a nested-name-specifier.
285 /// \param SD Declaration checked for nested-name-specifier.
286 /// \param IsExtension If not null and the declaration is accepted as an
287 /// extension, the pointed variable is assigned true.
288 bool Sema::isAcceptableNestedNameSpecifier(const NamedDecl *SD,
289                                            bool *IsExtension) {
290   if (!SD)
291     return false;
292 
293   // Namespace and namespace aliases are fine.
294   if (isa<NamespaceDecl>(SD) || isa<NamespaceAliasDecl>(SD))
295     return true;
296 
297   if (!isa<TypeDecl>(SD))
298     return false;
299 
300   // Determine whether we have a class (or, in C++11, an enum) or
301   // a typedef thereof. If so, build the nested-name-specifier.
302   QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD));
303   if (T->isDependentType())
304     return true;
305   if (const TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(SD)) {
306     if (TD->getUnderlyingType()->isRecordType())
307       return true;
308     if (TD->getUnderlyingType()->isEnumeralType()) {
309       if (Context.getLangOpts().CPlusPlus11)
310         return true;
311       if (IsExtension)
312         *IsExtension = true;
313     }
314   } else if (isa<RecordDecl>(SD)) {
315     return true;
316   } else if (isa<EnumDecl>(SD)) {
317     if (Context.getLangOpts().CPlusPlus11)
318       return true;
319     if (IsExtension)
320       *IsExtension = true;
321   }
322 
323   return false;
324 }
325 
326 /// \brief If the given nested-name-specifier begins with a bare identifier
327 /// (e.g., Base::), perform name lookup for that identifier as a
328 /// nested-name-specifier within the given scope, and return the result of that
329 /// name lookup.
330 NamedDecl *Sema::FindFirstQualifierInScope(Scope *S, NestedNameSpecifier *NNS) {
331   if (!S || !NNS)
332     return nullptr;
333 
334   while (NNS->getPrefix())
335     NNS = NNS->getPrefix();
336 
337   if (NNS->getKind() != NestedNameSpecifier::Identifier)
338     return nullptr;
339 
340   LookupResult Found(*this, NNS->getAsIdentifier(), SourceLocation(),
341                      LookupNestedNameSpecifierName);
342   LookupName(Found, S);
343   assert(!Found.isAmbiguous() && "Cannot handle ambiguities here yet");
344 
345   if (!Found.isSingleResult())
346     return nullptr;
347 
348   NamedDecl *Result = Found.getFoundDecl();
349   if (isAcceptableNestedNameSpecifier(Result))
350     return Result;
351 
352   return nullptr;
353 }
354 
355 bool Sema::isNonTypeNestedNameSpecifier(Scope *S, CXXScopeSpec &SS,
356                                         SourceLocation IdLoc,
357                                         IdentifierInfo &II,
358                                         ParsedType ObjectTypePtr) {
359   QualType ObjectType = GetTypeFromParser(ObjectTypePtr);
360   LookupResult Found(*this, &II, IdLoc, LookupNestedNameSpecifierName);
361 
362   // Determine where to perform name lookup
363   DeclContext *LookupCtx = nullptr;
364   bool isDependent = false;
365   if (!ObjectType.isNull()) {
366     // This nested-name-specifier occurs in a member access expression, e.g.,
367     // x->B::f, and we are looking into the type of the object.
368     assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
369     LookupCtx = computeDeclContext(ObjectType);
370     isDependent = ObjectType->isDependentType();
371   } else if (SS.isSet()) {
372     // This nested-name-specifier occurs after another nested-name-specifier,
373     // so long into the context associated with the prior nested-name-specifier.
374     LookupCtx = computeDeclContext(SS, false);
375     isDependent = isDependentScopeSpecifier(SS);
376     Found.setContextRange(SS.getRange());
377   }
378 
379   if (LookupCtx) {
380     // Perform "qualified" name lookup into the declaration context we
381     // computed, which is either the type of the base of a member access
382     // expression or the declaration context associated with a prior
383     // nested-name-specifier.
384 
385     // The declaration context must be complete.
386     if (!LookupCtx->isDependentContext() &&
387         RequireCompleteDeclContext(SS, LookupCtx))
388       return false;
389 
390     LookupQualifiedName(Found, LookupCtx);
391   } else if (isDependent) {
392     return false;
393   } else {
394     LookupName(Found, S);
395   }
396   Found.suppressDiagnostics();
397 
398   if (NamedDecl *ND = Found.getAsSingle<NamedDecl>())
399     return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
400 
401   return false;
402 }
403 
404 namespace {
405 
406 // Callback to only accept typo corrections that can be a valid C++ member
407 // intializer: either a non-static field member or a base class.
408 class NestedNameSpecifierValidatorCCC : public CorrectionCandidateCallback {
409  public:
410   explicit NestedNameSpecifierValidatorCCC(Sema &SRef)
411       : SRef(SRef) {}
412 
413   bool ValidateCandidate(const TypoCorrection &candidate) override {
414     return SRef.isAcceptableNestedNameSpecifier(candidate.getCorrectionDecl());
415   }
416 
417  private:
418   Sema &SRef;
419 };
420 
421 }
422 
423 /// \brief Build a new nested-name-specifier for "identifier::", as described
424 /// by ActOnCXXNestedNameSpecifier.
425 ///
426 /// \param S Scope in which the nested-name-specifier occurs.
427 /// \param Identifier Identifier in the sequence "identifier" "::".
428 /// \param IdentifierLoc Location of the \p Identifier.
429 /// \param CCLoc Location of "::" following Identifier.
430 /// \param ObjectType Type of postfix expression if the nested-name-specifier
431 ///        occurs in construct like: <tt>ptr->nns::f</tt>.
432 /// \param EnteringContext If true, enter the context specified by the
433 ///        nested-name-specifier.
434 /// \param SS Optional nested name specifier preceding the identifier.
435 /// \param ScopeLookupResult Provides the result of name lookup within the
436 ///        scope of the nested-name-specifier that was computed at template
437 ///        definition time.
438 /// \param ErrorRecoveryLookup Specifies if the method is called to improve
439 ///        error recovery and what kind of recovery is performed.
440 /// \param IsCorrectedToColon If not null, suggestion of replace '::' -> ':'
441 ///        are allowed.  The bool value pointed by this parameter is set to
442 ///       'true' if the identifier is treated as if it was followed by ':',
443 ///        not '::'.
444 ///
445 /// This routine differs only slightly from ActOnCXXNestedNameSpecifier, in
446 /// that it contains an extra parameter \p ScopeLookupResult, which provides
447 /// the result of name lookup within the scope of the nested-name-specifier
448 /// that was computed at template definition time.
449 ///
450 /// If ErrorRecoveryLookup is true, then this call is used to improve error
451 /// recovery.  This means that it should not emit diagnostics, it should
452 /// just return true on failure.  It also means it should only return a valid
453 /// scope if it *knows* that the result is correct.  It should not return in a
454 /// dependent context, for example. Nor will it extend \p SS with the scope
455 /// specifier.
456 bool Sema::BuildCXXNestedNameSpecifier(Scope *S,
457                                        IdentifierInfo &Identifier,
458                                        SourceLocation IdentifierLoc,
459                                        SourceLocation CCLoc,
460                                        QualType ObjectType,
461                                        bool EnteringContext,
462                                        CXXScopeSpec &SS,
463                                        NamedDecl *ScopeLookupResult,
464                                        bool ErrorRecoveryLookup,
465                                        bool *IsCorrectedToColon) {
466   LookupResult Found(*this, &Identifier, IdentifierLoc,
467                      LookupNestedNameSpecifierName);
468 
469   // Determine where to perform name lookup
470   DeclContext *LookupCtx = nullptr;
471   bool isDependent = false;
472   if (IsCorrectedToColon)
473     *IsCorrectedToColon = false;
474   if (!ObjectType.isNull()) {
475     // This nested-name-specifier occurs in a member access expression, e.g.,
476     // x->B::f, and we are looking into the type of the object.
477     assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
478     LookupCtx = computeDeclContext(ObjectType);
479     isDependent = ObjectType->isDependentType();
480   } else if (SS.isSet()) {
481     // This nested-name-specifier occurs after another nested-name-specifier,
482     // so look into the context associated with the prior nested-name-specifier.
483     LookupCtx = computeDeclContext(SS, EnteringContext);
484     isDependent = isDependentScopeSpecifier(SS);
485     Found.setContextRange(SS.getRange());
486   }
487 
488   bool ObjectTypeSearchedInScope = false;
489   if (LookupCtx) {
490     // Perform "qualified" name lookup into the declaration context we
491     // computed, which is either the type of the base of a member access
492     // expression or the declaration context associated with a prior
493     // nested-name-specifier.
494 
495     // The declaration context must be complete.
496     if (!LookupCtx->isDependentContext() &&
497         RequireCompleteDeclContext(SS, LookupCtx))
498       return true;
499 
500     LookupQualifiedName(Found, LookupCtx);
501 
502     if (!ObjectType.isNull() && Found.empty()) {
503       // C++ [basic.lookup.classref]p4:
504       //   If the id-expression in a class member access is a qualified-id of
505       //   the form
506       //
507       //        class-name-or-namespace-name::...
508       //
509       //   the class-name-or-namespace-name following the . or -> operator is
510       //   looked up both in the context of the entire postfix-expression and in
511       //   the scope of the class of the object expression. If the name is found
512       //   only in the scope of the class of the object expression, the name
513       //   shall refer to a class-name. If the name is found only in the
514       //   context of the entire postfix-expression, the name shall refer to a
515       //   class-name or namespace-name. [...]
516       //
517       // Qualified name lookup into a class will not find a namespace-name,
518       // so we do not need to diagnose that case specifically. However,
519       // this qualified name lookup may find nothing. In that case, perform
520       // unqualified name lookup in the given scope (if available) or
521       // reconstruct the result from when name lookup was performed at template
522       // definition time.
523       if (S)
524         LookupName(Found, S);
525       else if (ScopeLookupResult)
526         Found.addDecl(ScopeLookupResult);
527 
528       ObjectTypeSearchedInScope = true;
529     }
530   } else if (!isDependent) {
531     // Perform unqualified name lookup in the current scope.
532     LookupName(Found, S);
533   }
534 
535   // If we performed lookup into a dependent context and did not find anything,
536   // that's fine: just build a dependent nested-name-specifier.
537   if (Found.empty() && isDependent &&
538       !(LookupCtx && LookupCtx->isRecord() &&
539         (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() ||
540          !cast<CXXRecordDecl>(LookupCtx)->hasAnyDependentBases()))) {
541     // Don't speculate if we're just trying to improve error recovery.
542     if (ErrorRecoveryLookup)
543       return true;
544 
545     // We were not able to compute the declaration context for a dependent
546     // base object type or prior nested-name-specifier, so this
547     // nested-name-specifier refers to an unknown specialization. Just build
548     // a dependent nested-name-specifier.
549     SS.Extend(Context, &Identifier, IdentifierLoc, CCLoc);
550     return false;
551   }
552 
553   // FIXME: Deal with ambiguities cleanly.
554 
555   if (Found.empty() && !ErrorRecoveryLookup) {
556     // If identifier is not found as class-name-or-namespace-name, but is found
557     // as other entity, don't look for typos.
558     LookupResult R(*this, Found.getLookupNameInfo(), LookupOrdinaryName);
559     if (LookupCtx)
560       LookupQualifiedName(R, LookupCtx);
561     else if (S && !isDependent)
562       LookupName(R, S);
563     if (!R.empty()) {
564       // The identifier is found in ordinary lookup. If correction to colon is
565       // allowed, suggest replacement to ':'.
566       if (IsCorrectedToColon) {
567         *IsCorrectedToColon = true;
568         Diag(CCLoc, diag::err_nested_name_spec_is_not_class)
569             << &Identifier << getLangOpts().CPlusPlus
570             << FixItHint::CreateReplacement(CCLoc, ":");
571         if (NamedDecl *ND = R.getAsSingle<NamedDecl>())
572           Diag(ND->getLocation(), diag::note_declared_at);
573         return true;
574       }
575       // Replacement '::' -> ':' is not allowed, just issue respective error.
576       Diag(R.getNameLoc(), diag::err_expected_class_or_namespace)
577           << &Identifier << getLangOpts().CPlusPlus;
578       if (NamedDecl *ND = R.getAsSingle<NamedDecl>())
579         Diag(ND->getLocation(), diag::note_entity_declared_at) << &Identifier;
580       return true;
581     }
582   }
583 
584   if (Found.empty() && !ErrorRecoveryLookup && !getLangOpts().MSVCCompat) {
585     // We haven't found anything, and we're not recovering from a
586     // different kind of error, so look for typos.
587     DeclarationName Name = Found.getLookupName();
588     Found.clear();
589     if (TypoCorrection Corrected = CorrectTypo(
590             Found.getLookupNameInfo(), Found.getLookupKind(), S, &SS,
591             llvm::make_unique<NestedNameSpecifierValidatorCCC>(*this),
592             CTK_ErrorRecovery, LookupCtx, EnteringContext)) {
593       if (LookupCtx) {
594         bool DroppedSpecifier =
595             Corrected.WillReplaceSpecifier() &&
596             Name.getAsString() == Corrected.getAsString(getLangOpts());
597         if (DroppedSpecifier)
598           SS.clear();
599         diagnoseTypo(Corrected, PDiag(diag::err_no_member_suggest)
600                                   << Name << LookupCtx << DroppedSpecifier
601                                   << SS.getRange());
602       } else
603         diagnoseTypo(Corrected, PDiag(diag::err_undeclared_var_use_suggest)
604                                   << Name);
605 
606       if (NamedDecl *ND = Corrected.getCorrectionDecl())
607         Found.addDecl(ND);
608       Found.setLookupName(Corrected.getCorrection());
609     } else {
610       Found.setLookupName(&Identifier);
611     }
612   }
613 
614   NamedDecl *SD = Found.getAsSingle<NamedDecl>();
615   bool IsExtension = false;
616   bool AcceptSpec = isAcceptableNestedNameSpecifier(SD, &IsExtension);
617   if (!AcceptSpec && IsExtension) {
618     AcceptSpec = true;
619     Diag(IdentifierLoc, diag::ext_nested_name_spec_is_enum);
620   }
621   if (AcceptSpec) {
622     if (!ObjectType.isNull() && !ObjectTypeSearchedInScope &&
623         !getLangOpts().CPlusPlus11) {
624       // C++03 [basic.lookup.classref]p4:
625       //   [...] If the name is found in both contexts, the
626       //   class-name-or-namespace-name shall refer to the same entity.
627       //
628       // We already found the name in the scope of the object. Now, look
629       // into the current scope (the scope of the postfix-expression) to
630       // see if we can find the same name there. As above, if there is no
631       // scope, reconstruct the result from the template instantiation itself.
632       //
633       // Note that C++11 does *not* perform this redundant lookup.
634       NamedDecl *OuterDecl;
635       if (S) {
636         LookupResult FoundOuter(*this, &Identifier, IdentifierLoc,
637                                 LookupNestedNameSpecifierName);
638         LookupName(FoundOuter, S);
639         OuterDecl = FoundOuter.getAsSingle<NamedDecl>();
640       } else
641         OuterDecl = ScopeLookupResult;
642 
643       if (isAcceptableNestedNameSpecifier(OuterDecl) &&
644           OuterDecl->getCanonicalDecl() != SD->getCanonicalDecl() &&
645           (!isa<TypeDecl>(OuterDecl) || !isa<TypeDecl>(SD) ||
646            !Context.hasSameType(
647                             Context.getTypeDeclType(cast<TypeDecl>(OuterDecl)),
648                                Context.getTypeDeclType(cast<TypeDecl>(SD))))) {
649         if (ErrorRecoveryLookup)
650           return true;
651 
652          Diag(IdentifierLoc,
653               diag::err_nested_name_member_ref_lookup_ambiguous)
654            << &Identifier;
655          Diag(SD->getLocation(), diag::note_ambig_member_ref_object_type)
656            << ObjectType;
657          Diag(OuterDecl->getLocation(), diag::note_ambig_member_ref_scope);
658 
659          // Fall through so that we'll pick the name we found in the object
660          // type, since that's probably what the user wanted anyway.
661        }
662     }
663 
664     if (auto *TD = dyn_cast_or_null<TypedefNameDecl>(SD))
665       MarkAnyDeclReferenced(TD->getLocation(), TD, /*OdrUse=*/false);
666 
667     // If we're just performing this lookup for error-recovery purposes,
668     // don't extend the nested-name-specifier. Just return now.
669     if (ErrorRecoveryLookup)
670       return false;
671 
672     // The use of a nested name specifier may trigger deprecation warnings.
673     DiagnoseUseOfDecl(SD, CCLoc);
674 
675 
676     if (NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(SD)) {
677       SS.Extend(Context, Namespace, IdentifierLoc, CCLoc);
678       return false;
679     }
680 
681     if (NamespaceAliasDecl *Alias = dyn_cast<NamespaceAliasDecl>(SD)) {
682       SS.Extend(Context, Alias, IdentifierLoc, CCLoc);
683       return false;
684     }
685 
686     QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD));
687     TypeLocBuilder TLB;
688     if (isa<InjectedClassNameType>(T)) {
689       InjectedClassNameTypeLoc InjectedTL
690         = TLB.push<InjectedClassNameTypeLoc>(T);
691       InjectedTL.setNameLoc(IdentifierLoc);
692     } else if (isa<RecordType>(T)) {
693       RecordTypeLoc RecordTL = TLB.push<RecordTypeLoc>(T);
694       RecordTL.setNameLoc(IdentifierLoc);
695     } else if (isa<TypedefType>(T)) {
696       TypedefTypeLoc TypedefTL = TLB.push<TypedefTypeLoc>(T);
697       TypedefTL.setNameLoc(IdentifierLoc);
698     } else if (isa<EnumType>(T)) {
699       EnumTypeLoc EnumTL = TLB.push<EnumTypeLoc>(T);
700       EnumTL.setNameLoc(IdentifierLoc);
701     } else if (isa<TemplateTypeParmType>(T)) {
702       TemplateTypeParmTypeLoc TemplateTypeTL
703         = TLB.push<TemplateTypeParmTypeLoc>(T);
704       TemplateTypeTL.setNameLoc(IdentifierLoc);
705     } else if (isa<UnresolvedUsingType>(T)) {
706       UnresolvedUsingTypeLoc UnresolvedTL
707         = TLB.push<UnresolvedUsingTypeLoc>(T);
708       UnresolvedTL.setNameLoc(IdentifierLoc);
709     } else if (isa<SubstTemplateTypeParmType>(T)) {
710       SubstTemplateTypeParmTypeLoc TL
711         = TLB.push<SubstTemplateTypeParmTypeLoc>(T);
712       TL.setNameLoc(IdentifierLoc);
713     } else if (isa<SubstTemplateTypeParmPackType>(T)) {
714       SubstTemplateTypeParmPackTypeLoc TL
715         = TLB.push<SubstTemplateTypeParmPackTypeLoc>(T);
716       TL.setNameLoc(IdentifierLoc);
717     } else {
718       llvm_unreachable("Unhandled TypeDecl node in nested-name-specifier");
719     }
720 
721     if (T->isEnumeralType())
722       Diag(IdentifierLoc, diag::warn_cxx98_compat_enum_nested_name_spec);
723 
724     SS.Extend(Context, SourceLocation(), TLB.getTypeLocInContext(Context, T),
725               CCLoc);
726     return false;
727   }
728 
729   // Otherwise, we have an error case.  If we don't want diagnostics, just
730   // return an error now.
731   if (ErrorRecoveryLookup)
732     return true;
733 
734   // If we didn't find anything during our lookup, try again with
735   // ordinary name lookup, which can help us produce better error
736   // messages.
737   if (Found.empty()) {
738     Found.clear(LookupOrdinaryName);
739     LookupName(Found, S);
740   }
741 
742   // In Microsoft mode, if we are within a templated function and we can't
743   // resolve Identifier, then extend the SS with Identifier. This will have
744   // the effect of resolving Identifier during template instantiation.
745   // The goal is to be able to resolve a function call whose
746   // nested-name-specifier is located inside a dependent base class.
747   // Example:
748   //
749   // class C {
750   // public:
751   //    static void foo2() {  }
752   // };
753   // template <class T> class A { public: typedef C D; };
754   //
755   // template <class T> class B : public A<T> {
756   // public:
757   //   void foo() { D::foo2(); }
758   // };
759   if (getLangOpts().MSVCCompat) {
760     DeclContext *DC = LookupCtx ? LookupCtx : CurContext;
761     if (DC->isDependentContext() && DC->isFunctionOrMethod()) {
762       CXXRecordDecl *ContainingClass = dyn_cast<CXXRecordDecl>(DC->getParent());
763       if (ContainingClass && ContainingClass->hasAnyDependentBases()) {
764         Diag(IdentifierLoc, diag::ext_undeclared_unqual_id_with_dependent_base)
765             << &Identifier << ContainingClass;
766         SS.Extend(Context, &Identifier, IdentifierLoc, CCLoc);
767         return false;
768       }
769     }
770   }
771 
772   if (!Found.empty()) {
773     if (TypeDecl *TD = Found.getAsSingle<TypeDecl>())
774       Diag(IdentifierLoc, diag::err_expected_class_or_namespace)
775           << QualType(TD->getTypeForDecl(), 0) << getLangOpts().CPlusPlus;
776     else {
777       Diag(IdentifierLoc, diag::err_expected_class_or_namespace)
778           << &Identifier << getLangOpts().CPlusPlus;
779       if (NamedDecl *ND = Found.getAsSingle<NamedDecl>())
780         Diag(ND->getLocation(), diag::note_entity_declared_at) << &Identifier;
781     }
782   } else if (SS.isSet())
783     Diag(IdentifierLoc, diag::err_no_member) << &Identifier << LookupCtx
784                                              << SS.getRange();
785   else
786     Diag(IdentifierLoc, diag::err_undeclared_var_use) << &Identifier;
787 
788   return true;
789 }
790 
791 bool Sema::ActOnCXXNestedNameSpecifier(Scope *S,
792                                        IdentifierInfo &Identifier,
793                                        SourceLocation IdentifierLoc,
794                                        SourceLocation CCLoc,
795                                        ParsedType ObjectType,
796                                        bool EnteringContext,
797                                        CXXScopeSpec &SS,
798                                        bool ErrorRecoveryLookup,
799                                        bool *IsCorrectedToColon) {
800   if (SS.isInvalid())
801     return true;
802 
803   return BuildCXXNestedNameSpecifier(S, Identifier, IdentifierLoc, CCLoc,
804                                      GetTypeFromParser(ObjectType),
805                                      EnteringContext, SS,
806                                      /*ScopeLookupResult=*/nullptr, false,
807                                      IsCorrectedToColon);
808 }
809 
810 bool Sema::ActOnCXXNestedNameSpecifierDecltype(CXXScopeSpec &SS,
811                                                const DeclSpec &DS,
812                                                SourceLocation ColonColonLoc) {
813   if (SS.isInvalid() || DS.getTypeSpecType() == DeclSpec::TST_error)
814     return true;
815 
816   assert(DS.getTypeSpecType() == DeclSpec::TST_decltype);
817 
818   QualType T = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
819   if (!T->isDependentType() && !T->getAs<TagType>()) {
820     Diag(DS.getTypeSpecTypeLoc(), diag::err_expected_class_or_namespace)
821       << T << getLangOpts().CPlusPlus;
822     return true;
823   }
824 
825   TypeLocBuilder TLB;
826   DecltypeTypeLoc DecltypeTL = TLB.push<DecltypeTypeLoc>(T);
827   DecltypeTL.setNameLoc(DS.getTypeSpecTypeLoc());
828   SS.Extend(Context, SourceLocation(), TLB.getTypeLocInContext(Context, T),
829             ColonColonLoc);
830   return false;
831 }
832 
833 /// IsInvalidUnlessNestedName - This method is used for error recovery
834 /// purposes to determine whether the specified identifier is only valid as
835 /// a nested name specifier, for example a namespace name.  It is
836 /// conservatively correct to always return false from this method.
837 ///
838 /// The arguments are the same as those passed to ActOnCXXNestedNameSpecifier.
839 bool Sema::IsInvalidUnlessNestedName(Scope *S, CXXScopeSpec &SS,
840                                      IdentifierInfo &Identifier,
841                                      SourceLocation IdentifierLoc,
842                                      SourceLocation ColonLoc,
843                                      ParsedType ObjectType,
844                                      bool EnteringContext) {
845   if (SS.isInvalid())
846     return false;
847 
848   return !BuildCXXNestedNameSpecifier(S, Identifier, IdentifierLoc, ColonLoc,
849                                       GetTypeFromParser(ObjectType),
850                                       EnteringContext, SS,
851                                       /*ScopeLookupResult=*/nullptr, true);
852 }
853 
854 bool Sema::ActOnCXXNestedNameSpecifier(Scope *S,
855                                        CXXScopeSpec &SS,
856                                        SourceLocation TemplateKWLoc,
857                                        TemplateTy Template,
858                                        SourceLocation TemplateNameLoc,
859                                        SourceLocation LAngleLoc,
860                                        ASTTemplateArgsPtr TemplateArgsIn,
861                                        SourceLocation RAngleLoc,
862                                        SourceLocation CCLoc,
863                                        bool EnteringContext) {
864   if (SS.isInvalid())
865     return true;
866 
867   // Translate the parser's template argument list in our AST format.
868   TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
869   translateTemplateArguments(TemplateArgsIn, TemplateArgs);
870 
871   DependentTemplateName *DTN = Template.get().getAsDependentTemplateName();
872   if (DTN && DTN->isIdentifier()) {
873     // Handle a dependent template specialization for which we cannot resolve
874     // the template name.
875     assert(DTN->getQualifier() == SS.getScopeRep());
876     QualType T = Context.getDependentTemplateSpecializationType(ETK_None,
877                                                           DTN->getQualifier(),
878                                                           DTN->getIdentifier(),
879                                                                 TemplateArgs);
880 
881     // Create source-location information for this type.
882     TypeLocBuilder Builder;
883     DependentTemplateSpecializationTypeLoc SpecTL
884       = Builder.push<DependentTemplateSpecializationTypeLoc>(T);
885     SpecTL.setElaboratedKeywordLoc(SourceLocation());
886     SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
887     SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
888     SpecTL.setTemplateNameLoc(TemplateNameLoc);
889     SpecTL.setLAngleLoc(LAngleLoc);
890     SpecTL.setRAngleLoc(RAngleLoc);
891     for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
892       SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
893 
894     SS.Extend(Context, TemplateKWLoc, Builder.getTypeLocInContext(Context, T),
895               CCLoc);
896     return false;
897   }
898 
899   TemplateDecl *TD = Template.get().getAsTemplateDecl();
900   if (Template.get().getAsOverloadedTemplate() || DTN ||
901       isa<FunctionTemplateDecl>(TD) || isa<VarTemplateDecl>(TD)) {
902     SourceRange R(TemplateNameLoc, RAngleLoc);
903     if (SS.getRange().isValid())
904       R.setBegin(SS.getRange().getBegin());
905 
906     Diag(CCLoc, diag::err_non_type_template_in_nested_name_specifier)
907       << (TD && isa<VarTemplateDecl>(TD)) << Template.get() << R;
908     NoteAllFoundTemplates(Template.get());
909     return true;
910   }
911 
912   // We were able to resolve the template name to an actual template.
913   // Build an appropriate nested-name-specifier.
914   QualType T = CheckTemplateIdType(Template.get(), TemplateNameLoc,
915                                    TemplateArgs);
916   if (T.isNull())
917     return true;
918 
919   // Alias template specializations can produce types which are not valid
920   // nested name specifiers.
921   if (!T->isDependentType() && !T->getAs<TagType>()) {
922     Diag(TemplateNameLoc, diag::err_nested_name_spec_non_tag) << T;
923     NoteAllFoundTemplates(Template.get());
924     return true;
925   }
926 
927   // Provide source-location information for the template specialization type.
928   TypeLocBuilder Builder;
929   TemplateSpecializationTypeLoc SpecTL
930     = Builder.push<TemplateSpecializationTypeLoc>(T);
931   SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
932   SpecTL.setTemplateNameLoc(TemplateNameLoc);
933   SpecTL.setLAngleLoc(LAngleLoc);
934   SpecTL.setRAngleLoc(RAngleLoc);
935   for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
936     SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
937 
938 
939   SS.Extend(Context, TemplateKWLoc, Builder.getTypeLocInContext(Context, T),
940             CCLoc);
941   return false;
942 }
943 
944 namespace {
945   /// \brief A structure that stores a nested-name-specifier annotation,
946   /// including both the nested-name-specifier
947   struct NestedNameSpecifierAnnotation {
948     NestedNameSpecifier *NNS;
949   };
950 }
951 
952 void *Sema::SaveNestedNameSpecifierAnnotation(CXXScopeSpec &SS) {
953   if (SS.isEmpty() || SS.isInvalid())
954     return nullptr;
955 
956   void *Mem = Context.Allocate((sizeof(NestedNameSpecifierAnnotation) +
957                                                         SS.location_size()),
958                                llvm::alignOf<NestedNameSpecifierAnnotation>());
959   NestedNameSpecifierAnnotation *Annotation
960     = new (Mem) NestedNameSpecifierAnnotation;
961   Annotation->NNS = SS.getScopeRep();
962   memcpy(Annotation + 1, SS.location_data(), SS.location_size());
963   return Annotation;
964 }
965 
966 void Sema::RestoreNestedNameSpecifierAnnotation(void *AnnotationPtr,
967                                                 SourceRange AnnotationRange,
968                                                 CXXScopeSpec &SS) {
969   if (!AnnotationPtr) {
970     SS.SetInvalid(AnnotationRange);
971     return;
972   }
973 
974   NestedNameSpecifierAnnotation *Annotation
975     = static_cast<NestedNameSpecifierAnnotation *>(AnnotationPtr);
976   SS.Adopt(NestedNameSpecifierLoc(Annotation->NNS, Annotation + 1));
977 }
978 
979 bool Sema::ShouldEnterDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
980   assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
981 
982   NestedNameSpecifier *Qualifier = SS.getScopeRep();
983 
984   // There are only two places a well-formed program may qualify a
985   // declarator: first, when defining a namespace or class member
986   // out-of-line, and second, when naming an explicitly-qualified
987   // friend function.  The latter case is governed by
988   // C++03 [basic.lookup.unqual]p10:
989   //   In a friend declaration naming a member function, a name used
990   //   in the function declarator and not part of a template-argument
991   //   in a template-id is first looked up in the scope of the member
992   //   function's class. If it is not found, or if the name is part of
993   //   a template-argument in a template-id, the look up is as
994   //   described for unqualified names in the definition of the class
995   //   granting friendship.
996   // i.e. we don't push a scope unless it's a class member.
997 
998   switch (Qualifier->getKind()) {
999   case NestedNameSpecifier::Global:
1000   case NestedNameSpecifier::Namespace:
1001   case NestedNameSpecifier::NamespaceAlias:
1002     // These are always namespace scopes.  We never want to enter a
1003     // namespace scope from anything but a file context.
1004     return CurContext->getRedeclContext()->isFileContext();
1005 
1006   case NestedNameSpecifier::Identifier:
1007   case NestedNameSpecifier::TypeSpec:
1008   case NestedNameSpecifier::TypeSpecWithTemplate:
1009   case NestedNameSpecifier::Super:
1010     // These are never namespace scopes.
1011     return true;
1012   }
1013 
1014   llvm_unreachable("Invalid NestedNameSpecifier::Kind!");
1015 }
1016 
1017 /// ActOnCXXEnterDeclaratorScope - Called when a C++ scope specifier (global
1018 /// scope or nested-name-specifier) is parsed, part of a declarator-id.
1019 /// After this method is called, according to [C++ 3.4.3p3], names should be
1020 /// looked up in the declarator-id's scope, until the declarator is parsed and
1021 /// ActOnCXXExitDeclaratorScope is called.
1022 /// The 'SS' should be a non-empty valid CXXScopeSpec.
1023 bool Sema::ActOnCXXEnterDeclaratorScope(Scope *S, CXXScopeSpec &SS) {
1024   assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
1025 
1026   if (SS.isInvalid()) return true;
1027 
1028   DeclContext *DC = computeDeclContext(SS, true);
1029   if (!DC) return true;
1030 
1031   // Before we enter a declarator's context, we need to make sure that
1032   // it is a complete declaration context.
1033   if (!DC->isDependentContext() && RequireCompleteDeclContext(SS, DC))
1034     return true;
1035 
1036   EnterDeclaratorContext(S, DC);
1037 
1038   // Rebuild the nested name specifier for the new scope.
1039   if (DC->isDependentContext())
1040     RebuildNestedNameSpecifierInCurrentInstantiation(SS);
1041 
1042   return false;
1043 }
1044 
1045 /// ActOnCXXExitDeclaratorScope - Called when a declarator that previously
1046 /// invoked ActOnCXXEnterDeclaratorScope(), is finished. 'SS' is the same
1047 /// CXXScopeSpec that was passed to ActOnCXXEnterDeclaratorScope as well.
1048 /// Used to indicate that names should revert to being looked up in the
1049 /// defining scope.
1050 void Sema::ActOnCXXExitDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
1051   assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
1052   if (SS.isInvalid())
1053     return;
1054   assert(!SS.isInvalid() && computeDeclContext(SS, true) &&
1055          "exiting declarator scope we never really entered");
1056   ExitDeclaratorContext(S);
1057 }
1058