blob: 5f8c9c62a4092a63faa5a665c8694c4e523aaae8 [file] [log] [blame]
Cedric Venet3d658642009-02-14 20:20:19 +00001//===--- SemaCXXScopeSpec.cpp - Semantic Analysis for C++ scope specifiers-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements C++ semantic analysis for scope specifiers.
11//
12//===----------------------------------------------------------------------===//
13
John McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
Douglas Gregore737f502010-08-12 20:07:10 +000015#include "clang/Sema/Lookup.h"
Cedric Venet3d658642009-02-14 20:20:19 +000016#include "clang/AST/ASTContext.h"
Douglas Gregor42af25f2009-05-11 19:58:34 +000017#include "clang/AST/DeclTemplate.h"
Douglas Gregorfe85ced2009-08-06 03:17:00 +000018#include "clang/AST/ExprCXX.h"
Douglas Gregore4e5b052009-03-19 00:18:19 +000019#include "clang/AST/NestedNameSpecifier.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000020#include "clang/Basic/PartialDiagnostic.h"
John McCall19510852010-08-20 18:27:03 +000021#include "clang/Sema/DeclSpec.h"
Douglas Gregor2e4c34a2011-02-24 00:17:56 +000022#include "TypeLocBuilder.h"
Cedric Venet3d658642009-02-14 20:20:19 +000023#include "llvm/ADT/STLExtras.h"
Douglas Gregor7551c182009-07-22 00:28:09 +000024#include "llvm/Support/raw_ostream.h"
Cedric Venet3d658642009-02-14 20:20:19 +000025using namespace clang;
26
Douglas Gregor43d88632009-11-04 22:49:18 +000027/// \brief Find the current instantiation that associated with the given type.
Douglas Gregord9ea1802011-02-19 19:24:40 +000028static CXXRecordDecl *getCurrentInstantiationOf(QualType T,
29 DeclContext *CurContext) {
Douglas Gregor43d88632009-11-04 22:49:18 +000030 if (T.isNull())
31 return 0;
John McCall31f17ec2010-04-27 00:57:59 +000032
33 const Type *Ty = T->getCanonicalTypeInternal().getTypePtr();
Douglas Gregord9ea1802011-02-19 19:24:40 +000034 if (const RecordType *RecordTy = dyn_cast<RecordType>(Ty)) {
35 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordTy->getDecl());
36 if (!T->isDependentType())
37 return Record;
38
39 // This may be a member of a class template or class template partial
40 // specialization. If it's part of the current semantic context, then it's
41 // an injected-class-name;
42 for (; !CurContext->isFileContext(); CurContext = CurContext->getParent())
43 if (CurContext->Equals(Record))
44 return Record;
45
46 return 0;
47 } else if (isa<InjectedClassNameType>(Ty))
John McCall31f17ec2010-04-27 00:57:59 +000048 return cast<InjectedClassNameType>(Ty)->getDecl();
49 else
50 return 0;
Douglas Gregor43d88632009-11-04 22:49:18 +000051}
52
Douglas Gregor2dd078a2009-09-02 22:59:36 +000053/// \brief Compute the DeclContext that is associated with the given type.
54///
55/// \param T the type for which we are attempting to find a DeclContext.
56///
Mike Stump1eb44332009-09-09 15:08:12 +000057/// \returns the declaration context represented by the type T,
Douglas Gregor2dd078a2009-09-02 22:59:36 +000058/// or NULL if the declaration context cannot be computed (e.g., because it is
59/// dependent and not the current instantiation).
60DeclContext *Sema::computeDeclContext(QualType T) {
Douglas Gregord9ea1802011-02-19 19:24:40 +000061 if (!T->isDependentType())
62 if (const TagType *Tag = T->getAs<TagType>())
63 return Tag->getDecl();
Mike Stump1eb44332009-09-09 15:08:12 +000064
Douglas Gregord9ea1802011-02-19 19:24:40 +000065 return ::getCurrentInstantiationOf(T, CurContext);
Douglas Gregor2dd078a2009-09-02 22:59:36 +000066}
67
Douglas Gregore4e5b052009-03-19 00:18:19 +000068/// \brief Compute the DeclContext that is associated with the given
69/// scope specifier.
Douglas Gregorf59a56e2009-07-21 23:53:31 +000070///
71/// \param SS the C++ scope specifier as it appears in the source
72///
73/// \param EnteringContext when true, we will be entering the context of
74/// this scope specifier, so we can retrieve the declaration context of a
75/// class template or class template partial specialization even if it is
76/// not the current instantiation.
77///
78/// \returns the declaration context represented by the scope specifier @p SS,
79/// or NULL if the declaration context cannot be computed (e.g., because it is
80/// dependent and not the current instantiation).
81DeclContext *Sema::computeDeclContext(const CXXScopeSpec &SS,
82 bool EnteringContext) {
Douglas Gregore4e5b052009-03-19 00:18:19 +000083 if (!SS.isSet() || SS.isInvalid())
Douglas Gregorca5e77f2009-03-18 00:36:05 +000084 return 0;
Douglas Gregorca5e77f2009-03-18 00:36:05 +000085
Mike Stump1eb44332009-09-09 15:08:12 +000086 NestedNameSpecifier *NNS
Douglas Gregor35073692009-03-26 23:56:24 +000087 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Douglas Gregor42af25f2009-05-11 19:58:34 +000088 if (NNS->isDependent()) {
89 // If this nested-name-specifier refers to the current
90 // instantiation, return its DeclContext.
91 if (CXXRecordDecl *Record = getCurrentInstantiationOf(NNS))
92 return Record;
Mike Stump1eb44332009-09-09 15:08:12 +000093
Douglas Gregorf59a56e2009-07-21 23:53:31 +000094 if (EnteringContext) {
John McCall3cb0ebd2010-03-10 03:28:59 +000095 const Type *NNSType = NNS->getAsType();
96 if (!NNSType) {
Richard Smith3e4c6c42011-05-05 21:57:07 +000097 return 0;
98 }
99
100 // Look through type alias templates, per C++0x [temp.dep.type]p1.
101 NNSType = Context.getCanonicalType(NNSType);
102 if (const TemplateSpecializationType *SpecType
103 = NNSType->getAs<TemplateSpecializationType>()) {
Douglas Gregor495c35d2009-08-25 22:51:20 +0000104 // We are entering the context of the nested name specifier, so try to
105 // match the nested name specifier to either a primary class template
106 // or a class template partial specialization.
Mike Stump1eb44332009-09-09 15:08:12 +0000107 if (ClassTemplateDecl *ClassTemplate
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000108 = dyn_cast_or_null<ClassTemplateDecl>(
109 SpecType->getTemplateName().getAsTemplateDecl())) {
Douglas Gregorb88e8882009-07-30 17:40:51 +0000110 QualType ContextType
111 = Context.getCanonicalType(QualType(SpecType, 0));
112
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000113 // If the type of the nested name specifier is the same as the
114 // injected class name of the named class template, we're entering
115 // into that class template definition.
John McCall3cb0ebd2010-03-10 03:28:59 +0000116 QualType Injected
Douglas Gregor24bae922010-07-08 18:37:38 +0000117 = ClassTemplate->getInjectedClassNameSpecialization();
Douglas Gregorb88e8882009-07-30 17:40:51 +0000118 if (Context.hasSameType(Injected, ContextType))
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000119 return ClassTemplate->getTemplatedDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000120
Douglas Gregorb88e8882009-07-30 17:40:51 +0000121 // If the type of the nested name specifier is the same as the
122 // type of one of the class template's class template partial
123 // specializations, we're entering into the definition of that
124 // class template partial specialization.
125 if (ClassTemplatePartialSpecializationDecl *PartialSpec
126 = ClassTemplate->findPartialSpecialization(ContextType))
127 return PartialSpec;
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000128 }
John McCall3cb0ebd2010-03-10 03:28:59 +0000129 } else if (const RecordType *RecordT = NNSType->getAs<RecordType>()) {
Douglas Gregor495c35d2009-08-25 22:51:20 +0000130 // The nested name specifier refers to a member of a class template.
131 return RecordT->getDecl();
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000132 }
133 }
Mike Stump1eb44332009-09-09 15:08:12 +0000134
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000135 return 0;
Douglas Gregor42af25f2009-05-11 19:58:34 +0000136 }
Douglas Gregorab452ba2009-03-26 23:50:42 +0000137
138 switch (NNS->getKind()) {
139 case NestedNameSpecifier::Identifier:
140 assert(false && "Dependent nested-name-specifier has no DeclContext");
141 break;
142
143 case NestedNameSpecifier::Namespace:
144 return NNS->getAsNamespace();
145
Douglas Gregor14aba762011-02-24 02:36:08 +0000146 case NestedNameSpecifier::NamespaceAlias:
147 return NNS->getAsNamespaceAlias()->getNamespace();
148
Douglas Gregorab452ba2009-03-26 23:50:42 +0000149 case NestedNameSpecifier::TypeSpec:
150 case NestedNameSpecifier::TypeSpecWithTemplate: {
Douglas Gregoredc90502010-02-25 04:46:04 +0000151 const TagType *Tag = NNS->getAsType()->getAs<TagType>();
152 assert(Tag && "Non-tag type in nested-name-specifier");
153 return Tag->getDecl();
154 } break;
Douglas Gregorab452ba2009-03-26 23:50:42 +0000155
156 case NestedNameSpecifier::Global:
157 return Context.getTranslationUnitDecl();
158 }
159
Douglas Gregoredc90502010-02-25 04:46:04 +0000160 // Required to silence a GCC warning.
Douglas Gregorab452ba2009-03-26 23:50:42 +0000161 return 0;
Douglas Gregorca5e77f2009-03-18 00:36:05 +0000162}
163
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000164bool Sema::isDependentScopeSpecifier(const CXXScopeSpec &SS) {
165 if (!SS.isSet() || SS.isInvalid())
166 return false;
167
Mike Stump1eb44332009-09-09 15:08:12 +0000168 NestedNameSpecifier *NNS
Douglas Gregor35073692009-03-26 23:56:24 +0000169 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Douglas Gregorab452ba2009-03-26 23:50:42 +0000170 return NNS->isDependent();
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000171}
172
Douglas Gregor42af25f2009-05-11 19:58:34 +0000173// \brief Determine whether this C++ scope specifier refers to an
174// unknown specialization, i.e., a dependent type that is not the
175// current instantiation.
176bool Sema::isUnknownSpecialization(const CXXScopeSpec &SS) {
177 if (!isDependentScopeSpecifier(SS))
178 return false;
179
Mike Stump1eb44332009-09-09 15:08:12 +0000180 NestedNameSpecifier *NNS
Douglas Gregor42af25f2009-05-11 19:58:34 +0000181 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
182 return getCurrentInstantiationOf(NNS) == 0;
183}
184
185/// \brief If the given nested name specifier refers to the current
186/// instantiation, return the declaration that corresponds to that
187/// current instantiation (C++0x [temp.dep.type]p1).
188///
189/// \param NNS a dependent nested name specifier.
190CXXRecordDecl *Sema::getCurrentInstantiationOf(NestedNameSpecifier *NNS) {
191 assert(getLangOptions().CPlusPlus && "Only callable in C++");
192 assert(NNS->isDependent() && "Only dependent nested-name-specifier allowed");
193
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000194 if (!NNS->getAsType())
195 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000196
Douglas Gregor1560def2009-07-31 18:32:42 +0000197 QualType T = QualType(NNS->getAsType(), 0);
Douglas Gregord9ea1802011-02-19 19:24:40 +0000198 return ::getCurrentInstantiationOf(T, CurContext);
Douglas Gregor42af25f2009-05-11 19:58:34 +0000199}
200
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000201/// \brief Require that the context specified by SS be complete.
202///
203/// If SS refers to a type, this routine checks whether the type is
204/// complete enough (or can be made complete enough) for name lookup
205/// into the DeclContext. A type that is not yet completed can be
206/// considered "complete enough" if it is a class/struct/union/enum
207/// that is currently being defined. Or, if we have a type that names
208/// a class template specialization that is not a complete type, we
209/// will attempt to instantiate that class template.
John McCall77bb1aa2010-05-01 00:40:08 +0000210bool Sema::RequireCompleteDeclContext(CXXScopeSpec &SS,
211 DeclContext *DC) {
212 assert(DC != 0 && "given null context");
Mike Stump1eb44332009-09-09 15:08:12 +0000213
John McCall9dc71d22011-07-06 06:57:57 +0000214 if (TagDecl *tag = dyn_cast<TagDecl>(DC)) {
Douglas Gregora4e8c2a2010-02-05 04:39:02 +0000215 // If this is a dependent type, then we consider it complete.
John McCall9dc71d22011-07-06 06:57:57 +0000216 if (tag->isDependentContext())
Douglas Gregora4e8c2a2010-02-05 04:39:02 +0000217 return false;
218
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000219 // If we're currently defining this type, then lookup into the
220 // type is okay: don't complain that it isn't complete yet.
John McCall9dc71d22011-07-06 06:57:57 +0000221 QualType type = Context.getTypeDeclType(tag);
222 const TagType *tagType = type->getAs<TagType>();
223 if (tagType && tagType->isBeingDefined())
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000224 return false;
225
John McCall9dc71d22011-07-06 06:57:57 +0000226 SourceLocation loc = SS.getLastQualifierNameLoc();
227 if (loc.isInvalid()) loc = SS.getRange().getBegin();
228
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000229 // The type must be complete.
John McCall9dc71d22011-07-06 06:57:57 +0000230 if (RequireCompleteType(loc, type,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000231 PDiag(diag::err_incomplete_nested_name_spec)
John McCall77bb1aa2010-05-01 00:40:08 +0000232 << SS.getRange())) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000233 SS.SetInvalid(SS.getRange());
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000234 return true;
235 }
John McCall9dc71d22011-07-06 06:57:57 +0000236
237 // Fixed enum types are complete, but they aren't valid as scopes
238 // until we see a definition, so awkwardly pull out this special
239 // case.
240 if (const EnumType *enumType = dyn_cast_or_null<EnumType>(tagType)) {
241 if (!enumType->getDecl()->isDefinition()) {
242 Diag(loc, diag::err_incomplete_nested_name_spec)
243 << type << SS.getRange();
244 SS.SetInvalid(SS.getRange());
245 return true;
246 }
247 }
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000248 }
249
250 return false;
251}
Cedric Venet3d658642009-02-14 20:20:19 +0000252
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000253bool Sema::ActOnCXXGlobalScopeSpecifier(Scope *S, SourceLocation CCLoc,
254 CXXScopeSpec &SS) {
255 SS.MakeGlobal(Context, CCLoc);
256 return false;
Cedric Venet3d658642009-02-14 20:20:19 +0000257}
258
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000259/// \brief Determines whether the given declaration is an valid acceptable
260/// result for name lookup of a nested-name-specifier.
Douglas Gregoredc90502010-02-25 04:46:04 +0000261bool Sema::isAcceptableNestedNameSpecifier(NamedDecl *SD) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000262 if (!SD)
263 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000264
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000265 // Namespace and namespace aliases are fine.
266 if (isa<NamespaceDecl>(SD) || isa<NamespaceAliasDecl>(SD))
267 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000268
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000269 if (!isa<TypeDecl>(SD))
270 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000271
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000272 // Determine whether we have a class (or, in C++0x, an enum) or
273 // a typedef thereof. If so, build the nested-name-specifier.
274 QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD));
275 if (T->isDependentType())
276 return true;
Richard Smith162e1c12011-04-15 14:24:37 +0000277 else if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(SD)) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000278 if (TD->getUnderlyingType()->isRecordType() ||
Mike Stump1eb44332009-09-09 15:08:12 +0000279 (Context.getLangOptions().CPlusPlus0x &&
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000280 TD->getUnderlyingType()->isEnumeralType()))
281 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000282 } else if (isa<RecordDecl>(SD) ||
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000283 (Context.getLangOptions().CPlusPlus0x && isa<EnumDecl>(SD)))
284 return true;
285
286 return false;
287}
288
Douglas Gregorc68afe22009-09-03 21:38:09 +0000289/// \brief If the given nested-name-specifier begins with a bare identifier
Mike Stump1eb44332009-09-09 15:08:12 +0000290/// (e.g., Base::), perform name lookup for that identifier as a
Douglas Gregorc68afe22009-09-03 21:38:09 +0000291/// nested-name-specifier within the given scope, and return the result of that
292/// name lookup.
293NamedDecl *Sema::FindFirstQualifierInScope(Scope *S, NestedNameSpecifier *NNS) {
294 if (!S || !NNS)
295 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000296
Douglas Gregorc68afe22009-09-03 21:38:09 +0000297 while (NNS->getPrefix())
298 NNS = NNS->getPrefix();
Mike Stump1eb44332009-09-09 15:08:12 +0000299
Douglas Gregorc68afe22009-09-03 21:38:09 +0000300 if (NNS->getKind() != NestedNameSpecifier::Identifier)
301 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000302
John McCalla24dc2e2009-11-17 02:14:36 +0000303 LookupResult Found(*this, NNS->getAsIdentifier(), SourceLocation(),
304 LookupNestedNameSpecifierName);
305 LookupName(Found, S);
Douglas Gregorc68afe22009-09-03 21:38:09 +0000306 assert(!Found.isAmbiguous() && "Cannot handle ambiguities here yet");
307
John McCall1bcee0a2009-12-02 08:25:40 +0000308 if (!Found.isSingleResult())
309 return 0;
310
311 NamedDecl *Result = Found.getFoundDecl();
Douglas Gregoredc90502010-02-25 04:46:04 +0000312 if (isAcceptableNestedNameSpecifier(Result))
Douglas Gregorc68afe22009-09-03 21:38:09 +0000313 return Result;
Mike Stump1eb44332009-09-09 15:08:12 +0000314
Douglas Gregorc68afe22009-09-03 21:38:09 +0000315 return 0;
316}
317
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000318bool Sema::isNonTypeNestedNameSpecifier(Scope *S, CXXScopeSpec &SS,
Douglas Gregor77549082010-02-24 21:29:12 +0000319 SourceLocation IdLoc,
320 IdentifierInfo &II,
John McCallb3d87482010-08-24 05:47:05 +0000321 ParsedType ObjectTypePtr) {
Douglas Gregor77549082010-02-24 21:29:12 +0000322 QualType ObjectType = GetTypeFromParser(ObjectTypePtr);
323 LookupResult Found(*this, &II, IdLoc, LookupNestedNameSpecifierName);
324
325 // Determine where to perform name lookup
326 DeclContext *LookupCtx = 0;
327 bool isDependent = false;
328 if (!ObjectType.isNull()) {
329 // This nested-name-specifier occurs in a member access expression, e.g.,
330 // x->B::f, and we are looking into the type of the object.
331 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
332 LookupCtx = computeDeclContext(ObjectType);
333 isDependent = ObjectType->isDependentType();
334 } else if (SS.isSet()) {
335 // This nested-name-specifier occurs after another nested-name-specifier,
336 // so long into the context associated with the prior nested-name-specifier.
337 LookupCtx = computeDeclContext(SS, false);
338 isDependent = isDependentScopeSpecifier(SS);
339 Found.setContextRange(SS.getRange());
340 }
341
342 if (LookupCtx) {
343 // Perform "qualified" name lookup into the declaration context we
344 // computed, which is either the type of the base of a member access
345 // expression or the declaration context associated with a prior
346 // nested-name-specifier.
347
348 // The declaration context must be complete.
John McCall77bb1aa2010-05-01 00:40:08 +0000349 if (!LookupCtx->isDependentContext() &&
350 RequireCompleteDeclContext(SS, LookupCtx))
Douglas Gregor77549082010-02-24 21:29:12 +0000351 return false;
352
353 LookupQualifiedName(Found, LookupCtx);
354 } else if (isDependent) {
355 return false;
356 } else {
357 LookupName(Found, S);
358 }
359 Found.suppressDiagnostics();
360
361 if (NamedDecl *ND = Found.getAsSingle<NamedDecl>())
362 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
363
364 return false;
365}
366
Douglas Gregorc68afe22009-09-03 21:38:09 +0000367/// \brief Build a new nested-name-specifier for "identifier::", as described
368/// by ActOnCXXNestedNameSpecifier.
369///
370/// This routine differs only slightly from ActOnCXXNestedNameSpecifier, in
371/// that it contains an extra parameter \p ScopeLookupResult, which provides
372/// the result of name lookup within the scope of the nested-name-specifier
Douglas Gregora6e51992009-12-30 16:01:52 +0000373/// that was computed at template definition time.
Chris Lattner46646492009-12-07 01:36:53 +0000374///
375/// If ErrorRecoveryLookup is true, then this call is used to improve error
376/// recovery. This means that it should not emit diagnostics, it should
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000377/// just return true on failure. It also means it should only return a valid
Chris Lattner46646492009-12-07 01:36:53 +0000378/// scope if it *knows* that the result is correct. It should not return in a
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000379/// dependent context, for example. Nor will it extend \p SS with the scope
380/// specifier.
381bool Sema::BuildCXXNestedNameSpecifier(Scope *S,
382 IdentifierInfo &Identifier,
383 SourceLocation IdentifierLoc,
384 SourceLocation CCLoc,
385 QualType ObjectType,
386 bool EnteringContext,
387 CXXScopeSpec &SS,
388 NamedDecl *ScopeLookupResult,
389 bool ErrorRecoveryLookup) {
390 LookupResult Found(*this, &Identifier, IdentifierLoc,
391 LookupNestedNameSpecifierName);
John McCalla24dc2e2009-11-17 02:14:36 +0000392
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000393 // Determine where to perform name lookup
394 DeclContext *LookupCtx = 0;
395 bool isDependent = false;
Douglas Gregorc68afe22009-09-03 21:38:09 +0000396 if (!ObjectType.isNull()) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000397 // This nested-name-specifier occurs in a member access expression, e.g.,
398 // x->B::f, and we are looking into the type of the object.
399 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000400 LookupCtx = computeDeclContext(ObjectType);
401 isDependent = ObjectType->isDependentType();
402 } else if (SS.isSet()) {
403 // This nested-name-specifier occurs after another nested-name-specifier,
Richard Smith3e4c6c42011-05-05 21:57:07 +0000404 // so look into the context associated with the prior nested-name-specifier.
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000405 LookupCtx = computeDeclContext(SS, EnteringContext);
406 isDependent = isDependentScopeSpecifier(SS);
John McCalla24dc2e2009-11-17 02:14:36 +0000407 Found.setContextRange(SS.getRange());
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000408 }
Mike Stump1eb44332009-09-09 15:08:12 +0000409
John McCalla24dc2e2009-11-17 02:14:36 +0000410
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000411 bool ObjectTypeSearchedInScope = false;
412 if (LookupCtx) {
Mike Stump1eb44332009-09-09 15:08:12 +0000413 // Perform "qualified" name lookup into the declaration context we
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000414 // computed, which is either the type of the base of a member access
Mike Stump1eb44332009-09-09 15:08:12 +0000415 // expression or the declaration context associated with a prior
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000416 // nested-name-specifier.
Mike Stump1eb44332009-09-09 15:08:12 +0000417
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000418 // The declaration context must be complete.
John McCall77bb1aa2010-05-01 00:40:08 +0000419 if (!LookupCtx->isDependentContext() &&
420 RequireCompleteDeclContext(SS, LookupCtx))
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000421 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000422
John McCalla24dc2e2009-11-17 02:14:36 +0000423 LookupQualifiedName(Found, LookupCtx);
Mike Stump1eb44332009-09-09 15:08:12 +0000424
John McCalla24dc2e2009-11-17 02:14:36 +0000425 if (!ObjectType.isNull() && Found.empty()) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000426 // C++ [basic.lookup.classref]p4:
427 // If the id-expression in a class member access is a qualified-id of
Mike Stump1eb44332009-09-09 15:08:12 +0000428 // the form
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000429 //
430 // class-name-or-namespace-name::...
431 //
Mike Stump1eb44332009-09-09 15:08:12 +0000432 // the class-name-or-namespace-name following the . or -> operator is
433 // looked up both in the context of the entire postfix-expression and in
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000434 // the scope of the class of the object expression. If the name is found
Mike Stump1eb44332009-09-09 15:08:12 +0000435 // only in the scope of the class of the object expression, the name
436 // shall refer to a class-name. If the name is found only in the
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000437 // context of the entire postfix-expression, the name shall refer to a
438 // class-name or namespace-name. [...]
439 //
440 // Qualified name lookup into a class will not find a namespace-name,
Douglas Gregor714c9922011-05-15 17:27:27 +0000441 // so we do not need to diagnose that case specifically. However,
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000442 // this qualified name lookup may find nothing. In that case, perform
Mike Stump1eb44332009-09-09 15:08:12 +0000443 // unqualified name lookup in the given scope (if available) or
Douglas Gregorc68afe22009-09-03 21:38:09 +0000444 // reconstruct the result from when name lookup was performed at template
445 // definition time.
446 if (S)
John McCalla24dc2e2009-11-17 02:14:36 +0000447 LookupName(Found, S);
John McCallf36e02d2009-10-09 21:13:30 +0000448 else if (ScopeLookupResult)
449 Found.addDecl(ScopeLookupResult);
Mike Stump1eb44332009-09-09 15:08:12 +0000450
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000451 ObjectTypeSearchedInScope = true;
452 }
Douglas Gregorac7cbd82010-07-28 14:49:07 +0000453 } else if (!isDependent) {
454 // Perform unqualified name lookup in the current scope.
455 LookupName(Found, S);
456 }
457
458 // If we performed lookup into a dependent context and did not find anything,
459 // that's fine: just build a dependent nested-name-specifier.
460 if (Found.empty() && isDependent &&
461 !(LookupCtx && LookupCtx->isRecord() &&
462 (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() ||
463 !cast<CXXRecordDecl>(LookupCtx)->hasAnyDependentBases()))) {
Chris Lattner46646492009-12-07 01:36:53 +0000464 // Don't speculate if we're just trying to improve error recovery.
465 if (ErrorRecoveryLookup)
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000466 return true;
Chris Lattner46646492009-12-07 01:36:53 +0000467
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000468 // We were not able to compute the declaration context for a dependent
Mike Stump1eb44332009-09-09 15:08:12 +0000469 // base object type or prior nested-name-specifier, so this
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000470 // nested-name-specifier refers to an unknown specialization. Just build
471 // a dependent nested-name-specifier.
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000472 SS.Extend(Context, &Identifier, IdentifierLoc, CCLoc);
473 return false;
Douglas Gregorac7cbd82010-07-28 14:49:07 +0000474 }
475
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000476 // FIXME: Deal with ambiguities cleanly.
Douglas Gregor175a6562009-12-31 08:26:35 +0000477
478 if (Found.empty() && !ErrorRecoveryLookup) {
479 // We haven't found anything, and we're not recovering from a
480 // different kind of error, so look for typos.
481 DeclarationName Name = Found.getLookupName();
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000482 TypoCorrection Corrected;
483 Found.clear();
484 if ((Corrected = CorrectTypo(Found.getLookupNameInfo(),
485 Found.getLookupKind(), S, &SS, LookupCtx,
486 EnteringContext, CTC_NoKeywords)) &&
487 isAcceptableNestedNameSpecifier(Corrected.getCorrectionDecl())) {
488 std::string CorrectedStr(Corrected.getAsString(getLangOptions()));
489 std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOptions()));
Douglas Gregor175a6562009-12-31 08:26:35 +0000490 if (LookupCtx)
491 Diag(Found.getNameLoc(), diag::err_no_member_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000492 << Name << LookupCtx << CorrectedQuotedStr << SS.getRange()
493 << FixItHint::CreateReplacement(Found.getNameLoc(), CorrectedStr);
Douglas Gregor175a6562009-12-31 08:26:35 +0000494 else
495 Diag(Found.getNameLoc(), diag::err_undeclared_var_use_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000496 << Name << CorrectedQuotedStr
497 << FixItHint::CreateReplacement(Found.getNameLoc(), CorrectedStr);
Douglas Gregor67dd1d42010-01-07 00:17:44 +0000498
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000499 if (NamedDecl *ND = Corrected.getCorrectionDecl()) {
500 Diag(ND->getLocation(), diag::note_previous_decl) << CorrectedQuotedStr;
501 Found.addDecl(ND);
502 }
503 Found.setLookupName(Corrected.getCorrection());
Douglas Gregor12eb5d62010-06-29 19:27:42 +0000504 } else {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000505 Found.setLookupName(&Identifier);
Douglas Gregor12eb5d62010-06-29 19:27:42 +0000506 }
Douglas Gregor175a6562009-12-31 08:26:35 +0000507 }
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 Gregor2e4c34a2011-02-24 00:17:56 +0000522 LookupResult FoundOuter(*this, &Identifier, IdentifierLoc,
523 LookupNestedNameSpecifierName);
John McCalla24dc2e2009-11-17 02:14:36 +0000524 LookupName(FoundOuter, S);
John McCall1bcee0a2009-12-02 08:25:40 +0000525 OuterDecl = FoundOuter.getAsSingle<NamedDecl>();
John McCallf36e02d2009-10-09 21:13:30 +0000526 } else
527 OuterDecl = ScopeLookupResult;
Mike Stump1eb44332009-09-09 15:08:12 +0000528
Douglas Gregoredc90502010-02-25 04:46:04 +0000529 if (isAcceptableNestedNameSpecifier(OuterDecl) &&
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000530 OuterDecl->getCanonicalDecl() != SD->getCanonicalDecl() &&
531 (!isa<TypeDecl>(OuterDecl) || !isa<TypeDecl>(SD) ||
532 !Context.hasSameType(
Douglas Gregorc68afe22009-09-03 21:38:09 +0000533 Context.getTypeDeclType(cast<TypeDecl>(OuterDecl)),
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000534 Context.getTypeDeclType(cast<TypeDecl>(SD))))) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000535 if (ErrorRecoveryLookup)
536 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000537
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000538 Diag(IdentifierLoc,
539 diag::err_nested_name_member_ref_lookup_ambiguous)
540 << &Identifier;
541 Diag(SD->getLocation(), diag::note_ambig_member_ref_object_type)
542 << ObjectType;
543 Diag(OuterDecl->getLocation(), diag::note_ambig_member_ref_scope);
544
545 // Fall through so that we'll pick the name we found in the object
546 // type, since that's probably what the user wanted anyway.
547 }
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000548 }
Mike Stump1eb44332009-09-09 15:08:12 +0000549
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000550 // If we're just performing this lookup for error-recovery purposes,
551 // don't extend the nested-name-specifier. Just return now.
552 if (ErrorRecoveryLookup)
553 return false;
554
555 if (NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(SD)) {
556 SS.Extend(Context, Namespace, IdentifierLoc, CCLoc);
557 return false;
558 }
Mike Stump1eb44332009-09-09 15:08:12 +0000559
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000560 if (NamespaceAliasDecl *Alias = dyn_cast<NamespaceAliasDecl>(SD)) {
Douglas Gregor14aba762011-02-24 02:36:08 +0000561 SS.Extend(Context, Alias, IdentifierLoc, CCLoc);
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000562 return false;
563 }
Mike Stump1eb44332009-09-09 15:08:12 +0000564
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000565 QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD));
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000566 TypeLocBuilder TLB;
567 if (isa<InjectedClassNameType>(T)) {
568 InjectedClassNameTypeLoc InjectedTL
569 = TLB.push<InjectedClassNameTypeLoc>(T);
570 InjectedTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000571 } else if (isa<RecordType>(T)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000572 RecordTypeLoc RecordTL = TLB.push<RecordTypeLoc>(T);
573 RecordTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000574 } else if (isa<TypedefType>(T)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000575 TypedefTypeLoc TypedefTL = TLB.push<TypedefTypeLoc>(T);
576 TypedefTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000577 } else if (isa<EnumType>(T)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000578 EnumTypeLoc EnumTL = TLB.push<EnumTypeLoc>(T);
579 EnumTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000580 } else if (isa<TemplateTypeParmType>(T)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000581 TemplateTypeParmTypeLoc TemplateTypeTL
582 = TLB.push<TemplateTypeParmTypeLoc>(T);
583 TemplateTypeTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000584 } else if (isa<UnresolvedUsingType>(T)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000585 UnresolvedUsingTypeLoc UnresolvedTL
586 = TLB.push<UnresolvedUsingTypeLoc>(T);
587 UnresolvedTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000588 } else if (isa<SubstTemplateTypeParmType>(T)) {
589 SubstTemplateTypeParmTypeLoc TL
590 = TLB.push<SubstTemplateTypeParmTypeLoc>(T);
591 TL.setNameLoc(IdentifierLoc);
592 } else if (isa<SubstTemplateTypeParmPackType>(T)) {
593 SubstTemplateTypeParmPackTypeLoc TL
594 = TLB.push<SubstTemplateTypeParmPackTypeLoc>(T);
595 TL.setNameLoc(IdentifierLoc);
596 } else {
597 llvm_unreachable("Unhandled TypeDecl node in nested-name-specifier");
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000598 }
599
600 SS.Extend(Context, SourceLocation(), TLB.getTypeLocInContext(Context, T),
601 CCLoc);
602 return false;
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000603 }
Mike Stump1eb44332009-09-09 15:08:12 +0000604
Chris Lattner46646492009-12-07 01:36:53 +0000605 // Otherwise, we have an error case. If we don't want diagnostics, just
606 // return an error now.
607 if (ErrorRecoveryLookup)
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000608 return true;
Chris Lattner46646492009-12-07 01:36:53 +0000609
Cedric Venet3d658642009-02-14 20:20:19 +0000610 // If we didn't find anything during our lookup, try again with
611 // ordinary name lookup, which can help us produce better error
612 // messages.
John McCall1bcee0a2009-12-02 08:25:40 +0000613 if (Found.empty()) {
John McCalla24dc2e2009-11-17 02:14:36 +0000614 Found.clear(LookupOrdinaryName);
615 LookupName(Found, S);
John McCallf36e02d2009-10-09 21:13:30 +0000616 }
Mike Stump1eb44332009-09-09 15:08:12 +0000617
Cedric Venet3d658642009-02-14 20:20:19 +0000618 unsigned DiagID;
John McCall1bcee0a2009-12-02 08:25:40 +0000619 if (!Found.empty())
Cedric Venet3d658642009-02-14 20:20:19 +0000620 DiagID = diag::err_expected_class_or_namespace;
Anders Carlssona31d5f72009-08-30 07:09:50 +0000621 else if (SS.isSet()) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000622 Diag(IdentifierLoc, diag::err_no_member)
623 << &Identifier << LookupCtx << SS.getRange();
624 return true;
Anders Carlssona31d5f72009-08-30 07:09:50 +0000625 } else
Cedric Venet3d658642009-02-14 20:20:19 +0000626 DiagID = diag::err_undeclared_var_use;
Mike Stump1eb44332009-09-09 15:08:12 +0000627
Cedric Venet3d658642009-02-14 20:20:19 +0000628 if (SS.isSet())
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000629 Diag(IdentifierLoc, DiagID) << &Identifier << SS.getRange();
Cedric Venet3d658642009-02-14 20:20:19 +0000630 else
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000631 Diag(IdentifierLoc, DiagID) << &Identifier;
Mike Stump1eb44332009-09-09 15:08:12 +0000632
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000633 return true;
Cedric Venet3d658642009-02-14 20:20:19 +0000634}
635
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000636bool Sema::ActOnCXXNestedNameSpecifier(Scope *S,
637 IdentifierInfo &Identifier,
638 SourceLocation IdentifierLoc,
639 SourceLocation CCLoc,
640 ParsedType ObjectType,
641 bool EnteringContext,
642 CXXScopeSpec &SS) {
643 if (SS.isInvalid())
644 return true;
645
646 return BuildCXXNestedNameSpecifier(S, Identifier, IdentifierLoc, CCLoc,
647 GetTypeFromParser(ObjectType),
648 EnteringContext, SS,
649 /*ScopeLookupResult=*/0, false);
Chris Lattner46646492009-12-07 01:36:53 +0000650}
651
652/// IsInvalidUnlessNestedName - This method is used for error recovery
653/// purposes to determine whether the specified identifier is only valid as
654/// a nested name specifier, for example a namespace name. It is
655/// conservatively correct to always return false from this method.
656///
657/// The arguments are the same as those passed to ActOnCXXNestedNameSpecifier.
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000658bool Sema::IsInvalidUnlessNestedName(Scope *S, CXXScopeSpec &SS,
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000659 IdentifierInfo &Identifier,
660 SourceLocation IdentifierLoc,
661 SourceLocation ColonLoc,
662 ParsedType ObjectType,
Chris Lattner46646492009-12-07 01:36:53 +0000663 bool EnteringContext) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000664 if (SS.isInvalid())
665 return false;
666
667 return !BuildCXXNestedNameSpecifier(S, Identifier, IdentifierLoc, ColonLoc,
668 GetTypeFromParser(ObjectType),
669 EnteringContext, SS,
670 /*ScopeLookupResult=*/0, true);
Douglas Gregorc68afe22009-09-03 21:38:09 +0000671}
672
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000673bool Sema::ActOnCXXNestedNameSpecifier(Scope *S,
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000674 SourceLocation TemplateLoc,
675 CXXScopeSpec &SS,
676 TemplateTy Template,
677 SourceLocation TemplateNameLoc,
678 SourceLocation LAngleLoc,
679 ASTTemplateArgsPtr TemplateArgsIn,
680 SourceLocation RAngleLoc,
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000681 SourceLocation CCLoc,
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000682 bool EnteringContext) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000683 if (SS.isInvalid())
684 return true;
685
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000686 // Translate the parser's template argument list in our AST format.
687 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
688 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
689
690 if (DependentTemplateName *DTN = Template.get().getAsDependentTemplateName()){
691 // Handle a dependent template specialization for which we cannot resolve
692 // the template name.
693 assert(DTN->getQualifier()
694 == static_cast<NestedNameSpecifier*>(SS.getScopeRep()));
695 QualType T = Context.getDependentTemplateSpecializationType(ETK_None,
Douglas Gregor94fdffa2011-03-01 20:11:18 +0000696 DTN->getQualifier(),
697 DTN->getIdentifier(),
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000698 TemplateArgs);
699
700 // Create source-location information for this type.
701 TypeLocBuilder Builder;
702 DependentTemplateSpecializationTypeLoc SpecTL
703 = Builder.push<DependentTemplateSpecializationTypeLoc>(T);
704 SpecTL.setLAngleLoc(LAngleLoc);
705 SpecTL.setRAngleLoc(RAngleLoc);
706 SpecTL.setKeywordLoc(SourceLocation());
707 SpecTL.setNameLoc(TemplateNameLoc);
Douglas Gregor94fdffa2011-03-01 20:11:18 +0000708 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000709 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
710 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
711
712 SS.Extend(Context, TemplateLoc, Builder.getTypeLocInContext(Context, T),
713 CCLoc);
714 return false;
715 }
716
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +0000717
718 if (Template.get().getAsOverloadedTemplate() ||
719 isa<FunctionTemplateDecl>(Template.get().getAsTemplateDecl())) {
720 SourceRange R(TemplateNameLoc, RAngleLoc);
721 if (SS.getRange().isValid())
722 R.setBegin(SS.getRange().getBegin());
723
724 Diag(CCLoc, diag::err_non_type_template_in_nested_name_specifier)
725 << Template.get() << R;
726 NoteAllFoundTemplates(Template.get());
727 return true;
728 }
729
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000730 // We were able to resolve the template name to an actual template.
731 // Build an appropriate nested-name-specifier.
732 QualType T = CheckTemplateIdType(Template.get(), TemplateNameLoc,
733 TemplateArgs);
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000734 if (T.isNull())
735 return true;
736
Richard Smith3e4c6c42011-05-05 21:57:07 +0000737 // Alias template specializations can produce types which are not valid
738 // nested name specifiers.
739 if (!T->isDependentType() && !T->getAs<TagType>()) {
740 Diag(TemplateNameLoc, diag::err_nested_name_spec_non_tag) << T;
741 NoteAllFoundTemplates(Template.get());
742 return true;
743 }
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000744
745 // Provide source-location information for the template specialization
746 // type.
747 TypeLocBuilder Builder;
748 TemplateSpecializationTypeLoc SpecTL
749 = Builder.push<TemplateSpecializationTypeLoc>(T);
750
751 SpecTL.setLAngleLoc(LAngleLoc);
752 SpecTL.setRAngleLoc(RAngleLoc);
753 SpecTL.setTemplateNameLoc(TemplateNameLoc);
754 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
755 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
756
757
758 SS.Extend(Context, TemplateLoc, Builder.getTypeLocInContext(Context, T),
759 CCLoc);
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000760 return false;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000761}
762
Douglas Gregorc34348a2011-02-24 17:54:50 +0000763namespace {
764 /// \brief A structure that stores a nested-name-specifier annotation,
765 /// including both the nested-name-specifier
766 struct NestedNameSpecifierAnnotation {
767 NestedNameSpecifier *NNS;
768 };
769}
770
771void *Sema::SaveNestedNameSpecifierAnnotation(CXXScopeSpec &SS) {
772 if (SS.isEmpty() || SS.isInvalid())
773 return 0;
774
775 void *Mem = Context.Allocate((sizeof(NestedNameSpecifierAnnotation) +
776 SS.location_size()),
777 llvm::alignOf<NestedNameSpecifierAnnotation>());
778 NestedNameSpecifierAnnotation *Annotation
779 = new (Mem) NestedNameSpecifierAnnotation;
780 Annotation->NNS = SS.getScopeRep();
781 memcpy(Annotation + 1, SS.location_data(), SS.location_size());
782 return Annotation;
783}
784
785void Sema::RestoreNestedNameSpecifierAnnotation(void *AnnotationPtr,
786 SourceRange AnnotationRange,
787 CXXScopeSpec &SS) {
788 if (!AnnotationPtr) {
789 SS.SetInvalid(AnnotationRange);
790 return;
791 }
792
793 NestedNameSpecifierAnnotation *Annotation
794 = static_cast<NestedNameSpecifierAnnotation *>(AnnotationPtr);
795 SS.Adopt(NestedNameSpecifierLoc(Annotation->NNS, Annotation + 1));
796}
797
John McCalle7e278b2009-12-11 20:04:54 +0000798bool Sema::ShouldEnterDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
799 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
800
801 NestedNameSpecifier *Qualifier =
802 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
803
804 // There are only two places a well-formed program may qualify a
805 // declarator: first, when defining a namespace or class member
806 // out-of-line, and second, when naming an explicitly-qualified
807 // friend function. The latter case is governed by
808 // C++03 [basic.lookup.unqual]p10:
809 // In a friend declaration naming a member function, a name used
810 // in the function declarator and not part of a template-argument
811 // in a template-id is first looked up in the scope of the member
812 // function's class. If it is not found, or if the name is part of
813 // a template-argument in a template-id, the look up is as
814 // described for unqualified names in the definition of the class
815 // granting friendship.
816 // i.e. we don't push a scope unless it's a class member.
817
818 switch (Qualifier->getKind()) {
819 case NestedNameSpecifier::Global:
820 case NestedNameSpecifier::Namespace:
Douglas Gregor14aba762011-02-24 02:36:08 +0000821 case NestedNameSpecifier::NamespaceAlias:
John McCalle7e278b2009-12-11 20:04:54 +0000822 // These are always namespace scopes. We never want to enter a
823 // namespace scope from anything but a file context.
Sebastian Redl7a126a42010-08-31 00:36:30 +0000824 return CurContext->getRedeclContext()->isFileContext();
John McCalle7e278b2009-12-11 20:04:54 +0000825
826 case NestedNameSpecifier::Identifier:
827 case NestedNameSpecifier::TypeSpec:
828 case NestedNameSpecifier::TypeSpecWithTemplate:
829 // These are never namespace scopes.
830 return true;
831 }
832
833 // Silence bogus warning.
834 return false;
835}
836
Cedric Venet3d658642009-02-14 20:20:19 +0000837/// ActOnCXXEnterDeclaratorScope - Called when a C++ scope specifier (global
838/// scope or nested-name-specifier) is parsed, part of a declarator-id.
839/// After this method is called, according to [C++ 3.4.3p3], names should be
840/// looked up in the declarator-id's scope, until the declarator is parsed and
841/// ActOnCXXExitDeclaratorScope is called.
842/// The 'SS' should be a non-empty valid CXXScopeSpec.
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000843bool Sema::ActOnCXXEnterDeclaratorScope(Scope *S, CXXScopeSpec &SS) {
Cedric Venet3d658642009-02-14 20:20:19 +0000844 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
John McCall7a1dc562009-12-19 10:49:29 +0000845
846 if (SS.isInvalid()) return true;
847
848 DeclContext *DC = computeDeclContext(SS, true);
849 if (!DC) return true;
850
851 // Before we enter a declarator's context, we need to make sure that
852 // it is a complete declaration context.
John McCall77bb1aa2010-05-01 00:40:08 +0000853 if (!DC->isDependentContext() && RequireCompleteDeclContext(SS, DC))
John McCall7a1dc562009-12-19 10:49:29 +0000854 return true;
855
856 EnterDeclaratorContext(S, DC);
John McCall31f17ec2010-04-27 00:57:59 +0000857
858 // Rebuild the nested name specifier for the new scope.
859 if (DC->isDependentContext())
860 RebuildNestedNameSpecifierInCurrentInstantiation(SS);
861
Douglas Gregor7dfd0fb2009-09-24 23:39:01 +0000862 return false;
Cedric Venet3d658642009-02-14 20:20:19 +0000863}
864
865/// ActOnCXXExitDeclaratorScope - Called when a declarator that previously
866/// invoked ActOnCXXEnterDeclaratorScope(), is finished. 'SS' is the same
867/// CXXScopeSpec that was passed to ActOnCXXEnterDeclaratorScope as well.
868/// Used to indicate that names should revert to being looked up in the
869/// defining scope.
870void Sema::ActOnCXXExitDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
871 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
Douglas Gregordacd4342009-08-26 00:04:55 +0000872 if (SS.isInvalid())
873 return;
John McCall7a1dc562009-12-19 10:49:29 +0000874 assert(!SS.isInvalid() && computeDeclContext(SS, true) &&
875 "exiting declarator scope we never really entered");
876 ExitDeclaratorContext(S);
Cedric Venet3d658642009-02-14 20:20:19 +0000877}