blob: 15bfd1ce629482bd64b0dfb8b2fce791359a4586 [file] [log] [blame]
Cedric Venet3d658642009-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 McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
Douglas Gregore737f502010-08-12 20:07:10 +000015#include "clang/Sema/Lookup.h"
Richard Smithf1c66b42012-03-14 23:13:10 +000016#include "clang/Sema/Template.h"
Cedric Venet3d658642009-02-14 20:20:19 +000017#include "clang/AST/ASTContext.h"
Douglas Gregor42af25f2009-05-11 19:58:34 +000018#include "clang/AST/DeclTemplate.h"
Douglas Gregorfe85ced2009-08-06 03:17:00 +000019#include "clang/AST/ExprCXX.h"
Douglas Gregore4e5b052009-03-19 00:18:19 +000020#include "clang/AST/NestedNameSpecifier.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000021#include "clang/Basic/PartialDiagnostic.h"
John McCall19510852010-08-20 18:27:03 +000022#include "clang/Sema/DeclSpec.h"
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000023#include "TypeLocBuilder.h"
Cedric Venet3d658642009-02-14 20:20:19 +000024#include "llvm/ADT/STLExtras.h"
Douglas Gregor7551c182009-07-22 00:28:09 +000025#include "llvm/Support/raw_ostream.h"
Cedric Venet3d658642009-02-14 20:20:19 +000026using namespace clang;
27
Douglas Gregor43d88632009-11-04 22:49:18 +000028/// \brief Find the current instantiation that associated with the given type.
Douglas Gregord9ea1802011-02-19 19:24:40 +000029static CXXRecordDecl *getCurrentInstantiationOf(QualType T,
30 DeclContext *CurContext) {
Douglas Gregor43d88632009-11-04 22:49:18 +000031 if (T.isNull())
32 return 0;
John McCall31f17ec2010-04-27 00:57:59 +000033
34 const Type *Ty = T->getCanonicalTypeInternal().getTypePtr();
Douglas Gregord9ea1802011-02-19 19:24:40 +000035 if (const RecordType *RecordTy = dyn_cast<RecordType>(Ty)) {
36 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordTy->getDecl());
37 if (!T->isDependentType())
38 return Record;
39
40 // This may be a member of a class template or class template partial
41 // specialization. If it's part of the current semantic context, then it's
42 // an injected-class-name;
43 for (; !CurContext->isFileContext(); CurContext = CurContext->getParent())
44 if (CurContext->Equals(Record))
45 return Record;
46
47 return 0;
48 } else if (isa<InjectedClassNameType>(Ty))
John McCall31f17ec2010-04-27 00:57:59 +000049 return cast<InjectedClassNameType>(Ty)->getDecl();
50 else
51 return 0;
Douglas Gregor43d88632009-11-04 22:49:18 +000052}
53
Douglas Gregor2dd078a2009-09-02 22:59:36 +000054/// \brief Compute the DeclContext that is associated with the given type.
55///
56/// \param T the type for which we are attempting to find a DeclContext.
57///
Mike Stump1eb44332009-09-09 15:08:12 +000058/// \returns the declaration context represented by the type T,
Douglas Gregor2dd078a2009-09-02 22:59:36 +000059/// or NULL if the declaration context cannot be computed (e.g., because it is
60/// dependent and not the current instantiation).
61DeclContext *Sema::computeDeclContext(QualType T) {
Douglas Gregord9ea1802011-02-19 19:24:40 +000062 if (!T->isDependentType())
63 if (const TagType *Tag = T->getAs<TagType>())
64 return Tag->getDecl();
Mike Stump1eb44332009-09-09 15:08:12 +000065
Douglas Gregord9ea1802011-02-19 19:24:40 +000066 return ::getCurrentInstantiationOf(T, CurContext);
Douglas Gregor2dd078a2009-09-02 22:59:36 +000067}
68
Douglas Gregore4e5b052009-03-19 00:18:19 +000069/// \brief Compute the DeclContext that is associated with the given
70/// scope specifier.
Douglas Gregorf59a56e2009-07-21 23:53:31 +000071///
72/// \param SS the C++ scope specifier as it appears in the source
73///
74/// \param EnteringContext when true, we will be entering the context of
75/// this scope specifier, so we can retrieve the declaration context of a
76/// class template or class template partial specialization even if it is
77/// not the current instantiation.
78///
79/// \returns the declaration context represented by the scope specifier @p SS,
80/// or NULL if the declaration context cannot be computed (e.g., because it is
81/// dependent and not the current instantiation).
82DeclContext *Sema::computeDeclContext(const CXXScopeSpec &SS,
83 bool EnteringContext) {
Douglas Gregore4e5b052009-03-19 00:18:19 +000084 if (!SS.isSet() || SS.isInvalid())
Douglas Gregorca5e77f2009-03-18 00:36:05 +000085 return 0;
Douglas Gregorca5e77f2009-03-18 00:36:05 +000086
Mike Stump1eb44332009-09-09 15:08:12 +000087 NestedNameSpecifier *NNS
Douglas Gregor35073692009-03-26 23:56:24 +000088 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Douglas Gregor42af25f2009-05-11 19:58:34 +000089 if (NNS->isDependent()) {
90 // If this nested-name-specifier refers to the current
91 // instantiation, return its DeclContext.
92 if (CXXRecordDecl *Record = getCurrentInstantiationOf(NNS))
93 return Record;
Mike Stump1eb44332009-09-09 15:08:12 +000094
Douglas Gregorf59a56e2009-07-21 23:53:31 +000095 if (EnteringContext) {
John McCall3cb0ebd2010-03-10 03:28:59 +000096 const Type *NNSType = NNS->getAsType();
97 if (!NNSType) {
Richard Smith3e4c6c42011-05-05 21:57:07 +000098 return 0;
99 }
100
101 // Look through type alias templates, per C++0x [temp.dep.type]p1.
102 NNSType = Context.getCanonicalType(NNSType);
103 if (const TemplateSpecializationType *SpecType
104 = NNSType->getAs<TemplateSpecializationType>()) {
Douglas Gregor495c35d2009-08-25 22:51:20 +0000105 // We are entering the context of the nested name specifier, so try to
106 // match the nested name specifier to either a primary class template
107 // or a class template partial specialization.
Mike Stump1eb44332009-09-09 15:08:12 +0000108 if (ClassTemplateDecl *ClassTemplate
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000109 = dyn_cast_or_null<ClassTemplateDecl>(
110 SpecType->getTemplateName().getAsTemplateDecl())) {
Douglas Gregorb88e8882009-07-30 17:40:51 +0000111 QualType ContextType
112 = Context.getCanonicalType(QualType(SpecType, 0));
113
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000114 // If the type of the nested name specifier is the same as the
115 // injected class name of the named class template, we're entering
116 // into that class template definition.
John McCall3cb0ebd2010-03-10 03:28:59 +0000117 QualType Injected
Douglas Gregor24bae922010-07-08 18:37:38 +0000118 = ClassTemplate->getInjectedClassNameSpecialization();
Douglas Gregorb88e8882009-07-30 17:40:51 +0000119 if (Context.hasSameType(Injected, ContextType))
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000120 return ClassTemplate->getTemplatedDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000121
Douglas Gregorb88e8882009-07-30 17:40:51 +0000122 // If the type of the nested name specifier is the same as the
123 // type of one of the class template's class template partial
124 // specializations, we're entering into the definition of that
125 // class template partial specialization.
126 if (ClassTemplatePartialSpecializationDecl *PartialSpec
127 = ClassTemplate->findPartialSpecialization(ContextType))
128 return PartialSpec;
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000129 }
John McCall3cb0ebd2010-03-10 03:28:59 +0000130 } else if (const RecordType *RecordT = NNSType->getAs<RecordType>()) {
Douglas Gregor495c35d2009-08-25 22:51:20 +0000131 // The nested name specifier refers to a member of a class template.
132 return RecordT->getDecl();
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000133 }
134 }
Mike Stump1eb44332009-09-09 15:08:12 +0000135
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000136 return 0;
Douglas Gregor42af25f2009-05-11 19:58:34 +0000137 }
Douglas Gregorab452ba2009-03-26 23:50:42 +0000138
139 switch (NNS->getKind()) {
140 case NestedNameSpecifier::Identifier:
David Blaikieb219cfc2011-09-23 05:06:16 +0000141 llvm_unreachable("Dependent nested-name-specifier has no DeclContext");
Douglas Gregorab452ba2009-03-26 23:50:42 +0000142
143 case NestedNameSpecifier::Namespace:
144 return NNS->getAsNamespace();
145
Douglas Gregor14aba762011-02-24 02:36:08 +0000146 case NestedNameSpecifier::NamespaceAlias:
147 return NNS->getAsNamespaceAlias()->getNamespace();
148
Douglas Gregorab452ba2009-03-26 23:50:42 +0000149 case NestedNameSpecifier::TypeSpec:
150 case NestedNameSpecifier::TypeSpecWithTemplate: {
Douglas Gregoredc90502010-02-25 04:46:04 +0000151 const TagType *Tag = NNS->getAsType()->getAs<TagType>();
152 assert(Tag && "Non-tag type in nested-name-specifier");
153 return Tag->getDecl();
David Blaikie7530c032012-01-17 06:56:22 +0000154 }
Douglas Gregorab452ba2009-03-26 23:50:42 +0000155
156 case NestedNameSpecifier::Global:
157 return Context.getTranslationUnitDecl();
158 }
159
David Blaikie7530c032012-01-17 06:56:22 +0000160 llvm_unreachable("Invalid NestedNameSpecifier::Kind!");
Douglas Gregorca5e77f2009-03-18 00:36:05 +0000161}
162
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000163bool Sema::isDependentScopeSpecifier(const CXXScopeSpec &SS) {
164 if (!SS.isSet() || SS.isInvalid())
165 return false;
166
Mike Stump1eb44332009-09-09 15:08:12 +0000167 NestedNameSpecifier *NNS
Douglas Gregor35073692009-03-26 23:56:24 +0000168 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Douglas Gregorab452ba2009-03-26 23:50:42 +0000169 return NNS->isDependent();
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000170}
171
Douglas Gregor42af25f2009-05-11 19:58:34 +0000172// \brief Determine whether this C++ scope specifier refers to an
173// unknown specialization, i.e., a dependent type that is not the
174// current instantiation.
175bool Sema::isUnknownSpecialization(const CXXScopeSpec &SS) {
176 if (!isDependentScopeSpecifier(SS))
177 return false;
178
Mike Stump1eb44332009-09-09 15:08:12 +0000179 NestedNameSpecifier *NNS
Douglas Gregor42af25f2009-05-11 19:58:34 +0000180 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
181 return getCurrentInstantiationOf(NNS) == 0;
182}
183
184/// \brief If the given nested name specifier refers to the current
185/// instantiation, return the declaration that corresponds to that
186/// current instantiation (C++0x [temp.dep.type]p1).
187///
188/// \param NNS a dependent nested name specifier.
189CXXRecordDecl *Sema::getCurrentInstantiationOf(NestedNameSpecifier *NNS) {
David Blaikie4e4d0842012-03-11 07:00:24 +0000190 assert(getLangOpts().CPlusPlus && "Only callable in C++");
Douglas Gregor42af25f2009-05-11 19:58:34 +0000191 assert(NNS->isDependent() && "Only dependent nested-name-specifier allowed");
192
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000193 if (!NNS->getAsType())
194 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000195
Douglas Gregor1560def2009-07-31 18:32:42 +0000196 QualType T = QualType(NNS->getAsType(), 0);
Douglas Gregord9ea1802011-02-19 19:24:40 +0000197 return ::getCurrentInstantiationOf(T, CurContext);
Douglas Gregor42af25f2009-05-11 19:58:34 +0000198}
199
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000200/// \brief Require that the context specified by SS be complete.
201///
202/// If SS refers to a type, this routine checks whether the type is
203/// complete enough (or can be made complete enough) for name lookup
204/// into the DeclContext. A type that is not yet completed can be
205/// considered "complete enough" if it is a class/struct/union/enum
206/// that is currently being defined. Or, if we have a type that names
207/// a class template specialization that is not a complete type, we
208/// will attempt to instantiate that class template.
John McCall77bb1aa2010-05-01 00:40:08 +0000209bool Sema::RequireCompleteDeclContext(CXXScopeSpec &SS,
210 DeclContext *DC) {
211 assert(DC != 0 && "given null context");
Mike Stump1eb44332009-09-09 15:08:12 +0000212
Richard Smithf1c66b42012-03-14 23:13:10 +0000213 TagDecl *tag = dyn_cast<TagDecl>(DC);
Douglas Gregora4e8c2a2010-02-05 04:39:02 +0000214
Richard Smithf1c66b42012-03-14 23:13:10 +0000215 // If this is a dependent type, then we consider it complete.
216 if (!tag || tag->isDependentContext())
217 return false;
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000218
Richard Smithf1c66b42012-03-14 23:13:10 +0000219 // If we're currently defining this type, then lookup into the
220 // type is okay: don't complain that it isn't complete yet.
221 QualType type = Context.getTypeDeclType(tag);
222 const TagType *tagType = type->getAs<TagType>();
223 if (tagType && tagType->isBeingDefined())
224 return false;
John McCall9dc71d22011-07-06 06:57:57 +0000225
Richard Smithf1c66b42012-03-14 23:13:10 +0000226 SourceLocation loc = SS.getLastQualifierNameLoc();
227 if (loc.isInvalid()) loc = SS.getRange().getBegin();
John McCall9dc71d22011-07-06 06:57:57 +0000228
Richard Smithf1c66b42012-03-14 23:13:10 +0000229 // The type must be complete.
Douglas Gregord10099e2012-05-04 16:32:21 +0000230 if (RequireCompleteType(loc, type, diag::err_incomplete_nested_name_spec,
231 SS.getRange())) {
Richard Smithf1c66b42012-03-14 23:13:10 +0000232 SS.SetInvalid(SS.getRange());
233 return true;
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000234 }
235
Richard Smithf1c66b42012-03-14 23:13:10 +0000236 // Fixed enum types are complete, but they aren't valid as scopes
237 // until we see a definition, so awkwardly pull out this special
238 // case.
239 const EnumType *enumType = dyn_cast_or_null<EnumType>(tagType);
240 if (!enumType || enumType->getDecl()->isCompleteDefinition())
241 return false;
242
243 // Try to instantiate the definition, if this is a specialization of an
244 // enumeration temploid.
245 EnumDecl *ED = enumType->getDecl();
246 if (EnumDecl *Pattern = ED->getInstantiatedFromMemberEnum()) {
247 MemberSpecializationInfo *MSI = ED->getMemberSpecializationInfo();
Richard Smith1af83c42012-03-23 03:33:32 +0000248 if (MSI->getTemplateSpecializationKind() != TSK_ExplicitSpecialization) {
249 if (InstantiateEnum(loc, ED, Pattern, getTemplateInstantiationArgs(ED),
250 TSK_ImplicitInstantiation)) {
251 SS.SetInvalid(SS.getRange());
252 return true;
253 }
254 return false;
255 }
Richard Smithf1c66b42012-03-14 23:13:10 +0000256 }
257
258 Diag(loc, diag::err_incomplete_nested_name_spec)
259 << type << SS.getRange();
260 SS.SetInvalid(SS.getRange());
261 return true;
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000262}
Cedric Venet3d658642009-02-14 20:20:19 +0000263
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000264bool Sema::ActOnCXXGlobalScopeSpecifier(Scope *S, SourceLocation CCLoc,
265 CXXScopeSpec &SS) {
266 SS.MakeGlobal(Context, CCLoc);
267 return false;
Cedric Venet3d658642009-02-14 20:20:19 +0000268}
269
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000270/// \brief Determines whether the given declaration is an valid acceptable
271/// result for name lookup of a nested-name-specifier.
Douglas Gregoredc90502010-02-25 04:46:04 +0000272bool Sema::isAcceptableNestedNameSpecifier(NamedDecl *SD) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000273 if (!SD)
274 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000275
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000276 // Namespace and namespace aliases are fine.
277 if (isa<NamespaceDecl>(SD) || isa<NamespaceAliasDecl>(SD))
278 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000279
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000280 if (!isa<TypeDecl>(SD))
281 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000282
Richard Smith6b130222011-10-18 21:39:00 +0000283 // Determine whether we have a class (or, in C++11, an enum) or
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000284 // a typedef thereof. If so, build the nested-name-specifier.
285 QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD));
286 if (T->isDependentType())
287 return true;
Richard Smith162e1c12011-04-15 14:24:37 +0000288 else if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(SD)) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000289 if (TD->getUnderlyingType()->isRecordType() ||
David Blaikie4e4d0842012-03-11 07:00:24 +0000290 (Context.getLangOpts().CPlusPlus0x &&
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000291 TD->getUnderlyingType()->isEnumeralType()))
292 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000293 } else if (isa<RecordDecl>(SD) ||
David Blaikie4e4d0842012-03-11 07:00:24 +0000294 (Context.getLangOpts().CPlusPlus0x && isa<EnumDecl>(SD)))
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000295 return true;
296
297 return false;
298}
299
Douglas Gregorc68afe22009-09-03 21:38:09 +0000300/// \brief If the given nested-name-specifier begins with a bare identifier
Mike Stump1eb44332009-09-09 15:08:12 +0000301/// (e.g., Base::), perform name lookup for that identifier as a
Douglas Gregorc68afe22009-09-03 21:38:09 +0000302/// nested-name-specifier within the given scope, and return the result of that
303/// name lookup.
304NamedDecl *Sema::FindFirstQualifierInScope(Scope *S, NestedNameSpecifier *NNS) {
305 if (!S || !NNS)
306 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000307
Douglas Gregorc68afe22009-09-03 21:38:09 +0000308 while (NNS->getPrefix())
309 NNS = NNS->getPrefix();
Mike Stump1eb44332009-09-09 15:08:12 +0000310
Douglas Gregorc68afe22009-09-03 21:38:09 +0000311 if (NNS->getKind() != NestedNameSpecifier::Identifier)
312 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000313
John McCalla24dc2e2009-11-17 02:14:36 +0000314 LookupResult Found(*this, NNS->getAsIdentifier(), SourceLocation(),
315 LookupNestedNameSpecifierName);
316 LookupName(Found, S);
Douglas Gregorc68afe22009-09-03 21:38:09 +0000317 assert(!Found.isAmbiguous() && "Cannot handle ambiguities here yet");
318
John McCall1bcee0a2009-12-02 08:25:40 +0000319 if (!Found.isSingleResult())
320 return 0;
321
322 NamedDecl *Result = Found.getFoundDecl();
Douglas Gregoredc90502010-02-25 04:46:04 +0000323 if (isAcceptableNestedNameSpecifier(Result))
Douglas Gregorc68afe22009-09-03 21:38:09 +0000324 return Result;
Mike Stump1eb44332009-09-09 15:08:12 +0000325
Douglas Gregorc68afe22009-09-03 21:38:09 +0000326 return 0;
327}
328
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000329bool Sema::isNonTypeNestedNameSpecifier(Scope *S, CXXScopeSpec &SS,
Douglas Gregor77549082010-02-24 21:29:12 +0000330 SourceLocation IdLoc,
331 IdentifierInfo &II,
John McCallb3d87482010-08-24 05:47:05 +0000332 ParsedType ObjectTypePtr) {
Douglas Gregor77549082010-02-24 21:29:12 +0000333 QualType ObjectType = GetTypeFromParser(ObjectTypePtr);
334 LookupResult Found(*this, &II, IdLoc, LookupNestedNameSpecifierName);
335
336 // Determine where to perform name lookup
337 DeclContext *LookupCtx = 0;
338 bool isDependent = false;
339 if (!ObjectType.isNull()) {
340 // This nested-name-specifier occurs in a member access expression, e.g.,
341 // x->B::f, and we are looking into the type of the object.
342 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
343 LookupCtx = computeDeclContext(ObjectType);
344 isDependent = ObjectType->isDependentType();
345 } else if (SS.isSet()) {
346 // This nested-name-specifier occurs after another nested-name-specifier,
347 // so long into the context associated with the prior nested-name-specifier.
348 LookupCtx = computeDeclContext(SS, false);
349 isDependent = isDependentScopeSpecifier(SS);
350 Found.setContextRange(SS.getRange());
351 }
352
353 if (LookupCtx) {
354 // Perform "qualified" name lookup into the declaration context we
355 // computed, which is either the type of the base of a member access
356 // expression or the declaration context associated with a prior
357 // nested-name-specifier.
358
359 // The declaration context must be complete.
John McCall77bb1aa2010-05-01 00:40:08 +0000360 if (!LookupCtx->isDependentContext() &&
361 RequireCompleteDeclContext(SS, LookupCtx))
Douglas Gregor77549082010-02-24 21:29:12 +0000362 return false;
363
364 LookupQualifiedName(Found, LookupCtx);
365 } else if (isDependent) {
366 return false;
367 } else {
368 LookupName(Found, S);
369 }
370 Found.suppressDiagnostics();
371
372 if (NamedDecl *ND = Found.getAsSingle<NamedDecl>())
373 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
374
375 return false;
376}
377
Kaelyn Uhrain3b4b0472012-01-12 22:32:39 +0000378namespace {
379
380// Callback to only accept typo corrections that can be a valid C++ member
381// intializer: either a non-static field member or a base class.
382class NestedNameSpecifierValidatorCCC : public CorrectionCandidateCallback {
383 public:
384 explicit NestedNameSpecifierValidatorCCC(Sema &SRef)
385 : SRef(SRef) {}
386
387 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
388 return SRef.isAcceptableNestedNameSpecifier(candidate.getCorrectionDecl());
389 }
390
391 private:
392 Sema &SRef;
393};
394
395}
396
Douglas Gregorc68afe22009-09-03 21:38:09 +0000397/// \brief Build a new nested-name-specifier for "identifier::", as described
398/// by ActOnCXXNestedNameSpecifier.
399///
400/// This routine differs only slightly from ActOnCXXNestedNameSpecifier, in
401/// that it contains an extra parameter \p ScopeLookupResult, which provides
402/// the result of name lookup within the scope of the nested-name-specifier
Douglas Gregora6e51992009-12-30 16:01:52 +0000403/// that was computed at template definition time.
Chris Lattner46646492009-12-07 01:36:53 +0000404///
405/// If ErrorRecoveryLookup is true, then this call is used to improve error
406/// recovery. This means that it should not emit diagnostics, it should
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000407/// just return true on failure. It also means it should only return a valid
Chris Lattner46646492009-12-07 01:36:53 +0000408/// scope if it *knows* that the result is correct. It should not return in a
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000409/// dependent context, for example. Nor will it extend \p SS with the scope
410/// specifier.
411bool Sema::BuildCXXNestedNameSpecifier(Scope *S,
412 IdentifierInfo &Identifier,
413 SourceLocation IdentifierLoc,
414 SourceLocation CCLoc,
415 QualType ObjectType,
416 bool EnteringContext,
417 CXXScopeSpec &SS,
418 NamedDecl *ScopeLookupResult,
419 bool ErrorRecoveryLookup) {
420 LookupResult Found(*this, &Identifier, IdentifierLoc,
421 LookupNestedNameSpecifierName);
John McCalla24dc2e2009-11-17 02:14:36 +0000422
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000423 // Determine where to perform name lookup
424 DeclContext *LookupCtx = 0;
425 bool isDependent = false;
Douglas Gregorc68afe22009-09-03 21:38:09 +0000426 if (!ObjectType.isNull()) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000427 // This nested-name-specifier occurs in a member access expression, e.g.,
428 // x->B::f, and we are looking into the type of the object.
429 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000430 LookupCtx = computeDeclContext(ObjectType);
431 isDependent = ObjectType->isDependentType();
432 } else if (SS.isSet()) {
433 // This nested-name-specifier occurs after another nested-name-specifier,
Richard Smith3e4c6c42011-05-05 21:57:07 +0000434 // so look into the context associated with the prior nested-name-specifier.
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000435 LookupCtx = computeDeclContext(SS, EnteringContext);
436 isDependent = isDependentScopeSpecifier(SS);
John McCalla24dc2e2009-11-17 02:14:36 +0000437 Found.setContextRange(SS.getRange());
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000438 }
Mike Stump1eb44332009-09-09 15:08:12 +0000439
John McCalla24dc2e2009-11-17 02:14:36 +0000440
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000441 bool ObjectTypeSearchedInScope = false;
442 if (LookupCtx) {
Mike Stump1eb44332009-09-09 15:08:12 +0000443 // Perform "qualified" name lookup into the declaration context we
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000444 // computed, which is either the type of the base of a member access
Mike Stump1eb44332009-09-09 15:08:12 +0000445 // expression or the declaration context associated with a prior
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000446 // nested-name-specifier.
Mike Stump1eb44332009-09-09 15:08:12 +0000447
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000448 // The declaration context must be complete.
John McCall77bb1aa2010-05-01 00:40:08 +0000449 if (!LookupCtx->isDependentContext() &&
450 RequireCompleteDeclContext(SS, LookupCtx))
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000451 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000452
John McCalla24dc2e2009-11-17 02:14:36 +0000453 LookupQualifiedName(Found, LookupCtx);
Mike Stump1eb44332009-09-09 15:08:12 +0000454
John McCalla24dc2e2009-11-17 02:14:36 +0000455 if (!ObjectType.isNull() && Found.empty()) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000456 // C++ [basic.lookup.classref]p4:
457 // If the id-expression in a class member access is a qualified-id of
Mike Stump1eb44332009-09-09 15:08:12 +0000458 // the form
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000459 //
460 // class-name-or-namespace-name::...
461 //
Mike Stump1eb44332009-09-09 15:08:12 +0000462 // the class-name-or-namespace-name following the . or -> operator is
463 // looked up both in the context of the entire postfix-expression and in
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000464 // the scope of the class of the object expression. If the name is found
Mike Stump1eb44332009-09-09 15:08:12 +0000465 // only in the scope of the class of the object expression, the name
466 // shall refer to a class-name. If the name is found only in the
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000467 // context of the entire postfix-expression, the name shall refer to a
468 // class-name or namespace-name. [...]
469 //
470 // Qualified name lookup into a class will not find a namespace-name,
Douglas Gregor714c9922011-05-15 17:27:27 +0000471 // so we do not need to diagnose that case specifically. However,
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000472 // this qualified name lookup may find nothing. In that case, perform
Mike Stump1eb44332009-09-09 15:08:12 +0000473 // unqualified name lookup in the given scope (if available) or
Douglas Gregorc68afe22009-09-03 21:38:09 +0000474 // reconstruct the result from when name lookup was performed at template
475 // definition time.
476 if (S)
John McCalla24dc2e2009-11-17 02:14:36 +0000477 LookupName(Found, S);
John McCallf36e02d2009-10-09 21:13:30 +0000478 else if (ScopeLookupResult)
479 Found.addDecl(ScopeLookupResult);
Mike Stump1eb44332009-09-09 15:08:12 +0000480
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000481 ObjectTypeSearchedInScope = true;
482 }
Douglas Gregorac7cbd82010-07-28 14:49:07 +0000483 } else if (!isDependent) {
484 // Perform unqualified name lookup in the current scope.
485 LookupName(Found, S);
486 }
487
488 // If we performed lookup into a dependent context and did not find anything,
489 // that's fine: just build a dependent nested-name-specifier.
490 if (Found.empty() && isDependent &&
491 !(LookupCtx && LookupCtx->isRecord() &&
492 (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() ||
493 !cast<CXXRecordDecl>(LookupCtx)->hasAnyDependentBases()))) {
Chris Lattner46646492009-12-07 01:36:53 +0000494 // Don't speculate if we're just trying to improve error recovery.
495 if (ErrorRecoveryLookup)
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000496 return true;
Chris Lattner46646492009-12-07 01:36:53 +0000497
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000498 // We were not able to compute the declaration context for a dependent
Mike Stump1eb44332009-09-09 15:08:12 +0000499 // base object type or prior nested-name-specifier, so this
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000500 // nested-name-specifier refers to an unknown specialization. Just build
501 // a dependent nested-name-specifier.
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000502 SS.Extend(Context, &Identifier, IdentifierLoc, CCLoc);
503 return false;
Douglas Gregorac7cbd82010-07-28 14:49:07 +0000504 }
505
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000506 // FIXME: Deal with ambiguities cleanly.
Douglas Gregor175a6562009-12-31 08:26:35 +0000507
508 if (Found.empty() && !ErrorRecoveryLookup) {
509 // We haven't found anything, and we're not recovering from a
510 // different kind of error, so look for typos.
511 DeclarationName Name = Found.getLookupName();
Kaelyn Uhrain3b4b0472012-01-12 22:32:39 +0000512 NestedNameSpecifierValidatorCCC Validator(*this);
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000513 TypoCorrection Corrected;
514 Found.clear();
515 if ((Corrected = CorrectTypo(Found.getLookupNameInfo(),
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +0000516 Found.getLookupKind(), S, &SS, Validator,
Kaelyn Uhrain3b4b0472012-01-12 22:32:39 +0000517 LookupCtx, EnteringContext))) {
David Blaikie4e4d0842012-03-11 07:00:24 +0000518 std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
519 std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOpts()));
Douglas Gregor175a6562009-12-31 08:26:35 +0000520 if (LookupCtx)
521 Diag(Found.getNameLoc(), diag::err_no_member_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000522 << Name << LookupCtx << CorrectedQuotedStr << SS.getRange()
David Blaikie6952c012012-10-12 20:00:44 +0000523 << FixItHint::CreateReplacement(Corrected.getCorrectionRange(),
524 CorrectedStr);
Douglas Gregor175a6562009-12-31 08:26:35 +0000525 else
526 Diag(Found.getNameLoc(), diag::err_undeclared_var_use_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000527 << Name << CorrectedQuotedStr
528 << FixItHint::CreateReplacement(Found.getNameLoc(), CorrectedStr);
Douglas Gregor67dd1d42010-01-07 00:17:44 +0000529
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000530 if (NamedDecl *ND = Corrected.getCorrectionDecl()) {
531 Diag(ND->getLocation(), diag::note_previous_decl) << CorrectedQuotedStr;
532 Found.addDecl(ND);
533 }
534 Found.setLookupName(Corrected.getCorrection());
Douglas Gregor12eb5d62010-06-29 19:27:42 +0000535 } else {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000536 Found.setLookupName(&Identifier);
Douglas Gregor12eb5d62010-06-29 19:27:42 +0000537 }
Douglas Gregor175a6562009-12-31 08:26:35 +0000538 }
539
John McCall1bcee0a2009-12-02 08:25:40 +0000540 NamedDecl *SD = Found.getAsSingle<NamedDecl>();
Douglas Gregoredc90502010-02-25 04:46:04 +0000541 if (isAcceptableNestedNameSpecifier(SD)) {
Douglas Gregor05e60762012-05-01 20:23:02 +0000542 if (!ObjectType.isNull() && !ObjectTypeSearchedInScope &&
543 !getLangOpts().CPlusPlus0x) {
544 // C++03 [basic.lookup.classref]p4:
Mike Stump1eb44332009-09-09 15:08:12 +0000545 // [...] If the name is found in both contexts, the
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000546 // class-name-or-namespace-name shall refer to the same entity.
547 //
548 // We already found the name in the scope of the object. Now, look
549 // into the current scope (the scope of the postfix-expression) to
Douglas Gregorc68afe22009-09-03 21:38:09 +0000550 // see if we can find the same name there. As above, if there is no
551 // scope, reconstruct the result from the template instantiation itself.
Douglas Gregor05e60762012-05-01 20:23:02 +0000552 //
553 // Note that C++11 does *not* perform this redundant lookup.
John McCallf36e02d2009-10-09 21:13:30 +0000554 NamedDecl *OuterDecl;
555 if (S) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000556 LookupResult FoundOuter(*this, &Identifier, IdentifierLoc,
557 LookupNestedNameSpecifierName);
John McCalla24dc2e2009-11-17 02:14:36 +0000558 LookupName(FoundOuter, S);
John McCall1bcee0a2009-12-02 08:25:40 +0000559 OuterDecl = FoundOuter.getAsSingle<NamedDecl>();
John McCallf36e02d2009-10-09 21:13:30 +0000560 } else
561 OuterDecl = ScopeLookupResult;
Mike Stump1eb44332009-09-09 15:08:12 +0000562
Douglas Gregoredc90502010-02-25 04:46:04 +0000563 if (isAcceptableNestedNameSpecifier(OuterDecl) &&
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000564 OuterDecl->getCanonicalDecl() != SD->getCanonicalDecl() &&
565 (!isa<TypeDecl>(OuterDecl) || !isa<TypeDecl>(SD) ||
566 !Context.hasSameType(
Douglas Gregorc68afe22009-09-03 21:38:09 +0000567 Context.getTypeDeclType(cast<TypeDecl>(OuterDecl)),
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000568 Context.getTypeDeclType(cast<TypeDecl>(SD))))) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000569 if (ErrorRecoveryLookup)
570 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000571
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000572 Diag(IdentifierLoc,
573 diag::err_nested_name_member_ref_lookup_ambiguous)
574 << &Identifier;
575 Diag(SD->getLocation(), diag::note_ambig_member_ref_object_type)
576 << ObjectType;
577 Diag(OuterDecl->getLocation(), diag::note_ambig_member_ref_scope);
578
579 // Fall through so that we'll pick the name we found in the object
580 // type, since that's probably what the user wanted anyway.
581 }
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000582 }
Mike Stump1eb44332009-09-09 15:08:12 +0000583
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000584 // If we're just performing this lookup for error-recovery purposes,
585 // don't extend the nested-name-specifier. Just return now.
586 if (ErrorRecoveryLookup)
587 return false;
588
589 if (NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(SD)) {
590 SS.Extend(Context, Namespace, IdentifierLoc, CCLoc);
591 return false;
592 }
Mike Stump1eb44332009-09-09 15:08:12 +0000593
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000594 if (NamespaceAliasDecl *Alias = dyn_cast<NamespaceAliasDecl>(SD)) {
Douglas Gregor14aba762011-02-24 02:36:08 +0000595 SS.Extend(Context, Alias, IdentifierLoc, CCLoc);
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000596 return false;
597 }
Mike Stump1eb44332009-09-09 15:08:12 +0000598
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000599 QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD));
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000600 TypeLocBuilder TLB;
601 if (isa<InjectedClassNameType>(T)) {
602 InjectedClassNameTypeLoc InjectedTL
603 = TLB.push<InjectedClassNameTypeLoc>(T);
604 InjectedTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000605 } else if (isa<RecordType>(T)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000606 RecordTypeLoc RecordTL = TLB.push<RecordTypeLoc>(T);
607 RecordTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000608 } else if (isa<TypedefType>(T)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000609 TypedefTypeLoc TypedefTL = TLB.push<TypedefTypeLoc>(T);
610 TypedefTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000611 } else if (isa<EnumType>(T)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000612 EnumTypeLoc EnumTL = TLB.push<EnumTypeLoc>(T);
613 EnumTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000614 } else if (isa<TemplateTypeParmType>(T)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000615 TemplateTypeParmTypeLoc TemplateTypeTL
616 = TLB.push<TemplateTypeParmTypeLoc>(T);
617 TemplateTypeTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000618 } else if (isa<UnresolvedUsingType>(T)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000619 UnresolvedUsingTypeLoc UnresolvedTL
620 = TLB.push<UnresolvedUsingTypeLoc>(T);
621 UnresolvedTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000622 } else if (isa<SubstTemplateTypeParmType>(T)) {
623 SubstTemplateTypeParmTypeLoc TL
624 = TLB.push<SubstTemplateTypeParmTypeLoc>(T);
625 TL.setNameLoc(IdentifierLoc);
626 } else if (isa<SubstTemplateTypeParmPackType>(T)) {
627 SubstTemplateTypeParmPackTypeLoc TL
628 = TLB.push<SubstTemplateTypeParmPackTypeLoc>(T);
629 TL.setNameLoc(IdentifierLoc);
630 } else {
631 llvm_unreachable("Unhandled TypeDecl node in nested-name-specifier");
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000632 }
633
Richard Smith95aafb22011-10-20 03:28:47 +0000634 if (T->isEnumeralType())
635 Diag(IdentifierLoc, diag::warn_cxx98_compat_enum_nested_name_spec);
636
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000637 SS.Extend(Context, SourceLocation(), TLB.getTypeLocInContext(Context, T),
638 CCLoc);
639 return false;
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000640 }
Mike Stump1eb44332009-09-09 15:08:12 +0000641
Chris Lattner46646492009-12-07 01:36:53 +0000642 // Otherwise, we have an error case. If we don't want diagnostics, just
643 // return an error now.
644 if (ErrorRecoveryLookup)
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000645 return true;
Chris Lattner46646492009-12-07 01:36:53 +0000646
Cedric Venet3d658642009-02-14 20:20:19 +0000647 // If we didn't find anything during our lookup, try again with
648 // ordinary name lookup, which can help us produce better error
649 // messages.
John McCall1bcee0a2009-12-02 08:25:40 +0000650 if (Found.empty()) {
John McCalla24dc2e2009-11-17 02:14:36 +0000651 Found.clear(LookupOrdinaryName);
652 LookupName(Found, S);
John McCallf36e02d2009-10-09 21:13:30 +0000653 }
Mike Stump1eb44332009-09-09 15:08:12 +0000654
Francois Pichetdfb6ae12011-07-27 01:05:24 +0000655 // In Microsoft mode, if we are within a templated function and we can't
656 // resolve Identifier, then extend the SS with Identifier. This will have
657 // the effect of resolving Identifier during template instantiation.
658 // The goal is to be able to resolve a function call whose
659 // nested-name-specifier is located inside a dependent base class.
660 // Example:
661 //
662 // class C {
663 // public:
664 // static void foo2() { }
665 // };
666 // template <class T> class A { public: typedef C D; };
667 //
668 // template <class T> class B : public A<T> {
669 // public:
670 // void foo() { D::foo2(); }
671 // };
David Blaikie4e4d0842012-03-11 07:00:24 +0000672 if (getLangOpts().MicrosoftExt) {
Francois Pichetdfb6ae12011-07-27 01:05:24 +0000673 DeclContext *DC = LookupCtx ? LookupCtx : CurContext;
674 if (DC->isDependentContext() && DC->isFunctionOrMethod()) {
675 SS.Extend(Context, &Identifier, IdentifierLoc, CCLoc);
676 return false;
677 }
678 }
679
Cedric Venet3d658642009-02-14 20:20:19 +0000680 unsigned DiagID;
John McCall1bcee0a2009-12-02 08:25:40 +0000681 if (!Found.empty())
Cedric Venet3d658642009-02-14 20:20:19 +0000682 DiagID = diag::err_expected_class_or_namespace;
Anders Carlssona31d5f72009-08-30 07:09:50 +0000683 else if (SS.isSet()) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000684 Diag(IdentifierLoc, diag::err_no_member)
685 << &Identifier << LookupCtx << SS.getRange();
686 return true;
Anders Carlssona31d5f72009-08-30 07:09:50 +0000687 } else
Cedric Venet3d658642009-02-14 20:20:19 +0000688 DiagID = diag::err_undeclared_var_use;
Mike Stump1eb44332009-09-09 15:08:12 +0000689
Cedric Venet3d658642009-02-14 20:20:19 +0000690 if (SS.isSet())
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000691 Diag(IdentifierLoc, DiagID) << &Identifier << SS.getRange();
Cedric Venet3d658642009-02-14 20:20:19 +0000692 else
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000693 Diag(IdentifierLoc, DiagID) << &Identifier;
Mike Stump1eb44332009-09-09 15:08:12 +0000694
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000695 return true;
Cedric Venet3d658642009-02-14 20:20:19 +0000696}
697
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000698bool Sema::ActOnCXXNestedNameSpecifier(Scope *S,
699 IdentifierInfo &Identifier,
700 SourceLocation IdentifierLoc,
701 SourceLocation CCLoc,
702 ParsedType ObjectType,
703 bool EnteringContext,
704 CXXScopeSpec &SS) {
705 if (SS.isInvalid())
706 return true;
707
708 return BuildCXXNestedNameSpecifier(S, Identifier, IdentifierLoc, CCLoc,
709 GetTypeFromParser(ObjectType),
710 EnteringContext, SS,
711 /*ScopeLookupResult=*/0, false);
Chris Lattner46646492009-12-07 01:36:53 +0000712}
713
David Blaikie42d6d0c2011-12-04 05:04:18 +0000714bool Sema::ActOnCXXNestedNameSpecifierDecltype(CXXScopeSpec &SS,
715 const DeclSpec &DS,
716 SourceLocation ColonColonLoc) {
717 if (SS.isInvalid() || DS.getTypeSpecType() == DeclSpec::TST_error)
718 return true;
719
720 assert(DS.getTypeSpecType() == DeclSpec::TST_decltype);
721
722 QualType T = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
723 if (!T->isDependentType() && !T->getAs<TagType>()) {
724 Diag(DS.getTypeSpecTypeLoc(), diag::err_expected_class)
David Blaikie4e4d0842012-03-11 07:00:24 +0000725 << T << getLangOpts().CPlusPlus;
David Blaikie42d6d0c2011-12-04 05:04:18 +0000726 return true;
727 }
728
729 TypeLocBuilder TLB;
730 DecltypeTypeLoc DecltypeTL = TLB.push<DecltypeTypeLoc>(T);
731 DecltypeTL.setNameLoc(DS.getTypeSpecTypeLoc());
732 SS.Extend(Context, SourceLocation(), TLB.getTypeLocInContext(Context, T),
733 ColonColonLoc);
734 return false;
735}
736
Chris Lattner46646492009-12-07 01:36:53 +0000737/// IsInvalidUnlessNestedName - This method is used for error recovery
738/// purposes to determine whether the specified identifier is only valid as
739/// a nested name specifier, for example a namespace name. It is
740/// conservatively correct to always return false from this method.
741///
742/// The arguments are the same as those passed to ActOnCXXNestedNameSpecifier.
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000743bool Sema::IsInvalidUnlessNestedName(Scope *S, CXXScopeSpec &SS,
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000744 IdentifierInfo &Identifier,
745 SourceLocation IdentifierLoc,
746 SourceLocation ColonLoc,
747 ParsedType ObjectType,
Chris Lattner46646492009-12-07 01:36:53 +0000748 bool EnteringContext) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000749 if (SS.isInvalid())
750 return false;
751
752 return !BuildCXXNestedNameSpecifier(S, Identifier, IdentifierLoc, ColonLoc,
753 GetTypeFromParser(ObjectType),
754 EnteringContext, SS,
755 /*ScopeLookupResult=*/0, true);
Douglas Gregorc68afe22009-09-03 21:38:09 +0000756}
757
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000758bool Sema::ActOnCXXNestedNameSpecifier(Scope *S,
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000759 CXXScopeSpec &SS,
760 SourceLocation TemplateKWLoc,
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000761 TemplateTy Template,
762 SourceLocation TemplateNameLoc,
763 SourceLocation LAngleLoc,
764 ASTTemplateArgsPtr TemplateArgsIn,
765 SourceLocation RAngleLoc,
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000766 SourceLocation CCLoc,
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000767 bool EnteringContext) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000768 if (SS.isInvalid())
769 return true;
770
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000771 // Translate the parser's template argument list in our AST format.
772 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
773 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
774
775 if (DependentTemplateName *DTN = Template.get().getAsDependentTemplateName()){
776 // Handle a dependent template specialization for which we cannot resolve
777 // the template name.
778 assert(DTN->getQualifier()
779 == static_cast<NestedNameSpecifier*>(SS.getScopeRep()));
780 QualType T = Context.getDependentTemplateSpecializationType(ETK_None,
Douglas Gregor94fdffa2011-03-01 20:11:18 +0000781 DTN->getQualifier(),
782 DTN->getIdentifier(),
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000783 TemplateArgs);
784
785 // Create source-location information for this type.
786 TypeLocBuilder Builder;
Abramo Bagnara55d23c92012-02-06 14:41:24 +0000787 DependentTemplateSpecializationTypeLoc SpecTL
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000788 = Builder.push<DependentTemplateSpecializationTypeLoc>(T);
Abramo Bagnara55d23c92012-02-06 14:41:24 +0000789 SpecTL.setElaboratedKeywordLoc(SourceLocation());
790 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Abramo Bagnara66581d42012-02-06 22:45:07 +0000791 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
Abramo Bagnara55d23c92012-02-06 14:41:24 +0000792 SpecTL.setTemplateNameLoc(TemplateNameLoc);
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000793 SpecTL.setLAngleLoc(LAngleLoc);
794 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000795 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
796 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
797
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000798 SS.Extend(Context, TemplateKWLoc, Builder.getTypeLocInContext(Context, T),
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000799 CCLoc);
800 return false;
801 }
802
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +0000803
804 if (Template.get().getAsOverloadedTemplate() ||
805 isa<FunctionTemplateDecl>(Template.get().getAsTemplateDecl())) {
806 SourceRange R(TemplateNameLoc, RAngleLoc);
807 if (SS.getRange().isValid())
808 R.setBegin(SS.getRange().getBegin());
809
810 Diag(CCLoc, diag::err_non_type_template_in_nested_name_specifier)
811 << Template.get() << R;
812 NoteAllFoundTemplates(Template.get());
813 return true;
814 }
815
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000816 // We were able to resolve the template name to an actual template.
817 // Build an appropriate nested-name-specifier.
818 QualType T = CheckTemplateIdType(Template.get(), TemplateNameLoc,
819 TemplateArgs);
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000820 if (T.isNull())
821 return true;
822
Richard Smith3e4c6c42011-05-05 21:57:07 +0000823 // Alias template specializations can produce types which are not valid
824 // nested name specifiers.
825 if (!T->isDependentType() && !T->getAs<TagType>()) {
826 Diag(TemplateNameLoc, diag::err_nested_name_spec_non_tag) << T;
827 NoteAllFoundTemplates(Template.get());
828 return true;
829 }
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000830
Abramo Bagnara55d23c92012-02-06 14:41:24 +0000831 // Provide source-location information for the template specialization type.
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000832 TypeLocBuilder Builder;
Abramo Bagnara55d23c92012-02-06 14:41:24 +0000833 TemplateSpecializationTypeLoc SpecTL
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000834 = Builder.push<TemplateSpecializationTypeLoc>(T);
Abramo Bagnara55d23c92012-02-06 14:41:24 +0000835 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
836 SpecTL.setTemplateNameLoc(TemplateNameLoc);
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000837 SpecTL.setLAngleLoc(LAngleLoc);
838 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000839 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
840 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
841
842
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000843 SS.Extend(Context, TemplateKWLoc, Builder.getTypeLocInContext(Context, T),
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000844 CCLoc);
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000845 return false;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000846}
847
Douglas Gregorc34348a2011-02-24 17:54:50 +0000848namespace {
849 /// \brief A structure that stores a nested-name-specifier annotation,
850 /// including both the nested-name-specifier
851 struct NestedNameSpecifierAnnotation {
852 NestedNameSpecifier *NNS;
853 };
854}
855
856void *Sema::SaveNestedNameSpecifierAnnotation(CXXScopeSpec &SS) {
857 if (SS.isEmpty() || SS.isInvalid())
858 return 0;
859
860 void *Mem = Context.Allocate((sizeof(NestedNameSpecifierAnnotation) +
861 SS.location_size()),
862 llvm::alignOf<NestedNameSpecifierAnnotation>());
863 NestedNameSpecifierAnnotation *Annotation
864 = new (Mem) NestedNameSpecifierAnnotation;
865 Annotation->NNS = SS.getScopeRep();
866 memcpy(Annotation + 1, SS.location_data(), SS.location_size());
867 return Annotation;
868}
869
870void Sema::RestoreNestedNameSpecifierAnnotation(void *AnnotationPtr,
871 SourceRange AnnotationRange,
872 CXXScopeSpec &SS) {
873 if (!AnnotationPtr) {
874 SS.SetInvalid(AnnotationRange);
875 return;
876 }
877
878 NestedNameSpecifierAnnotation *Annotation
879 = static_cast<NestedNameSpecifierAnnotation *>(AnnotationPtr);
880 SS.Adopt(NestedNameSpecifierLoc(Annotation->NNS, Annotation + 1));
881}
882
John McCalle7e278b2009-12-11 20:04:54 +0000883bool Sema::ShouldEnterDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
884 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
885
886 NestedNameSpecifier *Qualifier =
887 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
888
889 // There are only two places a well-formed program may qualify a
890 // declarator: first, when defining a namespace or class member
891 // out-of-line, and second, when naming an explicitly-qualified
892 // friend function. The latter case is governed by
893 // C++03 [basic.lookup.unqual]p10:
894 // In a friend declaration naming a member function, a name used
895 // in the function declarator and not part of a template-argument
896 // in a template-id is first looked up in the scope of the member
897 // function's class. If it is not found, or if the name is part of
898 // a template-argument in a template-id, the look up is as
899 // described for unqualified names in the definition of the class
900 // granting friendship.
901 // i.e. we don't push a scope unless it's a class member.
902
903 switch (Qualifier->getKind()) {
904 case NestedNameSpecifier::Global:
905 case NestedNameSpecifier::Namespace:
Douglas Gregor14aba762011-02-24 02:36:08 +0000906 case NestedNameSpecifier::NamespaceAlias:
John McCalle7e278b2009-12-11 20:04:54 +0000907 // These are always namespace scopes. We never want to enter a
908 // namespace scope from anything but a file context.
Sebastian Redl7a126a42010-08-31 00:36:30 +0000909 return CurContext->getRedeclContext()->isFileContext();
John McCalle7e278b2009-12-11 20:04:54 +0000910
911 case NestedNameSpecifier::Identifier:
912 case NestedNameSpecifier::TypeSpec:
913 case NestedNameSpecifier::TypeSpecWithTemplate:
914 // These are never namespace scopes.
915 return true;
916 }
917
David Blaikie7530c032012-01-17 06:56:22 +0000918 llvm_unreachable("Invalid NestedNameSpecifier::Kind!");
John McCalle7e278b2009-12-11 20:04:54 +0000919}
920
Cedric Venet3d658642009-02-14 20:20:19 +0000921/// ActOnCXXEnterDeclaratorScope - Called when a C++ scope specifier (global
922/// scope or nested-name-specifier) is parsed, part of a declarator-id.
923/// After this method is called, according to [C++ 3.4.3p3], names should be
924/// looked up in the declarator-id's scope, until the declarator is parsed and
925/// ActOnCXXExitDeclaratorScope is called.
926/// The 'SS' should be a non-empty valid CXXScopeSpec.
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000927bool Sema::ActOnCXXEnterDeclaratorScope(Scope *S, CXXScopeSpec &SS) {
Cedric Venet3d658642009-02-14 20:20:19 +0000928 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
John McCall7a1dc562009-12-19 10:49:29 +0000929
930 if (SS.isInvalid()) return true;
931
932 DeclContext *DC = computeDeclContext(SS, true);
933 if (!DC) return true;
934
935 // Before we enter a declarator's context, we need to make sure that
936 // it is a complete declaration context.
John McCall77bb1aa2010-05-01 00:40:08 +0000937 if (!DC->isDependentContext() && RequireCompleteDeclContext(SS, DC))
John McCall7a1dc562009-12-19 10:49:29 +0000938 return true;
939
940 EnterDeclaratorContext(S, DC);
John McCall31f17ec2010-04-27 00:57:59 +0000941
942 // Rebuild the nested name specifier for the new scope.
943 if (DC->isDependentContext())
944 RebuildNestedNameSpecifierInCurrentInstantiation(SS);
945
Douglas Gregor7dfd0fb2009-09-24 23:39:01 +0000946 return false;
Cedric Venet3d658642009-02-14 20:20:19 +0000947}
948
949/// ActOnCXXExitDeclaratorScope - Called when a declarator that previously
950/// invoked ActOnCXXEnterDeclaratorScope(), is finished. 'SS' is the same
951/// CXXScopeSpec that was passed to ActOnCXXEnterDeclaratorScope as well.
952/// Used to indicate that names should revert to being looked up in the
953/// defining scope.
954void Sema::ActOnCXXExitDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
955 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
Douglas Gregordacd4342009-08-26 00:04:55 +0000956 if (SS.isInvalid())
957 return;
John McCall7a1dc562009-12-19 10:49:29 +0000958 assert(!SS.isInvalid() && computeDeclContext(SS, true) &&
959 "exiting declarator scope we never really entered");
960 ExitDeclaratorContext(S);
Cedric Venet3d658642009-02-14 20:20:19 +0000961}