blob: de68e2e1e46ec413d4f9ec3b49bde2c002781121 [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"
Chandler Carruth55fc8732012-12-04 09:13:33 +000015#include "TypeLocBuilder.h"
Cedric Venet3d658642009-02-14 20:20:19 +000016#include "clang/AST/ASTContext.h"
Douglas Gregor42af25f2009-05-11 19:58:34 +000017#include "clang/AST/DeclTemplate.h"
Douglas Gregorfe85ced2009-08-06 03:17:00 +000018#include "clang/AST/ExprCXX.h"
Douglas Gregore4e5b052009-03-19 00:18:19 +000019#include "clang/AST/NestedNameSpecifier.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000020#include "clang/Basic/PartialDiagnostic.h"
John McCall19510852010-08-20 18:27:03 +000021#include "clang/Sema/DeclSpec.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000022#include "clang/Sema/Lookup.h"
23#include "clang/Sema/Template.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.
Richard Smithf62c6902012-11-22 00:24:47 +000029static CXXRecordDecl *getCurrentInstantiationOf(QualType T,
Douglas Gregord9ea1802011-02-19 19:24:40 +000030 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());
Richard Smithf62c6902012-11-22 00:24:47 +000037 if (!Record->isDependentContext() ||
38 Record->isCurrentInstantiation(CurContext))
Douglas Gregord9ea1802011-02-19 19:24:40 +000039 return Record;
40
Douglas Gregord9ea1802011-02-19 19:24:40 +000041 return 0;
42 } else if (isa<InjectedClassNameType>(Ty))
John McCall31f17ec2010-04-27 00:57:59 +000043 return cast<InjectedClassNameType>(Ty)->getDecl();
44 else
45 return 0;
Douglas Gregor43d88632009-11-04 22:49:18 +000046}
47
Douglas Gregor2dd078a2009-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 Stump1eb44332009-09-09 15:08:12 +000052/// \returns the declaration context represented by the type T,
Douglas Gregor2dd078a2009-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 Gregord9ea1802011-02-19 19:24:40 +000056 if (!T->isDependentType())
57 if (const TagType *Tag = T->getAs<TagType>())
58 return Tag->getDecl();
Mike Stump1eb44332009-09-09 15:08:12 +000059
Douglas Gregord9ea1802011-02-19 19:24:40 +000060 return ::getCurrentInstantiationOf(T, CurContext);
Douglas Gregor2dd078a2009-09-02 22:59:36 +000061}
62
Douglas Gregore4e5b052009-03-19 00:18:19 +000063/// \brief Compute the DeclContext that is associated with the given
64/// scope specifier.
Douglas Gregorf59a56e2009-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 Gregore4e5b052009-03-19 00:18:19 +000078 if (!SS.isSet() || SS.isInvalid())
Douglas Gregorca5e77f2009-03-18 00:36:05 +000079 return 0;
Douglas Gregorca5e77f2009-03-18 00:36:05 +000080
Richard Smithc2e935f2013-03-26 00:54:11 +000081 NestedNameSpecifier *NNS = SS.getScopeRep();
Douglas Gregor42af25f2009-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 Stump1eb44332009-09-09 15:08:12 +000087
Douglas Gregorf59a56e2009-07-21 23:53:31 +000088 if (EnteringContext) {
John McCall3cb0ebd2010-03-10 03:28:59 +000089 const Type *NNSType = NNS->getAsType();
90 if (!NNSType) {
Richard Smith3e4c6c42011-05-05 21:57:07 +000091 return 0;
92 }
93
94 // Look through type alias templates, per C++0x [temp.dep.type]p1.
95 NNSType = Context.getCanonicalType(NNSType);
96 if (const TemplateSpecializationType *SpecType
97 = NNSType->getAs<TemplateSpecializationType>()) {
Douglas Gregor495c35d2009-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 Stump1eb44332009-09-09 15:08:12 +0000101 if (ClassTemplateDecl *ClassTemplate
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000102 = dyn_cast_or_null<ClassTemplateDecl>(
103 SpecType->getTemplateName().getAsTemplateDecl())) {
Douglas Gregorb88e8882009-07-30 17:40:51 +0000104 QualType ContextType
105 = Context.getCanonicalType(QualType(SpecType, 0));
106
Douglas Gregorf59a56e2009-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 McCall3cb0ebd2010-03-10 03:28:59 +0000110 QualType Injected
Douglas Gregor24bae922010-07-08 18:37:38 +0000111 = ClassTemplate->getInjectedClassNameSpecialization();
Douglas Gregorb88e8882009-07-30 17:40:51 +0000112 if (Context.hasSameType(Injected, ContextType))
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000113 return ClassTemplate->getTemplatedDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000114
Douglas Gregorb88e8882009-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 Gregorf59a56e2009-07-21 23:53:31 +0000122 }
John McCall3cb0ebd2010-03-10 03:28:59 +0000123 } else if (const RecordType *RecordT = NNSType->getAs<RecordType>()) {
Douglas Gregor495c35d2009-08-25 22:51:20 +0000124 // The nested name specifier refers to a member of a class template.
125 return RecordT->getDecl();
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000126 }
127 }
Mike Stump1eb44332009-09-09 15:08:12 +0000128
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000129 return 0;
Douglas Gregor42af25f2009-05-11 19:58:34 +0000130 }
Douglas Gregorab452ba2009-03-26 23:50:42 +0000131
132 switch (NNS->getKind()) {
133 case NestedNameSpecifier::Identifier:
David Blaikieb219cfc2011-09-23 05:06:16 +0000134 llvm_unreachable("Dependent nested-name-specifier has no DeclContext");
Douglas Gregorab452ba2009-03-26 23:50:42 +0000135
136 case NestedNameSpecifier::Namespace:
137 return NNS->getAsNamespace();
138
Douglas Gregor14aba762011-02-24 02:36:08 +0000139 case NestedNameSpecifier::NamespaceAlias:
140 return NNS->getAsNamespaceAlias()->getNamespace();
141
Douglas Gregorab452ba2009-03-26 23:50:42 +0000142 case NestedNameSpecifier::TypeSpec:
143 case NestedNameSpecifier::TypeSpecWithTemplate: {
Douglas Gregoredc90502010-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 Blaikie7530c032012-01-17 06:56:22 +0000147 }
Douglas Gregorab452ba2009-03-26 23:50:42 +0000148
149 case NestedNameSpecifier::Global:
150 return Context.getTranslationUnitDecl();
151 }
152
David Blaikie7530c032012-01-17 06:56:22 +0000153 llvm_unreachable("Invalid NestedNameSpecifier::Kind!");
Douglas Gregorca5e77f2009-03-18 00:36:05 +0000154}
155
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000156bool Sema::isDependentScopeSpecifier(const CXXScopeSpec &SS) {
157 if (!SS.isSet() || SS.isInvalid())
158 return false;
159
Richard Smithc2e935f2013-03-26 00:54:11 +0000160 return SS.getScopeRep()->isDependent();
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000161}
162
Douglas Gregor42af25f2009-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 Blaikie4e4d0842012-03-11 07:00:24 +0000169 assert(getLangOpts().CPlusPlus && "Only callable in C++");
Douglas Gregor42af25f2009-05-11 19:58:34 +0000170 assert(NNS->isDependent() && "Only dependent nested-name-specifier allowed");
171
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000172 if (!NNS->getAsType())
173 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000174
Douglas Gregor1560def2009-07-31 18:32:42 +0000175 QualType T = QualType(NNS->getAsType(), 0);
Douglas Gregord9ea1802011-02-19 19:24:40 +0000176 return ::getCurrentInstantiationOf(T, CurContext);
Douglas Gregor42af25f2009-05-11 19:58:34 +0000177}
178
Douglas Gregor4fdf1fa2009-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 McCall77bb1aa2010-05-01 00:40:08 +0000188bool Sema::RequireCompleteDeclContext(CXXScopeSpec &SS,
189 DeclContext *DC) {
190 assert(DC != 0 && "given null context");
Mike Stump1eb44332009-09-09 15:08:12 +0000191
Richard Smithf1c66b42012-03-14 23:13:10 +0000192 TagDecl *tag = dyn_cast<TagDecl>(DC);
Douglas Gregora4e8c2a2010-02-05 04:39:02 +0000193
Richard Smithf1c66b42012-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 Gregor4fdf1fa2009-03-11 16:48:53 +0000197
Richard Smithf1c66b42012-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 McCall9dc71d22011-07-06 06:57:57 +0000204
Richard Smithf1c66b42012-03-14 23:13:10 +0000205 SourceLocation loc = SS.getLastQualifierNameLoc();
206 if (loc.isInvalid()) loc = SS.getRange().getBegin();
John McCall9dc71d22011-07-06 06:57:57 +0000207
Richard Smithf1c66b42012-03-14 23:13:10 +0000208 // The type must be complete.
Douglas Gregord10099e2012-05-04 16:32:21 +0000209 if (RequireCompleteType(loc, type, diag::err_incomplete_nested_name_spec,
210 SS.getRange())) {
Richard Smithf1c66b42012-03-14 23:13:10 +0000211 SS.SetInvalid(SS.getRange());
212 return true;
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000213 }
214
Richard Smithf1c66b42012-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 Smith1af83c42012-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 Smithf1c66b42012-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 Gregor4fdf1fa2009-03-11 16:48:53 +0000241}
Cedric Venet3d658642009-02-14 20:20:19 +0000242
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000243bool Sema::ActOnCXXGlobalScopeSpecifier(Scope *S, SourceLocation CCLoc,
244 CXXScopeSpec &SS) {
245 SS.MakeGlobal(Context, CCLoc);
246 return false;
Cedric Venet3d658642009-02-14 20:20:19 +0000247}
248
Douglas Gregor2dd078a2009-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 Gribenko89cf4252013-01-23 17:21:11 +0000251bool Sema::isAcceptableNestedNameSpecifier(const NamedDecl *SD) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000252 if (!SD)
253 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000254
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000255 // Namespace and namespace aliases are fine.
256 if (isa<NamespaceDecl>(SD) || isa<NamespaceAliasDecl>(SD))
257 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000258
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000259 if (!isa<TypeDecl>(SD))
260 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000261
Richard Smith6b130222011-10-18 21:39:00 +0000262 // Determine whether we have a class (or, in C++11, an enum) or
Douglas Gregor2dd078a2009-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 Gribenko89cf4252013-01-23 17:21:11 +0000267 else if (const TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(SD)) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000268 if (TD->getUnderlyingType()->isRecordType() ||
Richard Smith80ad52f2013-01-02 11:42:31 +0000269 (Context.getLangOpts().CPlusPlus11 &&
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000270 TD->getUnderlyingType()->isEnumeralType()))
271 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000272 } else if (isa<RecordDecl>(SD) ||
Richard Smith80ad52f2013-01-02 11:42:31 +0000273 (Context.getLangOpts().CPlusPlus11 && isa<EnumDecl>(SD)))
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000274 return true;
275
276 return false;
277}
278
Douglas Gregorc68afe22009-09-03 21:38:09 +0000279/// \brief If the given nested-name-specifier begins with a bare identifier
Mike Stump1eb44332009-09-09 15:08:12 +0000280/// (e.g., Base::), perform name lookup for that identifier as a
Douglas Gregorc68afe22009-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)
285 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000286
Douglas Gregorc68afe22009-09-03 21:38:09 +0000287 while (NNS->getPrefix())
288 NNS = NNS->getPrefix();
Mike Stump1eb44332009-09-09 15:08:12 +0000289
Douglas Gregorc68afe22009-09-03 21:38:09 +0000290 if (NNS->getKind() != NestedNameSpecifier::Identifier)
291 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000292
John McCalla24dc2e2009-11-17 02:14:36 +0000293 LookupResult Found(*this, NNS->getAsIdentifier(), SourceLocation(),
294 LookupNestedNameSpecifierName);
295 LookupName(Found, S);
Douglas Gregorc68afe22009-09-03 21:38:09 +0000296 assert(!Found.isAmbiguous() && "Cannot handle ambiguities here yet");
297
John McCall1bcee0a2009-12-02 08:25:40 +0000298 if (!Found.isSingleResult())
299 return 0;
300
301 NamedDecl *Result = Found.getFoundDecl();
Douglas Gregoredc90502010-02-25 04:46:04 +0000302 if (isAcceptableNestedNameSpecifier(Result))
Douglas Gregorc68afe22009-09-03 21:38:09 +0000303 return Result;
Mike Stump1eb44332009-09-09 15:08:12 +0000304
Douglas Gregorc68afe22009-09-03 21:38:09 +0000305 return 0;
306}
307
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000308bool Sema::isNonTypeNestedNameSpecifier(Scope *S, CXXScopeSpec &SS,
Douglas Gregor77549082010-02-24 21:29:12 +0000309 SourceLocation IdLoc,
310 IdentifierInfo &II,
John McCallb3d87482010-08-24 05:47:05 +0000311 ParsedType ObjectTypePtr) {
Douglas Gregor77549082010-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
316 DeclContext *LookupCtx = 0;
317 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 McCall77bb1aa2010-05-01 00:40:08 +0000339 if (!LookupCtx->isDependentContext() &&
340 RequireCompleteDeclContext(SS, LookupCtx))
Douglas Gregor77549082010-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 Uhrain3b4b0472012-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
366 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
367 return SRef.isAcceptableNestedNameSpecifier(candidate.getCorrectionDecl());
368 }
369
370 private:
371 Sema &SRef;
372};
373
374}
375
Douglas Gregorc68afe22009-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
380/// that it contains an extra parameter \p ScopeLookupResult, which provides
381/// the result of name lookup within the scope of the nested-name-specifier
Douglas Gregora6e51992009-12-30 16:01:52 +0000382/// that was computed at template definition time.
Chris Lattner46646492009-12-07 01:36:53 +0000383///
384/// If ErrorRecoveryLookup is true, then this call is used to improve error
385/// recovery. This means that it should not emit diagnostics, it should
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000386/// just return true on failure. It also means it should only return a valid
Chris Lattner46646492009-12-07 01:36:53 +0000387/// scope if it *knows* that the result is correct. It should not return in a
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000388/// dependent context, for example. Nor will it extend \p SS with the scope
389/// specifier.
390bool Sema::BuildCXXNestedNameSpecifier(Scope *S,
391 IdentifierInfo &Identifier,
392 SourceLocation IdentifierLoc,
393 SourceLocation CCLoc,
394 QualType ObjectType,
395 bool EnteringContext,
396 CXXScopeSpec &SS,
397 NamedDecl *ScopeLookupResult,
398 bool ErrorRecoveryLookup) {
399 LookupResult Found(*this, &Identifier, IdentifierLoc,
400 LookupNestedNameSpecifierName);
John McCalla24dc2e2009-11-17 02:14:36 +0000401
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000402 // Determine where to perform name lookup
403 DeclContext *LookupCtx = 0;
404 bool isDependent = false;
Douglas Gregorc68afe22009-09-03 21:38:09 +0000405 if (!ObjectType.isNull()) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000406 // This nested-name-specifier occurs in a member access expression, e.g.,
407 // x->B::f, and we are looking into the type of the object.
408 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000409 LookupCtx = computeDeclContext(ObjectType);
410 isDependent = ObjectType->isDependentType();
411 } else if (SS.isSet()) {
412 // This nested-name-specifier occurs after another nested-name-specifier,
Richard Smith3e4c6c42011-05-05 21:57:07 +0000413 // so look into the context associated with the prior nested-name-specifier.
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000414 LookupCtx = computeDeclContext(SS, EnteringContext);
415 isDependent = isDependentScopeSpecifier(SS);
John McCalla24dc2e2009-11-17 02:14:36 +0000416 Found.setContextRange(SS.getRange());
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000417 }
Mike Stump1eb44332009-09-09 15:08:12 +0000418
John McCalla24dc2e2009-11-17 02:14:36 +0000419
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000420 bool ObjectTypeSearchedInScope = false;
421 if (LookupCtx) {
Mike Stump1eb44332009-09-09 15:08:12 +0000422 // Perform "qualified" name lookup into the declaration context we
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000423 // computed, which is either the type of the base of a member access
Mike Stump1eb44332009-09-09 15:08:12 +0000424 // expression or the declaration context associated with a prior
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000425 // nested-name-specifier.
Mike Stump1eb44332009-09-09 15:08:12 +0000426
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000427 // The declaration context must be complete.
John McCall77bb1aa2010-05-01 00:40:08 +0000428 if (!LookupCtx->isDependentContext() &&
429 RequireCompleteDeclContext(SS, LookupCtx))
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000430 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000431
John McCalla24dc2e2009-11-17 02:14:36 +0000432 LookupQualifiedName(Found, LookupCtx);
Mike Stump1eb44332009-09-09 15:08:12 +0000433
John McCalla24dc2e2009-11-17 02:14:36 +0000434 if (!ObjectType.isNull() && Found.empty()) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000435 // C++ [basic.lookup.classref]p4:
436 // If the id-expression in a class member access is a qualified-id of
Mike Stump1eb44332009-09-09 15:08:12 +0000437 // the form
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000438 //
439 // class-name-or-namespace-name::...
440 //
Mike Stump1eb44332009-09-09 15:08:12 +0000441 // the class-name-or-namespace-name following the . or -> operator is
442 // looked up both in the context of the entire postfix-expression and in
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000443 // the scope of the class of the object expression. If the name is found
Mike Stump1eb44332009-09-09 15:08:12 +0000444 // only in the scope of the class of the object expression, the name
445 // shall refer to a class-name. If the name is found only in the
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000446 // context of the entire postfix-expression, the name shall refer to a
447 // class-name or namespace-name. [...]
448 //
449 // Qualified name lookup into a class will not find a namespace-name,
Douglas Gregor714c9922011-05-15 17:27:27 +0000450 // so we do not need to diagnose that case specifically. However,
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000451 // this qualified name lookup may find nothing. In that case, perform
Mike Stump1eb44332009-09-09 15:08:12 +0000452 // unqualified name lookup in the given scope (if available) or
Douglas Gregorc68afe22009-09-03 21:38:09 +0000453 // reconstruct the result from when name lookup was performed at template
454 // definition time.
455 if (S)
John McCalla24dc2e2009-11-17 02:14:36 +0000456 LookupName(Found, S);
John McCallf36e02d2009-10-09 21:13:30 +0000457 else if (ScopeLookupResult)
458 Found.addDecl(ScopeLookupResult);
Mike Stump1eb44332009-09-09 15:08:12 +0000459
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000460 ObjectTypeSearchedInScope = true;
461 }
Douglas Gregorac7cbd82010-07-28 14:49:07 +0000462 } else if (!isDependent) {
463 // Perform unqualified name lookup in the current scope.
464 LookupName(Found, S);
465 }
466
467 // If we performed lookup into a dependent context and did not find anything,
468 // that's fine: just build a dependent nested-name-specifier.
469 if (Found.empty() && isDependent &&
470 !(LookupCtx && LookupCtx->isRecord() &&
471 (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() ||
472 !cast<CXXRecordDecl>(LookupCtx)->hasAnyDependentBases()))) {
Chris Lattner46646492009-12-07 01:36:53 +0000473 // Don't speculate if we're just trying to improve error recovery.
474 if (ErrorRecoveryLookup)
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000475 return true;
Chris Lattner46646492009-12-07 01:36:53 +0000476
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000477 // We were not able to compute the declaration context for a dependent
Mike Stump1eb44332009-09-09 15:08:12 +0000478 // base object type or prior nested-name-specifier, so this
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000479 // nested-name-specifier refers to an unknown specialization. Just build
480 // a dependent nested-name-specifier.
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000481 SS.Extend(Context, &Identifier, IdentifierLoc, CCLoc);
482 return false;
Douglas Gregorac7cbd82010-07-28 14:49:07 +0000483 }
484
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000485 // FIXME: Deal with ambiguities cleanly.
Douglas Gregor175a6562009-12-31 08:26:35 +0000486
487 if (Found.empty() && !ErrorRecoveryLookup) {
488 // We haven't found anything, and we're not recovering from a
489 // different kind of error, so look for typos.
490 DeclarationName Name = Found.getLookupName();
Kaelyn Uhrain3b4b0472012-01-12 22:32:39 +0000491 NestedNameSpecifierValidatorCCC Validator(*this);
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000492 TypoCorrection Corrected;
493 Found.clear();
494 if ((Corrected = CorrectTypo(Found.getLookupNameInfo(),
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +0000495 Found.getLookupKind(), S, &SS, Validator,
Kaelyn Uhrain3b4b0472012-01-12 22:32:39 +0000496 LookupCtx, EnteringContext))) {
David Blaikie4e4d0842012-03-11 07:00:24 +0000497 std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
498 std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOpts()));
Douglas Gregor175a6562009-12-31 08:26:35 +0000499 if (LookupCtx)
500 Diag(Found.getNameLoc(), diag::err_no_member_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000501 << Name << LookupCtx << CorrectedQuotedStr << SS.getRange()
David Blaikie6952c012012-10-12 20:00:44 +0000502 << FixItHint::CreateReplacement(Corrected.getCorrectionRange(),
503 CorrectedStr);
Douglas Gregor175a6562009-12-31 08:26:35 +0000504 else
505 Diag(Found.getNameLoc(), diag::err_undeclared_var_use_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000506 << Name << CorrectedQuotedStr
507 << FixItHint::CreateReplacement(Found.getNameLoc(), CorrectedStr);
Douglas Gregor67dd1d42010-01-07 00:17:44 +0000508
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000509 if (NamedDecl *ND = Corrected.getCorrectionDecl()) {
510 Diag(ND->getLocation(), diag::note_previous_decl) << CorrectedQuotedStr;
511 Found.addDecl(ND);
512 }
513 Found.setLookupName(Corrected.getCorrection());
Douglas Gregor12eb5d62010-06-29 19:27:42 +0000514 } else {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000515 Found.setLookupName(&Identifier);
Douglas Gregor12eb5d62010-06-29 19:27:42 +0000516 }
Douglas Gregor175a6562009-12-31 08:26:35 +0000517 }
518
John McCall1bcee0a2009-12-02 08:25:40 +0000519 NamedDecl *SD = Found.getAsSingle<NamedDecl>();
Douglas Gregoredc90502010-02-25 04:46:04 +0000520 if (isAcceptableNestedNameSpecifier(SD)) {
Douglas Gregor05e60762012-05-01 20:23:02 +0000521 if (!ObjectType.isNull() && !ObjectTypeSearchedInScope &&
Richard Smith80ad52f2013-01-02 11:42:31 +0000522 !getLangOpts().CPlusPlus11) {
Douglas Gregor05e60762012-05-01 20:23:02 +0000523 // C++03 [basic.lookup.classref]p4:
Mike Stump1eb44332009-09-09 15:08:12 +0000524 // [...] If the name is found in both contexts, the
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000525 // class-name-or-namespace-name shall refer to the same entity.
526 //
527 // We already found the name in the scope of the object. Now, look
528 // into the current scope (the scope of the postfix-expression) to
Douglas Gregorc68afe22009-09-03 21:38:09 +0000529 // see if we can find the same name there. As above, if there is no
530 // scope, reconstruct the result from the template instantiation itself.
Douglas Gregor05e60762012-05-01 20:23:02 +0000531 //
532 // Note that C++11 does *not* perform this redundant lookup.
John McCallf36e02d2009-10-09 21:13:30 +0000533 NamedDecl *OuterDecl;
534 if (S) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000535 LookupResult FoundOuter(*this, &Identifier, IdentifierLoc,
536 LookupNestedNameSpecifierName);
John McCalla24dc2e2009-11-17 02:14:36 +0000537 LookupName(FoundOuter, S);
John McCall1bcee0a2009-12-02 08:25:40 +0000538 OuterDecl = FoundOuter.getAsSingle<NamedDecl>();
John McCallf36e02d2009-10-09 21:13:30 +0000539 } else
540 OuterDecl = ScopeLookupResult;
Mike Stump1eb44332009-09-09 15:08:12 +0000541
Douglas Gregoredc90502010-02-25 04:46:04 +0000542 if (isAcceptableNestedNameSpecifier(OuterDecl) &&
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000543 OuterDecl->getCanonicalDecl() != SD->getCanonicalDecl() &&
544 (!isa<TypeDecl>(OuterDecl) || !isa<TypeDecl>(SD) ||
545 !Context.hasSameType(
Douglas Gregorc68afe22009-09-03 21:38:09 +0000546 Context.getTypeDeclType(cast<TypeDecl>(OuterDecl)),
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000547 Context.getTypeDeclType(cast<TypeDecl>(SD))))) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000548 if (ErrorRecoveryLookup)
549 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000550
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000551 Diag(IdentifierLoc,
552 diag::err_nested_name_member_ref_lookup_ambiguous)
553 << &Identifier;
554 Diag(SD->getLocation(), diag::note_ambig_member_ref_object_type)
555 << ObjectType;
556 Diag(OuterDecl->getLocation(), diag::note_ambig_member_ref_scope);
557
558 // Fall through so that we'll pick the name we found in the object
559 // type, since that's probably what the user wanted anyway.
560 }
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000561 }
Mike Stump1eb44332009-09-09 15:08:12 +0000562
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000563 // If we're just performing this lookup for error-recovery purposes,
564 // don't extend the nested-name-specifier. Just return now.
565 if (ErrorRecoveryLookup)
566 return false;
567
568 if (NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(SD)) {
569 SS.Extend(Context, Namespace, IdentifierLoc, CCLoc);
570 return false;
571 }
Mike Stump1eb44332009-09-09 15:08:12 +0000572
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000573 if (NamespaceAliasDecl *Alias = dyn_cast<NamespaceAliasDecl>(SD)) {
Douglas Gregor14aba762011-02-24 02:36:08 +0000574 SS.Extend(Context, Alias, IdentifierLoc, CCLoc);
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000575 return false;
576 }
Mike Stump1eb44332009-09-09 15:08:12 +0000577
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000578 QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD));
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000579 TypeLocBuilder TLB;
580 if (isa<InjectedClassNameType>(T)) {
581 InjectedClassNameTypeLoc InjectedTL
582 = TLB.push<InjectedClassNameTypeLoc>(T);
583 InjectedTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000584 } else if (isa<RecordType>(T)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000585 RecordTypeLoc RecordTL = TLB.push<RecordTypeLoc>(T);
586 RecordTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000587 } else if (isa<TypedefType>(T)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000588 TypedefTypeLoc TypedefTL = TLB.push<TypedefTypeLoc>(T);
589 TypedefTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000590 } else if (isa<EnumType>(T)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000591 EnumTypeLoc EnumTL = TLB.push<EnumTypeLoc>(T);
592 EnumTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000593 } else if (isa<TemplateTypeParmType>(T)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000594 TemplateTypeParmTypeLoc TemplateTypeTL
595 = TLB.push<TemplateTypeParmTypeLoc>(T);
596 TemplateTypeTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000597 } else if (isa<UnresolvedUsingType>(T)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000598 UnresolvedUsingTypeLoc UnresolvedTL
599 = TLB.push<UnresolvedUsingTypeLoc>(T);
600 UnresolvedTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000601 } else if (isa<SubstTemplateTypeParmType>(T)) {
602 SubstTemplateTypeParmTypeLoc TL
603 = TLB.push<SubstTemplateTypeParmTypeLoc>(T);
604 TL.setNameLoc(IdentifierLoc);
605 } else if (isa<SubstTemplateTypeParmPackType>(T)) {
606 SubstTemplateTypeParmPackTypeLoc TL
607 = TLB.push<SubstTemplateTypeParmPackTypeLoc>(T);
608 TL.setNameLoc(IdentifierLoc);
609 } else {
610 llvm_unreachable("Unhandled TypeDecl node in nested-name-specifier");
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000611 }
612
Richard Smith95aafb22011-10-20 03:28:47 +0000613 if (T->isEnumeralType())
614 Diag(IdentifierLoc, diag::warn_cxx98_compat_enum_nested_name_spec);
615
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000616 SS.Extend(Context, SourceLocation(), TLB.getTypeLocInContext(Context, T),
617 CCLoc);
618 return false;
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000619 }
Mike Stump1eb44332009-09-09 15:08:12 +0000620
Chris Lattner46646492009-12-07 01:36:53 +0000621 // Otherwise, we have an error case. If we don't want diagnostics, just
622 // return an error now.
623 if (ErrorRecoveryLookup)
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000624 return true;
Chris Lattner46646492009-12-07 01:36:53 +0000625
Cedric Venet3d658642009-02-14 20:20:19 +0000626 // If we didn't find anything during our lookup, try again with
627 // ordinary name lookup, which can help us produce better error
628 // messages.
John McCall1bcee0a2009-12-02 08:25:40 +0000629 if (Found.empty()) {
John McCalla24dc2e2009-11-17 02:14:36 +0000630 Found.clear(LookupOrdinaryName);
631 LookupName(Found, S);
John McCallf36e02d2009-10-09 21:13:30 +0000632 }
Mike Stump1eb44332009-09-09 15:08:12 +0000633
Francois Pichetdfb6ae12011-07-27 01:05:24 +0000634 // In Microsoft mode, if we are within a templated function and we can't
635 // resolve Identifier, then extend the SS with Identifier. This will have
636 // the effect of resolving Identifier during template instantiation.
637 // The goal is to be able to resolve a function call whose
638 // nested-name-specifier is located inside a dependent base class.
639 // Example:
640 //
641 // class C {
642 // public:
643 // static void foo2() { }
644 // };
645 // template <class T> class A { public: typedef C D; };
646 //
647 // template <class T> class B : public A<T> {
648 // public:
649 // void foo() { D::foo2(); }
650 // };
David Blaikie4e4d0842012-03-11 07:00:24 +0000651 if (getLangOpts().MicrosoftExt) {
Francois Pichetdfb6ae12011-07-27 01:05:24 +0000652 DeclContext *DC = LookupCtx ? LookupCtx : CurContext;
653 if (DC->isDependentContext() && DC->isFunctionOrMethod()) {
654 SS.Extend(Context, &Identifier, IdentifierLoc, CCLoc);
655 return false;
656 }
657 }
658
Cedric Venet3d658642009-02-14 20:20:19 +0000659 unsigned DiagID;
John McCall1bcee0a2009-12-02 08:25:40 +0000660 if (!Found.empty())
Cedric Venet3d658642009-02-14 20:20:19 +0000661 DiagID = diag::err_expected_class_or_namespace;
Anders Carlssona31d5f72009-08-30 07:09:50 +0000662 else if (SS.isSet()) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000663 Diag(IdentifierLoc, diag::err_no_member)
664 << &Identifier << LookupCtx << SS.getRange();
665 return true;
Anders Carlssona31d5f72009-08-30 07:09:50 +0000666 } else
Cedric Venet3d658642009-02-14 20:20:19 +0000667 DiagID = diag::err_undeclared_var_use;
Mike Stump1eb44332009-09-09 15:08:12 +0000668
Cedric Venet3d658642009-02-14 20:20:19 +0000669 if (SS.isSet())
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000670 Diag(IdentifierLoc, DiagID) << &Identifier << SS.getRange();
Cedric Venet3d658642009-02-14 20:20:19 +0000671 else
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000672 Diag(IdentifierLoc, DiagID) << &Identifier;
Mike Stump1eb44332009-09-09 15:08:12 +0000673
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000674 return true;
Cedric Venet3d658642009-02-14 20:20:19 +0000675}
676
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000677bool Sema::ActOnCXXNestedNameSpecifier(Scope *S,
678 IdentifierInfo &Identifier,
679 SourceLocation IdentifierLoc,
680 SourceLocation CCLoc,
681 ParsedType ObjectType,
682 bool EnteringContext,
683 CXXScopeSpec &SS) {
684 if (SS.isInvalid())
685 return true;
686
687 return BuildCXXNestedNameSpecifier(S, Identifier, IdentifierLoc, CCLoc,
688 GetTypeFromParser(ObjectType),
689 EnteringContext, SS,
690 /*ScopeLookupResult=*/0, false);
Chris Lattner46646492009-12-07 01:36:53 +0000691}
692
David Blaikie42d6d0c2011-12-04 05:04:18 +0000693bool Sema::ActOnCXXNestedNameSpecifierDecltype(CXXScopeSpec &SS,
694 const DeclSpec &DS,
695 SourceLocation ColonColonLoc) {
696 if (SS.isInvalid() || DS.getTypeSpecType() == DeclSpec::TST_error)
697 return true;
698
699 assert(DS.getTypeSpecType() == DeclSpec::TST_decltype);
700
701 QualType T = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
702 if (!T->isDependentType() && !T->getAs<TagType>()) {
703 Diag(DS.getTypeSpecTypeLoc(), diag::err_expected_class)
David Blaikie4e4d0842012-03-11 07:00:24 +0000704 << T << getLangOpts().CPlusPlus;
David Blaikie42d6d0c2011-12-04 05:04:18 +0000705 return true;
706 }
707
708 TypeLocBuilder TLB;
709 DecltypeTypeLoc DecltypeTL = TLB.push<DecltypeTypeLoc>(T);
710 DecltypeTL.setNameLoc(DS.getTypeSpecTypeLoc());
711 SS.Extend(Context, SourceLocation(), TLB.getTypeLocInContext(Context, T),
712 ColonColonLoc);
713 return false;
714}
715
Chris Lattner46646492009-12-07 01:36:53 +0000716/// IsInvalidUnlessNestedName - This method is used for error recovery
717/// purposes to determine whether the specified identifier is only valid as
718/// a nested name specifier, for example a namespace name. It is
719/// conservatively correct to always return false from this method.
720///
721/// The arguments are the same as those passed to ActOnCXXNestedNameSpecifier.
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000722bool Sema::IsInvalidUnlessNestedName(Scope *S, CXXScopeSpec &SS,
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000723 IdentifierInfo &Identifier,
724 SourceLocation IdentifierLoc,
725 SourceLocation ColonLoc,
726 ParsedType ObjectType,
Chris Lattner46646492009-12-07 01:36:53 +0000727 bool EnteringContext) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000728 if (SS.isInvalid())
729 return false;
730
731 return !BuildCXXNestedNameSpecifier(S, Identifier, IdentifierLoc, ColonLoc,
732 GetTypeFromParser(ObjectType),
733 EnteringContext, SS,
734 /*ScopeLookupResult=*/0, true);
Douglas Gregorc68afe22009-09-03 21:38:09 +0000735}
736
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000737bool Sema::ActOnCXXNestedNameSpecifier(Scope *S,
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000738 CXXScopeSpec &SS,
739 SourceLocation TemplateKWLoc,
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000740 TemplateTy Template,
741 SourceLocation TemplateNameLoc,
742 SourceLocation LAngleLoc,
743 ASTTemplateArgsPtr TemplateArgsIn,
744 SourceLocation RAngleLoc,
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000745 SourceLocation CCLoc,
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000746 bool EnteringContext) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000747 if (SS.isInvalid())
748 return true;
749
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000750 // Translate the parser's template argument list in our AST format.
751 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
752 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
753
754 if (DependentTemplateName *DTN = Template.get().getAsDependentTemplateName()){
755 // Handle a dependent template specialization for which we cannot resolve
756 // the template name.
Richard Smithc2e935f2013-03-26 00:54:11 +0000757 assert(DTN->getQualifier() == SS.getScopeRep());
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000758 QualType T = Context.getDependentTemplateSpecializationType(ETK_None,
Douglas Gregor94fdffa2011-03-01 20:11:18 +0000759 DTN->getQualifier(),
760 DTN->getIdentifier(),
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000761 TemplateArgs);
762
763 // Create source-location information for this type.
764 TypeLocBuilder Builder;
Abramo Bagnara55d23c92012-02-06 14:41:24 +0000765 DependentTemplateSpecializationTypeLoc SpecTL
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000766 = Builder.push<DependentTemplateSpecializationTypeLoc>(T);
Abramo Bagnara55d23c92012-02-06 14:41:24 +0000767 SpecTL.setElaboratedKeywordLoc(SourceLocation());
768 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Abramo Bagnara66581d42012-02-06 22:45:07 +0000769 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
Abramo Bagnara55d23c92012-02-06 14:41:24 +0000770 SpecTL.setTemplateNameLoc(TemplateNameLoc);
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000771 SpecTL.setLAngleLoc(LAngleLoc);
772 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000773 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
774 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
775
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000776 SS.Extend(Context, TemplateKWLoc, Builder.getTypeLocInContext(Context, T),
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000777 CCLoc);
778 return false;
779 }
780
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +0000781
782 if (Template.get().getAsOverloadedTemplate() ||
783 isa<FunctionTemplateDecl>(Template.get().getAsTemplateDecl())) {
784 SourceRange R(TemplateNameLoc, RAngleLoc);
785 if (SS.getRange().isValid())
786 R.setBegin(SS.getRange().getBegin());
787
788 Diag(CCLoc, diag::err_non_type_template_in_nested_name_specifier)
789 << Template.get() << R;
790 NoteAllFoundTemplates(Template.get());
791 return true;
792 }
793
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000794 // We were able to resolve the template name to an actual template.
795 // Build an appropriate nested-name-specifier.
796 QualType T = CheckTemplateIdType(Template.get(), TemplateNameLoc,
797 TemplateArgs);
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000798 if (T.isNull())
799 return true;
800
Richard Smith3e4c6c42011-05-05 21:57:07 +0000801 // Alias template specializations can produce types which are not valid
802 // nested name specifiers.
803 if (!T->isDependentType() && !T->getAs<TagType>()) {
804 Diag(TemplateNameLoc, diag::err_nested_name_spec_non_tag) << T;
805 NoteAllFoundTemplates(Template.get());
806 return true;
807 }
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000808
Abramo Bagnara55d23c92012-02-06 14:41:24 +0000809 // Provide source-location information for the template specialization type.
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000810 TypeLocBuilder Builder;
Abramo Bagnara55d23c92012-02-06 14:41:24 +0000811 TemplateSpecializationTypeLoc SpecTL
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000812 = Builder.push<TemplateSpecializationTypeLoc>(T);
Abramo Bagnara55d23c92012-02-06 14:41:24 +0000813 SpecTL.setTemplateKeywordLoc(TemplateKWLoc);
814 SpecTL.setTemplateNameLoc(TemplateNameLoc);
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000815 SpecTL.setLAngleLoc(LAngleLoc);
816 SpecTL.setRAngleLoc(RAngleLoc);
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000817 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
818 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
819
820
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000821 SS.Extend(Context, TemplateKWLoc, Builder.getTypeLocInContext(Context, T),
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000822 CCLoc);
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000823 return false;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000824}
825
Douglas Gregorc34348a2011-02-24 17:54:50 +0000826namespace {
827 /// \brief A structure that stores a nested-name-specifier annotation,
828 /// including both the nested-name-specifier
829 struct NestedNameSpecifierAnnotation {
830 NestedNameSpecifier *NNS;
831 };
832}
833
834void *Sema::SaveNestedNameSpecifierAnnotation(CXXScopeSpec &SS) {
835 if (SS.isEmpty() || SS.isInvalid())
836 return 0;
837
838 void *Mem = Context.Allocate((sizeof(NestedNameSpecifierAnnotation) +
839 SS.location_size()),
840 llvm::alignOf<NestedNameSpecifierAnnotation>());
841 NestedNameSpecifierAnnotation *Annotation
842 = new (Mem) NestedNameSpecifierAnnotation;
843 Annotation->NNS = SS.getScopeRep();
844 memcpy(Annotation + 1, SS.location_data(), SS.location_size());
845 return Annotation;
846}
847
848void Sema::RestoreNestedNameSpecifierAnnotation(void *AnnotationPtr,
849 SourceRange AnnotationRange,
850 CXXScopeSpec &SS) {
851 if (!AnnotationPtr) {
852 SS.SetInvalid(AnnotationRange);
853 return;
854 }
855
856 NestedNameSpecifierAnnotation *Annotation
857 = static_cast<NestedNameSpecifierAnnotation *>(AnnotationPtr);
858 SS.Adopt(NestedNameSpecifierLoc(Annotation->NNS, Annotation + 1));
859}
860
John McCalle7e278b2009-12-11 20:04:54 +0000861bool Sema::ShouldEnterDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
862 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
863
Richard Smithc2e935f2013-03-26 00:54:11 +0000864 NestedNameSpecifier *Qualifier = SS.getScopeRep();
John McCalle7e278b2009-12-11 20:04:54 +0000865
866 // There are only two places a well-formed program may qualify a
867 // declarator: first, when defining a namespace or class member
868 // out-of-line, and second, when naming an explicitly-qualified
869 // friend function. The latter case is governed by
870 // C++03 [basic.lookup.unqual]p10:
871 // In a friend declaration naming a member function, a name used
872 // in the function declarator and not part of a template-argument
873 // in a template-id is first looked up in the scope of the member
874 // function's class. If it is not found, or if the name is part of
875 // a template-argument in a template-id, the look up is as
876 // described for unqualified names in the definition of the class
877 // granting friendship.
878 // i.e. we don't push a scope unless it's a class member.
879
880 switch (Qualifier->getKind()) {
881 case NestedNameSpecifier::Global:
882 case NestedNameSpecifier::Namespace:
Douglas Gregor14aba762011-02-24 02:36:08 +0000883 case NestedNameSpecifier::NamespaceAlias:
John McCalle7e278b2009-12-11 20:04:54 +0000884 // These are always namespace scopes. We never want to enter a
885 // namespace scope from anything but a file context.
Sebastian Redl7a126a42010-08-31 00:36:30 +0000886 return CurContext->getRedeclContext()->isFileContext();
John McCalle7e278b2009-12-11 20:04:54 +0000887
888 case NestedNameSpecifier::Identifier:
889 case NestedNameSpecifier::TypeSpec:
890 case NestedNameSpecifier::TypeSpecWithTemplate:
891 // These are never namespace scopes.
892 return true;
893 }
894
David Blaikie7530c032012-01-17 06:56:22 +0000895 llvm_unreachable("Invalid NestedNameSpecifier::Kind!");
John McCalle7e278b2009-12-11 20:04:54 +0000896}
897
Cedric Venet3d658642009-02-14 20:20:19 +0000898/// ActOnCXXEnterDeclaratorScope - Called when a C++ scope specifier (global
899/// scope or nested-name-specifier) is parsed, part of a declarator-id.
900/// After this method is called, according to [C++ 3.4.3p3], names should be
901/// looked up in the declarator-id's scope, until the declarator is parsed and
902/// ActOnCXXExitDeclaratorScope is called.
903/// The 'SS' should be a non-empty valid CXXScopeSpec.
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000904bool Sema::ActOnCXXEnterDeclaratorScope(Scope *S, CXXScopeSpec &SS) {
Cedric Venet3d658642009-02-14 20:20:19 +0000905 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
John McCall7a1dc562009-12-19 10:49:29 +0000906
907 if (SS.isInvalid()) return true;
908
909 DeclContext *DC = computeDeclContext(SS, true);
910 if (!DC) return true;
911
912 // Before we enter a declarator's context, we need to make sure that
913 // it is a complete declaration context.
John McCall77bb1aa2010-05-01 00:40:08 +0000914 if (!DC->isDependentContext() && RequireCompleteDeclContext(SS, DC))
John McCall7a1dc562009-12-19 10:49:29 +0000915 return true;
916
917 EnterDeclaratorContext(S, DC);
John McCall31f17ec2010-04-27 00:57:59 +0000918
919 // Rebuild the nested name specifier for the new scope.
920 if (DC->isDependentContext())
921 RebuildNestedNameSpecifierInCurrentInstantiation(SS);
922
Douglas Gregor7dfd0fb2009-09-24 23:39:01 +0000923 return false;
Cedric Venet3d658642009-02-14 20:20:19 +0000924}
925
926/// ActOnCXXExitDeclaratorScope - Called when a declarator that previously
927/// invoked ActOnCXXEnterDeclaratorScope(), is finished. 'SS' is the same
928/// CXXScopeSpec that was passed to ActOnCXXEnterDeclaratorScope as well.
929/// Used to indicate that names should revert to being looked up in the
930/// defining scope.
931void Sema::ActOnCXXExitDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
932 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
Douglas Gregordacd4342009-08-26 00:04:55 +0000933 if (SS.isInvalid())
934 return;
John McCall7a1dc562009-12-19 10:49:29 +0000935 assert(!SS.isInvalid() && computeDeclContext(SS, true) &&
936 "exiting declarator scope we never really entered");
937 ExitDeclaratorContext(S);
Cedric Venet3d658642009-02-14 20:20:19 +0000938}