blob: 5ee256ab216ebb9ce71f46bef6c2d72bce833d0d [file] [log] [blame]
Cedric Venet084381332009-02-14 20:20:19 +00001//===--- SemaCXXScopeSpec.cpp - Semantic Analysis for C++ scope specifiers-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements C++ semantic analysis for scope specifiers.
11//
12//===----------------------------------------------------------------------===//
13
John McCall83024632010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
Douglas Gregorc3a6ade2010-08-12 20:07:10 +000015#include "clang/Sema/Lookup.h"
Cedric Venet084381332009-02-14 20:20:19 +000016#include "clang/AST/ASTContext.h"
Douglas Gregorc9f9b862009-05-11 19:58:34 +000017#include "clang/AST/DeclTemplate.h"
Douglas Gregord8061562009-08-06 03:17:00 +000018#include "clang/AST/ExprCXX.h"
Douglas Gregor52537682009-03-19 00:18:19 +000019#include "clang/AST/NestedNameSpecifier.h"
Anders Carlssond624e162009-08-26 23:45:07 +000020#include "clang/Basic/PartialDiagnostic.h"
John McCall8b0666c2010-08-20 18:27:03 +000021#include "clang/Sema/DeclSpec.h"
Douglas Gregor90c99722011-02-24 00:17:56 +000022#include "TypeLocBuilder.h"
Cedric Venet084381332009-02-14 20:20:19 +000023#include "llvm/ADT/STLExtras.h"
Douglas Gregor168190d2009-07-22 00:28:09 +000024#include "llvm/Support/raw_ostream.h"
Cedric Venet084381332009-02-14 20:20:19 +000025using namespace clang;
26
Douglas Gregor41127182009-11-04 22:49:18 +000027/// \brief Find the current instantiation that associated with the given type.
Douglas Gregorbf2b26d2011-02-19 19:24:40 +000028static CXXRecordDecl *getCurrentInstantiationOf(QualType T,
29 DeclContext *CurContext) {
Douglas Gregor41127182009-11-04 22:49:18 +000030 if (T.isNull())
31 return 0;
John McCall2408e322010-04-27 00:57:59 +000032
33 const Type *Ty = T->getCanonicalTypeInternal().getTypePtr();
Douglas Gregorbf2b26d2011-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 McCall2408e322010-04-27 00:57:59 +000048 return cast<InjectedClassNameType>(Ty)->getDecl();
49 else
50 return 0;
Douglas Gregor41127182009-11-04 22:49:18 +000051}
52
Douglas Gregorb7bfe792009-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 Stump11289f42009-09-09 15:08:12 +000057/// \returns the declaration context represented by the type T,
Douglas Gregorb7bfe792009-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 Gregorbf2b26d2011-02-19 19:24:40 +000061 if (!T->isDependentType())
62 if (const TagType *Tag = T->getAs<TagType>())
63 return Tag->getDecl();
Mike Stump11289f42009-09-09 15:08:12 +000064
Douglas Gregorbf2b26d2011-02-19 19:24:40 +000065 return ::getCurrentInstantiationOf(T, CurContext);
Douglas Gregorb7bfe792009-09-02 22:59:36 +000066}
67
Douglas Gregor52537682009-03-19 00:18:19 +000068/// \brief Compute the DeclContext that is associated with the given
69/// scope specifier.
Douglas Gregord8d297c2009-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 Gregor52537682009-03-19 00:18:19 +000083 if (!SS.isSet() || SS.isInvalid())
Douglas Gregor6bfde492009-03-18 00:36:05 +000084 return 0;
Douglas Gregor6bfde492009-03-18 00:36:05 +000085
Mike Stump11289f42009-09-09 15:08:12 +000086 NestedNameSpecifier *NNS
Douglas Gregorc23500e2009-03-26 23:56:24 +000087 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Douglas Gregorc9f9b862009-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 Stump11289f42009-09-09 15:08:12 +000093
Douglas Gregord8d297c2009-07-21 23:53:31 +000094 if (EnteringContext) {
John McCalle78aac42010-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 Gregore861bac2009-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 Stump11289f42009-09-09 15:08:12 +0000103 if (ClassTemplateDecl *ClassTemplate
Douglas Gregord8d297c2009-07-21 23:53:31 +0000104 = dyn_cast_or_null<ClassTemplateDecl>(
105 SpecType->getTemplateName().getAsTemplateDecl())) {
Douglas Gregor15301382009-07-30 17:40:51 +0000106 QualType ContextType
107 = Context.getCanonicalType(QualType(SpecType, 0));
108
Douglas Gregord8d297c2009-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 McCalle78aac42010-03-10 03:28:59 +0000112 QualType Injected
Douglas Gregor9961ce92010-07-08 18:37:38 +0000113 = ClassTemplate->getInjectedClassNameSpecialization();
Douglas Gregor15301382009-07-30 17:40:51 +0000114 if (Context.hasSameType(Injected, ContextType))
Douglas Gregord8d297c2009-07-21 23:53:31 +0000115 return ClassTemplate->getTemplatedDecl();
Mike Stump11289f42009-09-09 15:08:12 +0000116
Douglas Gregor15301382009-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 Gregord8d297c2009-07-21 23:53:31 +0000124 }
John McCalle78aac42010-03-10 03:28:59 +0000125 } else if (const RecordType *RecordT = NNSType->getAs<RecordType>()) {
Douglas Gregore861bac2009-08-25 22:51:20 +0000126 // The nested name specifier refers to a member of a class template.
127 return RecordT->getDecl();
Douglas Gregord8d297c2009-07-21 23:53:31 +0000128 }
129 }
Mike Stump11289f42009-09-09 15:08:12 +0000130
Douglas Gregord8d297c2009-07-21 23:53:31 +0000131 return 0;
Douglas Gregorc9f9b862009-05-11 19:58:34 +0000132 }
Douglas Gregorf21eb492009-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 Gregor7b26ff92011-02-24 02:36:08 +0000142 case NestedNameSpecifier::NamespaceAlias:
143 return NNS->getAsNamespaceAlias()->getNamespace();
144
Douglas Gregorf21eb492009-03-26 23:50:42 +0000145 case NestedNameSpecifier::TypeSpec:
146 case NestedNameSpecifier::TypeSpecWithTemplate: {
Douglas Gregorcd3f49f2010-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 Gregorf21eb492009-03-26 23:50:42 +0000151
152 case NestedNameSpecifier::Global:
153 return Context.getTranslationUnitDecl();
154 }
155
Douglas Gregorcd3f49f2010-02-25 04:46:04 +0000156 // Required to silence a GCC warning.
Douglas Gregorf21eb492009-03-26 23:50:42 +0000157 return 0;
Douglas Gregor6bfde492009-03-18 00:36:05 +0000158}
159
Douglas Gregor90a1a652009-03-19 17:26:29 +0000160bool Sema::isDependentScopeSpecifier(const CXXScopeSpec &SS) {
161 if (!SS.isSet() || SS.isInvalid())
162 return false;
163
Mike Stump11289f42009-09-09 15:08:12 +0000164 NestedNameSpecifier *NNS
Douglas Gregorc23500e2009-03-26 23:56:24 +0000165 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Douglas Gregorf21eb492009-03-26 23:50:42 +0000166 return NNS->isDependent();
Douglas Gregor90a1a652009-03-19 17:26:29 +0000167}
168
Douglas Gregorc9f9b862009-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 Stump11289f42009-09-09 15:08:12 +0000176 NestedNameSpecifier *NNS
Douglas Gregorc9f9b862009-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 Gregord8d297c2009-07-21 23:53:31 +0000190 if (!NNS->getAsType())
191 return 0;
Mike Stump11289f42009-09-09 15:08:12 +0000192
Douglas Gregorb9a955d2009-07-31 18:32:42 +0000193 QualType T = QualType(NNS->getAsType(), 0);
Douglas Gregorbf2b26d2011-02-19 19:24:40 +0000194 return ::getCurrentInstantiationOf(T, CurContext);
Douglas Gregorc9f9b862009-05-11 19:58:34 +0000195}
196
Douglas Gregor26897462009-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 McCall0b66eb32010-05-01 00:40:08 +0000206bool Sema::RequireCompleteDeclContext(CXXScopeSpec &SS,
207 DeclContext *DC) {
208 assert(DC != 0 && "given null context");
Mike Stump11289f42009-09-09 15:08:12 +0000209
Douglas Gregor26897462009-03-11 16:48:53 +0000210 if (TagDecl *Tag = dyn_cast<TagDecl>(DC)) {
Douglas Gregor8a6d15d2010-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 Gregor26897462009-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 Kremenekc23c7e62009-07-29 21:53:49 +0000217 const TagType *TagT = Context.getTypeDeclType(Tag)->getAs<TagType>();
John McCalle78aac42010-03-10 03:28:59 +0000218 if (TagT && TagT->isBeingDefined())
Douglas Gregor26897462009-03-11 16:48:53 +0000219 return false;
220
221 // The type must be complete.
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +0000222 if (RequireCompleteType(SS.getRange().getBegin(),
223 Context.getTypeDeclType(Tag),
224 PDiag(diag::err_incomplete_nested_name_spec)
John McCall0b66eb32010-05-01 00:40:08 +0000225 << SS.getRange())) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000226 SS.SetInvalid(SS.getRange());
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +0000227 return true;
228 }
Douglas Gregor26897462009-03-11 16:48:53 +0000229 }
230
231 return false;
232}
Cedric Venet084381332009-02-14 20:20:19 +0000233
Douglas Gregor90c99722011-02-24 00:17:56 +0000234bool Sema::ActOnCXXGlobalScopeSpecifier(Scope *S, SourceLocation CCLoc,
235 CXXScopeSpec &SS) {
236 SS.MakeGlobal(Context, CCLoc);
237 return false;
Cedric Venet084381332009-02-14 20:20:19 +0000238}
239
Douglas Gregorb7bfe792009-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 Gregorcd3f49f2010-02-25 04:46:04 +0000242bool Sema::isAcceptableNestedNameSpecifier(NamedDecl *SD) {
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000243 if (!SD)
244 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000245
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000246 // Namespace and namespace aliases are fine.
247 if (isa<NamespaceDecl>(SD) || isa<NamespaceAliasDecl>(SD))
248 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000249
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000250 if (!isa<TypeDecl>(SD))
251 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000252
Douglas Gregorb7bfe792009-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 Smithdda56e42011-04-15 14:24:37 +0000258 else if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(SD)) {
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000259 if (TD->getUnderlyingType()->isRecordType() ||
Mike Stump11289f42009-09-09 15:08:12 +0000260 (Context.getLangOptions().CPlusPlus0x &&
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000261 TD->getUnderlyingType()->isEnumeralType()))
262 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000263 } else if (isa<RecordDecl>(SD) ||
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000264 (Context.getLangOptions().CPlusPlus0x && isa<EnumDecl>(SD)))
265 return true;
266
267 return false;
268}
269
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000270/// \brief If the given nested-name-specifier begins with a bare identifier
Mike Stump11289f42009-09-09 15:08:12 +0000271/// (e.g., Base::), perform name lookup for that identifier as a
Douglas Gregor2b6ca462009-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 Stump11289f42009-09-09 15:08:12 +0000277
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000278 while (NNS->getPrefix())
279 NNS = NNS->getPrefix();
Mike Stump11289f42009-09-09 15:08:12 +0000280
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000281 if (NNS->getKind() != NestedNameSpecifier::Identifier)
282 return 0;
Mike Stump11289f42009-09-09 15:08:12 +0000283
John McCall27b18f82009-11-17 02:14:36 +0000284 LookupResult Found(*this, NNS->getAsIdentifier(), SourceLocation(),
285 LookupNestedNameSpecifierName);
286 LookupName(Found, S);
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000287 assert(!Found.isAmbiguous() && "Cannot handle ambiguities here yet");
288
John McCall67c00872009-12-02 08:25:40 +0000289 if (!Found.isSingleResult())
290 return 0;
291
292 NamedDecl *Result = Found.getFoundDecl();
Douglas Gregorcd3f49f2010-02-25 04:46:04 +0000293 if (isAcceptableNestedNameSpecifier(Result))
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000294 return Result;
Mike Stump11289f42009-09-09 15:08:12 +0000295
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000296 return 0;
297}
298
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +0000299bool Sema::isNonTypeNestedNameSpecifier(Scope *S, CXXScopeSpec &SS,
Douglas Gregor0d5b0a12010-02-24 21:29:12 +0000300 SourceLocation IdLoc,
301 IdentifierInfo &II,
John McCallba7bf592010-08-24 05:47:05 +0000302 ParsedType ObjectTypePtr) {
Douglas Gregor0d5b0a12010-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 McCall0b66eb32010-05-01 00:40:08 +0000330 if (!LookupCtx->isDependentContext() &&
331 RequireCompleteDeclContext(SS, LookupCtx))
Douglas Gregor0d5b0a12010-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 Gregor2b6ca462009-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 Gregorad183ac2009-12-30 16:01:52 +0000354/// that was computed at template definition time.
Chris Lattner1c428032009-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 Gregor90c99722011-02-24 00:17:56 +0000358/// just return true on failure. It also means it should only return a valid
Chris Lattner1c428032009-12-07 01:36:53 +0000359/// scope if it *knows* that the result is correct. It should not return in a
Douglas Gregor90c99722011-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 McCall27b18f82009-11-17 02:14:36 +0000373
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000374 // Determine where to perform name lookup
375 DeclContext *LookupCtx = 0;
376 bool isDependent = false;
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000377 if (!ObjectType.isNull()) {
Douglas Gregorb7bfe792009-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 Gregorb7bfe792009-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 McCall27b18f82009-11-17 02:14:36 +0000388 Found.setContextRange(SS.getRange());
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000389 }
Mike Stump11289f42009-09-09 15:08:12 +0000390
John McCall27b18f82009-11-17 02:14:36 +0000391
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000392 bool ObjectTypeSearchedInScope = false;
393 if (LookupCtx) {
Mike Stump11289f42009-09-09 15:08:12 +0000394 // Perform "qualified" name lookup into the declaration context we
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000395 // computed, which is either the type of the base of a member access
Mike Stump11289f42009-09-09 15:08:12 +0000396 // expression or the declaration context associated with a prior
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000397 // nested-name-specifier.
Mike Stump11289f42009-09-09 15:08:12 +0000398
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000399 // The declaration context must be complete.
John McCall0b66eb32010-05-01 00:40:08 +0000400 if (!LookupCtx->isDependentContext() &&
401 RequireCompleteDeclContext(SS, LookupCtx))
Douglas Gregor90c99722011-02-24 00:17:56 +0000402 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000403
John McCall27b18f82009-11-17 02:14:36 +0000404 LookupQualifiedName(Found, LookupCtx);
Mike Stump11289f42009-09-09 15:08:12 +0000405
John McCall27b18f82009-11-17 02:14:36 +0000406 if (!ObjectType.isNull() && Found.empty()) {
Douglas Gregorb7bfe792009-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 Stump11289f42009-09-09 15:08:12 +0000409 // the form
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000410 //
411 // class-name-or-namespace-name::...
412 //
Mike Stump11289f42009-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 Gregorb7bfe792009-09-02 22:59:36 +0000415 // the scope of the class of the object expression. If the name is found
Mike Stump11289f42009-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 Gregorb7bfe792009-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 Stump11289f42009-09-09 15:08:12 +0000422 // so we do not need to diagnoste that case specifically. However,
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000423 // this qualified name lookup may find nothing. In that case, perform
Mike Stump11289f42009-09-09 15:08:12 +0000424 // unqualified name lookup in the given scope (if available) or
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000425 // reconstruct the result from when name lookup was performed at template
426 // definition time.
427 if (S)
John McCall27b18f82009-11-17 02:14:36 +0000428 LookupName(Found, S);
John McCall9f3059a2009-10-09 21:13:30 +0000429 else if (ScopeLookupResult)
430 Found.addDecl(ScopeLookupResult);
Mike Stump11289f42009-09-09 15:08:12 +0000431
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000432 ObjectTypeSearchedInScope = true;
433 }
Douglas Gregordf65c8ed2010-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 Lattner1c428032009-12-07 01:36:53 +0000445 // Don't speculate if we're just trying to improve error recovery.
446 if (ErrorRecoveryLookup)
Douglas Gregor90c99722011-02-24 00:17:56 +0000447 return true;
Chris Lattner1c428032009-12-07 01:36:53 +0000448
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000449 // We were not able to compute the declaration context for a dependent
Mike Stump11289f42009-09-09 15:08:12 +0000450 // base object type or prior nested-name-specifier, so this
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000451 // nested-name-specifier refers to an unknown specialization. Just build
452 // a dependent nested-name-specifier.
Douglas Gregor90c99722011-02-24 00:17:56 +0000453 SS.Extend(Context, &Identifier, IdentifierLoc, CCLoc);
454 return false;
Douglas Gregordf65c8ed2010-07-28 14:49:07 +0000455 }
456
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000457 // FIXME: Deal with ambiguities cleanly.
Douglas Gregor532e68f2009-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 Gregor280e1ee2010-04-14 20:04:41 +0000463 if (CorrectTypo(Found, S, &SS, LookupCtx, EnteringContext,
464 CTC_NoKeywords) &&
Douglas Gregor532e68f2009-12-31 08:26:35 +0000465 Found.isSingleResult() &&
Douglas Gregorcd3f49f2010-02-25 04:46:04 +0000466 isAcceptableNestedNameSpecifier(Found.getAsSingle<NamedDecl>())) {
Douglas Gregor532e68f2009-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 Gregora771f462010-03-31 17:46:05 +0000470 << FixItHint::CreateReplacement(Found.getNameLoc(),
471 Found.getLookupName().getAsString());
Douglas Gregor532e68f2009-12-31 08:26:35 +0000472 else
473 Diag(Found.getNameLoc(), diag::err_undeclared_var_use_suggest)
474 << Name << Found.getLookupName()
Douglas Gregora771f462010-03-31 17:46:05 +0000475 << FixItHint::CreateReplacement(Found.getNameLoc(),
476 Found.getLookupName().getAsString());
Douglas Gregor6da83622010-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 Gregorc048c522010-06-29 19:27:42 +0000481 } else {
Douglas Gregor532e68f2009-12-31 08:26:35 +0000482 Found.clear();
Douglas Gregor90c99722011-02-24 00:17:56 +0000483 Found.setLookupName(&Identifier);
Douglas Gregorc048c522010-06-29 19:27:42 +0000484 }
Douglas Gregor532e68f2009-12-31 08:26:35 +0000485 }
486
John McCall67c00872009-12-02 08:25:40 +0000487 NamedDecl *SD = Found.getAsSingle<NamedDecl>();
Douglas Gregorcd3f49f2010-02-25 04:46:04 +0000488 if (isAcceptableNestedNameSpecifier(SD)) {
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000489 if (!ObjectType.isNull() && !ObjectTypeSearchedInScope) {
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000490 // C++ [basic.lookup.classref]p4:
Mike Stump11289f42009-09-09 15:08:12 +0000491 // [...] If the name is found in both contexts, the
Douglas Gregorb7bfe792009-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 Gregor2b6ca462009-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 McCall9f3059a2009-10-09 21:13:30 +0000498 NamedDecl *OuterDecl;
499 if (S) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000500 LookupResult FoundOuter(*this, &Identifier, IdentifierLoc,
501 LookupNestedNameSpecifierName);
John McCall27b18f82009-11-17 02:14:36 +0000502 LookupName(FoundOuter, S);
John McCall67c00872009-12-02 08:25:40 +0000503 OuterDecl = FoundOuter.getAsSingle<NamedDecl>();
John McCall9f3059a2009-10-09 21:13:30 +0000504 } else
505 OuterDecl = ScopeLookupResult;
Mike Stump11289f42009-09-09 15:08:12 +0000506
Douglas Gregorcd3f49f2010-02-25 04:46:04 +0000507 if (isAcceptableNestedNameSpecifier(OuterDecl) &&
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000508 OuterDecl->getCanonicalDecl() != SD->getCanonicalDecl() &&
509 (!isa<TypeDecl>(OuterDecl) || !isa<TypeDecl>(SD) ||
510 !Context.hasSameType(
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000511 Context.getTypeDeclType(cast<TypeDecl>(OuterDecl)),
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000512 Context.getTypeDeclType(cast<TypeDecl>(SD))))) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000513 if (ErrorRecoveryLookup)
514 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000515
Douglas Gregor90c99722011-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 Gregorb7bfe792009-09-02 22:59:36 +0000526 }
Mike Stump11289f42009-09-09 15:08:12 +0000527
Douglas Gregor90c99722011-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 Stump11289f42009-09-09 15:08:12 +0000537
Douglas Gregor90c99722011-02-24 00:17:56 +0000538 if (NamespaceAliasDecl *Alias = dyn_cast<NamespaceAliasDecl>(SD)) {
Douglas Gregor7b26ff92011-02-24 02:36:08 +0000539 SS.Extend(Context, Alias, IdentifierLoc, CCLoc);
Douglas Gregor90c99722011-02-24 00:17:56 +0000540 return false;
541 }
Mike Stump11289f42009-09-09 15:08:12 +0000542
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000543 QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD));
Douglas Gregor90c99722011-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);
Douglas Gregordfd4b742011-05-04 23:05:40 +0000549 } else if (isa<RecordType>(T)) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000550 RecordTypeLoc RecordTL = TLB.push<RecordTypeLoc>(T);
551 RecordTL.setNameLoc(IdentifierLoc);
Douglas Gregordfd4b742011-05-04 23:05:40 +0000552 } else if (isa<TypedefType>(T)) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000553 TypedefTypeLoc TypedefTL = TLB.push<TypedefTypeLoc>(T);
554 TypedefTL.setNameLoc(IdentifierLoc);
Douglas Gregordfd4b742011-05-04 23:05:40 +0000555 } else if (isa<EnumType>(T)) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000556 EnumTypeLoc EnumTL = TLB.push<EnumTypeLoc>(T);
557 EnumTL.setNameLoc(IdentifierLoc);
Douglas Gregordfd4b742011-05-04 23:05:40 +0000558 } else if (isa<TemplateTypeParmType>(T)) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000559 TemplateTypeParmTypeLoc TemplateTypeTL
560 = TLB.push<TemplateTypeParmTypeLoc>(T);
561 TemplateTypeTL.setNameLoc(IdentifierLoc);
Douglas Gregordfd4b742011-05-04 23:05:40 +0000562 } else if (isa<UnresolvedUsingType>(T)) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000563 UnresolvedUsingTypeLoc UnresolvedTL
564 = TLB.push<UnresolvedUsingTypeLoc>(T);
565 UnresolvedTL.setNameLoc(IdentifierLoc);
Douglas Gregordfd4b742011-05-04 23:05:40 +0000566 } else if (isa<SubstTemplateTypeParmType>(T)) {
567 SubstTemplateTypeParmTypeLoc TL
568 = TLB.push<SubstTemplateTypeParmTypeLoc>(T);
569 TL.setNameLoc(IdentifierLoc);
570 } else if (isa<SubstTemplateTypeParmPackType>(T)) {
571 SubstTemplateTypeParmPackTypeLoc TL
572 = TLB.push<SubstTemplateTypeParmPackTypeLoc>(T);
573 TL.setNameLoc(IdentifierLoc);
574 } else {
575 llvm_unreachable("Unhandled TypeDecl node in nested-name-specifier");
Douglas Gregor90c99722011-02-24 00:17:56 +0000576 }
577
578 SS.Extend(Context, SourceLocation(), TLB.getTypeLocInContext(Context, T),
579 CCLoc);
580 return false;
Douglas Gregorb7bfe792009-09-02 22:59:36 +0000581 }
Mike Stump11289f42009-09-09 15:08:12 +0000582
Chris Lattner1c428032009-12-07 01:36:53 +0000583 // Otherwise, we have an error case. If we don't want diagnostics, just
584 // return an error now.
585 if (ErrorRecoveryLookup)
Douglas Gregor90c99722011-02-24 00:17:56 +0000586 return true;
Chris Lattner1c428032009-12-07 01:36:53 +0000587
Cedric Venet084381332009-02-14 20:20:19 +0000588 // If we didn't find anything during our lookup, try again with
589 // ordinary name lookup, which can help us produce better error
590 // messages.
John McCall67c00872009-12-02 08:25:40 +0000591 if (Found.empty()) {
John McCall27b18f82009-11-17 02:14:36 +0000592 Found.clear(LookupOrdinaryName);
593 LookupName(Found, S);
John McCall9f3059a2009-10-09 21:13:30 +0000594 }
Mike Stump11289f42009-09-09 15:08:12 +0000595
Cedric Venet084381332009-02-14 20:20:19 +0000596 unsigned DiagID;
John McCall67c00872009-12-02 08:25:40 +0000597 if (!Found.empty())
Cedric Venet084381332009-02-14 20:20:19 +0000598 DiagID = diag::err_expected_class_or_namespace;
Anders Carlssonb533df02009-08-30 07:09:50 +0000599 else if (SS.isSet()) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000600 Diag(IdentifierLoc, diag::err_no_member)
601 << &Identifier << LookupCtx << SS.getRange();
602 return true;
Anders Carlssonb533df02009-08-30 07:09:50 +0000603 } else
Cedric Venet084381332009-02-14 20:20:19 +0000604 DiagID = diag::err_undeclared_var_use;
Mike Stump11289f42009-09-09 15:08:12 +0000605
Cedric Venet084381332009-02-14 20:20:19 +0000606 if (SS.isSet())
Douglas Gregor90c99722011-02-24 00:17:56 +0000607 Diag(IdentifierLoc, DiagID) << &Identifier << SS.getRange();
Cedric Venet084381332009-02-14 20:20:19 +0000608 else
Douglas Gregor90c99722011-02-24 00:17:56 +0000609 Diag(IdentifierLoc, DiagID) << &Identifier;
Mike Stump11289f42009-09-09 15:08:12 +0000610
Douglas Gregor90c99722011-02-24 00:17:56 +0000611 return true;
Cedric Venet084381332009-02-14 20:20:19 +0000612}
613
Douglas Gregor90c99722011-02-24 00:17:56 +0000614bool Sema::ActOnCXXNestedNameSpecifier(Scope *S,
615 IdentifierInfo &Identifier,
616 SourceLocation IdentifierLoc,
617 SourceLocation CCLoc,
618 ParsedType ObjectType,
619 bool EnteringContext,
620 CXXScopeSpec &SS) {
621 if (SS.isInvalid())
622 return true;
623
624 return BuildCXXNestedNameSpecifier(S, Identifier, IdentifierLoc, CCLoc,
625 GetTypeFromParser(ObjectType),
626 EnteringContext, SS,
627 /*ScopeLookupResult=*/0, false);
Chris Lattner1c428032009-12-07 01:36:53 +0000628}
629
630/// IsInvalidUnlessNestedName - This method is used for error recovery
631/// purposes to determine whether the specified identifier is only valid as
632/// a nested name specifier, for example a namespace name. It is
633/// conservatively correct to always return false from this method.
634///
635/// The arguments are the same as those passed to ActOnCXXNestedNameSpecifier.
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +0000636bool Sema::IsInvalidUnlessNestedName(Scope *S, CXXScopeSpec &SS,
Douglas Gregor90c99722011-02-24 00:17:56 +0000637 IdentifierInfo &Identifier,
638 SourceLocation IdentifierLoc,
639 SourceLocation ColonLoc,
640 ParsedType ObjectType,
Chris Lattner1c428032009-12-07 01:36:53 +0000641 bool EnteringContext) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000642 if (SS.isInvalid())
643 return false;
644
645 return !BuildCXXNestedNameSpecifier(S, Identifier, IdentifierLoc, ColonLoc,
646 GetTypeFromParser(ObjectType),
647 EnteringContext, SS,
648 /*ScopeLookupResult=*/0, true);
Douglas Gregor2b6ca462009-09-03 21:38:09 +0000649}
650
Douglas Gregor90c99722011-02-24 00:17:56 +0000651bool Sema::ActOnCXXNestedNameSpecifier(Scope *S,
Douglas Gregor6e068012011-02-28 00:04:36 +0000652 SourceLocation TemplateLoc,
653 CXXScopeSpec &SS,
654 TemplateTy Template,
655 SourceLocation TemplateNameLoc,
656 SourceLocation LAngleLoc,
657 ASTTemplateArgsPtr TemplateArgsIn,
658 SourceLocation RAngleLoc,
Douglas Gregor90c99722011-02-24 00:17:56 +0000659 SourceLocation CCLoc,
Douglas Gregor6e068012011-02-28 00:04:36 +0000660 bool EnteringContext) {
Douglas Gregor90c99722011-02-24 00:17:56 +0000661 if (SS.isInvalid())
662 return true;
663
Douglas Gregor6e068012011-02-28 00:04:36 +0000664 // Translate the parser's template argument list in our AST format.
665 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
666 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
667
668 if (DependentTemplateName *DTN = Template.get().getAsDependentTemplateName()){
669 // Handle a dependent template specialization for which we cannot resolve
670 // the template name.
671 assert(DTN->getQualifier()
672 == static_cast<NestedNameSpecifier*>(SS.getScopeRep()));
673 QualType T = Context.getDependentTemplateSpecializationType(ETK_None,
Douglas Gregora7a795b2011-03-01 20:11:18 +0000674 DTN->getQualifier(),
675 DTN->getIdentifier(),
Douglas Gregor6e068012011-02-28 00:04:36 +0000676 TemplateArgs);
677
678 // Create source-location information for this type.
679 TypeLocBuilder Builder;
680 DependentTemplateSpecializationTypeLoc SpecTL
681 = Builder.push<DependentTemplateSpecializationTypeLoc>(T);
682 SpecTL.setLAngleLoc(LAngleLoc);
683 SpecTL.setRAngleLoc(RAngleLoc);
684 SpecTL.setKeywordLoc(SourceLocation());
685 SpecTL.setNameLoc(TemplateNameLoc);
Douglas Gregora7a795b2011-03-01 20:11:18 +0000686 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Douglas Gregor6e068012011-02-28 00:04:36 +0000687 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
688 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
689
690 SS.Extend(Context, TemplateLoc, Builder.getTypeLocInContext(Context, T),
691 CCLoc);
692 return false;
693 }
694
Douglas Gregor8b6070b2011-03-04 21:37:14 +0000695
696 if (Template.get().getAsOverloadedTemplate() ||
697 isa<FunctionTemplateDecl>(Template.get().getAsTemplateDecl())) {
698 SourceRange R(TemplateNameLoc, RAngleLoc);
699 if (SS.getRange().isValid())
700 R.setBegin(SS.getRange().getBegin());
701
702 Diag(CCLoc, diag::err_non_type_template_in_nested_name_specifier)
703 << Template.get() << R;
704 NoteAllFoundTemplates(Template.get());
705 return true;
706 }
707
Douglas Gregor6e068012011-02-28 00:04:36 +0000708 // We were able to resolve the template name to an actual template.
709 // Build an appropriate nested-name-specifier.
710 QualType T = CheckTemplateIdType(Template.get(), TemplateNameLoc,
711 TemplateArgs);
Douglas Gregor90c99722011-02-24 00:17:56 +0000712 if (T.isNull())
713 return true;
714
Douglas Gregor6e068012011-02-28 00:04:36 +0000715 // FIXME: Template aliases will need to check the resulting type to make
716 // sure that it's either dependent or a tag type.
717
718 // Provide source-location information for the template specialization
719 // type.
720 TypeLocBuilder Builder;
721 TemplateSpecializationTypeLoc SpecTL
722 = Builder.push<TemplateSpecializationTypeLoc>(T);
723
724 SpecTL.setLAngleLoc(LAngleLoc);
725 SpecTL.setRAngleLoc(RAngleLoc);
726 SpecTL.setTemplateNameLoc(TemplateNameLoc);
727 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
728 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
729
730
731 SS.Extend(Context, TemplateLoc, Builder.getTypeLocInContext(Context, T),
732 CCLoc);
Douglas Gregor90c99722011-02-24 00:17:56 +0000733 return false;
Douglas Gregor7f741122009-02-25 19:37:18 +0000734}
735
Douglas Gregor869ad452011-02-24 17:54:50 +0000736namespace {
737 /// \brief A structure that stores a nested-name-specifier annotation,
738 /// including both the nested-name-specifier
739 struct NestedNameSpecifierAnnotation {
740 NestedNameSpecifier *NNS;
741 };
742}
743
744void *Sema::SaveNestedNameSpecifierAnnotation(CXXScopeSpec &SS) {
745 if (SS.isEmpty() || SS.isInvalid())
746 return 0;
747
748 void *Mem = Context.Allocate((sizeof(NestedNameSpecifierAnnotation) +
749 SS.location_size()),
750 llvm::alignOf<NestedNameSpecifierAnnotation>());
751 NestedNameSpecifierAnnotation *Annotation
752 = new (Mem) NestedNameSpecifierAnnotation;
753 Annotation->NNS = SS.getScopeRep();
754 memcpy(Annotation + 1, SS.location_data(), SS.location_size());
755 return Annotation;
756}
757
758void Sema::RestoreNestedNameSpecifierAnnotation(void *AnnotationPtr,
759 SourceRange AnnotationRange,
760 CXXScopeSpec &SS) {
761 if (!AnnotationPtr) {
762 SS.SetInvalid(AnnotationRange);
763 return;
764 }
765
766 NestedNameSpecifierAnnotation *Annotation
767 = static_cast<NestedNameSpecifierAnnotation *>(AnnotationPtr);
768 SS.Adopt(NestedNameSpecifierLoc(Annotation->NNS, Annotation + 1));
769}
770
John McCall2b058ef2009-12-11 20:04:54 +0000771bool Sema::ShouldEnterDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
772 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
773
774 NestedNameSpecifier *Qualifier =
775 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
776
777 // There are only two places a well-formed program may qualify a
778 // declarator: first, when defining a namespace or class member
779 // out-of-line, and second, when naming an explicitly-qualified
780 // friend function. The latter case is governed by
781 // C++03 [basic.lookup.unqual]p10:
782 // In a friend declaration naming a member function, a name used
783 // in the function declarator and not part of a template-argument
784 // in a template-id is first looked up in the scope of the member
785 // function's class. If it is not found, or if the name is part of
786 // a template-argument in a template-id, the look up is as
787 // described for unqualified names in the definition of the class
788 // granting friendship.
789 // i.e. we don't push a scope unless it's a class member.
790
791 switch (Qualifier->getKind()) {
792 case NestedNameSpecifier::Global:
793 case NestedNameSpecifier::Namespace:
Douglas Gregor7b26ff92011-02-24 02:36:08 +0000794 case NestedNameSpecifier::NamespaceAlias:
John McCall2b058ef2009-12-11 20:04:54 +0000795 // These are always namespace scopes. We never want to enter a
796 // namespace scope from anything but a file context.
Sebastian Redl50c68252010-08-31 00:36:30 +0000797 return CurContext->getRedeclContext()->isFileContext();
John McCall2b058ef2009-12-11 20:04:54 +0000798
799 case NestedNameSpecifier::Identifier:
800 case NestedNameSpecifier::TypeSpec:
801 case NestedNameSpecifier::TypeSpecWithTemplate:
802 // These are never namespace scopes.
803 return true;
804 }
805
806 // Silence bogus warning.
807 return false;
808}
809
Cedric Venet084381332009-02-14 20:20:19 +0000810/// ActOnCXXEnterDeclaratorScope - Called when a C++ scope specifier (global
811/// scope or nested-name-specifier) is parsed, part of a declarator-id.
812/// After this method is called, according to [C++ 3.4.3p3], names should be
813/// looked up in the declarator-id's scope, until the declarator is parsed and
814/// ActOnCXXExitDeclaratorScope is called.
815/// The 'SS' should be a non-empty valid CXXScopeSpec.
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +0000816bool Sema::ActOnCXXEnterDeclaratorScope(Scope *S, CXXScopeSpec &SS) {
Cedric Venet084381332009-02-14 20:20:19 +0000817 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
John McCall6df5fef2009-12-19 10:49:29 +0000818
819 if (SS.isInvalid()) return true;
820
821 DeclContext *DC = computeDeclContext(SS, true);
822 if (!DC) return true;
823
824 // Before we enter a declarator's context, we need to make sure that
825 // it is a complete declaration context.
John McCall0b66eb32010-05-01 00:40:08 +0000826 if (!DC->isDependentContext() && RequireCompleteDeclContext(SS, DC))
John McCall6df5fef2009-12-19 10:49:29 +0000827 return true;
828
829 EnterDeclaratorContext(S, DC);
John McCall2408e322010-04-27 00:57:59 +0000830
831 // Rebuild the nested name specifier for the new scope.
832 if (DC->isDependentContext())
833 RebuildNestedNameSpecifierInCurrentInstantiation(SS);
834
Douglas Gregor5013a7e2009-09-24 23:39:01 +0000835 return false;
Cedric Venet084381332009-02-14 20:20:19 +0000836}
837
838/// ActOnCXXExitDeclaratorScope - Called when a declarator that previously
839/// invoked ActOnCXXEnterDeclaratorScope(), is finished. 'SS' is the same
840/// CXXScopeSpec that was passed to ActOnCXXEnterDeclaratorScope as well.
841/// Used to indicate that names should revert to being looked up in the
842/// defining scope.
843void Sema::ActOnCXXExitDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
844 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
Douglas Gregor053f6912009-08-26 00:04:55 +0000845 if (SS.isInvalid())
846 return;
John McCall6df5fef2009-12-19 10:49:29 +0000847 assert(!SS.isInvalid() && computeDeclContext(SS, true) &&
848 "exiting declarator scope we never really entered");
849 ExitDeclaratorContext(S);
Cedric Venet084381332009-02-14 20:20:19 +0000850}