blob: d3f0fad3151079c8d452e6441b9824173443727e [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();
151 }
152
David Blaikie8a40f702012-01-17 06:56:22 +0000153 llvm_unreachable("Invalid NestedNameSpecifier::Kind!");
Douglas Gregor6bfde492009-03-18 00:36:05 +0000154}
155
Douglas Gregor90a1a652009-03-19 17:26:29 +0000156bool Sema::isDependentScopeSpecifier(const CXXScopeSpec &SS) {
157 if (!SS.isSet() || SS.isInvalid())
158 return false;
159
Richard Smith74bb2d22013-03-26 00:54:11 +0000160 return SS.getScopeRep()->isDependent();
Douglas Gregor90a1a652009-03-19 17:26:29 +0000161}
162
Douglas Gregorc9f9b862009-05-11 19:58:34 +0000163/// \brief If the given nested name specifier refers to the current
164/// instantiation, return the declaration that corresponds to that
165/// current instantiation (C++0x [temp.dep.type]p1).
166///
167/// \param NNS a dependent nested name specifier.
168CXXRecordDecl *Sema::getCurrentInstantiationOf(NestedNameSpecifier *NNS) {
David Blaikiebbafb8a2012-03-11 07:00:24 +0000169 assert(getLangOpts().CPlusPlus && "Only callable in C++");
Douglas Gregorc9f9b862009-05-11 19:58:34 +0000170 assert(NNS->isDependent() && "Only dependent nested-name-specifier allowed");
171
Douglas Gregord8d297c2009-07-21 23:53:31 +0000172 if (!NNS->getAsType())
Craig Topperc3ec1492014-05-26 06:22:03 +0000173 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +0000174
Douglas Gregorb9a955d2009-07-31 18:32:42 +0000175 QualType T = QualType(NNS->getAsType(), 0);
Douglas Gregorbf2b26d2011-02-19 19:24:40 +0000176 return ::getCurrentInstantiationOf(T, CurContext);
Douglas Gregorc9f9b862009-05-11 19:58:34 +0000177}
178
Douglas Gregor26897462009-03-11 16:48:53 +0000179/// \brief Require that the context specified by SS be complete.
180///
181/// If SS refers to a type, this routine checks whether the type is
182/// complete enough (or can be made complete enough) for name lookup
183/// into the DeclContext. A type that is not yet completed can be
184/// considered "complete enough" if it is a class/struct/union/enum
185/// that is currently being defined. Or, if we have a type that names
186/// a class template specialization that is not a complete type, we
187/// will attempt to instantiate that class template.
John McCall0b66eb32010-05-01 00:40:08 +0000188bool Sema::RequireCompleteDeclContext(CXXScopeSpec &SS,
189 DeclContext *DC) {
Craig Topperc3ec1492014-05-26 06:22:03 +0000190 assert(DC && "given null context");
Mike Stump11289f42009-09-09 15:08:12 +0000191
Richard Smith4b38ded2012-03-14 23:13:10 +0000192 TagDecl *tag = dyn_cast<TagDecl>(DC);
Douglas Gregor8a6d15d2010-02-05 04:39:02 +0000193
Richard Smith4b38ded2012-03-14 23:13:10 +0000194 // If this is a dependent type, then we consider it complete.
195 if (!tag || tag->isDependentContext())
196 return false;
Douglas Gregor26897462009-03-11 16:48:53 +0000197
Richard Smith4b38ded2012-03-14 23:13:10 +0000198 // If we're currently defining this type, then lookup into the
199 // type is okay: don't complain that it isn't complete yet.
200 QualType type = Context.getTypeDeclType(tag);
201 const TagType *tagType = type->getAs<TagType>();
202 if (tagType && tagType->isBeingDefined())
203 return false;
John McCall21878762011-07-06 06:57:57 +0000204
Richard Smith4b38ded2012-03-14 23:13:10 +0000205 SourceLocation loc = SS.getLastQualifierNameLoc();
206 if (loc.isInvalid()) loc = SS.getRange().getBegin();
John McCall21878762011-07-06 06:57:57 +0000207
Richard Smith4b38ded2012-03-14 23:13:10 +0000208 // The type must be complete.
Douglas Gregor7bfb2d02012-05-04 16:32:21 +0000209 if (RequireCompleteType(loc, type, diag::err_incomplete_nested_name_spec,
210 SS.getRange())) {
Richard Smith4b38ded2012-03-14 23:13:10 +0000211 SS.SetInvalid(SS.getRange());
212 return true;
Douglas Gregor26897462009-03-11 16:48:53 +0000213 }
214
Richard Smith4b38ded2012-03-14 23:13:10 +0000215 // Fixed enum types are complete, but they aren't valid as scopes
216 // until we see a definition, so awkwardly pull out this special
217 // case.
218 const EnumType *enumType = dyn_cast_or_null<EnumType>(tagType);
219 if (!enumType || enumType->getDecl()->isCompleteDefinition())
220 return false;
221
222 // Try to instantiate the definition, if this is a specialization of an
223 // enumeration temploid.
224 EnumDecl *ED = enumType->getDecl();
225 if (EnumDecl *Pattern = ED->getInstantiatedFromMemberEnum()) {
226 MemberSpecializationInfo *MSI = ED->getMemberSpecializationInfo();
Richard Smith7d137e32012-03-23 03:33:32 +0000227 if (MSI->getTemplateSpecializationKind() != TSK_ExplicitSpecialization) {
228 if (InstantiateEnum(loc, ED, Pattern, getTemplateInstantiationArgs(ED),
229 TSK_ImplicitInstantiation)) {
230 SS.SetInvalid(SS.getRange());
231 return true;
232 }
233 return false;
234 }
Richard Smith4b38ded2012-03-14 23:13:10 +0000235 }
236
237 Diag(loc, diag::err_incomplete_nested_name_spec)
238 << type << SS.getRange();
239 SS.SetInvalid(SS.getRange());
240 return true;
Douglas Gregor26897462009-03-11 16:48:53 +0000241}
Cedric Venet084381332009-02-14 20:20:19 +0000242
Douglas Gregor90c99722011-02-24 00:17:56 +0000243bool Sema::ActOnCXXGlobalScopeSpecifier(Scope *S, SourceLocation CCLoc,
244 CXXScopeSpec &SS) {
245 SS.MakeGlobal(Context, CCLoc);
246 return false;
Cedric Venet084381332009-02-14 20:20:19 +0000247}
248
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000249/// \brief Determines whether the given declaration is an valid acceptable
250/// result for name lookup of a nested-name-specifier.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000251bool Sema::isAcceptableNestedNameSpecifier(const NamedDecl *SD) {
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000252 if (!SD)
253 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000254
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000255 // Namespace and namespace aliases are fine.
256 if (isa<NamespaceDecl>(SD) || isa<NamespaceAliasDecl>(SD))
257 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000258
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000259 if (!isa<TypeDecl>(SD))
260 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000261
Richard Smithc8239732011-10-18 21:39:00 +0000262 // Determine whether we have a class (or, in C++11, an enum) or
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000263 // a typedef thereof. If so, build the nested-name-specifier.
264 QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD));
265 if (T->isDependentType())
266 return true;
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000267 else if (const TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(SD)) {
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000268 if (TD->getUnderlyingType()->isRecordType() ||
Richard Smith2bf7fdb2013-01-02 11:42:31 +0000269 (Context.getLangOpts().CPlusPlus11 &&
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000270 TD->getUnderlyingType()->isEnumeralType()))
271 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000272 } else if (isa<RecordDecl>(SD) ||
Richard Smith2bf7fdb2013-01-02 11:42:31 +0000273 (Context.getLangOpts().CPlusPlus11 && isa<EnumDecl>(SD)))
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000274 return true;
275
276 return false;
277}
278
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000279/// \brief If the given nested-name-specifier begins with a bare identifier
Mike Stump11289f42009-09-09 15:08:12 +0000280/// (e.g., Base::), perform name lookup for that identifier as a
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000281/// nested-name-specifier within the given scope, and return the result of that
282/// name lookup.
283NamedDecl *Sema::FindFirstQualifierInScope(Scope *S, NestedNameSpecifier *NNS) {
284 if (!S || !NNS)
Craig Topperc3ec1492014-05-26 06:22:03 +0000285 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +0000286
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000287 while (NNS->getPrefix())
288 NNS = NNS->getPrefix();
Mike Stump11289f42009-09-09 15:08:12 +0000289
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000290 if (NNS->getKind() != NestedNameSpecifier::Identifier)
Craig Topperc3ec1492014-05-26 06:22:03 +0000291 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +0000292
John McCall27b18f82009-11-17 02:14:36 +0000293 LookupResult Found(*this, NNS->getAsIdentifier(), SourceLocation(),
294 LookupNestedNameSpecifierName);
295 LookupName(Found, S);
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000296 assert(!Found.isAmbiguous() && "Cannot handle ambiguities here yet");
297
John McCall67c00872009-12-02 08:25:40 +0000298 if (!Found.isSingleResult())
Craig Topperc3ec1492014-05-26 06:22:03 +0000299 return nullptr;
John McCall67c00872009-12-02 08:25:40 +0000300
301 NamedDecl *Result = Found.getFoundDecl();
Douglas Gregorcd3f49f2010-02-25 04:46:04 +0000302 if (isAcceptableNestedNameSpecifier(Result))
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000303 return Result;
Mike Stump11289f42009-09-09 15:08:12 +0000304
Craig Topperc3ec1492014-05-26 06:22:03 +0000305 return nullptr;
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000306}
307
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +0000308bool Sema::isNonTypeNestedNameSpecifier(Scope *S, CXXScopeSpec &SS,
Douglas Gregor0d5b0a12010-02-24 21:29:12 +0000309 SourceLocation IdLoc,
310 IdentifierInfo &II,
John McCallba7bf592010-08-24 05:47:05 +0000311 ParsedType ObjectTypePtr) {
Douglas Gregor0d5b0a12010-02-24 21:29:12 +0000312 QualType ObjectType = GetTypeFromParser(ObjectTypePtr);
313 LookupResult Found(*this, &II, IdLoc, LookupNestedNameSpecifierName);
314
315 // Determine where to perform name lookup
Craig Topperc3ec1492014-05-26 06:22:03 +0000316 DeclContext *LookupCtx = nullptr;
Douglas Gregor0d5b0a12010-02-24 21:29:12 +0000317 bool isDependent = false;
318 if (!ObjectType.isNull()) {
319 // This nested-name-specifier occurs in a member access expression, e.g.,
320 // x->B::f, and we are looking into the type of the object.
321 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
322 LookupCtx = computeDeclContext(ObjectType);
323 isDependent = ObjectType->isDependentType();
324 } else if (SS.isSet()) {
325 // This nested-name-specifier occurs after another nested-name-specifier,
326 // so long into the context associated with the prior nested-name-specifier.
327 LookupCtx = computeDeclContext(SS, false);
328 isDependent = isDependentScopeSpecifier(SS);
329 Found.setContextRange(SS.getRange());
330 }
331
332 if (LookupCtx) {
333 // Perform "qualified" name lookup into the declaration context we
334 // computed, which is either the type of the base of a member access
335 // expression or the declaration context associated with a prior
336 // nested-name-specifier.
337
338 // The declaration context must be complete.
John McCall0b66eb32010-05-01 00:40:08 +0000339 if (!LookupCtx->isDependentContext() &&
340 RequireCompleteDeclContext(SS, LookupCtx))
Douglas Gregor0d5b0a12010-02-24 21:29:12 +0000341 return false;
342
343 LookupQualifiedName(Found, LookupCtx);
344 } else if (isDependent) {
345 return false;
346 } else {
347 LookupName(Found, S);
348 }
349 Found.suppressDiagnostics();
350
351 if (NamedDecl *ND = Found.getAsSingle<NamedDecl>())
352 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
353
354 return false;
355}
356
Kaelyn Uhrainfb96ec72012-01-12 22:32:39 +0000357namespace {
358
359// Callback to only accept typo corrections that can be a valid C++ member
360// intializer: either a non-static field member or a base class.
361class NestedNameSpecifierValidatorCCC : public CorrectionCandidateCallback {
362 public:
363 explicit NestedNameSpecifierValidatorCCC(Sema &SRef)
364 : SRef(SRef) {}
365
Craig Toppere14c0f82014-03-12 04:55:44 +0000366 bool ValidateCandidate(const TypoCorrection &candidate) override {
Kaelyn Uhrainfb96ec72012-01-12 22:32:39 +0000367 return SRef.isAcceptableNestedNameSpecifier(candidate.getCorrectionDecl());
368 }
369
370 private:
371 Sema &SRef;
372};
373
374}
375
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000376/// \brief Build a new nested-name-specifier for "identifier::", as described
377/// by ActOnCXXNestedNameSpecifier.
378///
379/// This routine differs only slightly from ActOnCXXNestedNameSpecifier, in
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000380/// that it contains an extra parameter \p ScopeLookupResult.
381///
382/// \param S Scope in which the nested-name-specifier occurs.
383/// \param Identifier Identifier in the sequence "identifier" "::".
384/// \param IdentifierLoc Location of the \p Identifier.
385/// \param CCLoc Location of "::" following Identifier.
386/// \param ObjectType Type of postfix expression if the nested-name-specifier
387/// occurs in construct like: <tt>ptr->nns::f</tt>.
388/// \param EnteringContext If true, enter the context specified by the
389/// nested-name-specifier.
390/// \param SS Optional nested name specifier preceding the identifier.
391/// \param ScopeLookupResult Provides the result of name lookup within the
392/// scope of the nested-name-specifier that was computed at template
393/// definition time.
394/// \param ErrorRecoveryLookup Specifies if the method is called to improve
395/// error recovery and what kind of recovery is performed.
396/// \param IsCorrectedToColon If not null, suggestion of replace '::' -> ':'
397/// are allowed. The bool value pointed by this parameter is set to
398/// 'true' if the identifier is treated as if it was followed by ':',
399/// not '::'.
400///
401/// This routine differs only slightly from ActOnCXXNestedNameSpecifier, in
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000402/// that it contains an extra parameter \p ScopeLookupResult, which provides
403/// the result of name lookup within the scope of the nested-name-specifier
Douglas Gregorad183ac2009-12-30 16:01:52 +0000404/// that was computed at template definition time.
Chris Lattner1c428032009-12-07 01:36:53 +0000405///
406/// If ErrorRecoveryLookup is true, then this call is used to improve error
407/// recovery. This means that it should not emit diagnostics, it should
Douglas Gregor90c99722011-02-24 00:17:56 +0000408/// just return true on failure. It also means it should only return a valid
Chris Lattner1c428032009-12-07 01:36:53 +0000409/// scope if it *knows* that the result is correct. It should not return in a
Douglas Gregor90c99722011-02-24 00:17:56 +0000410/// dependent context, for example. Nor will it extend \p SS with the scope
411/// specifier.
412bool Sema::BuildCXXNestedNameSpecifier(Scope *S,
413 IdentifierInfo &Identifier,
414 SourceLocation IdentifierLoc,
415 SourceLocation CCLoc,
416 QualType ObjectType,
417 bool EnteringContext,
418 CXXScopeSpec &SS,
419 NamedDecl *ScopeLookupResult,
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000420 bool ErrorRecoveryLookup,
421 bool *IsCorrectedToColon) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000422 LookupResult Found(*this, &Identifier, IdentifierLoc,
423 LookupNestedNameSpecifierName);
John McCall27b18f82009-11-17 02:14:36 +0000424
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000425 // Determine where to perform name lookup
Craig Topperc3ec1492014-05-26 06:22:03 +0000426 DeclContext *LookupCtx = nullptr;
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000427 bool isDependent = false;
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000428 if (IsCorrectedToColon)
429 *IsCorrectedToColon = false;
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000430 if (!ObjectType.isNull()) {
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000431 // This nested-name-specifier occurs in a member access expression, e.g.,
432 // x->B::f, and we are looking into the type of the object.
433 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000434 LookupCtx = computeDeclContext(ObjectType);
435 isDependent = ObjectType->isDependentType();
436 } else if (SS.isSet()) {
437 // This nested-name-specifier occurs after another nested-name-specifier,
Richard Smith3f1b5d02011-05-05 21:57:07 +0000438 // so look into the context associated with the prior nested-name-specifier.
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000439 LookupCtx = computeDeclContext(SS, EnteringContext);
440 isDependent = isDependentScopeSpecifier(SS);
John McCall27b18f82009-11-17 02:14:36 +0000441 Found.setContextRange(SS.getRange());
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000442 }
Mike Stump11289f42009-09-09 15:08:12 +0000443
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000444 bool ObjectTypeSearchedInScope = false;
445 if (LookupCtx) {
Mike Stump11289f42009-09-09 15:08:12 +0000446 // Perform "qualified" name lookup into the declaration context we
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000447 // computed, which is either the type of the base of a member access
Mike Stump11289f42009-09-09 15:08:12 +0000448 // expression or the declaration context associated with a prior
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000449 // nested-name-specifier.
Mike Stump11289f42009-09-09 15:08:12 +0000450
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000451 // The declaration context must be complete.
John McCall0b66eb32010-05-01 00:40:08 +0000452 if (!LookupCtx->isDependentContext() &&
453 RequireCompleteDeclContext(SS, LookupCtx))
Douglas Gregor90c99722011-02-24 00:17:56 +0000454 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000455
John McCall27b18f82009-11-17 02:14:36 +0000456 LookupQualifiedName(Found, LookupCtx);
Mike Stump11289f42009-09-09 15:08:12 +0000457
John McCall27b18f82009-11-17 02:14:36 +0000458 if (!ObjectType.isNull() && Found.empty()) {
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000459 // C++ [basic.lookup.classref]p4:
460 // If the id-expression in a class member access is a qualified-id of
Mike Stump11289f42009-09-09 15:08:12 +0000461 // the form
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000462 //
463 // class-name-or-namespace-name::...
464 //
Mike Stump11289f42009-09-09 15:08:12 +0000465 // the class-name-or-namespace-name following the . or -> operator is
466 // looked up both in the context of the entire postfix-expression and in
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000467 // the scope of the class of the object expression. If the name is found
Mike Stump11289f42009-09-09 15:08:12 +0000468 // only in the scope of the class of the object expression, the name
469 // shall refer to a class-name. If the name is found only in the
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000470 // context of the entire postfix-expression, the name shall refer to a
471 // class-name or namespace-name. [...]
472 //
473 // Qualified name lookup into a class will not find a namespace-name,
Douglas Gregor9d07dfa2011-05-15 17:27:27 +0000474 // so we do not need to diagnose that case specifically. However,
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000475 // this qualified name lookup may find nothing. In that case, perform
Mike Stump11289f42009-09-09 15:08:12 +0000476 // unqualified name lookup in the given scope (if available) or
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000477 // reconstruct the result from when name lookup was performed at template
478 // definition time.
479 if (S)
John McCall27b18f82009-11-17 02:14:36 +0000480 LookupName(Found, S);
John McCall9f3059a2009-10-09 21:13:30 +0000481 else if (ScopeLookupResult)
482 Found.addDecl(ScopeLookupResult);
Mike Stump11289f42009-09-09 15:08:12 +0000483
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000484 ObjectTypeSearchedInScope = true;
485 }
Douglas Gregordf65c8ed2010-07-28 14:49:07 +0000486 } else if (!isDependent) {
487 // Perform unqualified name lookup in the current scope.
488 LookupName(Found, S);
489 }
490
491 // If we performed lookup into a dependent context and did not find anything,
492 // that's fine: just build a dependent nested-name-specifier.
493 if (Found.empty() && isDependent &&
494 !(LookupCtx && LookupCtx->isRecord() &&
495 (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() ||
496 !cast<CXXRecordDecl>(LookupCtx)->hasAnyDependentBases()))) {
Chris Lattner1c428032009-12-07 01:36:53 +0000497 // Don't speculate if we're just trying to improve error recovery.
498 if (ErrorRecoveryLookup)
Douglas Gregor90c99722011-02-24 00:17:56 +0000499 return true;
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000500
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000501 // We were not able to compute the declaration context for a dependent
Mike Stump11289f42009-09-09 15:08:12 +0000502 // base object type or prior nested-name-specifier, so this
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000503 // nested-name-specifier refers to an unknown specialization. Just build
504 // a dependent nested-name-specifier.
Douglas Gregor90c99722011-02-24 00:17:56 +0000505 SS.Extend(Context, &Identifier, IdentifierLoc, CCLoc);
506 return false;
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000507 }
508
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000509 // FIXME: Deal with ambiguities cleanly.
Douglas Gregor532e68f2009-12-31 08:26:35 +0000510
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000511 if (Found.empty() && !ErrorRecoveryLookup) {
512 // If identifier is not found as class-name-or-namespace-name, but is found
513 // as other entity, don't look for typos.
514 LookupResult R(*this, Found.getLookupNameInfo(), LookupOrdinaryName);
515 if (LookupCtx)
516 LookupQualifiedName(R, LookupCtx);
517 else if (S && !isDependent)
518 LookupName(R, S);
519 if (!R.empty()) {
520 // The identifier is found in ordinary lookup. If correction to colon is
521 // allowed, suggest replacement to ':'.
522 if (IsCorrectedToColon) {
523 *IsCorrectedToColon = true;
524 Diag(CCLoc, diag::err_nested_name_spec_is_not_class)
525 << &Identifier << getLangOpts().CPlusPlus
526 << FixItHint::CreateReplacement(CCLoc, ":");
527 if (NamedDecl *ND = R.getAsSingle<NamedDecl>())
528 Diag(ND->getLocation(), diag::note_declared_at);
529 return true;
530 }
531 // Replacement '::' -> ':' is not allowed, just issue respective error.
532 Diag(R.getNameLoc(), diag::err_expected_class_or_namespace)
533 << &Identifier << getLangOpts().CPlusPlus;
534 if (NamedDecl *ND = R.getAsSingle<NamedDecl>())
Alp Toker2afa8782014-05-28 12:20:14 +0000535 Diag(ND->getLocation(), diag::note_entity_declared_at) << &Identifier;
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000536 return true;
537 }
538 }
539
Alp Tokerbfa39342014-01-14 12:51:41 +0000540 if (Found.empty() && !ErrorRecoveryLookup && !getLangOpts().MSVCCompat) {
Douglas Gregor532e68f2009-12-31 08:26:35 +0000541 // We haven't found anything, and we're not recovering from a
542 // different kind of error, so look for typos.
543 DeclarationName Name = Found.getLookupName();
Kaelyn Uhrainfb96ec72012-01-12 22:32:39 +0000544 NestedNameSpecifierValidatorCCC Validator(*this);
Douglas Gregorc2fa1692011-06-28 16:20:02 +0000545 Found.clear();
Richard Smithf9b15102013-08-17 00:46:16 +0000546 if (TypoCorrection Corrected =
547 CorrectTypo(Found.getLookupNameInfo(), Found.getLookupKind(), S,
John Thompson2255f2c2014-04-23 12:57:01 +0000548 &SS, Validator, CTK_ErrorRecovery, LookupCtx,
549 EnteringContext)) {
Richard Smithf9b15102013-08-17 00:46:16 +0000550 if (LookupCtx) {
551 bool DroppedSpecifier =
552 Corrected.WillReplaceSpecifier() &&
553 Name.getAsString() == Corrected.getAsString(getLangOpts());
Kaelyn Uhraina6c78fe2013-12-16 19:19:18 +0000554 if (DroppedSpecifier)
555 SS.clear();
Richard Smithf9b15102013-08-17 00:46:16 +0000556 diagnoseTypo(Corrected, PDiag(diag::err_no_member_suggest)
557 << Name << LookupCtx << DroppedSpecifier
558 << SS.getRange());
559 } else
560 diagnoseTypo(Corrected, PDiag(diag::err_undeclared_var_use_suggest)
561 << Name);
Kaelyn Uhrain10413a42013-07-02 23:47:44 +0000562
Richard Smithf9b15102013-08-17 00:46:16 +0000563 if (NamedDecl *ND = Corrected.getCorrectionDecl())
Douglas Gregorc2fa1692011-06-28 16:20:02 +0000564 Found.addDecl(ND);
Douglas Gregorc2fa1692011-06-28 16:20:02 +0000565 Found.setLookupName(Corrected.getCorrection());
Douglas Gregorc048c522010-06-29 19:27:42 +0000566 } else {
Douglas Gregor90c99722011-02-24 00:17:56 +0000567 Found.setLookupName(&Identifier);
Douglas Gregorc048c522010-06-29 19:27:42 +0000568 }
Douglas Gregor532e68f2009-12-31 08:26:35 +0000569 }
570
John McCall67c00872009-12-02 08:25:40 +0000571 NamedDecl *SD = Found.getAsSingle<NamedDecl>();
Douglas Gregorcd3f49f2010-02-25 04:46:04 +0000572 if (isAcceptableNestedNameSpecifier(SD)) {
Douglas Gregor1b02e4a2012-05-01 20:23:02 +0000573 if (!ObjectType.isNull() && !ObjectTypeSearchedInScope &&
Richard Smith2bf7fdb2013-01-02 11:42:31 +0000574 !getLangOpts().CPlusPlus11) {
Douglas Gregor1b02e4a2012-05-01 20:23:02 +0000575 // C++03 [basic.lookup.classref]p4:
Mike Stump11289f42009-09-09 15:08:12 +0000576 // [...] If the name is found in both contexts, the
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000577 // class-name-or-namespace-name shall refer to the same entity.
578 //
579 // We already found the name in the scope of the object. Now, look
580 // into the current scope (the scope of the postfix-expression) to
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000581 // see if we can find the same name there. As above, if there is no
582 // scope, reconstruct the result from the template instantiation itself.
Douglas Gregor1b02e4a2012-05-01 20:23:02 +0000583 //
584 // Note that C++11 does *not* perform this redundant lookup.
John McCall9f3059a2009-10-09 21:13:30 +0000585 NamedDecl *OuterDecl;
586 if (S) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000587 LookupResult FoundOuter(*this, &Identifier, IdentifierLoc,
588 LookupNestedNameSpecifierName);
John McCall27b18f82009-11-17 02:14:36 +0000589 LookupName(FoundOuter, S);
John McCall67c00872009-12-02 08:25:40 +0000590 OuterDecl = FoundOuter.getAsSingle<NamedDecl>();
John McCall9f3059a2009-10-09 21:13:30 +0000591 } else
592 OuterDecl = ScopeLookupResult;
Mike Stump11289f42009-09-09 15:08:12 +0000593
Douglas Gregorcd3f49f2010-02-25 04:46:04 +0000594 if (isAcceptableNestedNameSpecifier(OuterDecl) &&
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000595 OuterDecl->getCanonicalDecl() != SD->getCanonicalDecl() &&
596 (!isa<TypeDecl>(OuterDecl) || !isa<TypeDecl>(SD) ||
597 !Context.hasSameType(
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000598 Context.getTypeDeclType(cast<TypeDecl>(OuterDecl)),
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000599 Context.getTypeDeclType(cast<TypeDecl>(SD))))) {
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000600 if (ErrorRecoveryLookup)
601 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000602
Douglas Gregor90c99722011-02-24 00:17:56 +0000603 Diag(IdentifierLoc,
604 diag::err_nested_name_member_ref_lookup_ambiguous)
605 << &Identifier;
606 Diag(SD->getLocation(), diag::note_ambig_member_ref_object_type)
607 << ObjectType;
608 Diag(OuterDecl->getLocation(), diag::note_ambig_member_ref_scope);
609
610 // Fall through so that we'll pick the name we found in the object
611 // type, since that's probably what the user wanted anyway.
612 }
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000613 }
Mike Stump11289f42009-09-09 15:08:12 +0000614
Nico Weber72889432014-09-06 01:25:55 +0000615 if (auto *TD = dyn_cast_or_null<TypedefNameDecl>(SD))
616 MarkAnyDeclReferenced(TD->getLocation(), TD, /*OdrUse=*/false);
617
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000618 // If we're just performing this lookup for error-recovery purposes,
Douglas Gregor90c99722011-02-24 00:17:56 +0000619 // don't extend the nested-name-specifier. Just return now.
620 if (ErrorRecoveryLookup)
621 return false;
622
623 if (NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(SD)) {
624 SS.Extend(Context, Namespace, IdentifierLoc, CCLoc);
625 return false;
626 }
Mike Stump11289f42009-09-09 15:08:12 +0000627
Douglas Gregor90c99722011-02-24 00:17:56 +0000628 if (NamespaceAliasDecl *Alias = dyn_cast<NamespaceAliasDecl>(SD)) {
Douglas Gregor7b26ff92011-02-24 02:36:08 +0000629 SS.Extend(Context, Alias, IdentifierLoc, CCLoc);
Douglas Gregor90c99722011-02-24 00:17:56 +0000630 return false;
631 }
Mike Stump11289f42009-09-09 15:08:12 +0000632
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000633 QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD));
Douglas Gregor90c99722011-02-24 00:17:56 +0000634 TypeLocBuilder TLB;
635 if (isa<InjectedClassNameType>(T)) {
636 InjectedClassNameTypeLoc InjectedTL
637 = TLB.push<InjectedClassNameTypeLoc>(T);
638 InjectedTL.setNameLoc(IdentifierLoc);
Douglas Gregordfd4b742011-05-04 23:05:40 +0000639 } else if (isa<RecordType>(T)) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000640 RecordTypeLoc RecordTL = TLB.push<RecordTypeLoc>(T);
641 RecordTL.setNameLoc(IdentifierLoc);
Douglas Gregordfd4b742011-05-04 23:05:40 +0000642 } else if (isa<TypedefType>(T)) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000643 TypedefTypeLoc TypedefTL = TLB.push<TypedefTypeLoc>(T);
644 TypedefTL.setNameLoc(IdentifierLoc);
Douglas Gregordfd4b742011-05-04 23:05:40 +0000645 } else if (isa<EnumType>(T)) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000646 EnumTypeLoc EnumTL = TLB.push<EnumTypeLoc>(T);
647 EnumTL.setNameLoc(IdentifierLoc);
Douglas Gregordfd4b742011-05-04 23:05:40 +0000648 } else if (isa<TemplateTypeParmType>(T)) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000649 TemplateTypeParmTypeLoc TemplateTypeTL
650 = TLB.push<TemplateTypeParmTypeLoc>(T);
651 TemplateTypeTL.setNameLoc(IdentifierLoc);
Douglas Gregordfd4b742011-05-04 23:05:40 +0000652 } else if (isa<UnresolvedUsingType>(T)) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000653 UnresolvedUsingTypeLoc UnresolvedTL
654 = TLB.push<UnresolvedUsingTypeLoc>(T);
655 UnresolvedTL.setNameLoc(IdentifierLoc);
Douglas Gregordfd4b742011-05-04 23:05:40 +0000656 } else if (isa<SubstTemplateTypeParmType>(T)) {
657 SubstTemplateTypeParmTypeLoc TL
658 = TLB.push<SubstTemplateTypeParmTypeLoc>(T);
659 TL.setNameLoc(IdentifierLoc);
660 } else if (isa<SubstTemplateTypeParmPackType>(T)) {
661 SubstTemplateTypeParmPackTypeLoc TL
662 = TLB.push<SubstTemplateTypeParmPackTypeLoc>(T);
663 TL.setNameLoc(IdentifierLoc);
664 } else {
665 llvm_unreachable("Unhandled TypeDecl node in nested-name-specifier");
Douglas Gregor90c99722011-02-24 00:17:56 +0000666 }
667
Richard Smith91c7bbd2011-10-20 03:28:47 +0000668 if (T->isEnumeralType())
669 Diag(IdentifierLoc, diag::warn_cxx98_compat_enum_nested_name_spec);
670
Douglas Gregor90c99722011-02-24 00:17:56 +0000671 SS.Extend(Context, SourceLocation(), TLB.getTypeLocInContext(Context, T),
672 CCLoc);
673 return false;
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000674 }
Mike Stump11289f42009-09-09 15:08:12 +0000675
Chris Lattner1c428032009-12-07 01:36:53 +0000676 // Otherwise, we have an error case. If we don't want diagnostics, just
677 // return an error now.
678 if (ErrorRecoveryLookup)
Douglas Gregor90c99722011-02-24 00:17:56 +0000679 return true;
Chris Lattner1c428032009-12-07 01:36:53 +0000680
Cedric Venet084381332009-02-14 20:20:19 +0000681 // If we didn't find anything during our lookup, try again with
682 // ordinary name lookup, which can help us produce better error
683 // messages.
John McCall67c00872009-12-02 08:25:40 +0000684 if (Found.empty()) {
John McCall27b18f82009-11-17 02:14:36 +0000685 Found.clear(LookupOrdinaryName);
686 LookupName(Found, S);
John McCall9f3059a2009-10-09 21:13:30 +0000687 }
Mike Stump11289f42009-09-09 15:08:12 +0000688
Francois Pichetb23dc092011-07-27 01:05:24 +0000689 // In Microsoft mode, if we are within a templated function and we can't
690 // resolve Identifier, then extend the SS with Identifier. This will have
691 // the effect of resolving Identifier during template instantiation.
692 // The goal is to be able to resolve a function call whose
693 // nested-name-specifier is located inside a dependent base class.
694 // Example:
695 //
696 // class C {
697 // public:
698 // static void foo2() { }
699 // };
700 // template <class T> class A { public: typedef C D; };
701 //
702 // template <class T> class B : public A<T> {
703 // public:
704 // void foo() { D::foo2(); }
705 // };
Alp Tokerbfa39342014-01-14 12:51:41 +0000706 if (getLangOpts().MSVCCompat) {
Francois Pichetb23dc092011-07-27 01:05:24 +0000707 DeclContext *DC = LookupCtx ? LookupCtx : CurContext;
708 if (DC->isDependentContext() && DC->isFunctionOrMethod()) {
Reid Kleckner062be332014-08-14 23:34:52 +0000709 CXXRecordDecl *ContainingClass = dyn_cast<CXXRecordDecl>(DC->getParent());
710 if (ContainingClass && ContainingClass->hasAnyDependentBases()) {
711 Diag(IdentifierLoc, diag::ext_undeclared_unqual_id_with_dependent_base)
712 << &Identifier << ContainingClass;
713 SS.Extend(Context, &Identifier, IdentifierLoc, CCLoc);
714 return false;
715 }
Francois Pichetb23dc092011-07-27 01:05:24 +0000716 }
717 }
718
David Blaikie6cab5962014-02-09 06:54:23 +0000719 if (!Found.empty()) {
720 if (TypeDecl *TD = Found.getAsSingle<TypeDecl>())
721 Diag(IdentifierLoc, diag::err_expected_class_or_namespace)
722 << QualType(TD->getTypeForDecl(), 0) << getLangOpts().CPlusPlus;
723 else {
724 Diag(IdentifierLoc, diag::err_expected_class_or_namespace)
725 << &Identifier << getLangOpts().CPlusPlus;
726 if (NamedDecl *ND = Found.getAsSingle<NamedDecl>())
Alp Toker2afa8782014-05-28 12:20:14 +0000727 Diag(ND->getLocation(), diag::note_entity_declared_at) << &Identifier;
David Blaikie6cab5962014-02-09 06:54:23 +0000728 }
729 } else if (SS.isSet())
730 Diag(IdentifierLoc, diag::err_no_member) << &Identifier << LookupCtx
731 << SS.getRange();
Cedric Venet084381332009-02-14 20:20:19 +0000732 else
David Blaikie6cab5962014-02-09 06:54:23 +0000733 Diag(IdentifierLoc, diag::err_undeclared_var_use) << &Identifier;
Mike Stump11289f42009-09-09 15:08:12 +0000734
Douglas Gregor90c99722011-02-24 00:17:56 +0000735 return true;
Cedric Venet084381332009-02-14 20:20:19 +0000736}
737
Douglas Gregor90c99722011-02-24 00:17:56 +0000738bool Sema::ActOnCXXNestedNameSpecifier(Scope *S,
739 IdentifierInfo &Identifier,
740 SourceLocation IdentifierLoc,
741 SourceLocation CCLoc,
742 ParsedType ObjectType,
743 bool EnteringContext,
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000744 CXXScopeSpec &SS,
745 bool ErrorRecoveryLookup,
746 bool *IsCorrectedToColon) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000747 if (SS.isInvalid())
748 return true;
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000749
Douglas Gregor90c99722011-02-24 00:17:56 +0000750 return BuildCXXNestedNameSpecifier(S, Identifier, IdentifierLoc, CCLoc,
751 GetTypeFromParser(ObjectType),
752 EnteringContext, SS,
Craig Topperc3ec1492014-05-26 06:22:03 +0000753 /*ScopeLookupResult=*/nullptr, false,
Serge Pavlov6a7ffbe2014-04-13 16:52:03 +0000754 IsCorrectedToColon);
Chris Lattner1c428032009-12-07 01:36:53 +0000755}
756
David Blaikie15a430a2011-12-04 05:04:18 +0000757bool Sema::ActOnCXXNestedNameSpecifierDecltype(CXXScopeSpec &SS,
758 const DeclSpec &DS,
759 SourceLocation ColonColonLoc) {
760 if (SS.isInvalid() || DS.getTypeSpecType() == DeclSpec::TST_error)
761 return true;
762
763 assert(DS.getTypeSpecType() == DeclSpec::TST_decltype);
764
765 QualType T = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
766 if (!T->isDependentType() && !T->getAs<TagType>()) {
David Blaikie6cab5962014-02-09 06:54:23 +0000767 Diag(DS.getTypeSpecTypeLoc(), diag::err_expected_class_or_namespace)
David Blaikiebbafb8a2012-03-11 07:00:24 +0000768 << T << getLangOpts().CPlusPlus;
David Blaikie15a430a2011-12-04 05:04:18 +0000769 return true;
770 }
771
772 TypeLocBuilder TLB;
773 DecltypeTypeLoc DecltypeTL = TLB.push<DecltypeTypeLoc>(T);
774 DecltypeTL.setNameLoc(DS.getTypeSpecTypeLoc());
775 SS.Extend(Context, SourceLocation(), TLB.getTypeLocInContext(Context, T),
776 ColonColonLoc);
777 return false;
778}
779
Chris Lattner1c428032009-12-07 01:36:53 +0000780/// IsInvalidUnlessNestedName - This method is used for error recovery
781/// purposes to determine whether the specified identifier is only valid as
782/// a nested name specifier, for example a namespace name. It is
783/// conservatively correct to always return false from this method.
784///
785/// The arguments are the same as those passed to ActOnCXXNestedNameSpecifier.
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +0000786bool Sema::IsInvalidUnlessNestedName(Scope *S, CXXScopeSpec &SS,
Douglas Gregor90c99722011-02-24 00:17:56 +0000787 IdentifierInfo &Identifier,
788 SourceLocation IdentifierLoc,
789 SourceLocation ColonLoc,
790 ParsedType ObjectType,
Chris Lattner1c428032009-12-07 01:36:53 +0000791 bool EnteringContext) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000792 if (SS.isInvalid())
793 return false;
Craig Topperc3ec1492014-05-26 06:22:03 +0000794
Douglas Gregor90c99722011-02-24 00:17:56 +0000795 return !BuildCXXNestedNameSpecifier(S, Identifier, IdentifierLoc, ColonLoc,
796 GetTypeFromParser(ObjectType),
797 EnteringContext, SS,
Craig Topperc3ec1492014-05-26 06:22:03 +0000798 /*ScopeLookupResult=*/nullptr, true);
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000799}
800
Douglas Gregor90c99722011-02-24 00:17:56 +0000801bool Sema::ActOnCXXNestedNameSpecifier(Scope *S,
Abramo Bagnara7945c982012-01-27 09:46:47 +0000802 CXXScopeSpec &SS,
803 SourceLocation TemplateKWLoc,
Douglas Gregor6e068012011-02-28 00:04:36 +0000804 TemplateTy Template,
805 SourceLocation TemplateNameLoc,
806 SourceLocation LAngleLoc,
807 ASTTemplateArgsPtr TemplateArgsIn,
808 SourceLocation RAngleLoc,
Douglas Gregor90c99722011-02-24 00:17:56 +0000809 SourceLocation CCLoc,
Douglas Gregor6e068012011-02-28 00:04:36 +0000810 bool EnteringContext) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000811 if (SS.isInvalid())
812 return true;
813
Douglas Gregor6e068012011-02-28 00:04:36 +0000814 // Translate the parser's template argument list in our AST format.
815 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
816 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
817
Richard Smith72bfbd82013-12-04 00:28:23 +0000818 DependentTemplateName *DTN = Template.get().getAsDependentTemplateName();
819 if (DTN && DTN->isIdentifier()) {
Douglas Gregor6e068012011-02-28 00:04:36 +0000820 // Handle a dependent template specialization for which we cannot resolve
821 // the template name.
Richard Smith74bb2d22013-03-26 00:54:11 +0000822 assert(DTN->getQualifier() == SS.getScopeRep());
Douglas Gregor6e068012011-02-28 00:04:36 +0000823 QualType T = Context.getDependentTemplateSpecializationType(ETK_None,
Douglas Gregora7a795b2011-03-01 20:11:18 +0000824 DTN->getQualifier(),
825 DTN->getIdentifier(),
Douglas Gregor6e068012011-02-28 00:04:36 +0000826 TemplateArgs);
827
828 // Create source-location information for this type.
829 TypeLocBuilder Builder;
Abramo Bagnara48c05be2012-02-06 14:41:24 +0000830 DependentTemplateSpecializationTypeLoc SpecTL
Douglas Gregor6e068012011-02-28 00:04:36 +0000831 = Builder.push<DependentTemplateSpecializationTypeLoc>(T);
Abramo Bagnara48c05be2012-02-06 14:41:24 +0000832 SpecTL.setElaboratedKeywordLoc(SourceLocation());
833 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Abramo Bagnarae0a70b22012-02-06 22:45:07 +0000834 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
Abramo Bagnara48c05be2012-02-06 14:41:24 +0000835 SpecTL.setTemplateNameLoc(TemplateNameLoc);
Douglas Gregor6e068012011-02-28 00:04:36 +0000836 SpecTL.setLAngleLoc(LAngleLoc);
837 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregor6e068012011-02-28 00:04:36 +0000838 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
839 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
840
Abramo Bagnara7945c982012-01-27 09:46:47 +0000841 SS.Extend(Context, TemplateKWLoc, Builder.getTypeLocInContext(Context, T),
Douglas Gregor6e068012011-02-28 00:04:36 +0000842 CCLoc);
843 return false;
844 }
Richard Smith72bfbd82013-12-04 00:28:23 +0000845
Richard Smithf95fe9b2013-12-04 00:47:45 +0000846 TemplateDecl *TD = Template.get().getAsTemplateDecl();
Richard Smith72bfbd82013-12-04 00:28:23 +0000847 if (Template.get().getAsOverloadedTemplate() || DTN ||
Richard Smithf95fe9b2013-12-04 00:47:45 +0000848 isa<FunctionTemplateDecl>(TD) || isa<VarTemplateDecl>(TD)) {
Douglas Gregor8b6070b2011-03-04 21:37:14 +0000849 SourceRange R(TemplateNameLoc, RAngleLoc);
850 if (SS.getRange().isValid())
851 R.setBegin(SS.getRange().getBegin());
Richard Smith72bfbd82013-12-04 00:28:23 +0000852
Douglas Gregor8b6070b2011-03-04 21:37:14 +0000853 Diag(CCLoc, diag::err_non_type_template_in_nested_name_specifier)
Richard Smithf95fe9b2013-12-04 00:47:45 +0000854 << (TD && isa<VarTemplateDecl>(TD)) << Template.get() << R;
Douglas Gregor8b6070b2011-03-04 21:37:14 +0000855 NoteAllFoundTemplates(Template.get());
856 return true;
857 }
Richard Smith72bfbd82013-12-04 00:28:23 +0000858
Douglas Gregor6e068012011-02-28 00:04:36 +0000859 // We were able to resolve the template name to an actual template.
860 // Build an appropriate nested-name-specifier.
861 QualType T = CheckTemplateIdType(Template.get(), TemplateNameLoc,
862 TemplateArgs);
Douglas Gregor90c99722011-02-24 00:17:56 +0000863 if (T.isNull())
864 return true;
865
Richard Smith3f1b5d02011-05-05 21:57:07 +0000866 // Alias template specializations can produce types which are not valid
867 // nested name specifiers.
868 if (!T->isDependentType() && !T->getAs<TagType>()) {
869 Diag(TemplateNameLoc, diag::err_nested_name_spec_non_tag) << T;
870 NoteAllFoundTemplates(Template.get());
871 return true;
872 }
Douglas Gregor6e068012011-02-28 00:04:36 +0000873
Abramo Bagnara48c05be2012-02-06 14:41:24 +0000874 // Provide source-location information for the template specialization type.
Douglas Gregor6e068012011-02-28 00:04:36 +0000875 TypeLocBuilder Builder;
Abramo Bagnara48c05be2012-02-06 14:41:24 +0000876 TemplateSpecializationTypeLoc SpecTL
Douglas Gregor6e068012011-02-28 00:04:36 +0000877 = Builder.push<TemplateSpecializationTypeLoc>(T);
Abramo Bagnara48c05be2012-02-06 14:41:24 +0000878 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
879 SpecTL.setTemplateNameLoc(TemplateNameLoc);
Douglas Gregor6e068012011-02-28 00:04:36 +0000880 SpecTL.setLAngleLoc(LAngleLoc);
881 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregor6e068012011-02-28 00:04:36 +0000882 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
883 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
884
885
Abramo Bagnara7945c982012-01-27 09:46:47 +0000886 SS.Extend(Context, TemplateKWLoc, Builder.getTypeLocInContext(Context, T),
Douglas Gregor6e068012011-02-28 00:04:36 +0000887 CCLoc);
Douglas Gregor90c99722011-02-24 00:17:56 +0000888 return false;
Douglas Gregor7f741122009-02-25 19:37:18 +0000889}
890
Douglas Gregor869ad452011-02-24 17:54:50 +0000891namespace {
892 /// \brief A structure that stores a nested-name-specifier annotation,
893 /// including both the nested-name-specifier
894 struct NestedNameSpecifierAnnotation {
895 NestedNameSpecifier *NNS;
896 };
897}
898
899void *Sema::SaveNestedNameSpecifierAnnotation(CXXScopeSpec &SS) {
900 if (SS.isEmpty() || SS.isInvalid())
Craig Topperc3ec1492014-05-26 06:22:03 +0000901 return nullptr;
902
Douglas Gregor869ad452011-02-24 17:54:50 +0000903 void *Mem = Context.Allocate((sizeof(NestedNameSpecifierAnnotation) +
904 SS.location_size()),
905 llvm::alignOf<NestedNameSpecifierAnnotation>());
906 NestedNameSpecifierAnnotation *Annotation
907 = new (Mem) NestedNameSpecifierAnnotation;
908 Annotation->NNS = SS.getScopeRep();
909 memcpy(Annotation + 1, SS.location_data(), SS.location_size());
910 return Annotation;
911}
912
913void Sema::RestoreNestedNameSpecifierAnnotation(void *AnnotationPtr,
914 SourceRange AnnotationRange,
915 CXXScopeSpec &SS) {
916 if (!AnnotationPtr) {
917 SS.SetInvalid(AnnotationRange);
918 return;
919 }
920
921 NestedNameSpecifierAnnotation *Annotation
922 = static_cast<NestedNameSpecifierAnnotation *>(AnnotationPtr);
923 SS.Adopt(NestedNameSpecifierLoc(Annotation->NNS, Annotation + 1));
924}
925
John McCall2b058ef2009-12-11 20:04:54 +0000926bool Sema::ShouldEnterDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
927 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
928
Richard Smith74bb2d22013-03-26 00:54:11 +0000929 NestedNameSpecifier *Qualifier = SS.getScopeRep();
John McCall2b058ef2009-12-11 20:04:54 +0000930
931 // There are only two places a well-formed program may qualify a
932 // declarator: first, when defining a namespace or class member
933 // out-of-line, and second, when naming an explicitly-qualified
934 // friend function. The latter case is governed by
935 // C++03 [basic.lookup.unqual]p10:
936 // In a friend declaration naming a member function, a name used
937 // in the function declarator and not part of a template-argument
938 // in a template-id is first looked up in the scope of the member
939 // function's class. If it is not found, or if the name is part of
940 // a template-argument in a template-id, the look up is as
941 // described for unqualified names in the definition of the class
942 // granting friendship.
943 // i.e. we don't push a scope unless it's a class member.
944
945 switch (Qualifier->getKind()) {
946 case NestedNameSpecifier::Global:
947 case NestedNameSpecifier::Namespace:
Douglas Gregor7b26ff92011-02-24 02:36:08 +0000948 case NestedNameSpecifier::NamespaceAlias:
John McCall2b058ef2009-12-11 20:04:54 +0000949 // These are always namespace scopes. We never want to enter a
950 // namespace scope from anything but a file context.
Sebastian Redl50c68252010-08-31 00:36:30 +0000951 return CurContext->getRedeclContext()->isFileContext();
John McCall2b058ef2009-12-11 20:04:54 +0000952
953 case NestedNameSpecifier::Identifier:
954 case NestedNameSpecifier::TypeSpec:
955 case NestedNameSpecifier::TypeSpecWithTemplate:
956 // These are never namespace scopes.
957 return true;
958 }
959
David Blaikie8a40f702012-01-17 06:56:22 +0000960 llvm_unreachable("Invalid NestedNameSpecifier::Kind!");
John McCall2b058ef2009-12-11 20:04:54 +0000961}
962
Cedric Venet084381332009-02-14 20:20:19 +0000963/// ActOnCXXEnterDeclaratorScope - Called when a C++ scope specifier (global
964/// scope or nested-name-specifier) is parsed, part of a declarator-id.
965/// After this method is called, according to [C++ 3.4.3p3], names should be
966/// looked up in the declarator-id's scope, until the declarator is parsed and
967/// ActOnCXXExitDeclaratorScope is called.
968/// The 'SS' should be a non-empty valid CXXScopeSpec.
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +0000969bool Sema::ActOnCXXEnterDeclaratorScope(Scope *S, CXXScopeSpec &SS) {
Cedric Venet084381332009-02-14 20:20:19 +0000970 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
John McCall6df5fef2009-12-19 10:49:29 +0000971
972 if (SS.isInvalid()) return true;
973
974 DeclContext *DC = computeDeclContext(SS, true);
975 if (!DC) return true;
976
977 // Before we enter a declarator's context, we need to make sure that
978 // it is a complete declaration context.
John McCall0b66eb32010-05-01 00:40:08 +0000979 if (!DC->isDependentContext() && RequireCompleteDeclContext(SS, DC))
John McCall6df5fef2009-12-19 10:49:29 +0000980 return true;
981
982 EnterDeclaratorContext(S, DC);
John McCall2408e322010-04-27 00:57:59 +0000983
984 // Rebuild the nested name specifier for the new scope.
985 if (DC->isDependentContext())
986 RebuildNestedNameSpecifierInCurrentInstantiation(SS);
987
Douglas Gregor5013a7e2009-09-24 23:39:01 +0000988 return false;
Cedric Venet084381332009-02-14 20:20:19 +0000989}
990
991/// ActOnCXXExitDeclaratorScope - Called when a declarator that previously
992/// invoked ActOnCXXEnterDeclaratorScope(), is finished. 'SS' is the same
993/// CXXScopeSpec that was passed to ActOnCXXEnterDeclaratorScope as well.
994/// Used to indicate that names should revert to being looked up in the
995/// defining scope.
996void Sema::ActOnCXXExitDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
997 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
Douglas Gregor053f6912009-08-26 00:04:55 +0000998 if (SS.isInvalid())
999 return;
John McCall6df5fef2009-12-19 10:49:29 +00001000 assert(!SS.isInvalid() && computeDeclContext(SS, true) &&
1001 "exiting declarator scope we never really entered");
1002 ExitDeclaratorContext(S);
Cedric Venet084381332009-02-14 20:20:19 +00001003}