blob: 95b79abd8f700a2cb9e19634eb85ca45a7d908b1 [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;
Douglas Gregor43d88632009-11-04 22:49:18 +000079 }
80
81 return 0;
82}
83
Douglas Gregor2dd078a2009-09-02 22:59:36 +000084/// \brief Compute the DeclContext that is associated with the given type.
85///
86/// \param T the type for which we are attempting to find a DeclContext.
87///
Mike Stump1eb44332009-09-09 15:08:12 +000088/// \returns the declaration context represented by the type T,
Douglas Gregor2dd078a2009-09-02 22:59:36 +000089/// or NULL if the declaration context cannot be computed (e.g., because it is
90/// dependent and not the current instantiation).
91DeclContext *Sema::computeDeclContext(QualType T) {
92 if (const TagType *Tag = T->getAs<TagType>())
93 return Tag->getDecl();
Mike Stump1eb44332009-09-09 15:08:12 +000094
Douglas Gregor43d88632009-11-04 22:49:18 +000095 return ::getCurrentInstantiationOf(Context, CurContext, T);
Douglas Gregor2dd078a2009-09-02 22:59:36 +000096}
97
Douglas Gregore4e5b052009-03-19 00:18:19 +000098/// \brief Compute the DeclContext that is associated with the given
99/// scope specifier.
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000100///
101/// \param SS the C++ scope specifier as it appears in the source
102///
103/// \param EnteringContext when true, we will be entering the context of
104/// this scope specifier, so we can retrieve the declaration context of a
105/// class template or class template partial specialization even if it is
106/// not the current instantiation.
107///
108/// \returns the declaration context represented by the scope specifier @p SS,
109/// or NULL if the declaration context cannot be computed (e.g., because it is
110/// dependent and not the current instantiation).
111DeclContext *Sema::computeDeclContext(const CXXScopeSpec &SS,
112 bool EnteringContext) {
Douglas Gregore4e5b052009-03-19 00:18:19 +0000113 if (!SS.isSet() || SS.isInvalid())
Douglas Gregorca5e77f2009-03-18 00:36:05 +0000114 return 0;
Douglas Gregorca5e77f2009-03-18 00:36:05 +0000115
Mike Stump1eb44332009-09-09 15:08:12 +0000116 NestedNameSpecifier *NNS
Douglas Gregor35073692009-03-26 23:56:24 +0000117 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Douglas Gregor42af25f2009-05-11 19:58:34 +0000118 if (NNS->isDependent()) {
119 // If this nested-name-specifier refers to the current
120 // instantiation, return its DeclContext.
121 if (CXXRecordDecl *Record = getCurrentInstantiationOf(NNS))
122 return Record;
Mike Stump1eb44332009-09-09 15:08:12 +0000123
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000124 if (EnteringContext) {
John McCall3cb0ebd2010-03-10 03:28:59 +0000125 const Type *NNSType = NNS->getAsType();
126 if (!NNSType) {
127 // do nothing, fall out
128 } else if (const TemplateSpecializationType *SpecType
129 = NNSType->getAs<TemplateSpecializationType>()) {
Douglas Gregor495c35d2009-08-25 22:51:20 +0000130 // We are entering the context of the nested name specifier, so try to
131 // match the nested name specifier to either a primary class template
132 // or a class template partial specialization.
Mike Stump1eb44332009-09-09 15:08:12 +0000133 if (ClassTemplateDecl *ClassTemplate
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000134 = dyn_cast_or_null<ClassTemplateDecl>(
135 SpecType->getTemplateName().getAsTemplateDecl())) {
Douglas Gregorb88e8882009-07-30 17:40:51 +0000136 QualType ContextType
137 = Context.getCanonicalType(QualType(SpecType, 0));
138
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000139 // If the type of the nested name specifier is the same as the
140 // injected class name of the named class template, we're entering
141 // into that class template definition.
John McCall3cb0ebd2010-03-10 03:28:59 +0000142 QualType Injected
143 = ClassTemplate->getInjectedClassNameSpecialization(Context);
Douglas Gregorb88e8882009-07-30 17:40:51 +0000144 if (Context.hasSameType(Injected, ContextType))
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000145 return ClassTemplate->getTemplatedDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000146
Douglas Gregorb88e8882009-07-30 17:40:51 +0000147 // If the type of the nested name specifier is the same as the
148 // type of one of the class template's class template partial
149 // specializations, we're entering into the definition of that
150 // class template partial specialization.
151 if (ClassTemplatePartialSpecializationDecl *PartialSpec
152 = ClassTemplate->findPartialSpecialization(ContextType))
153 return PartialSpec;
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000154 }
John McCall3cb0ebd2010-03-10 03:28:59 +0000155 } else if (const RecordType *RecordT = NNSType->getAs<RecordType>()) {
Douglas Gregor495c35d2009-08-25 22:51:20 +0000156 // The nested name specifier refers to a member of a class template.
157 return RecordT->getDecl();
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000158 }
159 }
Mike Stump1eb44332009-09-09 15:08:12 +0000160
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000161 return 0;
Douglas Gregor42af25f2009-05-11 19:58:34 +0000162 }
Douglas Gregorab452ba2009-03-26 23:50:42 +0000163
164 switch (NNS->getKind()) {
165 case NestedNameSpecifier::Identifier:
166 assert(false && "Dependent nested-name-specifier has no DeclContext");
167 break;
168
169 case NestedNameSpecifier::Namespace:
170 return NNS->getAsNamespace();
171
172 case NestedNameSpecifier::TypeSpec:
173 case NestedNameSpecifier::TypeSpecWithTemplate: {
Douglas Gregoredc90502010-02-25 04:46:04 +0000174 const TagType *Tag = NNS->getAsType()->getAs<TagType>();
175 assert(Tag && "Non-tag type in nested-name-specifier");
176 return Tag->getDecl();
177 } break;
Douglas Gregorab452ba2009-03-26 23:50:42 +0000178
179 case NestedNameSpecifier::Global:
180 return Context.getTranslationUnitDecl();
181 }
182
Douglas Gregoredc90502010-02-25 04:46:04 +0000183 // Required to silence a GCC warning.
Douglas Gregorab452ba2009-03-26 23:50:42 +0000184 return 0;
Douglas Gregorca5e77f2009-03-18 00:36:05 +0000185}
186
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000187bool Sema::isDependentScopeSpecifier(const CXXScopeSpec &SS) {
188 if (!SS.isSet() || SS.isInvalid())
189 return false;
190
Mike Stump1eb44332009-09-09 15:08:12 +0000191 NestedNameSpecifier *NNS
Douglas Gregor35073692009-03-26 23:56:24 +0000192 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Douglas Gregorab452ba2009-03-26 23:50:42 +0000193 return NNS->isDependent();
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000194}
195
Douglas Gregor42af25f2009-05-11 19:58:34 +0000196// \brief Determine whether this C++ scope specifier refers to an
197// unknown specialization, i.e., a dependent type that is not the
198// current instantiation.
199bool Sema::isUnknownSpecialization(const CXXScopeSpec &SS) {
200 if (!isDependentScopeSpecifier(SS))
201 return false;
202
Mike Stump1eb44332009-09-09 15:08:12 +0000203 NestedNameSpecifier *NNS
Douglas Gregor42af25f2009-05-11 19:58:34 +0000204 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
205 return getCurrentInstantiationOf(NNS) == 0;
206}
207
208/// \brief If the given nested name specifier refers to the current
209/// instantiation, return the declaration that corresponds to that
210/// current instantiation (C++0x [temp.dep.type]p1).
211///
212/// \param NNS a dependent nested name specifier.
213CXXRecordDecl *Sema::getCurrentInstantiationOf(NestedNameSpecifier *NNS) {
214 assert(getLangOptions().CPlusPlus && "Only callable in C++");
215 assert(NNS->isDependent() && "Only dependent nested-name-specifier allowed");
216
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000217 if (!NNS->getAsType())
218 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000219
Douglas Gregor1560def2009-07-31 18:32:42 +0000220 QualType T = QualType(NNS->getAsType(), 0);
Douglas Gregor43d88632009-11-04 22:49:18 +0000221 return ::getCurrentInstantiationOf(Context, CurContext, T);
Douglas Gregor42af25f2009-05-11 19:58:34 +0000222}
223
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000224/// \brief Require that the context specified by SS be complete.
225///
226/// If SS refers to a type, this routine checks whether the type is
227/// complete enough (or can be made complete enough) for name lookup
228/// into the DeclContext. A type that is not yet completed can be
229/// considered "complete enough" if it is a class/struct/union/enum
230/// that is currently being defined. Or, if we have a type that names
231/// a class template specialization that is not a complete type, we
232/// will attempt to instantiate that class template.
233bool Sema::RequireCompleteDeclContext(const CXXScopeSpec &SS) {
234 if (!SS.isSet() || SS.isInvalid())
235 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000236
Douglas Gregor7cdbc582009-07-22 23:48:44 +0000237 DeclContext *DC = computeDeclContext(SS, true);
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000238 if (TagDecl *Tag = dyn_cast<TagDecl>(DC)) {
Douglas Gregora4e8c2a2010-02-05 04:39:02 +0000239 // If this is a dependent type, then we consider it complete.
240 if (Tag->isDependentContext())
241 return false;
242
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000243 // If we're currently defining this type, then lookup into the
244 // type is okay: don't complain that it isn't complete yet.
Ted Kremenek6217b802009-07-29 21:53:49 +0000245 const TagType *TagT = Context.getTypeDeclType(Tag)->getAs<TagType>();
John McCall3cb0ebd2010-03-10 03:28:59 +0000246 if (TagT && TagT->isBeingDefined())
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000247 return false;
248
249 // The type must be complete.
250 return RequireCompleteType(SS.getRange().getBegin(),
251 Context.getTypeDeclType(Tag),
Anders Carlssonb7906612009-08-26 23:45:07 +0000252 PDiag(diag::err_incomplete_nested_name_spec)
253 << SS.getRange());
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000254 }
255
256 return false;
257}
Cedric Venet3d658642009-02-14 20:20:19 +0000258
259/// ActOnCXXGlobalScopeSpecifier - Return the object that represents the
260/// global scope ('::').
261Sema::CXXScopeTy *Sema::ActOnCXXGlobalScopeSpecifier(Scope *S,
262 SourceLocation CCLoc) {
Douglas Gregorab452ba2009-03-26 23:50:42 +0000263 return NestedNameSpecifier::GlobalSpecifier(Context);
Cedric Venet3d658642009-02-14 20:20:19 +0000264}
265
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000266/// \brief Determines whether the given declaration is an valid acceptable
267/// result for name lookup of a nested-name-specifier.
Douglas Gregoredc90502010-02-25 04:46:04 +0000268bool Sema::isAcceptableNestedNameSpecifier(NamedDecl *SD) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000269 if (!SD)
270 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000271
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000272 // Namespace and namespace aliases are fine.
273 if (isa<NamespaceDecl>(SD) || isa<NamespaceAliasDecl>(SD))
274 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000275
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000276 if (!isa<TypeDecl>(SD))
277 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000278
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000279 // Determine whether we have a class (or, in C++0x, an enum) or
280 // a typedef thereof. If so, build the nested-name-specifier.
281 QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD));
282 if (T->isDependentType())
283 return true;
284 else if (TypedefDecl *TD = dyn_cast<TypedefDecl>(SD)) {
285 if (TD->getUnderlyingType()->isRecordType() ||
Mike Stump1eb44332009-09-09 15:08:12 +0000286 (Context.getLangOptions().CPlusPlus0x &&
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000287 TD->getUnderlyingType()->isEnumeralType()))
288 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000289 } else if (isa<RecordDecl>(SD) ||
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000290 (Context.getLangOptions().CPlusPlus0x && isa<EnumDecl>(SD)))
291 return true;
292
293 return false;
294}
295
Douglas Gregorc68afe22009-09-03 21:38:09 +0000296/// \brief If the given nested-name-specifier begins with a bare identifier
Mike Stump1eb44332009-09-09 15:08:12 +0000297/// (e.g., Base::), perform name lookup for that identifier as a
Douglas Gregorc68afe22009-09-03 21:38:09 +0000298/// nested-name-specifier within the given scope, and return the result of that
299/// name lookup.
300NamedDecl *Sema::FindFirstQualifierInScope(Scope *S, NestedNameSpecifier *NNS) {
301 if (!S || !NNS)
302 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000303
Douglas Gregorc68afe22009-09-03 21:38:09 +0000304 while (NNS->getPrefix())
305 NNS = NNS->getPrefix();
Mike Stump1eb44332009-09-09 15:08:12 +0000306
Douglas Gregorc68afe22009-09-03 21:38:09 +0000307 if (NNS->getKind() != NestedNameSpecifier::Identifier)
308 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000309
John McCalla24dc2e2009-11-17 02:14:36 +0000310 LookupResult Found(*this, NNS->getAsIdentifier(), SourceLocation(),
311 LookupNestedNameSpecifierName);
312 LookupName(Found, S);
Douglas Gregorc68afe22009-09-03 21:38:09 +0000313 assert(!Found.isAmbiguous() && "Cannot handle ambiguities here yet");
314
John McCall1bcee0a2009-12-02 08:25:40 +0000315 if (!Found.isSingleResult())
316 return 0;
317
318 NamedDecl *Result = Found.getFoundDecl();
Douglas Gregoredc90502010-02-25 04:46:04 +0000319 if (isAcceptableNestedNameSpecifier(Result))
Douglas Gregorc68afe22009-09-03 21:38:09 +0000320 return Result;
Mike Stump1eb44332009-09-09 15:08:12 +0000321
Douglas Gregorc68afe22009-09-03 21:38:09 +0000322 return 0;
323}
324
Douglas Gregor77549082010-02-24 21:29:12 +0000325bool Sema::isNonTypeNestedNameSpecifier(Scope *S, const CXXScopeSpec &SS,
326 SourceLocation IdLoc,
327 IdentifierInfo &II,
328 TypeTy *ObjectTypePtr) {
329 QualType ObjectType = GetTypeFromParser(ObjectTypePtr);
330 LookupResult Found(*this, &II, IdLoc, LookupNestedNameSpecifierName);
331
332 // Determine where to perform name lookup
333 DeclContext *LookupCtx = 0;
334 bool isDependent = false;
335 if (!ObjectType.isNull()) {
336 // This nested-name-specifier occurs in a member access expression, e.g.,
337 // x->B::f, and we are looking into the type of the object.
338 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
339 LookupCtx = computeDeclContext(ObjectType);
340 isDependent = ObjectType->isDependentType();
341 } else if (SS.isSet()) {
342 // This nested-name-specifier occurs after another nested-name-specifier,
343 // so long into the context associated with the prior nested-name-specifier.
344 LookupCtx = computeDeclContext(SS, false);
345 isDependent = isDependentScopeSpecifier(SS);
346 Found.setContextRange(SS.getRange());
347 }
348
349 if (LookupCtx) {
350 // Perform "qualified" name lookup into the declaration context we
351 // computed, which is either the type of the base of a member access
352 // expression or the declaration context associated with a prior
353 // nested-name-specifier.
354
355 // The declaration context must be complete.
356 if (!LookupCtx->isDependentContext() && RequireCompleteDeclContext(SS))
357 return false;
358
359 LookupQualifiedName(Found, LookupCtx);
360 } else if (isDependent) {
361 return false;
362 } else {
363 LookupName(Found, S);
364 }
365 Found.suppressDiagnostics();
366
367 if (NamedDecl *ND = Found.getAsSingle<NamedDecl>())
368 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
369
370 return false;
371}
372
Douglas Gregorc68afe22009-09-03 21:38:09 +0000373/// \brief Build a new nested-name-specifier for "identifier::", as described
374/// by ActOnCXXNestedNameSpecifier.
375///
376/// This routine differs only slightly from ActOnCXXNestedNameSpecifier, in
377/// that it contains an extra parameter \p ScopeLookupResult, which provides
378/// the result of name lookup within the scope of the nested-name-specifier
Douglas Gregora6e51992009-12-30 16:01:52 +0000379/// that was computed at template definition time.
Chris Lattner46646492009-12-07 01:36:53 +0000380///
381/// If ErrorRecoveryLookup is true, then this call is used to improve error
382/// recovery. This means that it should not emit diagnostics, it should
383/// just return null on failure. It also means it should only return a valid
384/// scope if it *knows* that the result is correct. It should not return in a
385/// dependent context, for example.
Douglas Gregorc68afe22009-09-03 21:38:09 +0000386Sema::CXXScopeTy *Sema::BuildCXXNestedNameSpecifier(Scope *S,
Cedric Venet3d658642009-02-14 20:20:19 +0000387 const CXXScopeSpec &SS,
388 SourceLocation IdLoc,
389 SourceLocation CCLoc,
Douglas Gregor495c35d2009-08-25 22:51:20 +0000390 IdentifierInfo &II,
Douglas Gregorc68afe22009-09-03 21:38:09 +0000391 QualType ObjectType,
392 NamedDecl *ScopeLookupResult,
Chris Lattner46646492009-12-07 01:36:53 +0000393 bool EnteringContext,
394 bool ErrorRecoveryLookup) {
Mike Stump1eb44332009-09-09 15:08:12 +0000395 NestedNameSpecifier *Prefix
Douglas Gregor35073692009-03-26 23:56:24 +0000396 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Mike Stump1eb44332009-09-09 15:08:12 +0000397
John McCalla24dc2e2009-11-17 02:14:36 +0000398 LookupResult Found(*this, &II, IdLoc, LookupNestedNameSpecifierName);
399
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000400 // Determine where to perform name lookup
401 DeclContext *LookupCtx = 0;
402 bool isDependent = false;
Douglas Gregorc68afe22009-09-03 21:38:09 +0000403 if (!ObjectType.isNull()) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000404 // This nested-name-specifier occurs in a member access expression, e.g.,
405 // x->B::f, and we are looking into the type of the object.
406 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000407 LookupCtx = computeDeclContext(ObjectType);
408 isDependent = ObjectType->isDependentType();
409 } else if (SS.isSet()) {
410 // This nested-name-specifier occurs after another nested-name-specifier,
411 // so long into the context associated with the prior nested-name-specifier.
412 LookupCtx = computeDeclContext(SS, EnteringContext);
413 isDependent = isDependentScopeSpecifier(SS);
John McCalla24dc2e2009-11-17 02:14:36 +0000414 Found.setContextRange(SS.getRange());
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000415 }
Mike Stump1eb44332009-09-09 15:08:12 +0000416
John McCalla24dc2e2009-11-17 02:14:36 +0000417
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000418 bool ObjectTypeSearchedInScope = false;
419 if (LookupCtx) {
Mike Stump1eb44332009-09-09 15:08:12 +0000420 // Perform "qualified" name lookup into the declaration context we
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000421 // computed, which is either the type of the base of a member access
Mike Stump1eb44332009-09-09 15:08:12 +0000422 // expression or the declaration context associated with a prior
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000423 // nested-name-specifier.
Mike Stump1eb44332009-09-09 15:08:12 +0000424
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000425 // The declaration context must be complete.
426 if (!LookupCtx->isDependentContext() && RequireCompleteDeclContext(SS))
427 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000428
John McCalla24dc2e2009-11-17 02:14:36 +0000429 LookupQualifiedName(Found, LookupCtx);
Mike Stump1eb44332009-09-09 15:08:12 +0000430
John McCalla24dc2e2009-11-17 02:14:36 +0000431 if (!ObjectType.isNull() && Found.empty()) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000432 // C++ [basic.lookup.classref]p4:
433 // If the id-expression in a class member access is a qualified-id of
Mike Stump1eb44332009-09-09 15:08:12 +0000434 // the form
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000435 //
436 // class-name-or-namespace-name::...
437 //
Mike Stump1eb44332009-09-09 15:08:12 +0000438 // the class-name-or-namespace-name following the . or -> operator is
439 // looked up both in the context of the entire postfix-expression and in
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000440 // the scope of the class of the object expression. If the name is found
Mike Stump1eb44332009-09-09 15:08:12 +0000441 // only in the scope of the class of the object expression, the name
442 // shall refer to a class-name. If the name is found only in the
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000443 // context of the entire postfix-expression, the name shall refer to a
444 // class-name or namespace-name. [...]
445 //
446 // Qualified name lookup into a class will not find a namespace-name,
Mike Stump1eb44332009-09-09 15:08:12 +0000447 // so we do not need to diagnoste that case specifically. However,
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000448 // this qualified name lookup may find nothing. In that case, perform
Mike Stump1eb44332009-09-09 15:08:12 +0000449 // unqualified name lookup in the given scope (if available) or
Douglas Gregorc68afe22009-09-03 21:38:09 +0000450 // reconstruct the result from when name lookup was performed at template
451 // definition time.
452 if (S)
John McCalla24dc2e2009-11-17 02:14:36 +0000453 LookupName(Found, S);
John McCallf36e02d2009-10-09 21:13:30 +0000454 else if (ScopeLookupResult)
455 Found.addDecl(ScopeLookupResult);
Mike Stump1eb44332009-09-09 15:08:12 +0000456
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000457 ObjectTypeSearchedInScope = true;
458 }
459 } else if (isDependent) {
Chris Lattner46646492009-12-07 01:36:53 +0000460 // Don't speculate if we're just trying to improve error recovery.
461 if (ErrorRecoveryLookup)
462 return 0;
463
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000464 // We were not able to compute the declaration context for a dependent
Mike Stump1eb44332009-09-09 15:08:12 +0000465 // base object type or prior nested-name-specifier, so this
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000466 // nested-name-specifier refers to an unknown specialization. Just build
467 // a dependent nested-name-specifier.
Douglas Gregor2700dcd2009-09-02 23:58:38 +0000468 if (!Prefix)
469 return NestedNameSpecifier::Create(Context, &II);
Mike Stump1eb44332009-09-09 15:08:12 +0000470
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000471 return NestedNameSpecifier::Create(Context, Prefix, &II);
472 } else {
473 // Perform unqualified name lookup in the current scope.
John McCalla24dc2e2009-11-17 02:14:36 +0000474 LookupName(Found, S);
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000475 }
Mike Stump1eb44332009-09-09 15:08:12 +0000476
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000477 // FIXME: Deal with ambiguities cleanly.
Douglas Gregor175a6562009-12-31 08:26:35 +0000478
479 if (Found.empty() && !ErrorRecoveryLookup) {
480 // We haven't found anything, and we're not recovering from a
481 // different kind of error, so look for typos.
482 DeclarationName Name = Found.getLookupName();
483 if (CorrectTypo(Found, S, &SS, LookupCtx, EnteringContext) &&
484 Found.isSingleResult() &&
Douglas Gregoredc90502010-02-25 04:46:04 +0000485 isAcceptableNestedNameSpecifier(Found.getAsSingle<NamedDecl>())) {
Douglas Gregor175a6562009-12-31 08:26:35 +0000486 if (LookupCtx)
487 Diag(Found.getNameLoc(), diag::err_no_member_suggest)
488 << Name << LookupCtx << Found.getLookupName() << SS.getRange()
489 << CodeModificationHint::CreateReplacement(Found.getNameLoc(),
490 Found.getLookupName().getAsString());
491 else
492 Diag(Found.getNameLoc(), diag::err_undeclared_var_use_suggest)
493 << Name << Found.getLookupName()
494 << CodeModificationHint::CreateReplacement(Found.getNameLoc(),
495 Found.getLookupName().getAsString());
Douglas Gregor67dd1d42010-01-07 00:17:44 +0000496
497 if (NamedDecl *ND = Found.getAsSingle<NamedDecl>())
498 Diag(ND->getLocation(), diag::note_previous_decl)
499 << ND->getDeclName();
Douglas Gregor175a6562009-12-31 08:26:35 +0000500 } else
501 Found.clear();
502 }
503
John McCall1bcee0a2009-12-02 08:25:40 +0000504 NamedDecl *SD = Found.getAsSingle<NamedDecl>();
Douglas Gregoredc90502010-02-25 04:46:04 +0000505 if (isAcceptableNestedNameSpecifier(SD)) {
Douglas Gregorc68afe22009-09-03 21:38:09 +0000506 if (!ObjectType.isNull() && !ObjectTypeSearchedInScope) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000507 // C++ [basic.lookup.classref]p4:
Mike Stump1eb44332009-09-09 15:08:12 +0000508 // [...] If the name is found in both contexts, the
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000509 // class-name-or-namespace-name shall refer to the same entity.
510 //
511 // We already found the name in the scope of the object. Now, look
512 // into the current scope (the scope of the postfix-expression) to
Douglas Gregorc68afe22009-09-03 21:38:09 +0000513 // see if we can find the same name there. As above, if there is no
514 // scope, reconstruct the result from the template instantiation itself.
John McCallf36e02d2009-10-09 21:13:30 +0000515 NamedDecl *OuterDecl;
516 if (S) {
Douglas Gregoredc90502010-02-25 04:46:04 +0000517 LookupResult FoundOuter(*this, &II, IdLoc, LookupNestedNameSpecifierName);
John McCalla24dc2e2009-11-17 02:14:36 +0000518 LookupName(FoundOuter, S);
John McCall1bcee0a2009-12-02 08:25:40 +0000519 OuterDecl = FoundOuter.getAsSingle<NamedDecl>();
John McCallf36e02d2009-10-09 21:13:30 +0000520 } else
521 OuterDecl = ScopeLookupResult;
Mike Stump1eb44332009-09-09 15:08:12 +0000522
Douglas Gregoredc90502010-02-25 04:46:04 +0000523 if (isAcceptableNestedNameSpecifier(OuterDecl) &&
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000524 OuterDecl->getCanonicalDecl() != SD->getCanonicalDecl() &&
525 (!isa<TypeDecl>(OuterDecl) || !isa<TypeDecl>(SD) ||
526 !Context.hasSameType(
Douglas Gregorc68afe22009-09-03 21:38:09 +0000527 Context.getTypeDeclType(cast<TypeDecl>(OuterDecl)),
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000528 Context.getTypeDeclType(cast<TypeDecl>(SD))))) {
Chris Lattner46646492009-12-07 01:36:53 +0000529 if (ErrorRecoveryLookup)
530 return 0;
531
Douglas Gregorc68afe22009-09-03 21:38:09 +0000532 Diag(IdLoc, diag::err_nested_name_member_ref_lookup_ambiguous)
533 << &II;
534 Diag(SD->getLocation(), diag::note_ambig_member_ref_object_type)
535 << ObjectType;
536 Diag(OuterDecl->getLocation(), diag::note_ambig_member_ref_scope);
Mike Stump1eb44332009-09-09 15:08:12 +0000537
Chris Lattner46646492009-12-07 01:36:53 +0000538 // Fall through so that we'll pick the name we found in the object
539 // type, since that's probably what the user wanted anyway.
Douglas Gregorc68afe22009-09-03 21:38:09 +0000540 }
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000541 }
Mike Stump1eb44332009-09-09 15:08:12 +0000542
Douglas Gregorab452ba2009-03-26 23:50:42 +0000543 if (NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(SD))
544 return NestedNameSpecifier::Create(Context, Prefix, Namespace);
Mike Stump1eb44332009-09-09 15:08:12 +0000545
Douglas Gregordacd4342009-08-26 00:04:55 +0000546 // FIXME: It would be nice to maintain the namespace alias name, then
547 // see through that alias when resolving the nested-name-specifier down to
548 // a declaration context.
Anders Carlsson81c85c42009-03-28 23:53:49 +0000549 if (NamespaceAliasDecl *Alias = dyn_cast<NamespaceAliasDecl>(SD))
550 return NestedNameSpecifier::Create(Context, Prefix,
Mike Stump1eb44332009-09-09 15:08:12 +0000551
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000552 Alias->getNamespace());
Mike Stump1eb44332009-09-09 15:08:12 +0000553
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000554 QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD));
555 return NestedNameSpecifier::Create(Context, Prefix, false,
556 T.getTypePtr());
557 }
Mike Stump1eb44332009-09-09 15:08:12 +0000558
Chris Lattner46646492009-12-07 01:36:53 +0000559 // Otherwise, we have an error case. If we don't want diagnostics, just
560 // return an error now.
561 if (ErrorRecoveryLookup)
562 return 0;
563
Cedric Venet3d658642009-02-14 20:20:19 +0000564 // If we didn't find anything during our lookup, try again with
565 // ordinary name lookup, which can help us produce better error
566 // messages.
John McCall1bcee0a2009-12-02 08:25:40 +0000567 if (Found.empty()) {
John McCalla24dc2e2009-11-17 02:14:36 +0000568 Found.clear(LookupOrdinaryName);
569 LookupName(Found, S);
John McCallf36e02d2009-10-09 21:13:30 +0000570 }
Mike Stump1eb44332009-09-09 15:08:12 +0000571
Cedric Venet3d658642009-02-14 20:20:19 +0000572 unsigned DiagID;
John McCall1bcee0a2009-12-02 08:25:40 +0000573 if (!Found.empty())
Cedric Venet3d658642009-02-14 20:20:19 +0000574 DiagID = diag::err_expected_class_or_namespace;
Anders Carlssona31d5f72009-08-30 07:09:50 +0000575 else if (SS.isSet()) {
Douglas Gregor3f093272009-10-13 21:16:44 +0000576 Diag(IdLoc, diag::err_no_member) << &II << LookupCtx << SS.getRange();
Anders Carlssona31d5f72009-08-30 07:09:50 +0000577 return 0;
578 } else
Cedric Venet3d658642009-02-14 20:20:19 +0000579 DiagID = diag::err_undeclared_var_use;
Mike Stump1eb44332009-09-09 15:08:12 +0000580
Cedric Venet3d658642009-02-14 20:20:19 +0000581 if (SS.isSet())
582 Diag(IdLoc, DiagID) << &II << SS.getRange();
583 else
584 Diag(IdLoc, DiagID) << &II;
Mike Stump1eb44332009-09-09 15:08:12 +0000585
Cedric Venet3d658642009-02-14 20:20:19 +0000586 return 0;
587}
588
Douglas Gregorc68afe22009-09-03 21:38:09 +0000589/// ActOnCXXNestedNameSpecifier - Called during parsing of a
590/// nested-name-specifier. e.g. for "foo::bar::" we parsed "foo::" and now
591/// we want to resolve "bar::". 'SS' is empty or the previously parsed
592/// nested-name part ("foo::"), 'IdLoc' is the source location of 'bar',
593/// 'CCLoc' is the location of '::' and 'II' is the identifier for 'bar'.
594/// Returns a CXXScopeTy* object representing the C++ scope.
595Sema::CXXScopeTy *Sema::ActOnCXXNestedNameSpecifier(Scope *S,
596 const CXXScopeSpec &SS,
597 SourceLocation IdLoc,
598 SourceLocation CCLoc,
599 IdentifierInfo &II,
600 TypeTy *ObjectTypePtr,
601 bool EnteringContext) {
Mike Stump1eb44332009-09-09 15:08:12 +0000602 return BuildCXXNestedNameSpecifier(S, SS, IdLoc, CCLoc, II,
Douglas Gregorc68afe22009-09-03 21:38:09 +0000603 QualType::getFromOpaquePtr(ObjectTypePtr),
Chris Lattner46646492009-12-07 01:36:53 +0000604 /*ScopeLookupResult=*/0, EnteringContext,
605 false);
606}
607
608/// IsInvalidUnlessNestedName - This method is used for error recovery
609/// purposes to determine whether the specified identifier is only valid as
610/// a nested name specifier, for example a namespace name. It is
611/// conservatively correct to always return false from this method.
612///
613/// The arguments are the same as those passed to ActOnCXXNestedNameSpecifier.
614bool Sema::IsInvalidUnlessNestedName(Scope *S, const CXXScopeSpec &SS,
Douglas Gregoredc90502010-02-25 04:46:04 +0000615 IdentifierInfo &II, TypeTy *ObjectType,
Chris Lattner46646492009-12-07 01:36:53 +0000616 bool EnteringContext) {
617 return BuildCXXNestedNameSpecifier(S, SS, SourceLocation(), SourceLocation(),
Douglas Gregoredc90502010-02-25 04:46:04 +0000618 II, QualType::getFromOpaquePtr(ObjectType),
Chris Lattner46646492009-12-07 01:36:53 +0000619 /*ScopeLookupResult=*/0, EnteringContext,
620 true);
Douglas Gregorc68afe22009-09-03 21:38:09 +0000621}
622
Douglas Gregor39a8de12009-02-25 19:37:18 +0000623Sema::CXXScopeTy *Sema::ActOnCXXNestedNameSpecifier(Scope *S,
624 const CXXScopeSpec &SS,
625 TypeTy *Ty,
626 SourceRange TypeRange,
Douglas Gregoredc90502010-02-25 04:46:04 +0000627 SourceLocation CCLoc) {
Mike Stump1eb44332009-09-09 15:08:12 +0000628 NestedNameSpecifier *Prefix
Douglas Gregor35073692009-03-26 23:56:24 +0000629 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000630 QualType T = GetTypeFromParser(Ty);
Douglas Gregorab452ba2009-03-26 23:50:42 +0000631 return NestedNameSpecifier::Create(Context, Prefix, /*FIXME:*/false,
Douglas Gregor3f5b61c2009-05-14 00:28:11 +0000632 T.getTypePtr());
Douglas Gregor39a8de12009-02-25 19:37:18 +0000633}
634
John McCalle7e278b2009-12-11 20:04:54 +0000635bool Sema::ShouldEnterDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
636 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
637
638 NestedNameSpecifier *Qualifier =
639 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
640
641 // There are only two places a well-formed program may qualify a
642 // declarator: first, when defining a namespace or class member
643 // out-of-line, and second, when naming an explicitly-qualified
644 // friend function. The latter case is governed by
645 // C++03 [basic.lookup.unqual]p10:
646 // In a friend declaration naming a member function, a name used
647 // in the function declarator and not part of a template-argument
648 // in a template-id is first looked up in the scope of the member
649 // function's class. If it is not found, or if the name is part of
650 // a template-argument in a template-id, the look up is as
651 // described for unqualified names in the definition of the class
652 // granting friendship.
653 // i.e. we don't push a scope unless it's a class member.
654
655 switch (Qualifier->getKind()) {
656 case NestedNameSpecifier::Global:
657 case NestedNameSpecifier::Namespace:
658 // These are always namespace scopes. We never want to enter a
659 // namespace scope from anything but a file context.
660 return CurContext->getLookupContext()->isFileContext();
661
662 case NestedNameSpecifier::Identifier:
663 case NestedNameSpecifier::TypeSpec:
664 case NestedNameSpecifier::TypeSpecWithTemplate:
665 // These are never namespace scopes.
666 return true;
667 }
668
669 // Silence bogus warning.
670 return false;
671}
672
Cedric Venet3d658642009-02-14 20:20:19 +0000673/// ActOnCXXEnterDeclaratorScope - Called when a C++ scope specifier (global
674/// scope or nested-name-specifier) is parsed, part of a declarator-id.
675/// After this method is called, according to [C++ 3.4.3p3], names should be
676/// looked up in the declarator-id's scope, until the declarator is parsed and
677/// ActOnCXXExitDeclaratorScope is called.
678/// The 'SS' should be a non-empty valid CXXScopeSpec.
Douglas Gregor7dfd0fb2009-09-24 23:39:01 +0000679bool Sema::ActOnCXXEnterDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
Cedric Venet3d658642009-02-14 20:20:19 +0000680 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
John McCall7a1dc562009-12-19 10:49:29 +0000681
682 if (SS.isInvalid()) return true;
683
684 DeclContext *DC = computeDeclContext(SS, true);
685 if (!DC) return true;
686
687 // Before we enter a declarator's context, we need to make sure that
688 // it is a complete declaration context.
689 if (!DC->isDependentContext() && RequireCompleteDeclContext(SS))
690 return true;
691
692 EnterDeclaratorContext(S, DC);
Douglas Gregor7dfd0fb2009-09-24 23:39:01 +0000693 return false;
Cedric Venet3d658642009-02-14 20:20:19 +0000694}
695
696/// ActOnCXXExitDeclaratorScope - Called when a declarator that previously
697/// invoked ActOnCXXEnterDeclaratorScope(), is finished. 'SS' is the same
698/// CXXScopeSpec that was passed to ActOnCXXEnterDeclaratorScope as well.
699/// Used to indicate that names should revert to being looked up in the
700/// defining scope.
701void Sema::ActOnCXXExitDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
702 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
Douglas Gregordacd4342009-08-26 00:04:55 +0000703 if (SS.isInvalid())
704 return;
John McCall7a1dc562009-12-19 10:49:29 +0000705 assert(!SS.isInvalid() && computeDeclContext(SS, true) &&
706 "exiting declarator scope we never really entered");
707 ExitDeclaratorContext(S);
Cedric Venet3d658642009-02-14 20:20:19 +0000708}