blob: 971b78c489e8cfacd770d2ff37ad716dd45ef42b [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
14#include "Sema.h"
John McCall7d384dd2009-11-18 07:57:50 +000015#include "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"
Cedric Venet3d658642009-02-14 20:20:19 +000021#include "clang/Parse/DeclSpec.h"
22#include "llvm/ADT/STLExtras.h"
Douglas Gregor7551c182009-07-22 00:28:09 +000023#include "llvm/Support/raw_ostream.h"
Cedric Venet3d658642009-02-14 20:20:19 +000024using namespace clang;
25
Douglas Gregor43d88632009-11-04 22:49:18 +000026/// \brief Find the current instantiation that associated with the given type.
27static CXXRecordDecl *
28getCurrentInstantiationOf(ASTContext &Context, DeclContext *CurContext,
29 QualType T) {
30 if (T.isNull())
31 return 0;
32
Douglas Gregor1cfb7da2010-01-15 16:05:33 +000033 T = Context.getCanonicalType(T).getUnqualifiedType();
Douglas Gregor43d88632009-11-04 22:49:18 +000034
Douglas Gregor1cfb7da2010-01-15 16:05:33 +000035 for (DeclContext *Ctx = CurContext; Ctx; Ctx = Ctx->getLookupParent()) {
Douglas Gregor43d88632009-11-04 22:49:18 +000036 // If we've hit a namespace or the global scope, then the
37 // nested-name-specifier can't refer to the current instantiation.
38 if (Ctx->isFileContext())
39 return 0;
40
41 // Skip non-class contexts.
42 CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx);
43 if (!Record)
44 continue;
45
46 // If this record type is not dependent,
47 if (!Record->isDependentType())
48 return 0;
49
50 // C++ [temp.dep.type]p1:
51 //
52 // In the definition of a class template, a nested class of a
53 // class template, a member of a class template, or a member of a
54 // nested class of a class template, a name refers to the current
55 // instantiation if it is
56 // -- the injected-class-name (9) of the class template or
57 // nested class,
58 // -- in the definition of a primary class template, the name
59 // of the class template followed by the template argument
60 // list of the primary template (as described below)
61 // enclosed in <>,
62 // -- in the definition of a nested class of a class template,
63 // the name of the nested class referenced as a member of
64 // the current instantiation, or
65 // -- in the definition of a partial specialization, the name
66 // of the class template followed by the template argument
67 // list of the partial specialization enclosed in <>. If
68 // the nth template parameter is a parameter pack, the nth
69 // template argument is a pack expansion (14.6.3) whose
70 // pattern is the name of the parameter pack.
71 // (FIXME: parameter packs)
72 //
73 // All of these options come down to having the
74 // nested-name-specifier type that is equivalent to the
75 // injected-class-name of one of the types that is currently in
76 // our context.
77 if (Context.getCanonicalType(Context.getTypeDeclType(Record)) == T)
78 return Record;
79
80 if (ClassTemplateDecl *Template = Record->getDescribedClassTemplate()) {
81 QualType InjectedClassName
82 = Template->getInjectedClassNameType(Context);
83 if (T == Context.getCanonicalType(InjectedClassName))
84 return Template->getTemplatedDecl();
85 }
86 // FIXME: check for class template partial specializations
87 }
88
89 return 0;
90}
91
Douglas Gregor2dd078a2009-09-02 22:59:36 +000092/// \brief Compute the DeclContext that is associated with the given type.
93///
94/// \param T the type for which we are attempting to find a DeclContext.
95///
Mike Stump1eb44332009-09-09 15:08:12 +000096/// \returns the declaration context represented by the type T,
Douglas Gregor2dd078a2009-09-02 22:59:36 +000097/// or NULL if the declaration context cannot be computed (e.g., because it is
98/// dependent and not the current instantiation).
99DeclContext *Sema::computeDeclContext(QualType T) {
100 if (const TagType *Tag = T->getAs<TagType>())
101 return Tag->getDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000102
Douglas Gregor43d88632009-11-04 22:49:18 +0000103 return ::getCurrentInstantiationOf(Context, CurContext, T);
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000104}
105
Douglas Gregore4e5b052009-03-19 00:18:19 +0000106/// \brief Compute the DeclContext that is associated with the given
107/// scope specifier.
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000108///
109/// \param SS the C++ scope specifier as it appears in the source
110///
111/// \param EnteringContext when true, we will be entering the context of
112/// this scope specifier, so we can retrieve the declaration context of a
113/// class template or class template partial specialization even if it is
114/// not the current instantiation.
115///
116/// \returns the declaration context represented by the scope specifier @p SS,
117/// or NULL if the declaration context cannot be computed (e.g., because it is
118/// dependent and not the current instantiation).
119DeclContext *Sema::computeDeclContext(const CXXScopeSpec &SS,
120 bool EnteringContext) {
Douglas Gregore4e5b052009-03-19 00:18:19 +0000121 if (!SS.isSet() || SS.isInvalid())
Douglas Gregorca5e77f2009-03-18 00:36:05 +0000122 return 0;
Douglas Gregorca5e77f2009-03-18 00:36:05 +0000123
Mike Stump1eb44332009-09-09 15:08:12 +0000124 NestedNameSpecifier *NNS
Douglas Gregor35073692009-03-26 23:56:24 +0000125 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Douglas Gregor42af25f2009-05-11 19:58:34 +0000126 if (NNS->isDependent()) {
127 // If this nested-name-specifier refers to the current
128 // instantiation, return its DeclContext.
129 if (CXXRecordDecl *Record = getCurrentInstantiationOf(NNS))
130 return Record;
Mike Stump1eb44332009-09-09 15:08:12 +0000131
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000132 if (EnteringContext) {
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000133 if (const TemplateSpecializationType *SpecType
134 = dyn_cast_or_null<TemplateSpecializationType>(NNS->getAsType())) {
Douglas Gregor495c35d2009-08-25 22:51:20 +0000135 // We are entering the context of the nested name specifier, so try to
136 // match the nested name specifier to either a primary class template
137 // or a class template partial specialization.
Mike Stump1eb44332009-09-09 15:08:12 +0000138 if (ClassTemplateDecl *ClassTemplate
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000139 = dyn_cast_or_null<ClassTemplateDecl>(
140 SpecType->getTemplateName().getAsTemplateDecl())) {
Douglas Gregorb88e8882009-07-30 17:40:51 +0000141 QualType ContextType
142 = Context.getCanonicalType(QualType(SpecType, 0));
143
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000144 // If the type of the nested name specifier is the same as the
145 // injected class name of the named class template, we're entering
146 // into that class template definition.
147 QualType Injected = ClassTemplate->getInjectedClassNameType(Context);
Douglas Gregorb88e8882009-07-30 17:40:51 +0000148 if (Context.hasSameType(Injected, ContextType))
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000149 return ClassTemplate->getTemplatedDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000150
Douglas Gregorb88e8882009-07-30 17:40:51 +0000151 // If the type of the nested name specifier is the same as the
152 // type of one of the class template's class template partial
153 // specializations, we're entering into the definition of that
154 // class template partial specialization.
155 if (ClassTemplatePartialSpecializationDecl *PartialSpec
156 = ClassTemplate->findPartialSpecialization(ContextType))
157 return PartialSpec;
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000158 }
Mike Stump1eb44332009-09-09 15:08:12 +0000159 } else if (const RecordType *RecordT
Douglas Gregor495c35d2009-08-25 22:51:20 +0000160 = dyn_cast_or_null<RecordType>(NNS->getAsType())) {
161 // The nested name specifier refers to a member of a class template.
162 return RecordT->getDecl();
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000163 }
164 }
Mike Stump1eb44332009-09-09 15:08:12 +0000165
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000166 return 0;
Douglas Gregor42af25f2009-05-11 19:58:34 +0000167 }
Douglas Gregorab452ba2009-03-26 23:50:42 +0000168
169 switch (NNS->getKind()) {
170 case NestedNameSpecifier::Identifier:
171 assert(false && "Dependent nested-name-specifier has no DeclContext");
172 break;
173
174 case NestedNameSpecifier::Namespace:
175 return NNS->getAsNamespace();
176
177 case NestedNameSpecifier::TypeSpec:
178 case NestedNameSpecifier::TypeSpecWithTemplate: {
Douglas Gregoredc90502010-02-25 04:46:04 +0000179 const TagType *Tag = NNS->getAsType()->getAs<TagType>();
180 assert(Tag && "Non-tag type in nested-name-specifier");
181 return Tag->getDecl();
182 } break;
Douglas Gregorab452ba2009-03-26 23:50:42 +0000183
184 case NestedNameSpecifier::Global:
185 return Context.getTranslationUnitDecl();
186 }
187
Douglas Gregoredc90502010-02-25 04:46:04 +0000188 // Required to silence a GCC warning.
Douglas Gregorab452ba2009-03-26 23:50:42 +0000189 return 0;
Douglas Gregorca5e77f2009-03-18 00:36:05 +0000190}
191
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000192bool Sema::isDependentScopeSpecifier(const CXXScopeSpec &SS) {
193 if (!SS.isSet() || SS.isInvalid())
194 return false;
195
Mike Stump1eb44332009-09-09 15:08:12 +0000196 NestedNameSpecifier *NNS
Douglas Gregor35073692009-03-26 23:56:24 +0000197 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Douglas Gregorab452ba2009-03-26 23:50:42 +0000198 return NNS->isDependent();
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000199}
200
Douglas Gregor42af25f2009-05-11 19:58:34 +0000201// \brief Determine whether this C++ scope specifier refers to an
202// unknown specialization, i.e., a dependent type that is not the
203// current instantiation.
204bool Sema::isUnknownSpecialization(const CXXScopeSpec &SS) {
205 if (!isDependentScopeSpecifier(SS))
206 return false;
207
Mike Stump1eb44332009-09-09 15:08:12 +0000208 NestedNameSpecifier *NNS
Douglas Gregor42af25f2009-05-11 19:58:34 +0000209 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
210 return getCurrentInstantiationOf(NNS) == 0;
211}
212
213/// \brief If the given nested name specifier refers to the current
214/// instantiation, return the declaration that corresponds to that
215/// current instantiation (C++0x [temp.dep.type]p1).
216///
217/// \param NNS a dependent nested name specifier.
218CXXRecordDecl *Sema::getCurrentInstantiationOf(NestedNameSpecifier *NNS) {
219 assert(getLangOptions().CPlusPlus && "Only callable in C++");
220 assert(NNS->isDependent() && "Only dependent nested-name-specifier allowed");
221
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000222 if (!NNS->getAsType())
223 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000224
Douglas Gregor1560def2009-07-31 18:32:42 +0000225 QualType T = QualType(NNS->getAsType(), 0);
Douglas Gregor43d88632009-11-04 22:49:18 +0000226 return ::getCurrentInstantiationOf(Context, CurContext, T);
Douglas Gregor42af25f2009-05-11 19:58:34 +0000227}
228
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000229/// \brief Require that the context specified by SS be complete.
230///
231/// If SS refers to a type, this routine checks whether the type is
232/// complete enough (or can be made complete enough) for name lookup
233/// into the DeclContext. A type that is not yet completed can be
234/// considered "complete enough" if it is a class/struct/union/enum
235/// that is currently being defined. Or, if we have a type that names
236/// a class template specialization that is not a complete type, we
237/// will attempt to instantiate that class template.
238bool Sema::RequireCompleteDeclContext(const CXXScopeSpec &SS) {
239 if (!SS.isSet() || SS.isInvalid())
240 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000241
Douglas Gregor7cdbc582009-07-22 23:48:44 +0000242 DeclContext *DC = computeDeclContext(SS, true);
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000243 if (TagDecl *Tag = dyn_cast<TagDecl>(DC)) {
Douglas Gregora4e8c2a2010-02-05 04:39:02 +0000244 // If this is a dependent type, then we consider it complete.
245 if (Tag->isDependentContext())
246 return false;
247
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000248 // If we're currently defining this type, then lookup into the
249 // type is okay: don't complain that it isn't complete yet.
Ted Kremenek6217b802009-07-29 21:53:49 +0000250 const TagType *TagT = Context.getTypeDeclType(Tag)->getAs<TagType>();
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000251 if (TagT->isBeingDefined())
252 return false;
253
254 // The type must be complete.
255 return RequireCompleteType(SS.getRange().getBegin(),
256 Context.getTypeDeclType(Tag),
Anders Carlssonb7906612009-08-26 23:45:07 +0000257 PDiag(diag::err_incomplete_nested_name_spec)
258 << SS.getRange());
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000259 }
260
261 return false;
262}
Cedric Venet3d658642009-02-14 20:20:19 +0000263
264/// ActOnCXXGlobalScopeSpecifier - Return the object that represents the
265/// global scope ('::').
266Sema::CXXScopeTy *Sema::ActOnCXXGlobalScopeSpecifier(Scope *S,
267 SourceLocation CCLoc) {
Douglas Gregorab452ba2009-03-26 23:50:42 +0000268 return NestedNameSpecifier::GlobalSpecifier(Context);
Cedric Venet3d658642009-02-14 20:20:19 +0000269}
270
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000271/// \brief Determines whether the given declaration is an valid acceptable
272/// result for name lookup of a nested-name-specifier.
Douglas Gregoredc90502010-02-25 04:46:04 +0000273bool Sema::isAcceptableNestedNameSpecifier(NamedDecl *SD) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000274 if (!SD)
275 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000276
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000277 // Namespace and namespace aliases are fine.
278 if (isa<NamespaceDecl>(SD) || isa<NamespaceAliasDecl>(SD))
279 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000280
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000281 if (!isa<TypeDecl>(SD))
282 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000283
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000284 // Determine whether we have a class (or, in C++0x, an enum) or
285 // a typedef thereof. If so, build the nested-name-specifier.
286 QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD));
287 if (T->isDependentType())
288 return true;
289 else if (TypedefDecl *TD = dyn_cast<TypedefDecl>(SD)) {
290 if (TD->getUnderlyingType()->isRecordType() ||
Mike Stump1eb44332009-09-09 15:08:12 +0000291 (Context.getLangOptions().CPlusPlus0x &&
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000292 TD->getUnderlyingType()->isEnumeralType()))
293 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000294 } else if (isa<RecordDecl>(SD) ||
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000295 (Context.getLangOptions().CPlusPlus0x && isa<EnumDecl>(SD)))
296 return true;
297
298 return false;
299}
300
Douglas Gregorc68afe22009-09-03 21:38:09 +0000301/// \brief If the given nested-name-specifier begins with a bare identifier
Mike Stump1eb44332009-09-09 15:08:12 +0000302/// (e.g., Base::), perform name lookup for that identifier as a
Douglas Gregorc68afe22009-09-03 21:38:09 +0000303/// nested-name-specifier within the given scope, and return the result of that
304/// name lookup.
305NamedDecl *Sema::FindFirstQualifierInScope(Scope *S, NestedNameSpecifier *NNS) {
306 if (!S || !NNS)
307 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000308
Douglas Gregorc68afe22009-09-03 21:38:09 +0000309 while (NNS->getPrefix())
310 NNS = NNS->getPrefix();
Mike Stump1eb44332009-09-09 15:08:12 +0000311
Douglas Gregorc68afe22009-09-03 21:38:09 +0000312 if (NNS->getKind() != NestedNameSpecifier::Identifier)
313 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000314
John McCalla24dc2e2009-11-17 02:14:36 +0000315 LookupResult Found(*this, NNS->getAsIdentifier(), SourceLocation(),
316 LookupNestedNameSpecifierName);
317 LookupName(Found, S);
Douglas Gregorc68afe22009-09-03 21:38:09 +0000318 assert(!Found.isAmbiguous() && "Cannot handle ambiguities here yet");
319
John McCall1bcee0a2009-12-02 08:25:40 +0000320 if (!Found.isSingleResult())
321 return 0;
322
323 NamedDecl *Result = Found.getFoundDecl();
Douglas Gregoredc90502010-02-25 04:46:04 +0000324 if (isAcceptableNestedNameSpecifier(Result))
Douglas Gregorc68afe22009-09-03 21:38:09 +0000325 return Result;
Mike Stump1eb44332009-09-09 15:08:12 +0000326
Douglas Gregorc68afe22009-09-03 21:38:09 +0000327 return 0;
328}
329
Douglas Gregor77549082010-02-24 21:29:12 +0000330bool Sema::isNonTypeNestedNameSpecifier(Scope *S, const CXXScopeSpec &SS,
331 SourceLocation IdLoc,
332 IdentifierInfo &II,
333 TypeTy *ObjectTypePtr) {
334 QualType ObjectType = GetTypeFromParser(ObjectTypePtr);
335 LookupResult Found(*this, &II, IdLoc, LookupNestedNameSpecifierName);
336
337 // Determine where to perform name lookup
338 DeclContext *LookupCtx = 0;
339 bool isDependent = false;
340 if (!ObjectType.isNull()) {
341 // This nested-name-specifier occurs in a member access expression, e.g.,
342 // x->B::f, and we are looking into the type of the object.
343 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
344 LookupCtx = computeDeclContext(ObjectType);
345 isDependent = ObjectType->isDependentType();
346 } else if (SS.isSet()) {
347 // This nested-name-specifier occurs after another nested-name-specifier,
348 // so long into the context associated with the prior nested-name-specifier.
349 LookupCtx = computeDeclContext(SS, false);
350 isDependent = isDependentScopeSpecifier(SS);
351 Found.setContextRange(SS.getRange());
352 }
353
354 if (LookupCtx) {
355 // Perform "qualified" name lookup into the declaration context we
356 // computed, which is either the type of the base of a member access
357 // expression or the declaration context associated with a prior
358 // nested-name-specifier.
359
360 // The declaration context must be complete.
361 if (!LookupCtx->isDependentContext() && RequireCompleteDeclContext(SS))
362 return false;
363
364 LookupQualifiedName(Found, LookupCtx);
365 } else if (isDependent) {
366 return false;
367 } else {
368 LookupName(Found, S);
369 }
370 Found.suppressDiagnostics();
371
372 if (NamedDecl *ND = Found.getAsSingle<NamedDecl>())
373 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
374
375 return false;
376}
377
Douglas Gregorc68afe22009-09-03 21:38:09 +0000378/// \brief Build a new nested-name-specifier for "identifier::", as described
379/// by ActOnCXXNestedNameSpecifier.
380///
381/// This routine differs only slightly from ActOnCXXNestedNameSpecifier, in
382/// that it contains an extra parameter \p ScopeLookupResult, which provides
383/// the result of name lookup within the scope of the nested-name-specifier
Douglas Gregora6e51992009-12-30 16:01:52 +0000384/// that was computed at template definition time.
Chris Lattner46646492009-12-07 01:36:53 +0000385///
386/// If ErrorRecoveryLookup is true, then this call is used to improve error
387/// recovery. This means that it should not emit diagnostics, it should
388/// just return null on failure. It also means it should only return a valid
389/// scope if it *knows* that the result is correct. It should not return in a
390/// dependent context, for example.
Douglas Gregorc68afe22009-09-03 21:38:09 +0000391Sema::CXXScopeTy *Sema::BuildCXXNestedNameSpecifier(Scope *S,
Cedric Venet3d658642009-02-14 20:20:19 +0000392 const CXXScopeSpec &SS,
393 SourceLocation IdLoc,
394 SourceLocation CCLoc,
Douglas Gregor495c35d2009-08-25 22:51:20 +0000395 IdentifierInfo &II,
Douglas Gregorc68afe22009-09-03 21:38:09 +0000396 QualType ObjectType,
397 NamedDecl *ScopeLookupResult,
Chris Lattner46646492009-12-07 01:36:53 +0000398 bool EnteringContext,
399 bool ErrorRecoveryLookup) {
Mike Stump1eb44332009-09-09 15:08:12 +0000400 NestedNameSpecifier *Prefix
Douglas Gregor35073692009-03-26 23:56:24 +0000401 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Mike Stump1eb44332009-09-09 15:08:12 +0000402
John McCalla24dc2e2009-11-17 02:14:36 +0000403 LookupResult Found(*this, &II, IdLoc, LookupNestedNameSpecifierName);
404
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000405 // Determine where to perform name lookup
406 DeclContext *LookupCtx = 0;
407 bool isDependent = false;
Douglas Gregorc68afe22009-09-03 21:38:09 +0000408 if (!ObjectType.isNull()) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000409 // This nested-name-specifier occurs in a member access expression, e.g.,
410 // x->B::f, and we are looking into the type of the object.
411 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000412 LookupCtx = computeDeclContext(ObjectType);
413 isDependent = ObjectType->isDependentType();
414 } else if (SS.isSet()) {
415 // This nested-name-specifier occurs after another nested-name-specifier,
416 // so long into the context associated with the prior nested-name-specifier.
417 LookupCtx = computeDeclContext(SS, EnteringContext);
418 isDependent = isDependentScopeSpecifier(SS);
John McCalla24dc2e2009-11-17 02:14:36 +0000419 Found.setContextRange(SS.getRange());
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000420 }
Mike Stump1eb44332009-09-09 15:08:12 +0000421
John McCalla24dc2e2009-11-17 02:14:36 +0000422
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000423 bool ObjectTypeSearchedInScope = false;
424 if (LookupCtx) {
Mike Stump1eb44332009-09-09 15:08:12 +0000425 // Perform "qualified" name lookup into the declaration context we
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000426 // computed, which is either the type of the base of a member access
Mike Stump1eb44332009-09-09 15:08:12 +0000427 // expression or the declaration context associated with a prior
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000428 // nested-name-specifier.
Mike Stump1eb44332009-09-09 15:08:12 +0000429
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000430 // The declaration context must be complete.
431 if (!LookupCtx->isDependentContext() && RequireCompleteDeclContext(SS))
432 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000433
John McCalla24dc2e2009-11-17 02:14:36 +0000434 LookupQualifiedName(Found, LookupCtx);
Mike Stump1eb44332009-09-09 15:08:12 +0000435
John McCalla24dc2e2009-11-17 02:14:36 +0000436 if (!ObjectType.isNull() && Found.empty()) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000437 // C++ [basic.lookup.classref]p4:
438 // If the id-expression in a class member access is a qualified-id of
Mike Stump1eb44332009-09-09 15:08:12 +0000439 // the form
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000440 //
441 // class-name-or-namespace-name::...
442 //
Mike Stump1eb44332009-09-09 15:08:12 +0000443 // the class-name-or-namespace-name following the . or -> operator is
444 // looked up both in the context of the entire postfix-expression and in
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000445 // the scope of the class of the object expression. If the name is found
Mike Stump1eb44332009-09-09 15:08:12 +0000446 // only in the scope of the class of the object expression, the name
447 // shall refer to a class-name. If the name is found only in the
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000448 // context of the entire postfix-expression, the name shall refer to a
449 // class-name or namespace-name. [...]
450 //
451 // Qualified name lookup into a class will not find a namespace-name,
Mike Stump1eb44332009-09-09 15:08:12 +0000452 // so we do not need to diagnoste that case specifically. However,
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000453 // this qualified name lookup may find nothing. In that case, perform
Mike Stump1eb44332009-09-09 15:08:12 +0000454 // unqualified name lookup in the given scope (if available) or
Douglas Gregorc68afe22009-09-03 21:38:09 +0000455 // reconstruct the result from when name lookup was performed at template
456 // definition time.
457 if (S)
John McCalla24dc2e2009-11-17 02:14:36 +0000458 LookupName(Found, S);
John McCallf36e02d2009-10-09 21:13:30 +0000459 else if (ScopeLookupResult)
460 Found.addDecl(ScopeLookupResult);
Mike Stump1eb44332009-09-09 15:08:12 +0000461
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000462 ObjectTypeSearchedInScope = true;
463 }
464 } else if (isDependent) {
Chris Lattner46646492009-12-07 01:36:53 +0000465 // Don't speculate if we're just trying to improve error recovery.
466 if (ErrorRecoveryLookup)
467 return 0;
468
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000469 // We were not able to compute the declaration context for a dependent
Mike Stump1eb44332009-09-09 15:08:12 +0000470 // base object type or prior nested-name-specifier, so this
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000471 // nested-name-specifier refers to an unknown specialization. Just build
472 // a dependent nested-name-specifier.
Douglas Gregor2700dcd2009-09-02 23:58:38 +0000473 if (!Prefix)
474 return NestedNameSpecifier::Create(Context, &II);
Mike Stump1eb44332009-09-09 15:08:12 +0000475
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000476 return NestedNameSpecifier::Create(Context, Prefix, &II);
477 } else {
478 // Perform unqualified name lookup in the current scope.
John McCalla24dc2e2009-11-17 02:14:36 +0000479 LookupName(Found, S);
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000480 }
Mike Stump1eb44332009-09-09 15:08:12 +0000481
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000482 // FIXME: Deal with ambiguities cleanly.
Douglas Gregor175a6562009-12-31 08:26:35 +0000483
484 if (Found.empty() && !ErrorRecoveryLookup) {
485 // We haven't found anything, and we're not recovering from a
486 // different kind of error, so look for typos.
487 DeclarationName Name = Found.getLookupName();
488 if (CorrectTypo(Found, S, &SS, LookupCtx, EnteringContext) &&
489 Found.isSingleResult() &&
Douglas Gregoredc90502010-02-25 04:46:04 +0000490 isAcceptableNestedNameSpecifier(Found.getAsSingle<NamedDecl>())) {
Douglas Gregor175a6562009-12-31 08:26:35 +0000491 if (LookupCtx)
492 Diag(Found.getNameLoc(), diag::err_no_member_suggest)
493 << Name << LookupCtx << Found.getLookupName() << SS.getRange()
494 << CodeModificationHint::CreateReplacement(Found.getNameLoc(),
495 Found.getLookupName().getAsString());
496 else
497 Diag(Found.getNameLoc(), diag::err_undeclared_var_use_suggest)
498 << Name << Found.getLookupName()
499 << CodeModificationHint::CreateReplacement(Found.getNameLoc(),
500 Found.getLookupName().getAsString());
Douglas Gregor67dd1d42010-01-07 00:17:44 +0000501
502 if (NamedDecl *ND = Found.getAsSingle<NamedDecl>())
503 Diag(ND->getLocation(), diag::note_previous_decl)
504 << ND->getDeclName();
Douglas Gregor175a6562009-12-31 08:26:35 +0000505 } else
506 Found.clear();
507 }
508
John McCall1bcee0a2009-12-02 08:25:40 +0000509 NamedDecl *SD = Found.getAsSingle<NamedDecl>();
Douglas Gregoredc90502010-02-25 04:46:04 +0000510 if (isAcceptableNestedNameSpecifier(SD)) {
Douglas Gregorc68afe22009-09-03 21:38:09 +0000511 if (!ObjectType.isNull() && !ObjectTypeSearchedInScope) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000512 // C++ [basic.lookup.classref]p4:
Mike Stump1eb44332009-09-09 15:08:12 +0000513 // [...] If the name is found in both contexts, the
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000514 // class-name-or-namespace-name shall refer to the same entity.
515 //
516 // We already found the name in the scope of the object. Now, look
517 // into the current scope (the scope of the postfix-expression) to
Douglas Gregorc68afe22009-09-03 21:38:09 +0000518 // see if we can find the same name there. As above, if there is no
519 // scope, reconstruct the result from the template instantiation itself.
John McCallf36e02d2009-10-09 21:13:30 +0000520 NamedDecl *OuterDecl;
521 if (S) {
Douglas Gregoredc90502010-02-25 04:46:04 +0000522 LookupResult FoundOuter(*this, &II, IdLoc, LookupNestedNameSpecifierName);
John McCalla24dc2e2009-11-17 02:14:36 +0000523 LookupName(FoundOuter, S);
John McCall1bcee0a2009-12-02 08:25:40 +0000524 OuterDecl = FoundOuter.getAsSingle<NamedDecl>();
John McCallf36e02d2009-10-09 21:13:30 +0000525 } else
526 OuterDecl = ScopeLookupResult;
Mike Stump1eb44332009-09-09 15:08:12 +0000527
Douglas Gregoredc90502010-02-25 04:46:04 +0000528 if (isAcceptableNestedNameSpecifier(OuterDecl) &&
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000529 OuterDecl->getCanonicalDecl() != SD->getCanonicalDecl() &&
530 (!isa<TypeDecl>(OuterDecl) || !isa<TypeDecl>(SD) ||
531 !Context.hasSameType(
Douglas Gregorc68afe22009-09-03 21:38:09 +0000532 Context.getTypeDeclType(cast<TypeDecl>(OuterDecl)),
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000533 Context.getTypeDeclType(cast<TypeDecl>(SD))))) {
Chris Lattner46646492009-12-07 01:36:53 +0000534 if (ErrorRecoveryLookup)
535 return 0;
536
Douglas Gregorc68afe22009-09-03 21:38:09 +0000537 Diag(IdLoc, diag::err_nested_name_member_ref_lookup_ambiguous)
538 << &II;
539 Diag(SD->getLocation(), diag::note_ambig_member_ref_object_type)
540 << ObjectType;
541 Diag(OuterDecl->getLocation(), diag::note_ambig_member_ref_scope);
Mike Stump1eb44332009-09-09 15:08:12 +0000542
Chris Lattner46646492009-12-07 01:36:53 +0000543 // Fall through so that we'll pick the name we found in the object
544 // type, since that's probably what the user wanted anyway.
Douglas Gregorc68afe22009-09-03 21:38:09 +0000545 }
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000546 }
Mike Stump1eb44332009-09-09 15:08:12 +0000547
Douglas Gregorab452ba2009-03-26 23:50:42 +0000548 if (NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(SD))
549 return NestedNameSpecifier::Create(Context, Prefix, Namespace);
Mike Stump1eb44332009-09-09 15:08:12 +0000550
Douglas Gregordacd4342009-08-26 00:04:55 +0000551 // FIXME: It would be nice to maintain the namespace alias name, then
552 // see through that alias when resolving the nested-name-specifier down to
553 // a declaration context.
Anders Carlsson81c85c42009-03-28 23:53:49 +0000554 if (NamespaceAliasDecl *Alias = dyn_cast<NamespaceAliasDecl>(SD))
555 return NestedNameSpecifier::Create(Context, Prefix,
Mike Stump1eb44332009-09-09 15:08:12 +0000556
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000557 Alias->getNamespace());
Mike Stump1eb44332009-09-09 15:08:12 +0000558
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000559 QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD));
560 return NestedNameSpecifier::Create(Context, Prefix, false,
561 T.getTypePtr());
562 }
Mike Stump1eb44332009-09-09 15:08:12 +0000563
Chris Lattner46646492009-12-07 01:36:53 +0000564 // Otherwise, we have an error case. If we don't want diagnostics, just
565 // return an error now.
566 if (ErrorRecoveryLookup)
567 return 0;
568
Cedric Venet3d658642009-02-14 20:20:19 +0000569 // If we didn't find anything during our lookup, try again with
570 // ordinary name lookup, which can help us produce better error
571 // messages.
John McCall1bcee0a2009-12-02 08:25:40 +0000572 if (Found.empty()) {
John McCalla24dc2e2009-11-17 02:14:36 +0000573 Found.clear(LookupOrdinaryName);
574 LookupName(Found, S);
John McCallf36e02d2009-10-09 21:13:30 +0000575 }
Mike Stump1eb44332009-09-09 15:08:12 +0000576
Cedric Venet3d658642009-02-14 20:20:19 +0000577 unsigned DiagID;
John McCall1bcee0a2009-12-02 08:25:40 +0000578 if (!Found.empty())
Cedric Venet3d658642009-02-14 20:20:19 +0000579 DiagID = diag::err_expected_class_or_namespace;
Anders Carlssona31d5f72009-08-30 07:09:50 +0000580 else if (SS.isSet()) {
Douglas Gregor3f093272009-10-13 21:16:44 +0000581 Diag(IdLoc, diag::err_no_member) << &II << LookupCtx << SS.getRange();
Anders Carlssona31d5f72009-08-30 07:09:50 +0000582 return 0;
583 } else
Cedric Venet3d658642009-02-14 20:20:19 +0000584 DiagID = diag::err_undeclared_var_use;
Mike Stump1eb44332009-09-09 15:08:12 +0000585
Cedric Venet3d658642009-02-14 20:20:19 +0000586 if (SS.isSet())
587 Diag(IdLoc, DiagID) << &II << SS.getRange();
588 else
589 Diag(IdLoc, DiagID) << &II;
Mike Stump1eb44332009-09-09 15:08:12 +0000590
Cedric Venet3d658642009-02-14 20:20:19 +0000591 return 0;
592}
593
Douglas Gregorc68afe22009-09-03 21:38:09 +0000594/// ActOnCXXNestedNameSpecifier - Called during parsing of a
595/// nested-name-specifier. e.g. for "foo::bar::" we parsed "foo::" and now
596/// we want to resolve "bar::". 'SS' is empty or the previously parsed
597/// nested-name part ("foo::"), 'IdLoc' is the source location of 'bar',
598/// 'CCLoc' is the location of '::' and 'II' is the identifier for 'bar'.
599/// Returns a CXXScopeTy* object representing the C++ scope.
600Sema::CXXScopeTy *Sema::ActOnCXXNestedNameSpecifier(Scope *S,
601 const CXXScopeSpec &SS,
602 SourceLocation IdLoc,
603 SourceLocation CCLoc,
604 IdentifierInfo &II,
605 TypeTy *ObjectTypePtr,
606 bool EnteringContext) {
Mike Stump1eb44332009-09-09 15:08:12 +0000607 return BuildCXXNestedNameSpecifier(S, SS, IdLoc, CCLoc, II,
Douglas Gregorc68afe22009-09-03 21:38:09 +0000608 QualType::getFromOpaquePtr(ObjectTypePtr),
Chris Lattner46646492009-12-07 01:36:53 +0000609 /*ScopeLookupResult=*/0, EnteringContext,
610 false);
611}
612
613/// IsInvalidUnlessNestedName - This method is used for error recovery
614/// purposes to determine whether the specified identifier is only valid as
615/// a nested name specifier, for example a namespace name. It is
616/// conservatively correct to always return false from this method.
617///
618/// The arguments are the same as those passed to ActOnCXXNestedNameSpecifier.
619bool Sema::IsInvalidUnlessNestedName(Scope *S, const CXXScopeSpec &SS,
Douglas Gregoredc90502010-02-25 04:46:04 +0000620 IdentifierInfo &II, TypeTy *ObjectType,
Chris Lattner46646492009-12-07 01:36:53 +0000621 bool EnteringContext) {
622 return BuildCXXNestedNameSpecifier(S, SS, SourceLocation(), SourceLocation(),
Douglas Gregoredc90502010-02-25 04:46:04 +0000623 II, QualType::getFromOpaquePtr(ObjectType),
Chris Lattner46646492009-12-07 01:36:53 +0000624 /*ScopeLookupResult=*/0, EnteringContext,
625 true);
Douglas Gregorc68afe22009-09-03 21:38:09 +0000626}
627
Douglas Gregor39a8de12009-02-25 19:37:18 +0000628Sema::CXXScopeTy *Sema::ActOnCXXNestedNameSpecifier(Scope *S,
629 const CXXScopeSpec &SS,
630 TypeTy *Ty,
631 SourceRange TypeRange,
Douglas Gregoredc90502010-02-25 04:46:04 +0000632 SourceLocation CCLoc) {
Mike Stump1eb44332009-09-09 15:08:12 +0000633 NestedNameSpecifier *Prefix
Douglas Gregor35073692009-03-26 23:56:24 +0000634 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000635 QualType T = GetTypeFromParser(Ty);
Douglas Gregorab452ba2009-03-26 23:50:42 +0000636 return NestedNameSpecifier::Create(Context, Prefix, /*FIXME:*/false,
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000637 T.getTypePtr());
Douglas Gregor39a8de12009-02-25 19:37:18 +0000638}
639
John McCalle7e278b2009-12-11 20:04:54 +0000640bool Sema::ShouldEnterDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
641 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
642
643 NestedNameSpecifier *Qualifier =
644 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
645
646 // There are only two places a well-formed program may qualify a
647 // declarator: first, when defining a namespace or class member
648 // out-of-line, and second, when naming an explicitly-qualified
649 // friend function. The latter case is governed by
650 // C++03 [basic.lookup.unqual]p10:
651 // In a friend declaration naming a member function, a name used
652 // in the function declarator and not part of a template-argument
653 // in a template-id is first looked up in the scope of the member
654 // function's class. If it is not found, or if the name is part of
655 // a template-argument in a template-id, the look up is as
656 // described for unqualified names in the definition of the class
657 // granting friendship.
658 // i.e. we don't push a scope unless it's a class member.
659
660 switch (Qualifier->getKind()) {
661 case NestedNameSpecifier::Global:
662 case NestedNameSpecifier::Namespace:
663 // These are always namespace scopes. We never want to enter a
664 // namespace scope from anything but a file context.
665 return CurContext->getLookupContext()->isFileContext();
666
667 case NestedNameSpecifier::Identifier:
668 case NestedNameSpecifier::TypeSpec:
669 case NestedNameSpecifier::TypeSpecWithTemplate:
670 // These are never namespace scopes.
671 return true;
672 }
673
674 // Silence bogus warning.
675 return false;
676}
677
Cedric Venet3d658642009-02-14 20:20:19 +0000678/// ActOnCXXEnterDeclaratorScope - Called when a C++ scope specifier (global
679/// scope or nested-name-specifier) is parsed, part of a declarator-id.
680/// After this method is called, according to [C++ 3.4.3p3], names should be
681/// looked up in the declarator-id's scope, until the declarator is parsed and
682/// ActOnCXXExitDeclaratorScope is called.
683/// The 'SS' should be a non-empty valid CXXScopeSpec.
Douglas Gregor7dfd0fb2009-09-24 23:39:01 +0000684bool Sema::ActOnCXXEnterDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
Cedric Venet3d658642009-02-14 20:20:19 +0000685 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
John McCall7a1dc562009-12-19 10:49:29 +0000686
687 if (SS.isInvalid()) return true;
688
689 DeclContext *DC = computeDeclContext(SS, true);
690 if (!DC) return true;
691
692 // Before we enter a declarator's context, we need to make sure that
693 // it is a complete declaration context.
694 if (!DC->isDependentContext() && RequireCompleteDeclContext(SS))
695 return true;
696
697 EnterDeclaratorContext(S, DC);
Douglas Gregor7dfd0fb2009-09-24 23:39:01 +0000698 return false;
Cedric Venet3d658642009-02-14 20:20:19 +0000699}
700
701/// ActOnCXXExitDeclaratorScope - Called when a declarator that previously
702/// invoked ActOnCXXEnterDeclaratorScope(), is finished. 'SS' is the same
703/// CXXScopeSpec that was passed to ActOnCXXEnterDeclaratorScope as well.
704/// Used to indicate that names should revert to being looked up in the
705/// defining scope.
706void Sema::ActOnCXXExitDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
707 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
Douglas Gregordacd4342009-08-26 00:04:55 +0000708 if (SS.isInvalid())
709 return;
John McCall7a1dc562009-12-19 10:49:29 +0000710 assert(!SS.isInvalid() && computeDeclContext(SS, true) &&
711 "exiting declarator scope we never really entered");
712 ExitDeclaratorContext(S);
Cedric Venet3d658642009-02-14 20:20:19 +0000713}