blob: 9e146ed3a6427b006767102408ce8951b0fec7cb [file] [log] [blame]
Cedric Venet084381332009-02-14 20:20:19 +00001//===--- 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
John McCall83024632010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000015#include "TypeLocBuilder.h"
Cedric Venet084381332009-02-14 20:20:19 +000016#include "clang/AST/ASTContext.h"
Douglas Gregorc9f9b862009-05-11 19:58:34 +000017#include "clang/AST/DeclTemplate.h"
Douglas Gregord8061562009-08-06 03:17:00 +000018#include "clang/AST/ExprCXX.h"
Douglas Gregor52537682009-03-19 00:18:19 +000019#include "clang/AST/NestedNameSpecifier.h"
Anders Carlssond624e162009-08-26 23:45:07 +000020#include "clang/Basic/PartialDiagnostic.h"
John McCall8b0666c2010-08-20 18:27:03 +000021#include "clang/Sema/DeclSpec.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000022#include "clang/Sema/Lookup.h"
23#include "clang/Sema/Template.h"
Cedric Venet084381332009-02-14 20:20:19 +000024#include "llvm/ADT/STLExtras.h"
Douglas Gregor168190d2009-07-22 00:28:09 +000025#include "llvm/Support/raw_ostream.h"
Cedric Venet084381332009-02-14 20:20:19 +000026using namespace clang;
27
Douglas Gregor41127182009-11-04 22:49:18 +000028/// \brief Find the current instantiation that associated with the given type.
Richard Smithd80b2d52012-11-22 00:24:47 +000029static CXXRecordDecl *getCurrentInstantiationOf(QualType T,
Douglas Gregorbf2b26d2011-02-19 19:24:40 +000030 DeclContext *CurContext) {
Douglas Gregor41127182009-11-04 22:49:18 +000031 if (T.isNull())
Craig Topperc3ec1492014-05-26 06:22:03 +000032 return nullptr;
John McCall2408e322010-04-27 00:57:59 +000033
34 const Type *Ty = T->getCanonicalTypeInternal().getTypePtr();
Douglas Gregorbf2b26d2011-02-19 19:24:40 +000035 if (const RecordType *RecordTy = dyn_cast<RecordType>(Ty)) {
36 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordTy->getDecl());
Richard Smithd80b2d52012-11-22 00:24:47 +000037 if (!Record->isDependentContext() ||
38 Record->isCurrentInstantiation(CurContext))
Douglas Gregorbf2b26d2011-02-19 19:24:40 +000039 return Record;
40
Craig Topperc3ec1492014-05-26 06:22:03 +000041 return nullptr;
Douglas Gregorbf2b26d2011-02-19 19:24:40 +000042 } else if (isa<InjectedClassNameType>(Ty))
John McCall2408e322010-04-27 00:57:59 +000043 return cast<InjectedClassNameType>(Ty)->getDecl();
44 else
Craig Topperc3ec1492014-05-26 06:22:03 +000045 return nullptr;
Douglas Gregor41127182009-11-04 22:49:18 +000046}
47
Douglas Gregorb7bfe792009-09-02 22:59:36 +000048/// \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///
Mike Stump11289f42009-09-09 15:08:12 +000052/// \returns the declaration context represented by the type T,
Douglas Gregorb7bfe792009-09-02 22:59:36 +000053/// or NULL if the declaration context cannot be computed (e.g., because it is
54/// dependent and not the current instantiation).
55DeclContext *Sema::computeDeclContext(QualType T) {
Douglas Gregorbf2b26d2011-02-19 19:24:40 +000056 if (!T->isDependentType())
57 if (const TagType *Tag = T->getAs<TagType>())
58 return Tag->getDecl();
Mike Stump11289f42009-09-09 15:08:12 +000059
Douglas Gregorbf2b26d2011-02-19 19:24:40 +000060 return ::getCurrentInstantiationOf(T, CurContext);
Douglas Gregorb7bfe792009-09-02 22:59:36 +000061}
62
Douglas Gregor52537682009-03-19 00:18:19 +000063/// \brief Compute the DeclContext that is associated with the given
64/// scope specifier.
Douglas Gregord8d297c2009-07-21 23:53:31 +000065///
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).
76DeclContext *Sema::computeDeclContext(const CXXScopeSpec &SS,
77 bool EnteringContext) {
Douglas Gregor52537682009-03-19 00:18:19 +000078 if (!SS.isSet() || SS.isInvalid())
Craig Topperc3ec1492014-05-26 06:22:03 +000079 return nullptr;
Douglas Gregor6bfde492009-03-18 00:36:05 +000080
Richard Smith74bb2d22013-03-26 00:54:11 +000081 NestedNameSpecifier *NNS = SS.getScopeRep();
Douglas Gregorc9f9b862009-05-11 19:58:34 +000082 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;
Mike Stump11289f42009-09-09 15:08:12 +000087
Douglas Gregord8d297c2009-07-21 23:53:31 +000088 if (EnteringContext) {
John McCalle78aac42010-03-10 03:28:59 +000089 const Type *NNSType = NNS->getAsType();
90 if (!NNSType) {
Craig Topperc3ec1492014-05-26 06:22:03 +000091 return nullptr;
Richard Smith3f1b5d02011-05-05 21:57:07 +000092 }
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>()) {
Douglas Gregore861bac2009-08-25 22:51:20 +000098 // 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.
Mike Stump11289f42009-09-09 15:08:12 +0000101 if (ClassTemplateDecl *ClassTemplate
Douglas Gregord8d297c2009-07-21 23:53:31 +0000102 = dyn_cast_or_null<ClassTemplateDecl>(
103 SpecType->getTemplateName().getAsTemplateDecl())) {
Douglas Gregor15301382009-07-30 17:40:51 +0000104 QualType ContextType
105 = Context.getCanonicalType(QualType(SpecType, 0));
106
Douglas Gregord8d297c2009-07-21 23:53:31 +0000107 // 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.
John McCalle78aac42010-03-10 03:28:59 +0000110 QualType Injected
Douglas Gregor9961ce92010-07-08 18:37:38 +0000111 = ClassTemplate->getInjectedClassNameSpecialization();
Douglas Gregor15301382009-07-30 17:40:51 +0000112 if (Context.hasSameType(Injected, ContextType))
Douglas Gregord8d297c2009-07-21 23:53:31 +0000113 return ClassTemplate->getTemplatedDecl();
Mike Stump11289f42009-09-09 15:08:12 +0000114
Douglas Gregor15301382009-07-30 17:40:51 +0000115 // 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;
Douglas Gregord8d297c2009-07-21 23:53:31 +0000122 }
John McCalle78aac42010-03-10 03:28:59 +0000123 } else if (const RecordType *RecordT = NNSType->getAs<RecordType>()) {
Douglas Gregore861bac2009-08-25 22:51:20 +0000124 // The nested name specifier refers to a member of a class template.
125 return RecordT->getDecl();
Douglas Gregord8d297c2009-07-21 23:53:31 +0000126 }
127 }
Mike Stump11289f42009-09-09 15:08:12 +0000128
Craig Topperc3ec1492014-05-26 06:22:03 +0000129 return nullptr;
Douglas Gregorc9f9b862009-05-11 19:58:34 +0000130 }
Douglas Gregorf21eb492009-03-26 23:50:42 +0000131
132 switch (NNS->getKind()) {
133 case NestedNameSpecifier::Identifier:
David Blaikie83d382b2011-09-23 05:06:16 +0000134 llvm_unreachable("Dependent nested-name-specifier has no DeclContext");
Douglas Gregorf21eb492009-03-26 23:50:42 +0000135
136 case NestedNameSpecifier::Namespace:
137 return NNS->getAsNamespace();
138
Douglas Gregor7b26ff92011-02-24 02:36:08 +0000139 case NestedNameSpecifier::NamespaceAlias:
140 return NNS->getAsNamespaceAlias()->getNamespace();
141
Douglas Gregorf21eb492009-03-26 23:50:42 +0000142 case NestedNameSpecifier::TypeSpec:
143 case NestedNameSpecifier::TypeSpecWithTemplate: {
Douglas Gregorcd3f49f2010-02-25 04:46:04 +0000144 const TagType *Tag = NNS->getAsType()->getAs<TagType>();
145 assert(Tag && "Non-tag type in nested-name-specifier");
146 return Tag->getDecl();
David Blaikie8a40f702012-01-17 06:56:22 +0000147 }
Douglas Gregorf21eb492009-03-26 23:50:42 +0000148
149 case NestedNameSpecifier::Global:
150 return Context.getTranslationUnitDecl();
Nikola Smiljanic67860242014-09-26 00:28:20 +0000151
152 case NestedNameSpecifier::Super:
153 return NNS->getAsRecordDecl();
Douglas Gregorf21eb492009-03-26 23:50:42 +0000154 }
155
David Blaikie8a40f702012-01-17 06:56:22 +0000156 llvm_unreachable("Invalid NestedNameSpecifier::Kind!");
Douglas Gregor6bfde492009-03-18 00:36:05 +0000157}
158
Douglas Gregor90a1a652009-03-19 17:26:29 +0000159bool Sema::isDependentScopeSpecifier(const CXXScopeSpec &SS) {
160 if (!SS.isSet() || SS.isInvalid())
161 return false;
162
Richard Smith74bb2d22013-03-26 00:54:11 +0000163 return SS.getScopeRep()->isDependent();
Douglas Gregor90a1a652009-03-19 17:26:29 +0000164}
165
Douglas Gregorc9f9b862009-05-11 19:58:34 +0000166/// \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.
171CXXRecordDecl *Sema::getCurrentInstantiationOf(NestedNameSpecifier *NNS) {
David Blaikiebbafb8a2012-03-11 07:00:24 +0000172 assert(getLangOpts().CPlusPlus && "Only callable in C++");
Douglas Gregorc9f9b862009-05-11 19:58:34 +0000173 assert(NNS->isDependent() && "Only dependent nested-name-specifier allowed");
174
Douglas Gregord8d297c2009-07-21 23:53:31 +0000175 if (!NNS->getAsType())
Craig Topperc3ec1492014-05-26 06:22:03 +0000176 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +0000177
Douglas Gregorb9a955d2009-07-31 18:32:42 +0000178 QualType T = QualType(NNS->getAsType(), 0);
Douglas Gregorbf2b26d2011-02-19 19:24:40 +0000179 return ::getCurrentInstantiationOf(T, CurContext);
Douglas Gregorc9f9b862009-05-11 19:58:34 +0000180}
181
Douglas Gregor26897462009-03-11 16:48:53 +0000182/// \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.
John McCall0b66eb32010-05-01 00:40:08 +0000191bool Sema::RequireCompleteDeclContext(CXXScopeSpec &SS,
192 DeclContext *DC) {
Craig Topperc3ec1492014-05-26 06:22:03 +0000193 assert(DC && "given null context");
Mike Stump11289f42009-09-09 15:08:12 +0000194
Richard Smith4b38ded2012-03-14 23:13:10 +0000195 TagDecl *tag = dyn_cast<TagDecl>(DC);
Douglas Gregor8a6d15d2010-02-05 04:39:02 +0000196
Richard Smith4b38ded2012-03-14 23:13:10 +0000197 // If this is a dependent type, then we consider it complete.
198 if (!tag || tag->isDependentContext())
199 return false;
Douglas Gregor26897462009-03-11 16:48:53 +0000200
Richard Smith4b38ded2012-03-14 23:13:10 +0000201 // 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;
John McCall21878762011-07-06 06:57:57 +0000207
Richard Smith4b38ded2012-03-14 23:13:10 +0000208 SourceLocation loc = SS.getLastQualifierNameLoc();
209 if (loc.isInvalid()) loc = SS.getRange().getBegin();
John McCall21878762011-07-06 06:57:57 +0000210
Richard Smith4b38ded2012-03-14 23:13:10 +0000211 // The type must be complete.
Douglas Gregor7bfb2d02012-05-04 16:32:21 +0000212 if (RequireCompleteType(loc, type, diag::err_incomplete_nested_name_spec,
213 SS.getRange())) {
Richard Smith4b38ded2012-03-14 23:13:10 +0000214 SS.SetInvalid(SS.getRange());
215 return true;
Douglas Gregor26897462009-03-11 16:48:53 +0000216 }
217
Richard Smith4b38ded2012-03-14 23:13:10 +0000218 // 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.
Richard Smith65ebb4a2015-03-26 04:09:53 +0000221 // FIXME: The definition might not be visible; complain if it is not.
Richard Smith4b38ded2012-03-14 23:13:10 +0000222 const EnumType *enumType = dyn_cast_or_null<EnumType>(tagType);
223 if (!enumType || enumType->getDecl()->isCompleteDefinition())
224 return false;
225
226 // Try to instantiate the definition, if this is a specialization of an
227 // enumeration temploid.
228 EnumDecl *ED = enumType->getDecl();
229 if (EnumDecl *Pattern = ED->getInstantiatedFromMemberEnum()) {
230 MemberSpecializationInfo *MSI = ED->getMemberSpecializationInfo();
Richard Smith7d137e32012-03-23 03:33:32 +0000231 if (MSI->getTemplateSpecializationKind() != TSK_ExplicitSpecialization) {
232 if (InstantiateEnum(loc, ED, Pattern, getTemplateInstantiationArgs(ED),
233 TSK_ImplicitInstantiation)) {
234 SS.SetInvalid(SS.getRange());
235 return true;
236 }
237 return false;
238 }
Richard Smith4b38ded2012-03-14 23:13:10 +0000239 }
240
241 Diag(loc, diag::err_incomplete_nested_name_spec)
242 << type << SS.getRange();
243 SS.SetInvalid(SS.getRange());
244 return true;
Douglas Gregor26897462009-03-11 16:48:53 +0000245}
Cedric Venet084381332009-02-14 20:20:19 +0000246
Nikola Smiljanic67860242014-09-26 00:28:20 +0000247bool Sema::ActOnCXXGlobalScopeSpecifier(SourceLocation CCLoc,
Douglas Gregor90c99722011-02-24 00:17:56 +0000248 CXXScopeSpec &SS) {
249 SS.MakeGlobal(Context, CCLoc);
250 return false;
Cedric Venet084381332009-02-14 20:20:19 +0000251}
252
Nikola Smiljanic67860242014-09-26 00:28:20 +0000253bool Sema::ActOnSuperScopeSpecifier(SourceLocation SuperLoc,
254 SourceLocation ColonColonLoc,
255 CXXScopeSpec &SS) {
256 CXXRecordDecl *RD = nullptr;
257 for (Scope *S = getCurScope(); S; S = S->getParent()) {
258 if (S->isFunctionScope()) {
259 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(S->getEntity()))
260 RD = MD->getParent();
261 break;
262 }
263 if (S->isClassScope()) {
264 RD = cast<CXXRecordDecl>(S->getEntity());
265 break;
266 }
267 }
268
269 if (!RD) {
270 Diag(SuperLoc, diag::err_invalid_super_scope);
271 return true;
272 } else if (RD->isLambda()) {
273 Diag(SuperLoc, diag::err_super_in_lambda_unsupported);
274 return true;
275 } else if (RD->getNumBases() == 0) {
276 Diag(SuperLoc, diag::err_no_base_classes) << RD->getName();
277 return true;
278 }
279
280 SS.MakeSuper(Context, RD, SuperLoc, ColonColonLoc);
281 return false;
282}
283
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000284/// \brief Determines whether the given declaration is an valid acceptable
285/// result for name lookup of a nested-name-specifier.
Serge Pavlov25a8afa2015-01-18 20:04:35 +0000286/// \param SD Declaration checked for nested-name-specifier.
287/// \param IsExtension If not null and the declaration is accepted as an
288/// extension, the pointed variable is assigned true.
289bool Sema::isAcceptableNestedNameSpecifier(const NamedDecl *SD,
290 bool *IsExtension) {
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000291 if (!SD)
292 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000293
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000294 // Namespace and namespace aliases are fine.
295 if (isa<NamespaceDecl>(SD) || isa<NamespaceAliasDecl>(SD))
296 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000297
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000298 if (!isa<TypeDecl>(SD))
299 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000300
Richard Smithc8239732011-10-18 21:39:00 +0000301 // Determine whether we have a class (or, in C++11, an enum) or
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000302 // a typedef thereof. If so, build the nested-name-specifier.
303 QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD));
304 if (T->isDependentType())
305 return true;
Serge Pavlov25a8afa2015-01-18 20:04:35 +0000306 if (const TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(SD)) {
307 if (TD->getUnderlyingType()->isRecordType())
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000308 return true;
Serge Pavlov25a8afa2015-01-18 20:04:35 +0000309 if (TD->getUnderlyingType()->isEnumeralType()) {
310 if (Context.getLangOpts().CPlusPlus11)
311 return true;
312 if (IsExtension)
313 *IsExtension = true;
314 }
315 } else if (isa<RecordDecl>(SD)) {
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000316 return true;
Serge Pavlov25a8afa2015-01-18 20:04:35 +0000317 } else if (isa<EnumDecl>(SD)) {
318 if (Context.getLangOpts().CPlusPlus11)
319 return true;
320 if (IsExtension)
321 *IsExtension = true;
322 }
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000323
324 return false;
325}
326
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000327/// \brief If the given nested-name-specifier begins with a bare identifier
Mike Stump11289f42009-09-09 15:08:12 +0000328/// (e.g., Base::), perform name lookup for that identifier as a
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000329/// nested-name-specifier within the given scope, and return the result of that
330/// name lookup.
331NamedDecl *Sema::FindFirstQualifierInScope(Scope *S, NestedNameSpecifier *NNS) {
332 if (!S || !NNS)
Craig Topperc3ec1492014-05-26 06:22:03 +0000333 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +0000334
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000335 while (NNS->getPrefix())
336 NNS = NNS->getPrefix();
Mike Stump11289f42009-09-09 15:08:12 +0000337
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000338 if (NNS->getKind() != NestedNameSpecifier::Identifier)
Craig Topperc3ec1492014-05-26 06:22:03 +0000339 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +0000340
John McCall27b18f82009-11-17 02:14:36 +0000341 LookupResult Found(*this, NNS->getAsIdentifier(), SourceLocation(),
342 LookupNestedNameSpecifierName);
343 LookupName(Found, S);
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000344 assert(!Found.isAmbiguous() && "Cannot handle ambiguities here yet");
345
John McCall67c00872009-12-02 08:25:40 +0000346 if (!Found.isSingleResult())
Craig Topperc3ec1492014-05-26 06:22:03 +0000347 return nullptr;
John McCall67c00872009-12-02 08:25:40 +0000348
349 NamedDecl *Result = Found.getFoundDecl();
Douglas Gregorcd3f49f2010-02-25 04:46:04 +0000350 if (isAcceptableNestedNameSpecifier(Result))
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000351 return Result;
Mike Stump11289f42009-09-09 15:08:12 +0000352
Craig Topperc3ec1492014-05-26 06:22:03 +0000353 return nullptr;
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000354}
355
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +0000356bool Sema::isNonTypeNestedNameSpecifier(Scope *S, CXXScopeSpec &SS,
Douglas Gregor0d5b0a12010-02-24 21:29:12 +0000357 SourceLocation IdLoc,
358 IdentifierInfo &II,
John McCallba7bf592010-08-24 05:47:05 +0000359 ParsedType ObjectTypePtr) {
Douglas Gregor0d5b0a12010-02-24 21:29:12 +0000360 QualType ObjectType = GetTypeFromParser(ObjectTypePtr);
361 LookupResult Found(*this, &II, IdLoc, LookupNestedNameSpecifierName);
362
363 // Determine where to perform name lookup
Craig Topperc3ec1492014-05-26 06:22:03 +0000364 DeclContext *LookupCtx = nullptr;
Douglas Gregor0d5b0a12010-02-24 21:29:12 +0000365 bool isDependent = false;
366 if (!ObjectType.isNull()) {
367 // This nested-name-specifier occurs in a member access expression, e.g.,
368 // x->B::f, and we are looking into the type of the object.
369 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
370 LookupCtx = computeDeclContext(ObjectType);
371 isDependent = ObjectType->isDependentType();
372 } else if (SS.isSet()) {
373 // This nested-name-specifier occurs after another nested-name-specifier,
374 // so long into the context associated with the prior nested-name-specifier.
375 LookupCtx = computeDeclContext(SS, false);
376 isDependent = isDependentScopeSpecifier(SS);
377 Found.setContextRange(SS.getRange());
378 }
379
380 if (LookupCtx) {
381 // Perform "qualified" name lookup into the declaration context we
382 // computed, which is either the type of the base of a member access
383 // expression or the declaration context associated with a prior
384 // nested-name-specifier.
385
386 // The declaration context must be complete.
John McCall0b66eb32010-05-01 00:40:08 +0000387 if (!LookupCtx->isDependentContext() &&
388 RequireCompleteDeclContext(SS, LookupCtx))
Douglas Gregor0d5b0a12010-02-24 21:29:12 +0000389 return false;
390
391 LookupQualifiedName(Found, LookupCtx);
392 } else if (isDependent) {
393 return false;
394 } else {
395 LookupName(Found, S);
396 }
397 Found.suppressDiagnostics();
398
399 if (NamedDecl *ND = Found.getAsSingle<NamedDecl>())
400 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
401
402 return false;
403}
404
Kaelyn Uhrainfb96ec72012-01-12 22:32:39 +0000405namespace {
406
407// Callback to only accept typo corrections that can be a valid C++ member
408// intializer: either a non-static field member or a base class.
409class NestedNameSpecifierValidatorCCC : public CorrectionCandidateCallback {
410 public:
411 explicit NestedNameSpecifierValidatorCCC(Sema &SRef)
412 : SRef(SRef) {}
413
Craig Toppere14c0f82014-03-12 04:55:44 +0000414 bool ValidateCandidate(const TypoCorrection &candidate) override {
Kaelyn Uhrainfb96ec72012-01-12 22:32:39 +0000415 return SRef.isAcceptableNestedNameSpecifier(candidate.getCorrectionDecl());
416 }
417
418 private:
419 Sema &SRef;
420};
421
422}
423
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000424/// \brief Build a new nested-name-specifier for "identifier::", as described
425/// by ActOnCXXNestedNameSpecifier.
426///
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000427/// \param S Scope in which the nested-name-specifier occurs.
428/// \param Identifier Identifier in the sequence "identifier" "::".
429/// \param IdentifierLoc Location of the \p Identifier.
430/// \param CCLoc Location of "::" following Identifier.
431/// \param ObjectType Type of postfix expression if the nested-name-specifier
432/// occurs in construct like: <tt>ptr->nns::f</tt>.
433/// \param EnteringContext If true, enter the context specified by the
434/// nested-name-specifier.
435/// \param SS Optional nested name specifier preceding the identifier.
436/// \param ScopeLookupResult Provides the result of name lookup within the
437/// scope of the nested-name-specifier that was computed at template
438/// definition time.
439/// \param ErrorRecoveryLookup Specifies if the method is called to improve
440/// error recovery and what kind of recovery is performed.
441/// \param IsCorrectedToColon If not null, suggestion of replace '::' -> ':'
442/// are allowed. The bool value pointed by this parameter is set to
443/// 'true' if the identifier is treated as if it was followed by ':',
444/// not '::'.
445///
446/// This routine differs only slightly from ActOnCXXNestedNameSpecifier, in
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000447/// that it contains an extra parameter \p ScopeLookupResult, which provides
448/// the result of name lookup within the scope of the nested-name-specifier
Douglas Gregorad183ac2009-12-30 16:01:52 +0000449/// that was computed at template definition time.
Chris Lattner1c428032009-12-07 01:36:53 +0000450///
451/// If ErrorRecoveryLookup is true, then this call is used to improve error
452/// recovery. This means that it should not emit diagnostics, it should
Douglas Gregor90c99722011-02-24 00:17:56 +0000453/// just return true on failure. It also means it should only return a valid
Chris Lattner1c428032009-12-07 01:36:53 +0000454/// scope if it *knows* that the result is correct. It should not return in a
Douglas Gregor90c99722011-02-24 00:17:56 +0000455/// dependent context, for example. Nor will it extend \p SS with the scope
456/// specifier.
457bool Sema::BuildCXXNestedNameSpecifier(Scope *S,
458 IdentifierInfo &Identifier,
459 SourceLocation IdentifierLoc,
460 SourceLocation CCLoc,
461 QualType ObjectType,
462 bool EnteringContext,
463 CXXScopeSpec &SS,
464 NamedDecl *ScopeLookupResult,
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000465 bool ErrorRecoveryLookup,
466 bool *IsCorrectedToColon) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000467 LookupResult Found(*this, &Identifier, IdentifierLoc,
468 LookupNestedNameSpecifierName);
John McCall27b18f82009-11-17 02:14:36 +0000469
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000470 // Determine where to perform name lookup
Craig Topperc3ec1492014-05-26 06:22:03 +0000471 DeclContext *LookupCtx = nullptr;
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000472 bool isDependent = false;
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000473 if (IsCorrectedToColon)
474 *IsCorrectedToColon = false;
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000475 if (!ObjectType.isNull()) {
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000476 // This nested-name-specifier occurs in a member access expression, e.g.,
477 // x->B::f, and we are looking into the type of the object.
478 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000479 LookupCtx = computeDeclContext(ObjectType);
480 isDependent = ObjectType->isDependentType();
481 } else if (SS.isSet()) {
482 // This nested-name-specifier occurs after another nested-name-specifier,
Richard Smith3f1b5d02011-05-05 21:57:07 +0000483 // so look into the context associated with the prior nested-name-specifier.
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000484 LookupCtx = computeDeclContext(SS, EnteringContext);
485 isDependent = isDependentScopeSpecifier(SS);
John McCall27b18f82009-11-17 02:14:36 +0000486 Found.setContextRange(SS.getRange());
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000487 }
Mike Stump11289f42009-09-09 15:08:12 +0000488
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000489 bool ObjectTypeSearchedInScope = false;
490 if (LookupCtx) {
Mike Stump11289f42009-09-09 15:08:12 +0000491 // Perform "qualified" name lookup into the declaration context we
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000492 // computed, which is either the type of the base of a member access
Mike Stump11289f42009-09-09 15:08:12 +0000493 // expression or the declaration context associated with a prior
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000494 // nested-name-specifier.
Mike Stump11289f42009-09-09 15:08:12 +0000495
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000496 // The declaration context must be complete.
John McCall0b66eb32010-05-01 00:40:08 +0000497 if (!LookupCtx->isDependentContext() &&
498 RequireCompleteDeclContext(SS, LookupCtx))
Douglas Gregor90c99722011-02-24 00:17:56 +0000499 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000500
John McCall27b18f82009-11-17 02:14:36 +0000501 LookupQualifiedName(Found, LookupCtx);
Mike Stump11289f42009-09-09 15:08:12 +0000502
John McCall27b18f82009-11-17 02:14:36 +0000503 if (!ObjectType.isNull() && Found.empty()) {
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000504 // C++ [basic.lookup.classref]p4:
505 // If the id-expression in a class member access is a qualified-id of
Mike Stump11289f42009-09-09 15:08:12 +0000506 // the form
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000507 //
508 // class-name-or-namespace-name::...
509 //
Mike Stump11289f42009-09-09 15:08:12 +0000510 // the class-name-or-namespace-name following the . or -> operator is
511 // looked up both in the context of the entire postfix-expression and in
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000512 // the scope of the class of the object expression. If the name is found
Mike Stump11289f42009-09-09 15:08:12 +0000513 // only in the scope of the class of the object expression, the name
514 // shall refer to a class-name. If the name is found only in the
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000515 // context of the entire postfix-expression, the name shall refer to a
516 // class-name or namespace-name. [...]
517 //
518 // Qualified name lookup into a class will not find a namespace-name,
Douglas Gregor9d07dfa2011-05-15 17:27:27 +0000519 // so we do not need to diagnose that case specifically. However,
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000520 // this qualified name lookup may find nothing. In that case, perform
Mike Stump11289f42009-09-09 15:08:12 +0000521 // unqualified name lookup in the given scope (if available) or
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000522 // reconstruct the result from when name lookup was performed at template
523 // definition time.
524 if (S)
John McCall27b18f82009-11-17 02:14:36 +0000525 LookupName(Found, S);
John McCall9f3059a2009-10-09 21:13:30 +0000526 else if (ScopeLookupResult)
527 Found.addDecl(ScopeLookupResult);
Mike Stump11289f42009-09-09 15:08:12 +0000528
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000529 ObjectTypeSearchedInScope = true;
530 }
Douglas Gregordf65c8ed2010-07-28 14:49:07 +0000531 } else if (!isDependent) {
532 // Perform unqualified name lookup in the current scope.
533 LookupName(Found, S);
534 }
535
536 // If we performed lookup into a dependent context and did not find anything,
537 // that's fine: just build a dependent nested-name-specifier.
538 if (Found.empty() && isDependent &&
539 !(LookupCtx && LookupCtx->isRecord() &&
540 (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() ||
541 !cast<CXXRecordDecl>(LookupCtx)->hasAnyDependentBases()))) {
Chris Lattner1c428032009-12-07 01:36:53 +0000542 // Don't speculate if we're just trying to improve error recovery.
543 if (ErrorRecoveryLookup)
Douglas Gregor90c99722011-02-24 00:17:56 +0000544 return true;
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000545
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000546 // We were not able to compute the declaration context for a dependent
Mike Stump11289f42009-09-09 15:08:12 +0000547 // base object type or prior nested-name-specifier, so this
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000548 // nested-name-specifier refers to an unknown specialization. Just build
549 // a dependent nested-name-specifier.
Douglas Gregor90c99722011-02-24 00:17:56 +0000550 SS.Extend(Context, &Identifier, IdentifierLoc, CCLoc);
551 return false;
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000552 }
553
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000554 // FIXME: Deal with ambiguities cleanly.
Douglas Gregor532e68f2009-12-31 08:26:35 +0000555
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000556 if (Found.empty() && !ErrorRecoveryLookup) {
557 // If identifier is not found as class-name-or-namespace-name, but is found
558 // as other entity, don't look for typos.
559 LookupResult R(*this, Found.getLookupNameInfo(), LookupOrdinaryName);
560 if (LookupCtx)
561 LookupQualifiedName(R, LookupCtx);
562 else if (S && !isDependent)
563 LookupName(R, S);
564 if (!R.empty()) {
565 // The identifier is found in ordinary lookup. If correction to colon is
566 // allowed, suggest replacement to ':'.
567 if (IsCorrectedToColon) {
568 *IsCorrectedToColon = true;
569 Diag(CCLoc, diag::err_nested_name_spec_is_not_class)
570 << &Identifier << getLangOpts().CPlusPlus
571 << FixItHint::CreateReplacement(CCLoc, ":");
572 if (NamedDecl *ND = R.getAsSingle<NamedDecl>())
573 Diag(ND->getLocation(), diag::note_declared_at);
574 return true;
575 }
576 // Replacement '::' -> ':' is not allowed, just issue respective error.
577 Diag(R.getNameLoc(), diag::err_expected_class_or_namespace)
578 << &Identifier << getLangOpts().CPlusPlus;
579 if (NamedDecl *ND = R.getAsSingle<NamedDecl>())
Alp Toker2afa8782014-05-28 12:20:14 +0000580 Diag(ND->getLocation(), diag::note_entity_declared_at) << &Identifier;
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000581 return true;
582 }
583 }
584
Alp Tokerbfa39342014-01-14 12:51:41 +0000585 if (Found.empty() && !ErrorRecoveryLookup && !getLangOpts().MSVCCompat) {
Douglas Gregor532e68f2009-12-31 08:26:35 +0000586 // We haven't found anything, and we're not recovering from a
587 // different kind of error, so look for typos.
588 DeclarationName Name = Found.getLookupName();
Douglas Gregorc2fa1692011-06-28 16:20:02 +0000589 Found.clear();
Kaelyn Takata89c881b2014-10-27 18:07:29 +0000590 if (TypoCorrection Corrected = CorrectTypo(
591 Found.getLookupNameInfo(), Found.getLookupKind(), S, &SS,
592 llvm::make_unique<NestedNameSpecifierValidatorCCC>(*this),
593 CTK_ErrorRecovery, LookupCtx, EnteringContext)) {
Richard Smithf9b15102013-08-17 00:46:16 +0000594 if (LookupCtx) {
595 bool DroppedSpecifier =
596 Corrected.WillReplaceSpecifier() &&
597 Name.getAsString() == Corrected.getAsString(getLangOpts());
Kaelyn Uhraina6c78fe2013-12-16 19:19:18 +0000598 if (DroppedSpecifier)
599 SS.clear();
Richard Smithf9b15102013-08-17 00:46:16 +0000600 diagnoseTypo(Corrected, PDiag(diag::err_no_member_suggest)
601 << Name << LookupCtx << DroppedSpecifier
602 << SS.getRange());
603 } else
604 diagnoseTypo(Corrected, PDiag(diag::err_undeclared_var_use_suggest)
605 << Name);
Kaelyn Uhrain10413a42013-07-02 23:47:44 +0000606
Richard Smithf9b15102013-08-17 00:46:16 +0000607 if (NamedDecl *ND = Corrected.getCorrectionDecl())
Douglas Gregorc2fa1692011-06-28 16:20:02 +0000608 Found.addDecl(ND);
Douglas Gregorc2fa1692011-06-28 16:20:02 +0000609 Found.setLookupName(Corrected.getCorrection());
Douglas Gregorc048c522010-06-29 19:27:42 +0000610 } else {
Douglas Gregor90c99722011-02-24 00:17:56 +0000611 Found.setLookupName(&Identifier);
Douglas Gregorc048c522010-06-29 19:27:42 +0000612 }
Douglas Gregor532e68f2009-12-31 08:26:35 +0000613 }
614
John McCall67c00872009-12-02 08:25:40 +0000615 NamedDecl *SD = Found.getAsSingle<NamedDecl>();
Serge Pavlov25a8afa2015-01-18 20:04:35 +0000616 bool IsExtension = false;
617 bool AcceptSpec = isAcceptableNestedNameSpecifier(SD, &IsExtension);
618 if (!AcceptSpec && IsExtension) {
619 AcceptSpec = true;
620 Diag(IdentifierLoc, diag::ext_nested_name_spec_is_enum);
621 }
622 if (AcceptSpec) {
Douglas Gregor1b02e4a2012-05-01 20:23:02 +0000623 if (!ObjectType.isNull() && !ObjectTypeSearchedInScope &&
Richard Smith2bf7fdb2013-01-02 11:42:31 +0000624 !getLangOpts().CPlusPlus11) {
Douglas Gregor1b02e4a2012-05-01 20:23:02 +0000625 // C++03 [basic.lookup.classref]p4:
Mike Stump11289f42009-09-09 15:08:12 +0000626 // [...] If the name is found in both contexts, the
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000627 // class-name-or-namespace-name shall refer to the same entity.
628 //
629 // We already found the name in the scope of the object. Now, look
630 // into the current scope (the scope of the postfix-expression) to
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000631 // see if we can find the same name there. As above, if there is no
632 // scope, reconstruct the result from the template instantiation itself.
Douglas Gregor1b02e4a2012-05-01 20:23:02 +0000633 //
634 // Note that C++11 does *not* perform this redundant lookup.
John McCall9f3059a2009-10-09 21:13:30 +0000635 NamedDecl *OuterDecl;
636 if (S) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000637 LookupResult FoundOuter(*this, &Identifier, IdentifierLoc,
638 LookupNestedNameSpecifierName);
John McCall27b18f82009-11-17 02:14:36 +0000639 LookupName(FoundOuter, S);
John McCall67c00872009-12-02 08:25:40 +0000640 OuterDecl = FoundOuter.getAsSingle<NamedDecl>();
John McCall9f3059a2009-10-09 21:13:30 +0000641 } else
642 OuterDecl = ScopeLookupResult;
Mike Stump11289f42009-09-09 15:08:12 +0000643
Douglas Gregorcd3f49f2010-02-25 04:46:04 +0000644 if (isAcceptableNestedNameSpecifier(OuterDecl) &&
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000645 OuterDecl->getCanonicalDecl() != SD->getCanonicalDecl() &&
646 (!isa<TypeDecl>(OuterDecl) || !isa<TypeDecl>(SD) ||
647 !Context.hasSameType(
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000648 Context.getTypeDeclType(cast<TypeDecl>(OuterDecl)),
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000649 Context.getTypeDeclType(cast<TypeDecl>(SD))))) {
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000650 if (ErrorRecoveryLookup)
651 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000652
Douglas Gregor90c99722011-02-24 00:17:56 +0000653 Diag(IdentifierLoc,
654 diag::err_nested_name_member_ref_lookup_ambiguous)
655 << &Identifier;
656 Diag(SD->getLocation(), diag::note_ambig_member_ref_object_type)
657 << ObjectType;
658 Diag(OuterDecl->getLocation(), diag::note_ambig_member_ref_scope);
659
660 // Fall through so that we'll pick the name we found in the object
661 // type, since that's probably what the user wanted anyway.
662 }
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000663 }
Mike Stump11289f42009-09-09 15:08:12 +0000664
Nico Weber72889432014-09-06 01:25:55 +0000665 if (auto *TD = dyn_cast_or_null<TypedefNameDecl>(SD))
666 MarkAnyDeclReferenced(TD->getLocation(), TD, /*OdrUse=*/false);
667
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000668 // If we're just performing this lookup for error-recovery purposes,
Douglas Gregor90c99722011-02-24 00:17:56 +0000669 // don't extend the nested-name-specifier. Just return now.
670 if (ErrorRecoveryLookup)
671 return false;
Aaron Ballman43f40102014-11-14 22:34:56 +0000672
673 // The use of a nested name specifier may trigger deprecation warnings.
674 DiagnoseUseOfDecl(SD, CCLoc);
675
Douglas Gregor90c99722011-02-24 00:17:56 +0000676
677 if (NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(SD)) {
678 SS.Extend(Context, Namespace, IdentifierLoc, CCLoc);
679 return false;
680 }
Mike Stump11289f42009-09-09 15:08:12 +0000681
Douglas Gregor90c99722011-02-24 00:17:56 +0000682 if (NamespaceAliasDecl *Alias = dyn_cast<NamespaceAliasDecl>(SD)) {
Douglas Gregor7b26ff92011-02-24 02:36:08 +0000683 SS.Extend(Context, Alias, IdentifierLoc, CCLoc);
Douglas Gregor90c99722011-02-24 00:17:56 +0000684 return false;
685 }
Mike Stump11289f42009-09-09 15:08:12 +0000686
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000687 QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD));
Douglas Gregor90c99722011-02-24 00:17:56 +0000688 TypeLocBuilder TLB;
689 if (isa<InjectedClassNameType>(T)) {
690 InjectedClassNameTypeLoc InjectedTL
691 = TLB.push<InjectedClassNameTypeLoc>(T);
692 InjectedTL.setNameLoc(IdentifierLoc);
Douglas Gregordfd4b742011-05-04 23:05:40 +0000693 } else if (isa<RecordType>(T)) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000694 RecordTypeLoc RecordTL = TLB.push<RecordTypeLoc>(T);
695 RecordTL.setNameLoc(IdentifierLoc);
Douglas Gregordfd4b742011-05-04 23:05:40 +0000696 } else if (isa<TypedefType>(T)) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000697 TypedefTypeLoc TypedefTL = TLB.push<TypedefTypeLoc>(T);
698 TypedefTL.setNameLoc(IdentifierLoc);
Douglas Gregordfd4b742011-05-04 23:05:40 +0000699 } else if (isa<EnumType>(T)) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000700 EnumTypeLoc EnumTL = TLB.push<EnumTypeLoc>(T);
701 EnumTL.setNameLoc(IdentifierLoc);
Douglas Gregordfd4b742011-05-04 23:05:40 +0000702 } else if (isa<TemplateTypeParmType>(T)) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000703 TemplateTypeParmTypeLoc TemplateTypeTL
704 = TLB.push<TemplateTypeParmTypeLoc>(T);
705 TemplateTypeTL.setNameLoc(IdentifierLoc);
Douglas Gregordfd4b742011-05-04 23:05:40 +0000706 } else if (isa<UnresolvedUsingType>(T)) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000707 UnresolvedUsingTypeLoc UnresolvedTL
708 = TLB.push<UnresolvedUsingTypeLoc>(T);
709 UnresolvedTL.setNameLoc(IdentifierLoc);
Douglas Gregordfd4b742011-05-04 23:05:40 +0000710 } else if (isa<SubstTemplateTypeParmType>(T)) {
711 SubstTemplateTypeParmTypeLoc TL
712 = TLB.push<SubstTemplateTypeParmTypeLoc>(T);
713 TL.setNameLoc(IdentifierLoc);
714 } else if (isa<SubstTemplateTypeParmPackType>(T)) {
715 SubstTemplateTypeParmPackTypeLoc TL
716 = TLB.push<SubstTemplateTypeParmPackTypeLoc>(T);
717 TL.setNameLoc(IdentifierLoc);
718 } else {
719 llvm_unreachable("Unhandled TypeDecl node in nested-name-specifier");
Douglas Gregor90c99722011-02-24 00:17:56 +0000720 }
721
Richard Smith91c7bbd2011-10-20 03:28:47 +0000722 if (T->isEnumeralType())
723 Diag(IdentifierLoc, diag::warn_cxx98_compat_enum_nested_name_spec);
724
Douglas Gregor90c99722011-02-24 00:17:56 +0000725 SS.Extend(Context, SourceLocation(), TLB.getTypeLocInContext(Context, T),
726 CCLoc);
727 return false;
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000728 }
Mike Stump11289f42009-09-09 15:08:12 +0000729
Chris Lattner1c428032009-12-07 01:36:53 +0000730 // Otherwise, we have an error case. If we don't want diagnostics, just
731 // return an error now.
732 if (ErrorRecoveryLookup)
Douglas Gregor90c99722011-02-24 00:17:56 +0000733 return true;
Chris Lattner1c428032009-12-07 01:36:53 +0000734
Cedric Venet084381332009-02-14 20:20:19 +0000735 // If we didn't find anything during our lookup, try again with
736 // ordinary name lookup, which can help us produce better error
737 // messages.
John McCall67c00872009-12-02 08:25:40 +0000738 if (Found.empty()) {
John McCall27b18f82009-11-17 02:14:36 +0000739 Found.clear(LookupOrdinaryName);
740 LookupName(Found, S);
John McCall9f3059a2009-10-09 21:13:30 +0000741 }
Mike Stump11289f42009-09-09 15:08:12 +0000742
Francois Pichetb23dc092011-07-27 01:05:24 +0000743 // In Microsoft mode, if we are within a templated function and we can't
744 // resolve Identifier, then extend the SS with Identifier. This will have
745 // the effect of resolving Identifier during template instantiation.
746 // The goal is to be able to resolve a function call whose
747 // nested-name-specifier is located inside a dependent base class.
748 // Example:
749 //
750 // class C {
751 // public:
752 // static void foo2() { }
753 // };
754 // template <class T> class A { public: typedef C D; };
755 //
756 // template <class T> class B : public A<T> {
757 // public:
758 // void foo() { D::foo2(); }
759 // };
Alp Tokerbfa39342014-01-14 12:51:41 +0000760 if (getLangOpts().MSVCCompat) {
Francois Pichetb23dc092011-07-27 01:05:24 +0000761 DeclContext *DC = LookupCtx ? LookupCtx : CurContext;
762 if (DC->isDependentContext() && DC->isFunctionOrMethod()) {
Reid Kleckner062be332014-08-14 23:34:52 +0000763 CXXRecordDecl *ContainingClass = dyn_cast<CXXRecordDecl>(DC->getParent());
764 if (ContainingClass && ContainingClass->hasAnyDependentBases()) {
765 Diag(IdentifierLoc, diag::ext_undeclared_unqual_id_with_dependent_base)
766 << &Identifier << ContainingClass;
767 SS.Extend(Context, &Identifier, IdentifierLoc, CCLoc);
768 return false;
769 }
Francois Pichetb23dc092011-07-27 01:05:24 +0000770 }
771 }
772
David Blaikie6cab5962014-02-09 06:54:23 +0000773 if (!Found.empty()) {
774 if (TypeDecl *TD = Found.getAsSingle<TypeDecl>())
775 Diag(IdentifierLoc, diag::err_expected_class_or_namespace)
776 << QualType(TD->getTypeForDecl(), 0) << getLangOpts().CPlusPlus;
777 else {
778 Diag(IdentifierLoc, diag::err_expected_class_or_namespace)
779 << &Identifier << getLangOpts().CPlusPlus;
780 if (NamedDecl *ND = Found.getAsSingle<NamedDecl>())
Alp Toker2afa8782014-05-28 12:20:14 +0000781 Diag(ND->getLocation(), diag::note_entity_declared_at) << &Identifier;
David Blaikie6cab5962014-02-09 06:54:23 +0000782 }
783 } else if (SS.isSet())
784 Diag(IdentifierLoc, diag::err_no_member) << &Identifier << LookupCtx
785 << SS.getRange();
Cedric Venet084381332009-02-14 20:20:19 +0000786 else
David Blaikie6cab5962014-02-09 06:54:23 +0000787 Diag(IdentifierLoc, diag::err_undeclared_var_use) << &Identifier;
Mike Stump11289f42009-09-09 15:08:12 +0000788
Douglas Gregor90c99722011-02-24 00:17:56 +0000789 return true;
Cedric Venet084381332009-02-14 20:20:19 +0000790}
791
Douglas Gregor90c99722011-02-24 00:17:56 +0000792bool Sema::ActOnCXXNestedNameSpecifier(Scope *S,
793 IdentifierInfo &Identifier,
794 SourceLocation IdentifierLoc,
795 SourceLocation CCLoc,
796 ParsedType ObjectType,
797 bool EnteringContext,
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000798 CXXScopeSpec &SS,
799 bool ErrorRecoveryLookup,
800 bool *IsCorrectedToColon) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000801 if (SS.isInvalid())
802 return true;
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000803
Douglas Gregor90c99722011-02-24 00:17:56 +0000804 return BuildCXXNestedNameSpecifier(S, Identifier, IdentifierLoc, CCLoc,
805 GetTypeFromParser(ObjectType),
806 EnteringContext, SS,
Craig Topperc3ec1492014-05-26 06:22:03 +0000807 /*ScopeLookupResult=*/nullptr, false,
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000808 IsCorrectedToColon);
Chris Lattner1c428032009-12-07 01:36:53 +0000809}
810
David Blaikie15a430a2011-12-04 05:04:18 +0000811bool Sema::ActOnCXXNestedNameSpecifierDecltype(CXXScopeSpec &SS,
812 const DeclSpec &DS,
813 SourceLocation ColonColonLoc) {
814 if (SS.isInvalid() || DS.getTypeSpecType() == DeclSpec::TST_error)
815 return true;
816
817 assert(DS.getTypeSpecType() == DeclSpec::TST_decltype);
818
819 QualType T = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
820 if (!T->isDependentType() && !T->getAs<TagType>()) {
David Blaikie6cab5962014-02-09 06:54:23 +0000821 Diag(DS.getTypeSpecTypeLoc(), diag::err_expected_class_or_namespace)
David Blaikiebbafb8a2012-03-11 07:00:24 +0000822 << T << getLangOpts().CPlusPlus;
David Blaikie15a430a2011-12-04 05:04:18 +0000823 return true;
824 }
825
826 TypeLocBuilder TLB;
827 DecltypeTypeLoc DecltypeTL = TLB.push<DecltypeTypeLoc>(T);
828 DecltypeTL.setNameLoc(DS.getTypeSpecTypeLoc());
829 SS.Extend(Context, SourceLocation(), TLB.getTypeLocInContext(Context, T),
830 ColonColonLoc);
831 return false;
832}
833
Chris Lattner1c428032009-12-07 01:36:53 +0000834/// IsInvalidUnlessNestedName - This method is used for error recovery
835/// purposes to determine whether the specified identifier is only valid as
836/// a nested name specifier, for example a namespace name. It is
837/// conservatively correct to always return false from this method.
838///
839/// The arguments are the same as those passed to ActOnCXXNestedNameSpecifier.
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +0000840bool Sema::IsInvalidUnlessNestedName(Scope *S, CXXScopeSpec &SS,
Douglas Gregor90c99722011-02-24 00:17:56 +0000841 IdentifierInfo &Identifier,
842 SourceLocation IdentifierLoc,
843 SourceLocation ColonLoc,
844 ParsedType ObjectType,
Chris Lattner1c428032009-12-07 01:36:53 +0000845 bool EnteringContext) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000846 if (SS.isInvalid())
847 return false;
Craig Topperc3ec1492014-05-26 06:22:03 +0000848
Douglas Gregor90c99722011-02-24 00:17:56 +0000849 return !BuildCXXNestedNameSpecifier(S, Identifier, IdentifierLoc, ColonLoc,
850 GetTypeFromParser(ObjectType),
851 EnteringContext, SS,
Craig Topperc3ec1492014-05-26 06:22:03 +0000852 /*ScopeLookupResult=*/nullptr, true);
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000853}
854
Douglas Gregor90c99722011-02-24 00:17:56 +0000855bool Sema::ActOnCXXNestedNameSpecifier(Scope *S,
Abramo Bagnara7945c982012-01-27 09:46:47 +0000856 CXXScopeSpec &SS,
857 SourceLocation TemplateKWLoc,
Douglas Gregor6e068012011-02-28 00:04:36 +0000858 TemplateTy Template,
859 SourceLocation TemplateNameLoc,
860 SourceLocation LAngleLoc,
861 ASTTemplateArgsPtr TemplateArgsIn,
862 SourceLocation RAngleLoc,
Douglas Gregor90c99722011-02-24 00:17:56 +0000863 SourceLocation CCLoc,
Douglas Gregor6e068012011-02-28 00:04:36 +0000864 bool EnteringContext) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000865 if (SS.isInvalid())
866 return true;
867
Douglas Gregor6e068012011-02-28 00:04:36 +0000868 // Translate the parser's template argument list in our AST format.
869 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
870 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
871
Richard Smith72bfbd82013-12-04 00:28:23 +0000872 DependentTemplateName *DTN = Template.get().getAsDependentTemplateName();
873 if (DTN && DTN->isIdentifier()) {
Douglas Gregor6e068012011-02-28 00:04:36 +0000874 // Handle a dependent template specialization for which we cannot resolve
875 // the template name.
Richard Smith74bb2d22013-03-26 00:54:11 +0000876 assert(DTN->getQualifier() == SS.getScopeRep());
Douglas Gregor6e068012011-02-28 00:04:36 +0000877 QualType T = Context.getDependentTemplateSpecializationType(ETK_None,
Douglas Gregora7a795b2011-03-01 20:11:18 +0000878 DTN->getQualifier(),
879 DTN->getIdentifier(),
Douglas Gregor6e068012011-02-28 00:04:36 +0000880 TemplateArgs);
881
882 // Create source-location information for this type.
883 TypeLocBuilder Builder;
Abramo Bagnara48c05be2012-02-06 14:41:24 +0000884 DependentTemplateSpecializationTypeLoc SpecTL
Douglas Gregor6e068012011-02-28 00:04:36 +0000885 = Builder.push<DependentTemplateSpecializationTypeLoc>(T);
Abramo Bagnara48c05be2012-02-06 14:41:24 +0000886 SpecTL.setElaboratedKeywordLoc(SourceLocation());
887 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Abramo Bagnarae0a70b22012-02-06 22:45:07 +0000888 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
Abramo Bagnara48c05be2012-02-06 14:41:24 +0000889 SpecTL.setTemplateNameLoc(TemplateNameLoc);
Douglas Gregor6e068012011-02-28 00:04:36 +0000890 SpecTL.setLAngleLoc(LAngleLoc);
891 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregor6e068012011-02-28 00:04:36 +0000892 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
893 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
894
Abramo Bagnara7945c982012-01-27 09:46:47 +0000895 SS.Extend(Context, TemplateKWLoc, Builder.getTypeLocInContext(Context, T),
Douglas Gregor6e068012011-02-28 00:04:36 +0000896 CCLoc);
897 return false;
898 }
Richard Smith72bfbd82013-12-04 00:28:23 +0000899
Richard Smithf95fe9b2013-12-04 00:47:45 +0000900 TemplateDecl *TD = Template.get().getAsTemplateDecl();
Richard Smith72bfbd82013-12-04 00:28:23 +0000901 if (Template.get().getAsOverloadedTemplate() || DTN ||
Richard Smithf95fe9b2013-12-04 00:47:45 +0000902 isa<FunctionTemplateDecl>(TD) || isa<VarTemplateDecl>(TD)) {
Douglas Gregor8b6070b2011-03-04 21:37:14 +0000903 SourceRange R(TemplateNameLoc, RAngleLoc);
904 if (SS.getRange().isValid())
905 R.setBegin(SS.getRange().getBegin());
Richard Smith72bfbd82013-12-04 00:28:23 +0000906
Douglas Gregor8b6070b2011-03-04 21:37:14 +0000907 Diag(CCLoc, diag::err_non_type_template_in_nested_name_specifier)
Richard Smithf95fe9b2013-12-04 00:47:45 +0000908 << (TD && isa<VarTemplateDecl>(TD)) << Template.get() << R;
Douglas Gregor8b6070b2011-03-04 21:37:14 +0000909 NoteAllFoundTemplates(Template.get());
910 return true;
911 }
Richard Smith72bfbd82013-12-04 00:28:23 +0000912
Douglas Gregor6e068012011-02-28 00:04:36 +0000913 // We were able to resolve the template name to an actual template.
914 // Build an appropriate nested-name-specifier.
915 QualType T = CheckTemplateIdType(Template.get(), TemplateNameLoc,
916 TemplateArgs);
Douglas Gregor90c99722011-02-24 00:17:56 +0000917 if (T.isNull())
918 return true;
919
Richard Smith3f1b5d02011-05-05 21:57:07 +0000920 // Alias template specializations can produce types which are not valid
921 // nested name specifiers.
922 if (!T->isDependentType() && !T->getAs<TagType>()) {
923 Diag(TemplateNameLoc, diag::err_nested_name_spec_non_tag) << T;
924 NoteAllFoundTemplates(Template.get());
925 return true;
926 }
Douglas Gregor6e068012011-02-28 00:04:36 +0000927
Abramo Bagnara48c05be2012-02-06 14:41:24 +0000928 // Provide source-location information for the template specialization type.
Douglas Gregor6e068012011-02-28 00:04:36 +0000929 TypeLocBuilder Builder;
Abramo Bagnara48c05be2012-02-06 14:41:24 +0000930 TemplateSpecializationTypeLoc SpecTL
Douglas Gregor6e068012011-02-28 00:04:36 +0000931 = Builder.push<TemplateSpecializationTypeLoc>(T);
Abramo Bagnara48c05be2012-02-06 14:41:24 +0000932 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
933 SpecTL.setTemplateNameLoc(TemplateNameLoc);
Douglas Gregor6e068012011-02-28 00:04:36 +0000934 SpecTL.setLAngleLoc(LAngleLoc);
935 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregor6e068012011-02-28 00:04:36 +0000936 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
937 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
938
939
Abramo Bagnara7945c982012-01-27 09:46:47 +0000940 SS.Extend(Context, TemplateKWLoc, Builder.getTypeLocInContext(Context, T),
Douglas Gregor6e068012011-02-28 00:04:36 +0000941 CCLoc);
Douglas Gregor90c99722011-02-24 00:17:56 +0000942 return false;
Douglas Gregor7f741122009-02-25 19:37:18 +0000943}
944
Douglas Gregor869ad452011-02-24 17:54:50 +0000945namespace {
946 /// \brief A structure that stores a nested-name-specifier annotation,
947 /// including both the nested-name-specifier
948 struct NestedNameSpecifierAnnotation {
949 NestedNameSpecifier *NNS;
950 };
951}
952
953void *Sema::SaveNestedNameSpecifierAnnotation(CXXScopeSpec &SS) {
954 if (SS.isEmpty() || SS.isInvalid())
Craig Topperc3ec1492014-05-26 06:22:03 +0000955 return nullptr;
956
Douglas Gregor869ad452011-02-24 17:54:50 +0000957 void *Mem = Context.Allocate((sizeof(NestedNameSpecifierAnnotation) +
958 SS.location_size()),
959 llvm::alignOf<NestedNameSpecifierAnnotation>());
960 NestedNameSpecifierAnnotation *Annotation
961 = new (Mem) NestedNameSpecifierAnnotation;
962 Annotation->NNS = SS.getScopeRep();
963 memcpy(Annotation + 1, SS.location_data(), SS.location_size());
964 return Annotation;
965}
966
967void Sema::RestoreNestedNameSpecifierAnnotation(void *AnnotationPtr,
968 SourceRange AnnotationRange,
969 CXXScopeSpec &SS) {
970 if (!AnnotationPtr) {
971 SS.SetInvalid(AnnotationRange);
972 return;
973 }
974
975 NestedNameSpecifierAnnotation *Annotation
976 = static_cast<NestedNameSpecifierAnnotation *>(AnnotationPtr);
977 SS.Adopt(NestedNameSpecifierLoc(Annotation->NNS, Annotation + 1));
978}
979
John McCall2b058ef2009-12-11 20:04:54 +0000980bool Sema::ShouldEnterDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
981 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
982
Richard Smith74bb2d22013-03-26 00:54:11 +0000983 NestedNameSpecifier *Qualifier = SS.getScopeRep();
John McCall2b058ef2009-12-11 20:04:54 +0000984
985 // There are only two places a well-formed program may qualify a
986 // declarator: first, when defining a namespace or class member
987 // out-of-line, and second, when naming an explicitly-qualified
988 // friend function. The latter case is governed by
989 // C++03 [basic.lookup.unqual]p10:
990 // In a friend declaration naming a member function, a name used
991 // in the function declarator and not part of a template-argument
992 // in a template-id is first looked up in the scope of the member
993 // function's class. If it is not found, or if the name is part of
994 // a template-argument in a template-id, the look up is as
995 // described for unqualified names in the definition of the class
996 // granting friendship.
997 // i.e. we don't push a scope unless it's a class member.
998
999 switch (Qualifier->getKind()) {
1000 case NestedNameSpecifier::Global:
1001 case NestedNameSpecifier::Namespace:
Douglas Gregor7b26ff92011-02-24 02:36:08 +00001002 case NestedNameSpecifier::NamespaceAlias:
John McCall2b058ef2009-12-11 20:04:54 +00001003 // These are always namespace scopes. We never want to enter a
1004 // namespace scope from anything but a file context.
Sebastian Redl50c68252010-08-31 00:36:30 +00001005 return CurContext->getRedeclContext()->isFileContext();
John McCall2b058ef2009-12-11 20:04:54 +00001006
1007 case NestedNameSpecifier::Identifier:
1008 case NestedNameSpecifier::TypeSpec:
1009 case NestedNameSpecifier::TypeSpecWithTemplate:
Nikola Smiljanic67860242014-09-26 00:28:20 +00001010 case NestedNameSpecifier::Super:
John McCall2b058ef2009-12-11 20:04:54 +00001011 // These are never namespace scopes.
1012 return true;
1013 }
1014
David Blaikie8a40f702012-01-17 06:56:22 +00001015 llvm_unreachable("Invalid NestedNameSpecifier::Kind!");
John McCall2b058ef2009-12-11 20:04:54 +00001016}
1017
Cedric Venet084381332009-02-14 20:20:19 +00001018/// ActOnCXXEnterDeclaratorScope - Called when a C++ scope specifier (global
1019/// scope or nested-name-specifier) is parsed, part of a declarator-id.
1020/// After this method is called, according to [C++ 3.4.3p3], names should be
1021/// looked up in the declarator-id's scope, until the declarator is parsed and
1022/// ActOnCXXExitDeclaratorScope is called.
1023/// The 'SS' should be a non-empty valid CXXScopeSpec.
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00001024bool Sema::ActOnCXXEnterDeclaratorScope(Scope *S, CXXScopeSpec &SS) {
Cedric Venet084381332009-02-14 20:20:19 +00001025 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
John McCall6df5fef2009-12-19 10:49:29 +00001026
1027 if (SS.isInvalid()) return true;
1028
1029 DeclContext *DC = computeDeclContext(SS, true);
1030 if (!DC) return true;
1031
1032 // Before we enter a declarator's context, we need to make sure that
1033 // it is a complete declaration context.
John McCall0b66eb32010-05-01 00:40:08 +00001034 if (!DC->isDependentContext() && RequireCompleteDeclContext(SS, DC))
John McCall6df5fef2009-12-19 10:49:29 +00001035 return true;
1036
1037 EnterDeclaratorContext(S, DC);
John McCall2408e322010-04-27 00:57:59 +00001038
1039 // Rebuild the nested name specifier for the new scope.
1040 if (DC->isDependentContext())
1041 RebuildNestedNameSpecifierInCurrentInstantiation(SS);
1042
Douglas Gregor5013a7e2009-09-24 23:39:01 +00001043 return false;
Cedric Venet084381332009-02-14 20:20:19 +00001044}
1045
1046/// ActOnCXXExitDeclaratorScope - Called when a declarator that previously
1047/// invoked ActOnCXXEnterDeclaratorScope(), is finished. 'SS' is the same
1048/// CXXScopeSpec that was passed to ActOnCXXEnterDeclaratorScope as well.
1049/// Used to indicate that names should revert to being looked up in the
1050/// defining scope.
1051void Sema::ActOnCXXExitDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
1052 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
Douglas Gregor053f6912009-08-26 00:04:55 +00001053 if (SS.isInvalid())
1054 return;
John McCall6df5fef2009-12-19 10:49:29 +00001055 assert(!SS.isInvalid() && computeDeclContext(SS, true) &&
1056 "exiting declarator scope we never really entered");
1057 ExitDeclaratorContext(S);
Cedric Venet084381332009-02-14 20:20:19 +00001058}