blob: 7049f6b01d26515aa3890cb358cc6d2cbb787f29 [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"
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"
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000022#include "TypeLocBuilder.h"
Cedric Venet3d658642009-02-14 20:20:19 +000023#include "llvm/ADT/STLExtras.h"
Douglas Gregor7551c182009-07-22 00:28:09 +000024#include "llvm/Support/raw_ostream.h"
Cedric Venet3d658642009-02-14 20:20:19 +000025using namespace clang;
26
Douglas Gregor43d88632009-11-04 22:49:18 +000027/// \brief Find the current instantiation that associated with the given type.
Douglas Gregord9ea1802011-02-19 19:24:40 +000028static CXXRecordDecl *getCurrentInstantiationOf(QualType T,
29 DeclContext *CurContext) {
Douglas Gregor43d88632009-11-04 22:49:18 +000030 if (T.isNull())
31 return 0;
John McCall31f17ec2010-04-27 00:57:59 +000032
33 const Type *Ty = T->getCanonicalTypeInternal().getTypePtr();
Douglas Gregord9ea1802011-02-19 19:24:40 +000034 if (const RecordType *RecordTy = dyn_cast<RecordType>(Ty)) {
35 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordTy->getDecl());
36 if (!T->isDependentType())
37 return Record;
38
39 // This may be a member of a class template or class template partial
40 // specialization. If it's part of the current semantic context, then it's
41 // an injected-class-name;
42 for (; !CurContext->isFileContext(); CurContext = CurContext->getParent())
43 if (CurContext->Equals(Record))
44 return Record;
45
46 return 0;
47 } else if (isa<InjectedClassNameType>(Ty))
John McCall31f17ec2010-04-27 00:57:59 +000048 return cast<InjectedClassNameType>(Ty)->getDecl();
49 else
50 return 0;
Douglas Gregor43d88632009-11-04 22:49:18 +000051}
52
Douglas Gregor2dd078a2009-09-02 22:59:36 +000053/// \brief Compute the DeclContext that is associated with the given type.
54///
55/// \param T the type for which we are attempting to find a DeclContext.
56///
Mike Stump1eb44332009-09-09 15:08:12 +000057/// \returns the declaration context represented by the type T,
Douglas Gregor2dd078a2009-09-02 22:59:36 +000058/// or NULL if the declaration context cannot be computed (e.g., because it is
59/// dependent and not the current instantiation).
60DeclContext *Sema::computeDeclContext(QualType T) {
Douglas Gregord9ea1802011-02-19 19:24:40 +000061 if (!T->isDependentType())
62 if (const TagType *Tag = T->getAs<TagType>())
63 return Tag->getDecl();
Mike Stump1eb44332009-09-09 15:08:12 +000064
Douglas Gregord9ea1802011-02-19 19:24:40 +000065 return ::getCurrentInstantiationOf(T, CurContext);
Douglas Gregor2dd078a2009-09-02 22:59:36 +000066}
67
Douglas Gregore4e5b052009-03-19 00:18:19 +000068/// \brief Compute the DeclContext that is associated with the given
69/// scope specifier.
Douglas Gregorf59a56e2009-07-21 23:53:31 +000070///
71/// \param SS the C++ scope specifier as it appears in the source
72///
73/// \param EnteringContext when true, we will be entering the context of
74/// this scope specifier, so we can retrieve the declaration context of a
75/// class template or class template partial specialization even if it is
76/// not the current instantiation.
77///
78/// \returns the declaration context represented by the scope specifier @p SS,
79/// or NULL if the declaration context cannot be computed (e.g., because it is
80/// dependent and not the current instantiation).
81DeclContext *Sema::computeDeclContext(const CXXScopeSpec &SS,
82 bool EnteringContext) {
Douglas Gregore4e5b052009-03-19 00:18:19 +000083 if (!SS.isSet() || SS.isInvalid())
Douglas Gregorca5e77f2009-03-18 00:36:05 +000084 return 0;
Douglas Gregorca5e77f2009-03-18 00:36:05 +000085
Mike Stump1eb44332009-09-09 15:08:12 +000086 NestedNameSpecifier *NNS
Douglas Gregor35073692009-03-26 23:56:24 +000087 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Douglas Gregor42af25f2009-05-11 19:58:34 +000088 if (NNS->isDependent()) {
89 // If this nested-name-specifier refers to the current
90 // instantiation, return its DeclContext.
91 if (CXXRecordDecl *Record = getCurrentInstantiationOf(NNS))
92 return Record;
Mike Stump1eb44332009-09-09 15:08:12 +000093
Douglas Gregorf59a56e2009-07-21 23:53:31 +000094 if (EnteringContext) {
John McCall3cb0ebd2010-03-10 03:28:59 +000095 const Type *NNSType = NNS->getAsType();
96 if (!NNSType) {
97 // do nothing, fall out
98 } else if (const TemplateSpecializationType *SpecType
99 = NNSType->getAs<TemplateSpecializationType>()) {
Douglas Gregor495c35d2009-08-25 22:51:20 +0000100 // We are entering the context of the nested name specifier, so try to
101 // match the nested name specifier to either a primary class template
102 // or a class template partial specialization.
Mike Stump1eb44332009-09-09 15:08:12 +0000103 if (ClassTemplateDecl *ClassTemplate
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000104 = dyn_cast_or_null<ClassTemplateDecl>(
105 SpecType->getTemplateName().getAsTemplateDecl())) {
Douglas Gregorb88e8882009-07-30 17:40:51 +0000106 QualType ContextType
107 = Context.getCanonicalType(QualType(SpecType, 0));
108
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000109 // If the type of the nested name specifier is the same as the
110 // injected class name of the named class template, we're entering
111 // into that class template definition.
John McCall3cb0ebd2010-03-10 03:28:59 +0000112 QualType Injected
Douglas Gregor24bae922010-07-08 18:37:38 +0000113 = ClassTemplate->getInjectedClassNameSpecialization();
Douglas Gregorb88e8882009-07-30 17:40:51 +0000114 if (Context.hasSameType(Injected, ContextType))
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000115 return ClassTemplate->getTemplatedDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000116
Douglas Gregorb88e8882009-07-30 17:40:51 +0000117 // If the type of the nested name specifier is the same as the
118 // type of one of the class template's class template partial
119 // specializations, we're entering into the definition of that
120 // class template partial specialization.
121 if (ClassTemplatePartialSpecializationDecl *PartialSpec
122 = ClassTemplate->findPartialSpecialization(ContextType))
123 return PartialSpec;
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000124 }
John McCall3cb0ebd2010-03-10 03:28:59 +0000125 } else if (const RecordType *RecordT = NNSType->getAs<RecordType>()) {
Douglas Gregor495c35d2009-08-25 22:51:20 +0000126 // The nested name specifier refers to a member of a class template.
127 return RecordT->getDecl();
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000128 }
129 }
Mike Stump1eb44332009-09-09 15:08:12 +0000130
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000131 return 0;
Douglas Gregor42af25f2009-05-11 19:58:34 +0000132 }
Douglas Gregorab452ba2009-03-26 23:50:42 +0000133
134 switch (NNS->getKind()) {
135 case NestedNameSpecifier::Identifier:
136 assert(false && "Dependent nested-name-specifier has no DeclContext");
137 break;
138
139 case NestedNameSpecifier::Namespace:
140 return NNS->getAsNamespace();
141
Douglas Gregor14aba762011-02-24 02:36:08 +0000142 case NestedNameSpecifier::NamespaceAlias:
143 return NNS->getAsNamespaceAlias()->getNamespace();
144
Douglas Gregorab452ba2009-03-26 23:50:42 +0000145 case NestedNameSpecifier::TypeSpec:
146 case NestedNameSpecifier::TypeSpecWithTemplate: {
Douglas Gregoredc90502010-02-25 04:46:04 +0000147 const TagType *Tag = NNS->getAsType()->getAs<TagType>();
148 assert(Tag && "Non-tag type in nested-name-specifier");
149 return Tag->getDecl();
150 } break;
Douglas Gregorab452ba2009-03-26 23:50:42 +0000151
152 case NestedNameSpecifier::Global:
153 return Context.getTranslationUnitDecl();
154 }
155
Douglas Gregoredc90502010-02-25 04:46:04 +0000156 // Required to silence a GCC warning.
Douglas Gregorab452ba2009-03-26 23:50:42 +0000157 return 0;
Douglas Gregorca5e77f2009-03-18 00:36:05 +0000158}
159
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000160bool Sema::isDependentScopeSpecifier(const CXXScopeSpec &SS) {
161 if (!SS.isSet() || SS.isInvalid())
162 return false;
163
Mike Stump1eb44332009-09-09 15:08:12 +0000164 NestedNameSpecifier *NNS
Douglas Gregor35073692009-03-26 23:56:24 +0000165 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Douglas Gregorab452ba2009-03-26 23:50:42 +0000166 return NNS->isDependent();
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000167}
168
Douglas Gregor42af25f2009-05-11 19:58:34 +0000169// \brief Determine whether this C++ scope specifier refers to an
170// unknown specialization, i.e., a dependent type that is not the
171// current instantiation.
172bool Sema::isUnknownSpecialization(const CXXScopeSpec &SS) {
173 if (!isDependentScopeSpecifier(SS))
174 return false;
175
Mike Stump1eb44332009-09-09 15:08:12 +0000176 NestedNameSpecifier *NNS
Douglas Gregor42af25f2009-05-11 19:58:34 +0000177 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
178 return getCurrentInstantiationOf(NNS) == 0;
179}
180
181/// \brief If the given nested name specifier refers to the current
182/// instantiation, return the declaration that corresponds to that
183/// current instantiation (C++0x [temp.dep.type]p1).
184///
185/// \param NNS a dependent nested name specifier.
186CXXRecordDecl *Sema::getCurrentInstantiationOf(NestedNameSpecifier *NNS) {
187 assert(getLangOptions().CPlusPlus && "Only callable in C++");
188 assert(NNS->isDependent() && "Only dependent nested-name-specifier allowed");
189
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000190 if (!NNS->getAsType())
191 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000192
Douglas Gregor1560def2009-07-31 18:32:42 +0000193 QualType T = QualType(NNS->getAsType(), 0);
Douglas Gregord9ea1802011-02-19 19:24:40 +0000194 return ::getCurrentInstantiationOf(T, CurContext);
Douglas Gregor42af25f2009-05-11 19:58:34 +0000195}
196
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000197/// \brief Require that the context specified by SS be complete.
198///
199/// If SS refers to a type, this routine checks whether the type is
200/// complete enough (or can be made complete enough) for name lookup
201/// into the DeclContext. A type that is not yet completed can be
202/// considered "complete enough" if it is a class/struct/union/enum
203/// that is currently being defined. Or, if we have a type that names
204/// a class template specialization that is not a complete type, we
205/// will attempt to instantiate that class template.
John McCall77bb1aa2010-05-01 00:40:08 +0000206bool Sema::RequireCompleteDeclContext(CXXScopeSpec &SS,
207 DeclContext *DC) {
208 assert(DC != 0 && "given null context");
Mike Stump1eb44332009-09-09 15:08:12 +0000209
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000210 if (TagDecl *Tag = dyn_cast<TagDecl>(DC)) {
Douglas Gregora4e8c2a2010-02-05 04:39:02 +0000211 // If this is a dependent type, then we consider it complete.
212 if (Tag->isDependentContext())
213 return false;
214
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000215 // If we're currently defining this type, then lookup into the
216 // type is okay: don't complain that it isn't complete yet.
Ted Kremenek6217b802009-07-29 21:53:49 +0000217 const TagType *TagT = Context.getTypeDeclType(Tag)->getAs<TagType>();
John McCall3cb0ebd2010-03-10 03:28:59 +0000218 if (TagT && TagT->isBeingDefined())
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000219 return false;
220
221 // The type must be complete.
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000222 if (RequireCompleteType(SS.getRange().getBegin(),
223 Context.getTypeDeclType(Tag),
224 PDiag(diag::err_incomplete_nested_name_spec)
John McCall77bb1aa2010-05-01 00:40:08 +0000225 << SS.getRange())) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000226 SS.SetInvalid(SS.getRange());
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000227 return true;
228 }
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000229 }
230
231 return false;
232}
Cedric Venet3d658642009-02-14 20:20:19 +0000233
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000234bool Sema::ActOnCXXGlobalScopeSpecifier(Scope *S, SourceLocation CCLoc,
235 CXXScopeSpec &SS) {
236 SS.MakeGlobal(Context, CCLoc);
237 return false;
Cedric Venet3d658642009-02-14 20:20:19 +0000238}
239
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000240/// \brief Determines whether the given declaration is an valid acceptable
241/// result for name lookup of a nested-name-specifier.
Douglas Gregoredc90502010-02-25 04:46:04 +0000242bool Sema::isAcceptableNestedNameSpecifier(NamedDecl *SD) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000243 if (!SD)
244 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000245
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000246 // Namespace and namespace aliases are fine.
247 if (isa<NamespaceDecl>(SD) || isa<NamespaceAliasDecl>(SD))
248 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000249
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000250 if (!isa<TypeDecl>(SD))
251 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000252
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000253 // Determine whether we have a class (or, in C++0x, an enum) or
254 // a typedef thereof. If so, build the nested-name-specifier.
255 QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD));
256 if (T->isDependentType())
257 return true;
Richard Smith162e1c12011-04-15 14:24:37 +0000258 else if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(SD)) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000259 if (TD->getUnderlyingType()->isRecordType() ||
Mike Stump1eb44332009-09-09 15:08:12 +0000260 (Context.getLangOptions().CPlusPlus0x &&
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000261 TD->getUnderlyingType()->isEnumeralType()))
262 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000263 } else if (isa<RecordDecl>(SD) ||
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000264 (Context.getLangOptions().CPlusPlus0x && isa<EnumDecl>(SD)))
265 return true;
266
267 return false;
268}
269
Douglas Gregorc68afe22009-09-03 21:38:09 +0000270/// \brief If the given nested-name-specifier begins with a bare identifier
Mike Stump1eb44332009-09-09 15:08:12 +0000271/// (e.g., Base::), perform name lookup for that identifier as a
Douglas Gregorc68afe22009-09-03 21:38:09 +0000272/// nested-name-specifier within the given scope, and return the result of that
273/// name lookup.
274NamedDecl *Sema::FindFirstQualifierInScope(Scope *S, NestedNameSpecifier *NNS) {
275 if (!S || !NNS)
276 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000277
Douglas Gregorc68afe22009-09-03 21:38:09 +0000278 while (NNS->getPrefix())
279 NNS = NNS->getPrefix();
Mike Stump1eb44332009-09-09 15:08:12 +0000280
Douglas Gregorc68afe22009-09-03 21:38:09 +0000281 if (NNS->getKind() != NestedNameSpecifier::Identifier)
282 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000283
John McCalla24dc2e2009-11-17 02:14:36 +0000284 LookupResult Found(*this, NNS->getAsIdentifier(), SourceLocation(),
285 LookupNestedNameSpecifierName);
286 LookupName(Found, S);
Douglas Gregorc68afe22009-09-03 21:38:09 +0000287 assert(!Found.isAmbiguous() && "Cannot handle ambiguities here yet");
288
John McCall1bcee0a2009-12-02 08:25:40 +0000289 if (!Found.isSingleResult())
290 return 0;
291
292 NamedDecl *Result = Found.getFoundDecl();
Douglas Gregoredc90502010-02-25 04:46:04 +0000293 if (isAcceptableNestedNameSpecifier(Result))
Douglas Gregorc68afe22009-09-03 21:38:09 +0000294 return Result;
Mike Stump1eb44332009-09-09 15:08:12 +0000295
Douglas Gregorc68afe22009-09-03 21:38:09 +0000296 return 0;
297}
298
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000299bool Sema::isNonTypeNestedNameSpecifier(Scope *S, CXXScopeSpec &SS,
Douglas Gregor77549082010-02-24 21:29:12 +0000300 SourceLocation IdLoc,
301 IdentifierInfo &II,
John McCallb3d87482010-08-24 05:47:05 +0000302 ParsedType ObjectTypePtr) {
Douglas Gregor77549082010-02-24 21:29:12 +0000303 QualType ObjectType = GetTypeFromParser(ObjectTypePtr);
304 LookupResult Found(*this, &II, IdLoc, LookupNestedNameSpecifierName);
305
306 // Determine where to perform name lookup
307 DeclContext *LookupCtx = 0;
308 bool isDependent = false;
309 if (!ObjectType.isNull()) {
310 // This nested-name-specifier occurs in a member access expression, e.g.,
311 // x->B::f, and we are looking into the type of the object.
312 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
313 LookupCtx = computeDeclContext(ObjectType);
314 isDependent = ObjectType->isDependentType();
315 } else if (SS.isSet()) {
316 // This nested-name-specifier occurs after another nested-name-specifier,
317 // so long into the context associated with the prior nested-name-specifier.
318 LookupCtx = computeDeclContext(SS, false);
319 isDependent = isDependentScopeSpecifier(SS);
320 Found.setContextRange(SS.getRange());
321 }
322
323 if (LookupCtx) {
324 // Perform "qualified" name lookup into the declaration context we
325 // computed, which is either the type of the base of a member access
326 // expression or the declaration context associated with a prior
327 // nested-name-specifier.
328
329 // The declaration context must be complete.
John McCall77bb1aa2010-05-01 00:40:08 +0000330 if (!LookupCtx->isDependentContext() &&
331 RequireCompleteDeclContext(SS, LookupCtx))
Douglas Gregor77549082010-02-24 21:29:12 +0000332 return false;
333
334 LookupQualifiedName(Found, LookupCtx);
335 } else if (isDependent) {
336 return false;
337 } else {
338 LookupName(Found, S);
339 }
340 Found.suppressDiagnostics();
341
342 if (NamedDecl *ND = Found.getAsSingle<NamedDecl>())
343 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
344
345 return false;
346}
347
Douglas Gregorc68afe22009-09-03 21:38:09 +0000348/// \brief Build a new nested-name-specifier for "identifier::", as described
349/// by ActOnCXXNestedNameSpecifier.
350///
351/// This routine differs only slightly from ActOnCXXNestedNameSpecifier, in
352/// that it contains an extra parameter \p ScopeLookupResult, which provides
353/// the result of name lookup within the scope of the nested-name-specifier
Douglas Gregora6e51992009-12-30 16:01:52 +0000354/// that was computed at template definition time.
Chris Lattner46646492009-12-07 01:36:53 +0000355///
356/// If ErrorRecoveryLookup is true, then this call is used to improve error
357/// recovery. This means that it should not emit diagnostics, it should
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000358/// just return true on failure. It also means it should only return a valid
Chris Lattner46646492009-12-07 01:36:53 +0000359/// scope if it *knows* that the result is correct. It should not return in a
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000360/// dependent context, for example. Nor will it extend \p SS with the scope
361/// specifier.
362bool Sema::BuildCXXNestedNameSpecifier(Scope *S,
363 IdentifierInfo &Identifier,
364 SourceLocation IdentifierLoc,
365 SourceLocation CCLoc,
366 QualType ObjectType,
367 bool EnteringContext,
368 CXXScopeSpec &SS,
369 NamedDecl *ScopeLookupResult,
370 bool ErrorRecoveryLookup) {
371 LookupResult Found(*this, &Identifier, IdentifierLoc,
372 LookupNestedNameSpecifierName);
John McCalla24dc2e2009-11-17 02:14:36 +0000373
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000374 // Determine where to perform name lookup
375 DeclContext *LookupCtx = 0;
376 bool isDependent = false;
Douglas Gregorc68afe22009-09-03 21:38:09 +0000377 if (!ObjectType.isNull()) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000378 // This nested-name-specifier occurs in a member access expression, e.g.,
379 // x->B::f, and we are looking into the type of the object.
380 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000381 LookupCtx = computeDeclContext(ObjectType);
382 isDependent = ObjectType->isDependentType();
383 } else if (SS.isSet()) {
384 // This nested-name-specifier occurs after another nested-name-specifier,
385 // so long into the context associated with the prior nested-name-specifier.
386 LookupCtx = computeDeclContext(SS, EnteringContext);
387 isDependent = isDependentScopeSpecifier(SS);
John McCalla24dc2e2009-11-17 02:14:36 +0000388 Found.setContextRange(SS.getRange());
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000389 }
Mike Stump1eb44332009-09-09 15:08:12 +0000390
John McCalla24dc2e2009-11-17 02:14:36 +0000391
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000392 bool ObjectTypeSearchedInScope = false;
393 if (LookupCtx) {
Mike Stump1eb44332009-09-09 15:08:12 +0000394 // Perform "qualified" name lookup into the declaration context we
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000395 // computed, which is either the type of the base of a member access
Mike Stump1eb44332009-09-09 15:08:12 +0000396 // expression or the declaration context associated with a prior
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000397 // nested-name-specifier.
Mike Stump1eb44332009-09-09 15:08:12 +0000398
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000399 // The declaration context must be complete.
John McCall77bb1aa2010-05-01 00:40:08 +0000400 if (!LookupCtx->isDependentContext() &&
401 RequireCompleteDeclContext(SS, LookupCtx))
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000402 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000403
John McCalla24dc2e2009-11-17 02:14:36 +0000404 LookupQualifiedName(Found, LookupCtx);
Mike Stump1eb44332009-09-09 15:08:12 +0000405
John McCalla24dc2e2009-11-17 02:14:36 +0000406 if (!ObjectType.isNull() && Found.empty()) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000407 // C++ [basic.lookup.classref]p4:
408 // If the id-expression in a class member access is a qualified-id of
Mike Stump1eb44332009-09-09 15:08:12 +0000409 // the form
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000410 //
411 // class-name-or-namespace-name::...
412 //
Mike Stump1eb44332009-09-09 15:08:12 +0000413 // the class-name-or-namespace-name following the . or -> operator is
414 // looked up both in the context of the entire postfix-expression and in
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000415 // the scope of the class of the object expression. If the name is found
Mike Stump1eb44332009-09-09 15:08:12 +0000416 // only in the scope of the class of the object expression, the name
417 // shall refer to a class-name. If the name is found only in the
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000418 // context of the entire postfix-expression, the name shall refer to a
419 // class-name or namespace-name. [...]
420 //
421 // Qualified name lookup into a class will not find a namespace-name,
Mike Stump1eb44332009-09-09 15:08:12 +0000422 // so we do not need to diagnoste that case specifically. However,
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000423 // this qualified name lookup may find nothing. In that case, perform
Mike Stump1eb44332009-09-09 15:08:12 +0000424 // unqualified name lookup in the given scope (if available) or
Douglas Gregorc68afe22009-09-03 21:38:09 +0000425 // reconstruct the result from when name lookup was performed at template
426 // definition time.
427 if (S)
John McCalla24dc2e2009-11-17 02:14:36 +0000428 LookupName(Found, S);
John McCallf36e02d2009-10-09 21:13:30 +0000429 else if (ScopeLookupResult)
430 Found.addDecl(ScopeLookupResult);
Mike Stump1eb44332009-09-09 15:08:12 +0000431
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000432 ObjectTypeSearchedInScope = true;
433 }
Douglas Gregorac7cbd82010-07-28 14:49:07 +0000434 } else if (!isDependent) {
435 // Perform unqualified name lookup in the current scope.
436 LookupName(Found, S);
437 }
438
439 // If we performed lookup into a dependent context and did not find anything,
440 // that's fine: just build a dependent nested-name-specifier.
441 if (Found.empty() && isDependent &&
442 !(LookupCtx && LookupCtx->isRecord() &&
443 (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() ||
444 !cast<CXXRecordDecl>(LookupCtx)->hasAnyDependentBases()))) {
Chris Lattner46646492009-12-07 01:36:53 +0000445 // Don't speculate if we're just trying to improve error recovery.
446 if (ErrorRecoveryLookup)
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000447 return true;
Chris Lattner46646492009-12-07 01:36:53 +0000448
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000449 // We were not able to compute the declaration context for a dependent
Mike Stump1eb44332009-09-09 15:08:12 +0000450 // base object type or prior nested-name-specifier, so this
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000451 // nested-name-specifier refers to an unknown specialization. Just build
452 // a dependent nested-name-specifier.
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000453 SS.Extend(Context, &Identifier, IdentifierLoc, CCLoc);
454 return false;
Douglas Gregorac7cbd82010-07-28 14:49:07 +0000455 }
456
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000457 // FIXME: Deal with ambiguities cleanly.
Douglas Gregor175a6562009-12-31 08:26:35 +0000458
459 if (Found.empty() && !ErrorRecoveryLookup) {
460 // We haven't found anything, and we're not recovering from a
461 // different kind of error, so look for typos.
462 DeclarationName Name = Found.getLookupName();
Douglas Gregoraaf87162010-04-14 20:04:41 +0000463 if (CorrectTypo(Found, S, &SS, LookupCtx, EnteringContext,
464 CTC_NoKeywords) &&
Douglas Gregor175a6562009-12-31 08:26:35 +0000465 Found.isSingleResult() &&
Douglas Gregoredc90502010-02-25 04:46:04 +0000466 isAcceptableNestedNameSpecifier(Found.getAsSingle<NamedDecl>())) {
Douglas Gregor175a6562009-12-31 08:26:35 +0000467 if (LookupCtx)
468 Diag(Found.getNameLoc(), diag::err_no_member_suggest)
469 << Name << LookupCtx << Found.getLookupName() << SS.getRange()
Douglas Gregor849b2432010-03-31 17:46:05 +0000470 << FixItHint::CreateReplacement(Found.getNameLoc(),
471 Found.getLookupName().getAsString());
Douglas Gregor175a6562009-12-31 08:26:35 +0000472 else
473 Diag(Found.getNameLoc(), diag::err_undeclared_var_use_suggest)
474 << Name << Found.getLookupName()
Douglas Gregor849b2432010-03-31 17:46:05 +0000475 << FixItHint::CreateReplacement(Found.getNameLoc(),
476 Found.getLookupName().getAsString());
Douglas Gregor67dd1d42010-01-07 00:17:44 +0000477
478 if (NamedDecl *ND = Found.getAsSingle<NamedDecl>())
479 Diag(ND->getLocation(), diag::note_previous_decl)
480 << ND->getDeclName();
Douglas Gregor12eb5d62010-06-29 19:27:42 +0000481 } else {
Douglas Gregor175a6562009-12-31 08:26:35 +0000482 Found.clear();
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000483 Found.setLookupName(&Identifier);
Douglas Gregor12eb5d62010-06-29 19:27:42 +0000484 }
Douglas Gregor175a6562009-12-31 08:26:35 +0000485 }
486
John McCall1bcee0a2009-12-02 08:25:40 +0000487 NamedDecl *SD = Found.getAsSingle<NamedDecl>();
Douglas Gregoredc90502010-02-25 04:46:04 +0000488 if (isAcceptableNestedNameSpecifier(SD)) {
Douglas Gregorc68afe22009-09-03 21:38:09 +0000489 if (!ObjectType.isNull() && !ObjectTypeSearchedInScope) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000490 // C++ [basic.lookup.classref]p4:
Mike Stump1eb44332009-09-09 15:08:12 +0000491 // [...] If the name is found in both contexts, the
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000492 // class-name-or-namespace-name shall refer to the same entity.
493 //
494 // We already found the name in the scope of the object. Now, look
495 // into the current scope (the scope of the postfix-expression) to
Douglas Gregorc68afe22009-09-03 21:38:09 +0000496 // see if we can find the same name there. As above, if there is no
497 // scope, reconstruct the result from the template instantiation itself.
John McCallf36e02d2009-10-09 21:13:30 +0000498 NamedDecl *OuterDecl;
499 if (S) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000500 LookupResult FoundOuter(*this, &Identifier, IdentifierLoc,
501 LookupNestedNameSpecifierName);
John McCalla24dc2e2009-11-17 02:14:36 +0000502 LookupName(FoundOuter, S);
John McCall1bcee0a2009-12-02 08:25:40 +0000503 OuterDecl = FoundOuter.getAsSingle<NamedDecl>();
John McCallf36e02d2009-10-09 21:13:30 +0000504 } else
505 OuterDecl = ScopeLookupResult;
Mike Stump1eb44332009-09-09 15:08:12 +0000506
Douglas Gregoredc90502010-02-25 04:46:04 +0000507 if (isAcceptableNestedNameSpecifier(OuterDecl) &&
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000508 OuterDecl->getCanonicalDecl() != SD->getCanonicalDecl() &&
509 (!isa<TypeDecl>(OuterDecl) || !isa<TypeDecl>(SD) ||
510 !Context.hasSameType(
Douglas Gregorc68afe22009-09-03 21:38:09 +0000511 Context.getTypeDeclType(cast<TypeDecl>(OuterDecl)),
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000512 Context.getTypeDeclType(cast<TypeDecl>(SD))))) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000513 if (ErrorRecoveryLookup)
514 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000515
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000516 Diag(IdentifierLoc,
517 diag::err_nested_name_member_ref_lookup_ambiguous)
518 << &Identifier;
519 Diag(SD->getLocation(), diag::note_ambig_member_ref_object_type)
520 << ObjectType;
521 Diag(OuterDecl->getLocation(), diag::note_ambig_member_ref_scope);
522
523 // Fall through so that we'll pick the name we found in the object
524 // type, since that's probably what the user wanted anyway.
525 }
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000526 }
Mike Stump1eb44332009-09-09 15:08:12 +0000527
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000528 // If we're just performing this lookup for error-recovery purposes,
529 // don't extend the nested-name-specifier. Just return now.
530 if (ErrorRecoveryLookup)
531 return false;
532
533 if (NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(SD)) {
534 SS.Extend(Context, Namespace, IdentifierLoc, CCLoc);
535 return false;
536 }
Mike Stump1eb44332009-09-09 15:08:12 +0000537
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000538 if (NamespaceAliasDecl *Alias = dyn_cast<NamespaceAliasDecl>(SD)) {
Douglas Gregor14aba762011-02-24 02:36:08 +0000539 SS.Extend(Context, Alias, IdentifierLoc, CCLoc);
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000540 return false;
541 }
Mike Stump1eb44332009-09-09 15:08:12 +0000542
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000543 QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD));
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000544 TypeLocBuilder TLB;
545 if (isa<InjectedClassNameType>(T)) {
546 InjectedClassNameTypeLoc InjectedTL
547 = TLB.push<InjectedClassNameTypeLoc>(T);
548 InjectedTL.setNameLoc(IdentifierLoc);
549 } else if (isa<RecordDecl>(SD)) {
550 RecordTypeLoc RecordTL = TLB.push<RecordTypeLoc>(T);
551 RecordTL.setNameLoc(IdentifierLoc);
Richard Smith162e1c12011-04-15 14:24:37 +0000552 } else if (isa<TypedefNameDecl>(SD)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000553 TypedefTypeLoc TypedefTL = TLB.push<TypedefTypeLoc>(T);
554 TypedefTL.setNameLoc(IdentifierLoc);
555 } else if (isa<EnumDecl>(SD)) {
556 EnumTypeLoc EnumTL = TLB.push<EnumTypeLoc>(T);
557 EnumTL.setNameLoc(IdentifierLoc);
558 } else if (isa<TemplateTypeParmDecl>(SD)) {
559 TemplateTypeParmTypeLoc TemplateTypeTL
560 = TLB.push<TemplateTypeParmTypeLoc>(T);
561 TemplateTypeTL.setNameLoc(IdentifierLoc);
562 } else {
563 assert(isa<UnresolvedUsingTypenameDecl>(SD) &&
564 "Unhandled TypeDecl node in nested-name-specifier");
565 UnresolvedUsingTypeLoc UnresolvedTL
566 = TLB.push<UnresolvedUsingTypeLoc>(T);
567 UnresolvedTL.setNameLoc(IdentifierLoc);
568 }
569
570 SS.Extend(Context, SourceLocation(), TLB.getTypeLocInContext(Context, T),
571 CCLoc);
572 return false;
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000573 }
Mike Stump1eb44332009-09-09 15:08:12 +0000574
Chris Lattner46646492009-12-07 01:36:53 +0000575 // Otherwise, we have an error case. If we don't want diagnostics, just
576 // return an error now.
577 if (ErrorRecoveryLookup)
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000578 return true;
Chris Lattner46646492009-12-07 01:36:53 +0000579
Cedric Venet3d658642009-02-14 20:20:19 +0000580 // If we didn't find anything during our lookup, try again with
581 // ordinary name lookup, which can help us produce better error
582 // messages.
John McCall1bcee0a2009-12-02 08:25:40 +0000583 if (Found.empty()) {
John McCalla24dc2e2009-11-17 02:14:36 +0000584 Found.clear(LookupOrdinaryName);
585 LookupName(Found, S);
John McCallf36e02d2009-10-09 21:13:30 +0000586 }
Mike Stump1eb44332009-09-09 15:08:12 +0000587
Cedric Venet3d658642009-02-14 20:20:19 +0000588 unsigned DiagID;
John McCall1bcee0a2009-12-02 08:25:40 +0000589 if (!Found.empty())
Cedric Venet3d658642009-02-14 20:20:19 +0000590 DiagID = diag::err_expected_class_or_namespace;
Anders Carlssona31d5f72009-08-30 07:09:50 +0000591 else if (SS.isSet()) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000592 Diag(IdentifierLoc, diag::err_no_member)
593 << &Identifier << LookupCtx << SS.getRange();
594 return true;
Anders Carlssona31d5f72009-08-30 07:09:50 +0000595 } else
Cedric Venet3d658642009-02-14 20:20:19 +0000596 DiagID = diag::err_undeclared_var_use;
Mike Stump1eb44332009-09-09 15:08:12 +0000597
Cedric Venet3d658642009-02-14 20:20:19 +0000598 if (SS.isSet())
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000599 Diag(IdentifierLoc, DiagID) << &Identifier << SS.getRange();
Cedric Venet3d658642009-02-14 20:20:19 +0000600 else
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000601 Diag(IdentifierLoc, DiagID) << &Identifier;
Mike Stump1eb44332009-09-09 15:08:12 +0000602
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000603 return true;
Cedric Venet3d658642009-02-14 20:20:19 +0000604}
605
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000606bool Sema::ActOnCXXNestedNameSpecifier(Scope *S,
607 IdentifierInfo &Identifier,
608 SourceLocation IdentifierLoc,
609 SourceLocation CCLoc,
610 ParsedType ObjectType,
611 bool EnteringContext,
612 CXXScopeSpec &SS) {
613 if (SS.isInvalid())
614 return true;
615
616 return BuildCXXNestedNameSpecifier(S, Identifier, IdentifierLoc, CCLoc,
617 GetTypeFromParser(ObjectType),
618 EnteringContext, SS,
619 /*ScopeLookupResult=*/0, false);
Chris Lattner46646492009-12-07 01:36:53 +0000620}
621
622/// IsInvalidUnlessNestedName - This method is used for error recovery
623/// purposes to determine whether the specified identifier is only valid as
624/// a nested name specifier, for example a namespace name. It is
625/// conservatively correct to always return false from this method.
626///
627/// The arguments are the same as those passed to ActOnCXXNestedNameSpecifier.
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000628bool Sema::IsInvalidUnlessNestedName(Scope *S, CXXScopeSpec &SS,
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000629 IdentifierInfo &Identifier,
630 SourceLocation IdentifierLoc,
631 SourceLocation ColonLoc,
632 ParsedType ObjectType,
Chris Lattner46646492009-12-07 01:36:53 +0000633 bool EnteringContext) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000634 if (SS.isInvalid())
635 return false;
636
637 return !BuildCXXNestedNameSpecifier(S, Identifier, IdentifierLoc, ColonLoc,
638 GetTypeFromParser(ObjectType),
639 EnteringContext, SS,
640 /*ScopeLookupResult=*/0, true);
Douglas Gregorc68afe22009-09-03 21:38:09 +0000641}
642
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000643bool Sema::ActOnCXXNestedNameSpecifier(Scope *S,
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000644 SourceLocation TemplateLoc,
645 CXXScopeSpec &SS,
646 TemplateTy Template,
647 SourceLocation TemplateNameLoc,
648 SourceLocation LAngleLoc,
649 ASTTemplateArgsPtr TemplateArgsIn,
650 SourceLocation RAngleLoc,
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000651 SourceLocation CCLoc,
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000652 bool EnteringContext) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000653 if (SS.isInvalid())
654 return true;
655
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000656 // Translate the parser's template argument list in our AST format.
657 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
658 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
659
660 if (DependentTemplateName *DTN = Template.get().getAsDependentTemplateName()){
661 // Handle a dependent template specialization for which we cannot resolve
662 // the template name.
663 assert(DTN->getQualifier()
664 == static_cast<NestedNameSpecifier*>(SS.getScopeRep()));
665 QualType T = Context.getDependentTemplateSpecializationType(ETK_None,
Douglas Gregor94fdffa2011-03-01 20:11:18 +0000666 DTN->getQualifier(),
667 DTN->getIdentifier(),
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000668 TemplateArgs);
669
670 // Create source-location information for this type.
671 TypeLocBuilder Builder;
672 DependentTemplateSpecializationTypeLoc SpecTL
673 = Builder.push<DependentTemplateSpecializationTypeLoc>(T);
674 SpecTL.setLAngleLoc(LAngleLoc);
675 SpecTL.setRAngleLoc(RAngleLoc);
676 SpecTL.setKeywordLoc(SourceLocation());
677 SpecTL.setNameLoc(TemplateNameLoc);
Douglas Gregor94fdffa2011-03-01 20:11:18 +0000678 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000679 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
680 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
681
682 SS.Extend(Context, TemplateLoc, Builder.getTypeLocInContext(Context, T),
683 CCLoc);
684 return false;
685 }
686
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +0000687
688 if (Template.get().getAsOverloadedTemplate() ||
689 isa<FunctionTemplateDecl>(Template.get().getAsTemplateDecl())) {
690 SourceRange R(TemplateNameLoc, RAngleLoc);
691 if (SS.getRange().isValid())
692 R.setBegin(SS.getRange().getBegin());
693
694 Diag(CCLoc, diag::err_non_type_template_in_nested_name_specifier)
695 << Template.get() << R;
696 NoteAllFoundTemplates(Template.get());
697 return true;
698 }
699
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000700 // We were able to resolve the template name to an actual template.
701 // Build an appropriate nested-name-specifier.
702 QualType T = CheckTemplateIdType(Template.get(), TemplateNameLoc,
703 TemplateArgs);
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000704 if (T.isNull())
705 return true;
706
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000707 // FIXME: Template aliases will need to check the resulting type to make
708 // sure that it's either dependent or a tag type.
709
710 // Provide source-location information for the template specialization
711 // type.
712 TypeLocBuilder Builder;
713 TemplateSpecializationTypeLoc SpecTL
714 = Builder.push<TemplateSpecializationTypeLoc>(T);
715
716 SpecTL.setLAngleLoc(LAngleLoc);
717 SpecTL.setRAngleLoc(RAngleLoc);
718 SpecTL.setTemplateNameLoc(TemplateNameLoc);
719 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
720 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
721
722
723 SS.Extend(Context, TemplateLoc, Builder.getTypeLocInContext(Context, T),
724 CCLoc);
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000725 return false;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000726}
727
Douglas Gregorc34348a2011-02-24 17:54:50 +0000728namespace {
729 /// \brief A structure that stores a nested-name-specifier annotation,
730 /// including both the nested-name-specifier
731 struct NestedNameSpecifierAnnotation {
732 NestedNameSpecifier *NNS;
733 };
734}
735
736void *Sema::SaveNestedNameSpecifierAnnotation(CXXScopeSpec &SS) {
737 if (SS.isEmpty() || SS.isInvalid())
738 return 0;
739
740 void *Mem = Context.Allocate((sizeof(NestedNameSpecifierAnnotation) +
741 SS.location_size()),
742 llvm::alignOf<NestedNameSpecifierAnnotation>());
743 NestedNameSpecifierAnnotation *Annotation
744 = new (Mem) NestedNameSpecifierAnnotation;
745 Annotation->NNS = SS.getScopeRep();
746 memcpy(Annotation + 1, SS.location_data(), SS.location_size());
747 return Annotation;
748}
749
750void Sema::RestoreNestedNameSpecifierAnnotation(void *AnnotationPtr,
751 SourceRange AnnotationRange,
752 CXXScopeSpec &SS) {
753 if (!AnnotationPtr) {
754 SS.SetInvalid(AnnotationRange);
755 return;
756 }
757
758 NestedNameSpecifierAnnotation *Annotation
759 = static_cast<NestedNameSpecifierAnnotation *>(AnnotationPtr);
760 SS.Adopt(NestedNameSpecifierLoc(Annotation->NNS, Annotation + 1));
761}
762
John McCalle7e278b2009-12-11 20:04:54 +0000763bool Sema::ShouldEnterDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
764 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
765
766 NestedNameSpecifier *Qualifier =
767 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
768
769 // There are only two places a well-formed program may qualify a
770 // declarator: first, when defining a namespace or class member
771 // out-of-line, and second, when naming an explicitly-qualified
772 // friend function. The latter case is governed by
773 // C++03 [basic.lookup.unqual]p10:
774 // In a friend declaration naming a member function, a name used
775 // in the function declarator and not part of a template-argument
776 // in a template-id is first looked up in the scope of the member
777 // function's class. If it is not found, or if the name is part of
778 // a template-argument in a template-id, the look up is as
779 // described for unqualified names in the definition of the class
780 // granting friendship.
781 // i.e. we don't push a scope unless it's a class member.
782
783 switch (Qualifier->getKind()) {
784 case NestedNameSpecifier::Global:
785 case NestedNameSpecifier::Namespace:
Douglas Gregor14aba762011-02-24 02:36:08 +0000786 case NestedNameSpecifier::NamespaceAlias:
John McCalle7e278b2009-12-11 20:04:54 +0000787 // These are always namespace scopes. We never want to enter a
788 // namespace scope from anything but a file context.
Sebastian Redl7a126a42010-08-31 00:36:30 +0000789 return CurContext->getRedeclContext()->isFileContext();
John McCalle7e278b2009-12-11 20:04:54 +0000790
791 case NestedNameSpecifier::Identifier:
792 case NestedNameSpecifier::TypeSpec:
793 case NestedNameSpecifier::TypeSpecWithTemplate:
794 // These are never namespace scopes.
795 return true;
796 }
797
798 // Silence bogus warning.
799 return false;
800}
801
Cedric Venet3d658642009-02-14 20:20:19 +0000802/// ActOnCXXEnterDeclaratorScope - Called when a C++ scope specifier (global
803/// scope or nested-name-specifier) is parsed, part of a declarator-id.
804/// After this method is called, according to [C++ 3.4.3p3], names should be
805/// looked up in the declarator-id's scope, until the declarator is parsed and
806/// ActOnCXXExitDeclaratorScope is called.
807/// The 'SS' should be a non-empty valid CXXScopeSpec.
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000808bool Sema::ActOnCXXEnterDeclaratorScope(Scope *S, CXXScopeSpec &SS) {
Cedric Venet3d658642009-02-14 20:20:19 +0000809 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
John McCall7a1dc562009-12-19 10:49:29 +0000810
811 if (SS.isInvalid()) return true;
812
813 DeclContext *DC = computeDeclContext(SS, true);
814 if (!DC) return true;
815
816 // Before we enter a declarator's context, we need to make sure that
817 // it is a complete declaration context.
John McCall77bb1aa2010-05-01 00:40:08 +0000818 if (!DC->isDependentContext() && RequireCompleteDeclContext(SS, DC))
John McCall7a1dc562009-12-19 10:49:29 +0000819 return true;
820
821 EnterDeclaratorContext(S, DC);
John McCall31f17ec2010-04-27 00:57:59 +0000822
823 // Rebuild the nested name specifier for the new scope.
824 if (DC->isDependentContext())
825 RebuildNestedNameSpecifierInCurrentInstantiation(SS);
826
Douglas Gregor7dfd0fb2009-09-24 23:39:01 +0000827 return false;
Cedric Venet3d658642009-02-14 20:20:19 +0000828}
829
830/// ActOnCXXExitDeclaratorScope - Called when a declarator that previously
831/// invoked ActOnCXXEnterDeclaratorScope(), is finished. 'SS' is the same
832/// CXXScopeSpec that was passed to ActOnCXXEnterDeclaratorScope as well.
833/// Used to indicate that names should revert to being looked up in the
834/// defining scope.
835void Sema::ActOnCXXExitDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
836 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
Douglas Gregordacd4342009-08-26 00:04:55 +0000837 if (SS.isInvalid())
838 return;
John McCall7a1dc562009-12-19 10:49:29 +0000839 assert(!SS.isInvalid() && computeDeclContext(SS, true) &&
840 "exiting declarator scope we never really entered");
841 ExitDeclaratorContext(S);
Cedric Venet3d658642009-02-14 20:20:19 +0000842}