blob: 61d9e93f2ff596ae67f048ee1b0fde702c45055a [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
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +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.
216 if (Tag->isDependentContext())
217 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.
Ted Kremenek6217b802009-07-29 21:53:49 +0000221 const TagType *TagT = Context.getTypeDeclType(Tag)->getAs<TagType>();
John McCall3cb0ebd2010-03-10 03:28:59 +0000222 if (TagT && TagT->isBeingDefined())
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000223 return false;
224
225 // The type must be complete.
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000226 if (RequireCompleteType(SS.getRange().getBegin(),
227 Context.getTypeDeclType(Tag),
228 PDiag(diag::err_incomplete_nested_name_spec)
John McCall77bb1aa2010-05-01 00:40:08 +0000229 << SS.getRange())) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000230 SS.SetInvalid(SS.getRange());
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000231 return true;
232 }
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000233 }
234
235 return false;
236}
Cedric Venet3d658642009-02-14 20:20:19 +0000237
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000238bool Sema::ActOnCXXGlobalScopeSpecifier(Scope *S, SourceLocation CCLoc,
239 CXXScopeSpec &SS) {
240 SS.MakeGlobal(Context, CCLoc);
241 return false;
Cedric Venet3d658642009-02-14 20:20:19 +0000242}
243
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000244/// \brief Determines whether the given declaration is an valid acceptable
245/// result for name lookup of a nested-name-specifier.
Douglas Gregoredc90502010-02-25 04:46:04 +0000246bool Sema::isAcceptableNestedNameSpecifier(NamedDecl *SD) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000247 if (!SD)
248 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000249
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000250 // Namespace and namespace aliases are fine.
251 if (isa<NamespaceDecl>(SD) || isa<NamespaceAliasDecl>(SD))
252 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000253
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000254 if (!isa<TypeDecl>(SD))
255 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000256
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000257 // Determine whether we have a class (or, in C++0x, an enum) or
258 // a typedef thereof. If so, build the nested-name-specifier.
259 QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD));
260 if (T->isDependentType())
261 return true;
Richard Smith162e1c12011-04-15 14:24:37 +0000262 else if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(SD)) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000263 if (TD->getUnderlyingType()->isRecordType() ||
Mike Stump1eb44332009-09-09 15:08:12 +0000264 (Context.getLangOptions().CPlusPlus0x &&
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000265 TD->getUnderlyingType()->isEnumeralType()))
266 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000267 } else if (isa<RecordDecl>(SD) ||
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000268 (Context.getLangOptions().CPlusPlus0x && isa<EnumDecl>(SD)))
269 return true;
270
271 return false;
272}
273
Douglas Gregorc68afe22009-09-03 21:38:09 +0000274/// \brief If the given nested-name-specifier begins with a bare identifier
Mike Stump1eb44332009-09-09 15:08:12 +0000275/// (e.g., Base::), perform name lookup for that identifier as a
Douglas Gregorc68afe22009-09-03 21:38:09 +0000276/// nested-name-specifier within the given scope, and return the result of that
277/// name lookup.
278NamedDecl *Sema::FindFirstQualifierInScope(Scope *S, NestedNameSpecifier *NNS) {
279 if (!S || !NNS)
280 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000281
Douglas Gregorc68afe22009-09-03 21:38:09 +0000282 while (NNS->getPrefix())
283 NNS = NNS->getPrefix();
Mike Stump1eb44332009-09-09 15:08:12 +0000284
Douglas Gregorc68afe22009-09-03 21:38:09 +0000285 if (NNS->getKind() != NestedNameSpecifier::Identifier)
286 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000287
John McCalla24dc2e2009-11-17 02:14:36 +0000288 LookupResult Found(*this, NNS->getAsIdentifier(), SourceLocation(),
289 LookupNestedNameSpecifierName);
290 LookupName(Found, S);
Douglas Gregorc68afe22009-09-03 21:38:09 +0000291 assert(!Found.isAmbiguous() && "Cannot handle ambiguities here yet");
292
John McCall1bcee0a2009-12-02 08:25:40 +0000293 if (!Found.isSingleResult())
294 return 0;
295
296 NamedDecl *Result = Found.getFoundDecl();
Douglas Gregoredc90502010-02-25 04:46:04 +0000297 if (isAcceptableNestedNameSpecifier(Result))
Douglas Gregorc68afe22009-09-03 21:38:09 +0000298 return Result;
Mike Stump1eb44332009-09-09 15:08:12 +0000299
Douglas Gregorc68afe22009-09-03 21:38:09 +0000300 return 0;
301}
302
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000303bool Sema::isNonTypeNestedNameSpecifier(Scope *S, CXXScopeSpec &SS,
Douglas Gregor77549082010-02-24 21:29:12 +0000304 SourceLocation IdLoc,
305 IdentifierInfo &II,
John McCallb3d87482010-08-24 05:47:05 +0000306 ParsedType ObjectTypePtr) {
Douglas Gregor77549082010-02-24 21:29:12 +0000307 QualType ObjectType = GetTypeFromParser(ObjectTypePtr);
308 LookupResult Found(*this, &II, IdLoc, LookupNestedNameSpecifierName);
309
310 // Determine where to perform name lookup
311 DeclContext *LookupCtx = 0;
312 bool isDependent = false;
313 if (!ObjectType.isNull()) {
314 // This nested-name-specifier occurs in a member access expression, e.g.,
315 // x->B::f, and we are looking into the type of the object.
316 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
317 LookupCtx = computeDeclContext(ObjectType);
318 isDependent = ObjectType->isDependentType();
319 } else if (SS.isSet()) {
320 // This nested-name-specifier occurs after another nested-name-specifier,
321 // so long into the context associated with the prior nested-name-specifier.
322 LookupCtx = computeDeclContext(SS, false);
323 isDependent = isDependentScopeSpecifier(SS);
324 Found.setContextRange(SS.getRange());
325 }
326
327 if (LookupCtx) {
328 // Perform "qualified" name lookup into the declaration context we
329 // computed, which is either the type of the base of a member access
330 // expression or the declaration context associated with a prior
331 // nested-name-specifier.
332
333 // The declaration context must be complete.
John McCall77bb1aa2010-05-01 00:40:08 +0000334 if (!LookupCtx->isDependentContext() &&
335 RequireCompleteDeclContext(SS, LookupCtx))
Douglas Gregor77549082010-02-24 21:29:12 +0000336 return false;
337
338 LookupQualifiedName(Found, LookupCtx);
339 } else if (isDependent) {
340 return false;
341 } else {
342 LookupName(Found, S);
343 }
344 Found.suppressDiagnostics();
345
346 if (NamedDecl *ND = Found.getAsSingle<NamedDecl>())
347 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
348
349 return false;
350}
351
Douglas Gregorc68afe22009-09-03 21:38:09 +0000352/// \brief Build a new nested-name-specifier for "identifier::", as described
353/// by ActOnCXXNestedNameSpecifier.
354///
355/// This routine differs only slightly from ActOnCXXNestedNameSpecifier, in
356/// that it contains an extra parameter \p ScopeLookupResult, which provides
357/// the result of name lookup within the scope of the nested-name-specifier
Douglas Gregora6e51992009-12-30 16:01:52 +0000358/// that was computed at template definition time.
Chris Lattner46646492009-12-07 01:36:53 +0000359///
360/// If ErrorRecoveryLookup is true, then this call is used to improve error
361/// recovery. This means that it should not emit diagnostics, it should
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000362/// just return true on failure. It also means it should only return a valid
Chris Lattner46646492009-12-07 01:36:53 +0000363/// scope if it *knows* that the result is correct. It should not return in a
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000364/// dependent context, for example. Nor will it extend \p SS with the scope
365/// specifier.
366bool Sema::BuildCXXNestedNameSpecifier(Scope *S,
367 IdentifierInfo &Identifier,
368 SourceLocation IdentifierLoc,
369 SourceLocation CCLoc,
370 QualType ObjectType,
371 bool EnteringContext,
372 CXXScopeSpec &SS,
373 NamedDecl *ScopeLookupResult,
374 bool ErrorRecoveryLookup) {
375 LookupResult Found(*this, &Identifier, IdentifierLoc,
376 LookupNestedNameSpecifierName);
John McCalla24dc2e2009-11-17 02:14:36 +0000377
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000378 // Determine where to perform name lookup
379 DeclContext *LookupCtx = 0;
380 bool isDependent = false;
Douglas Gregorc68afe22009-09-03 21:38:09 +0000381 if (!ObjectType.isNull()) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000382 // This nested-name-specifier occurs in a member access expression, e.g.,
383 // x->B::f, and we are looking into the type of the object.
384 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000385 LookupCtx = computeDeclContext(ObjectType);
386 isDependent = ObjectType->isDependentType();
387 } else if (SS.isSet()) {
388 // This nested-name-specifier occurs after another nested-name-specifier,
Richard Smith3e4c6c42011-05-05 21:57:07 +0000389 // so look into the context associated with the prior nested-name-specifier.
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000390 LookupCtx = computeDeclContext(SS, EnteringContext);
391 isDependent = isDependentScopeSpecifier(SS);
John McCalla24dc2e2009-11-17 02:14:36 +0000392 Found.setContextRange(SS.getRange());
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000393 }
Mike Stump1eb44332009-09-09 15:08:12 +0000394
John McCalla24dc2e2009-11-17 02:14:36 +0000395
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000396 bool ObjectTypeSearchedInScope = false;
397 if (LookupCtx) {
Mike Stump1eb44332009-09-09 15:08:12 +0000398 // Perform "qualified" name lookup into the declaration context we
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000399 // computed, which is either the type of the base of a member access
Mike Stump1eb44332009-09-09 15:08:12 +0000400 // expression or the declaration context associated with a prior
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000401 // nested-name-specifier.
Mike Stump1eb44332009-09-09 15:08:12 +0000402
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000403 // The declaration context must be complete.
John McCall77bb1aa2010-05-01 00:40:08 +0000404 if (!LookupCtx->isDependentContext() &&
405 RequireCompleteDeclContext(SS, LookupCtx))
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000406 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000407
John McCalla24dc2e2009-11-17 02:14:36 +0000408 LookupQualifiedName(Found, LookupCtx);
Mike Stump1eb44332009-09-09 15:08:12 +0000409
John McCalla24dc2e2009-11-17 02:14:36 +0000410 if (!ObjectType.isNull() && Found.empty()) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000411 // C++ [basic.lookup.classref]p4:
412 // If the id-expression in a class member access is a qualified-id of
Mike Stump1eb44332009-09-09 15:08:12 +0000413 // the form
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000414 //
415 // class-name-or-namespace-name::...
416 //
Mike Stump1eb44332009-09-09 15:08:12 +0000417 // the class-name-or-namespace-name following the . or -> operator is
418 // looked up both in the context of the entire postfix-expression and in
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000419 // the scope of the class of the object expression. If the name is found
Mike Stump1eb44332009-09-09 15:08:12 +0000420 // only in the scope of the class of the object expression, the name
421 // shall refer to a class-name. If the name is found only in the
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000422 // context of the entire postfix-expression, the name shall refer to a
423 // class-name or namespace-name. [...]
424 //
425 // Qualified name lookup into a class will not find a namespace-name,
Douglas Gregor714c9922011-05-15 17:27:27 +0000426 // so we do not need to diagnose that case specifically. However,
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000427 // this qualified name lookup may find nothing. In that case, perform
Mike Stump1eb44332009-09-09 15:08:12 +0000428 // unqualified name lookup in the given scope (if available) or
Douglas Gregorc68afe22009-09-03 21:38:09 +0000429 // reconstruct the result from when name lookup was performed at template
430 // definition time.
431 if (S)
John McCalla24dc2e2009-11-17 02:14:36 +0000432 LookupName(Found, S);
John McCallf36e02d2009-10-09 21:13:30 +0000433 else if (ScopeLookupResult)
434 Found.addDecl(ScopeLookupResult);
Mike Stump1eb44332009-09-09 15:08:12 +0000435
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000436 ObjectTypeSearchedInScope = true;
437 }
Douglas Gregorac7cbd82010-07-28 14:49:07 +0000438 } else if (!isDependent) {
439 // Perform unqualified name lookup in the current scope.
440 LookupName(Found, S);
441 }
442
443 // If we performed lookup into a dependent context and did not find anything,
444 // that's fine: just build a dependent nested-name-specifier.
445 if (Found.empty() && isDependent &&
446 !(LookupCtx && LookupCtx->isRecord() &&
447 (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() ||
448 !cast<CXXRecordDecl>(LookupCtx)->hasAnyDependentBases()))) {
Chris Lattner46646492009-12-07 01:36:53 +0000449 // Don't speculate if we're just trying to improve error recovery.
450 if (ErrorRecoveryLookup)
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000451 return true;
Chris Lattner46646492009-12-07 01:36:53 +0000452
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000453 // We were not able to compute the declaration context for a dependent
Mike Stump1eb44332009-09-09 15:08:12 +0000454 // base object type or prior nested-name-specifier, so this
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000455 // nested-name-specifier refers to an unknown specialization. Just build
456 // a dependent nested-name-specifier.
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000457 SS.Extend(Context, &Identifier, IdentifierLoc, CCLoc);
458 return false;
Douglas Gregorac7cbd82010-07-28 14:49:07 +0000459 }
460
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000461 // FIXME: Deal with ambiguities cleanly.
Douglas Gregor175a6562009-12-31 08:26:35 +0000462
463 if (Found.empty() && !ErrorRecoveryLookup) {
464 // We haven't found anything, and we're not recovering from a
465 // different kind of error, so look for typos.
466 DeclarationName Name = Found.getLookupName();
Douglas Gregoraaf87162010-04-14 20:04:41 +0000467 if (CorrectTypo(Found, S, &SS, LookupCtx, EnteringContext,
468 CTC_NoKeywords) &&
Douglas Gregor175a6562009-12-31 08:26:35 +0000469 Found.isSingleResult() &&
Douglas Gregoredc90502010-02-25 04:46:04 +0000470 isAcceptableNestedNameSpecifier(Found.getAsSingle<NamedDecl>())) {
Douglas Gregor175a6562009-12-31 08:26:35 +0000471 if (LookupCtx)
472 Diag(Found.getNameLoc(), diag::err_no_member_suggest)
473 << Name << LookupCtx << Found.getLookupName() << SS.getRange()
Douglas Gregor849b2432010-03-31 17:46:05 +0000474 << FixItHint::CreateReplacement(Found.getNameLoc(),
475 Found.getLookupName().getAsString());
Douglas Gregor175a6562009-12-31 08:26:35 +0000476 else
477 Diag(Found.getNameLoc(), diag::err_undeclared_var_use_suggest)
478 << Name << Found.getLookupName()
Douglas Gregor849b2432010-03-31 17:46:05 +0000479 << FixItHint::CreateReplacement(Found.getNameLoc(),
480 Found.getLookupName().getAsString());
Douglas Gregor67dd1d42010-01-07 00:17:44 +0000481
482 if (NamedDecl *ND = Found.getAsSingle<NamedDecl>())
483 Diag(ND->getLocation(), diag::note_previous_decl)
484 << ND->getDeclName();
Douglas Gregor12eb5d62010-06-29 19:27:42 +0000485 } else {
Douglas Gregor175a6562009-12-31 08:26:35 +0000486 Found.clear();
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000487 Found.setLookupName(&Identifier);
Douglas Gregor12eb5d62010-06-29 19:27:42 +0000488 }
Douglas Gregor175a6562009-12-31 08:26:35 +0000489 }
490
John McCall1bcee0a2009-12-02 08:25:40 +0000491 NamedDecl *SD = Found.getAsSingle<NamedDecl>();
Douglas Gregoredc90502010-02-25 04:46:04 +0000492 if (isAcceptableNestedNameSpecifier(SD)) {
Douglas Gregorc68afe22009-09-03 21:38:09 +0000493 if (!ObjectType.isNull() && !ObjectTypeSearchedInScope) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000494 // C++ [basic.lookup.classref]p4:
Mike Stump1eb44332009-09-09 15:08:12 +0000495 // [...] If the name is found in both contexts, the
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000496 // class-name-or-namespace-name shall refer to the same entity.
497 //
498 // We already found the name in the scope of the object. Now, look
499 // into the current scope (the scope of the postfix-expression) to
Douglas Gregorc68afe22009-09-03 21:38:09 +0000500 // see if we can find the same name there. As above, if there is no
501 // scope, reconstruct the result from the template instantiation itself.
John McCallf36e02d2009-10-09 21:13:30 +0000502 NamedDecl *OuterDecl;
503 if (S) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000504 LookupResult FoundOuter(*this, &Identifier, IdentifierLoc,
505 LookupNestedNameSpecifierName);
John McCalla24dc2e2009-11-17 02:14:36 +0000506 LookupName(FoundOuter, S);
John McCall1bcee0a2009-12-02 08:25:40 +0000507 OuterDecl = FoundOuter.getAsSingle<NamedDecl>();
John McCallf36e02d2009-10-09 21:13:30 +0000508 } else
509 OuterDecl = ScopeLookupResult;
Mike Stump1eb44332009-09-09 15:08:12 +0000510
Douglas Gregoredc90502010-02-25 04:46:04 +0000511 if (isAcceptableNestedNameSpecifier(OuterDecl) &&
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000512 OuterDecl->getCanonicalDecl() != SD->getCanonicalDecl() &&
513 (!isa<TypeDecl>(OuterDecl) || !isa<TypeDecl>(SD) ||
514 !Context.hasSameType(
Douglas Gregorc68afe22009-09-03 21:38:09 +0000515 Context.getTypeDeclType(cast<TypeDecl>(OuterDecl)),
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000516 Context.getTypeDeclType(cast<TypeDecl>(SD))))) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000517 if (ErrorRecoveryLookup)
518 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000519
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000520 Diag(IdentifierLoc,
521 diag::err_nested_name_member_ref_lookup_ambiguous)
522 << &Identifier;
523 Diag(SD->getLocation(), diag::note_ambig_member_ref_object_type)
524 << ObjectType;
525 Diag(OuterDecl->getLocation(), diag::note_ambig_member_ref_scope);
526
527 // Fall through so that we'll pick the name we found in the object
528 // type, since that's probably what the user wanted anyway.
529 }
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000530 }
Mike Stump1eb44332009-09-09 15:08:12 +0000531
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000532 // If we're just performing this lookup for error-recovery purposes,
533 // don't extend the nested-name-specifier. Just return now.
534 if (ErrorRecoveryLookup)
535 return false;
536
537 if (NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(SD)) {
538 SS.Extend(Context, Namespace, IdentifierLoc, CCLoc);
539 return false;
540 }
Mike Stump1eb44332009-09-09 15:08:12 +0000541
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000542 if (NamespaceAliasDecl *Alias = dyn_cast<NamespaceAliasDecl>(SD)) {
Douglas Gregor14aba762011-02-24 02:36:08 +0000543 SS.Extend(Context, Alias, IdentifierLoc, CCLoc);
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000544 return false;
545 }
Mike Stump1eb44332009-09-09 15:08:12 +0000546
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000547 QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD));
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000548 TypeLocBuilder TLB;
549 if (isa<InjectedClassNameType>(T)) {
550 InjectedClassNameTypeLoc InjectedTL
551 = TLB.push<InjectedClassNameTypeLoc>(T);
552 InjectedTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000553 } else if (isa<RecordType>(T)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000554 RecordTypeLoc RecordTL = TLB.push<RecordTypeLoc>(T);
555 RecordTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000556 } else if (isa<TypedefType>(T)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000557 TypedefTypeLoc TypedefTL = TLB.push<TypedefTypeLoc>(T);
558 TypedefTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000559 } else if (isa<EnumType>(T)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000560 EnumTypeLoc EnumTL = TLB.push<EnumTypeLoc>(T);
561 EnumTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000562 } else if (isa<TemplateTypeParmType>(T)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000563 TemplateTypeParmTypeLoc TemplateTypeTL
564 = TLB.push<TemplateTypeParmTypeLoc>(T);
565 TemplateTypeTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000566 } else if (isa<UnresolvedUsingType>(T)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000567 UnresolvedUsingTypeLoc UnresolvedTL
568 = TLB.push<UnresolvedUsingTypeLoc>(T);
569 UnresolvedTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000570 } else if (isa<SubstTemplateTypeParmType>(T)) {
571 SubstTemplateTypeParmTypeLoc TL
572 = TLB.push<SubstTemplateTypeParmTypeLoc>(T);
573 TL.setNameLoc(IdentifierLoc);
574 } else if (isa<SubstTemplateTypeParmPackType>(T)) {
575 SubstTemplateTypeParmPackTypeLoc TL
576 = TLB.push<SubstTemplateTypeParmPackTypeLoc>(T);
577 TL.setNameLoc(IdentifierLoc);
578 } else {
579 llvm_unreachable("Unhandled TypeDecl node in nested-name-specifier");
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000580 }
581
582 SS.Extend(Context, SourceLocation(), TLB.getTypeLocInContext(Context, T),
583 CCLoc);
584 return false;
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000585 }
Mike Stump1eb44332009-09-09 15:08:12 +0000586
Chris Lattner46646492009-12-07 01:36:53 +0000587 // Otherwise, we have an error case. If we don't want diagnostics, just
588 // return an error now.
589 if (ErrorRecoveryLookup)
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000590 return true;
Chris Lattner46646492009-12-07 01:36:53 +0000591
Cedric Venet3d658642009-02-14 20:20:19 +0000592 // If we didn't find anything during our lookup, try again with
593 // ordinary name lookup, which can help us produce better error
594 // messages.
John McCall1bcee0a2009-12-02 08:25:40 +0000595 if (Found.empty()) {
John McCalla24dc2e2009-11-17 02:14:36 +0000596 Found.clear(LookupOrdinaryName);
597 LookupName(Found, S);
John McCallf36e02d2009-10-09 21:13:30 +0000598 }
Mike Stump1eb44332009-09-09 15:08:12 +0000599
Cedric Venet3d658642009-02-14 20:20:19 +0000600 unsigned DiagID;
John McCall1bcee0a2009-12-02 08:25:40 +0000601 if (!Found.empty())
Cedric Venet3d658642009-02-14 20:20:19 +0000602 DiagID = diag::err_expected_class_or_namespace;
Anders Carlssona31d5f72009-08-30 07:09:50 +0000603 else if (SS.isSet()) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000604 Diag(IdentifierLoc, diag::err_no_member)
605 << &Identifier << LookupCtx << SS.getRange();
606 return true;
Anders Carlssona31d5f72009-08-30 07:09:50 +0000607 } else
Cedric Venet3d658642009-02-14 20:20:19 +0000608 DiagID = diag::err_undeclared_var_use;
Mike Stump1eb44332009-09-09 15:08:12 +0000609
Cedric Venet3d658642009-02-14 20:20:19 +0000610 if (SS.isSet())
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000611 Diag(IdentifierLoc, DiagID) << &Identifier << SS.getRange();
Cedric Venet3d658642009-02-14 20:20:19 +0000612 else
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000613 Diag(IdentifierLoc, DiagID) << &Identifier;
Mike Stump1eb44332009-09-09 15:08:12 +0000614
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000615 return true;
Cedric Venet3d658642009-02-14 20:20:19 +0000616}
617
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000618bool Sema::ActOnCXXNestedNameSpecifier(Scope *S,
619 IdentifierInfo &Identifier,
620 SourceLocation IdentifierLoc,
621 SourceLocation CCLoc,
622 ParsedType ObjectType,
623 bool EnteringContext,
624 CXXScopeSpec &SS) {
625 if (SS.isInvalid())
626 return true;
627
628 return BuildCXXNestedNameSpecifier(S, Identifier, IdentifierLoc, CCLoc,
629 GetTypeFromParser(ObjectType),
630 EnteringContext, SS,
631 /*ScopeLookupResult=*/0, false);
Chris Lattner46646492009-12-07 01:36:53 +0000632}
633
634/// IsInvalidUnlessNestedName - This method is used for error recovery
635/// purposes to determine whether the specified identifier is only valid as
636/// a nested name specifier, for example a namespace name. It is
637/// conservatively correct to always return false from this method.
638///
639/// The arguments are the same as those passed to ActOnCXXNestedNameSpecifier.
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000640bool Sema::IsInvalidUnlessNestedName(Scope *S, CXXScopeSpec &SS,
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000641 IdentifierInfo &Identifier,
642 SourceLocation IdentifierLoc,
643 SourceLocation ColonLoc,
644 ParsedType ObjectType,
Chris Lattner46646492009-12-07 01:36:53 +0000645 bool EnteringContext) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000646 if (SS.isInvalid())
647 return false;
648
649 return !BuildCXXNestedNameSpecifier(S, Identifier, IdentifierLoc, ColonLoc,
650 GetTypeFromParser(ObjectType),
651 EnteringContext, SS,
652 /*ScopeLookupResult=*/0, true);
Douglas Gregorc68afe22009-09-03 21:38:09 +0000653}
654
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000655bool Sema::ActOnCXXNestedNameSpecifier(Scope *S,
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000656 SourceLocation TemplateLoc,
657 CXXScopeSpec &SS,
658 TemplateTy Template,
659 SourceLocation TemplateNameLoc,
660 SourceLocation LAngleLoc,
661 ASTTemplateArgsPtr TemplateArgsIn,
662 SourceLocation RAngleLoc,
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000663 SourceLocation CCLoc,
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000664 bool EnteringContext) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000665 if (SS.isInvalid())
666 return true;
667
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000668 // Translate the parser's template argument list in our AST format.
669 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
670 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
671
672 if (DependentTemplateName *DTN = Template.get().getAsDependentTemplateName()){
673 // Handle a dependent template specialization for which we cannot resolve
674 // the template name.
675 assert(DTN->getQualifier()
676 == static_cast<NestedNameSpecifier*>(SS.getScopeRep()));
677 QualType T = Context.getDependentTemplateSpecializationType(ETK_None,
Douglas Gregor94fdffa2011-03-01 20:11:18 +0000678 DTN->getQualifier(),
679 DTN->getIdentifier(),
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000680 TemplateArgs);
681
682 // Create source-location information for this type.
683 TypeLocBuilder Builder;
684 DependentTemplateSpecializationTypeLoc SpecTL
685 = Builder.push<DependentTemplateSpecializationTypeLoc>(T);
686 SpecTL.setLAngleLoc(LAngleLoc);
687 SpecTL.setRAngleLoc(RAngleLoc);
688 SpecTL.setKeywordLoc(SourceLocation());
689 SpecTL.setNameLoc(TemplateNameLoc);
Douglas Gregor94fdffa2011-03-01 20:11:18 +0000690 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000691 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
692 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
693
694 SS.Extend(Context, TemplateLoc, Builder.getTypeLocInContext(Context, T),
695 CCLoc);
696 return false;
697 }
698
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +0000699
700 if (Template.get().getAsOverloadedTemplate() ||
701 isa<FunctionTemplateDecl>(Template.get().getAsTemplateDecl())) {
702 SourceRange R(TemplateNameLoc, RAngleLoc);
703 if (SS.getRange().isValid())
704 R.setBegin(SS.getRange().getBegin());
705
706 Diag(CCLoc, diag::err_non_type_template_in_nested_name_specifier)
707 << Template.get() << R;
708 NoteAllFoundTemplates(Template.get());
709 return true;
710 }
711
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000712 // We were able to resolve the template name to an actual template.
713 // Build an appropriate nested-name-specifier.
714 QualType T = CheckTemplateIdType(Template.get(), TemplateNameLoc,
715 TemplateArgs);
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000716 if (T.isNull())
717 return true;
718
Richard Smith3e4c6c42011-05-05 21:57:07 +0000719 // Alias template specializations can produce types which are not valid
720 // nested name specifiers.
721 if (!T->isDependentType() && !T->getAs<TagType>()) {
722 Diag(TemplateNameLoc, diag::err_nested_name_spec_non_tag) << T;
723 NoteAllFoundTemplates(Template.get());
724 return true;
725 }
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000726
727 // Provide source-location information for the template specialization
728 // type.
729 TypeLocBuilder Builder;
730 TemplateSpecializationTypeLoc SpecTL
731 = Builder.push<TemplateSpecializationTypeLoc>(T);
732
733 SpecTL.setLAngleLoc(LAngleLoc);
734 SpecTL.setRAngleLoc(RAngleLoc);
735 SpecTL.setTemplateNameLoc(TemplateNameLoc);
736 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
737 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
738
739
740 SS.Extend(Context, TemplateLoc, Builder.getTypeLocInContext(Context, T),
741 CCLoc);
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000742 return false;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000743}
744
Douglas Gregorc34348a2011-02-24 17:54:50 +0000745namespace {
746 /// \brief A structure that stores a nested-name-specifier annotation,
747 /// including both the nested-name-specifier
748 struct NestedNameSpecifierAnnotation {
749 NestedNameSpecifier *NNS;
750 };
751}
752
753void *Sema::SaveNestedNameSpecifierAnnotation(CXXScopeSpec &SS) {
754 if (SS.isEmpty() || SS.isInvalid())
755 return 0;
756
757 void *Mem = Context.Allocate((sizeof(NestedNameSpecifierAnnotation) +
758 SS.location_size()),
759 llvm::alignOf<NestedNameSpecifierAnnotation>());
760 NestedNameSpecifierAnnotation *Annotation
761 = new (Mem) NestedNameSpecifierAnnotation;
762 Annotation->NNS = SS.getScopeRep();
763 memcpy(Annotation + 1, SS.location_data(), SS.location_size());
764 return Annotation;
765}
766
767void Sema::RestoreNestedNameSpecifierAnnotation(void *AnnotationPtr,
768 SourceRange AnnotationRange,
769 CXXScopeSpec &SS) {
770 if (!AnnotationPtr) {
771 SS.SetInvalid(AnnotationRange);
772 return;
773 }
774
775 NestedNameSpecifierAnnotation *Annotation
776 = static_cast<NestedNameSpecifierAnnotation *>(AnnotationPtr);
777 SS.Adopt(NestedNameSpecifierLoc(Annotation->NNS, Annotation + 1));
778}
779
John McCalle7e278b2009-12-11 20:04:54 +0000780bool Sema::ShouldEnterDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
781 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
782
783 NestedNameSpecifier *Qualifier =
784 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
785
786 // There are only two places a well-formed program may qualify a
787 // declarator: first, when defining a namespace or class member
788 // out-of-line, and second, when naming an explicitly-qualified
789 // friend function. The latter case is governed by
790 // C++03 [basic.lookup.unqual]p10:
791 // In a friend declaration naming a member function, a name used
792 // in the function declarator and not part of a template-argument
793 // in a template-id is first looked up in the scope of the member
794 // function's class. If it is not found, or if the name is part of
795 // a template-argument in a template-id, the look up is as
796 // described for unqualified names in the definition of the class
797 // granting friendship.
798 // i.e. we don't push a scope unless it's a class member.
799
800 switch (Qualifier->getKind()) {
801 case NestedNameSpecifier::Global:
802 case NestedNameSpecifier::Namespace:
Douglas Gregor14aba762011-02-24 02:36:08 +0000803 case NestedNameSpecifier::NamespaceAlias:
John McCalle7e278b2009-12-11 20:04:54 +0000804 // These are always namespace scopes. We never want to enter a
805 // namespace scope from anything but a file context.
Sebastian Redl7a126a42010-08-31 00:36:30 +0000806 return CurContext->getRedeclContext()->isFileContext();
John McCalle7e278b2009-12-11 20:04:54 +0000807
808 case NestedNameSpecifier::Identifier:
809 case NestedNameSpecifier::TypeSpec:
810 case NestedNameSpecifier::TypeSpecWithTemplate:
811 // These are never namespace scopes.
812 return true;
813 }
814
815 // Silence bogus warning.
816 return false;
817}
818
Cedric Venet3d658642009-02-14 20:20:19 +0000819/// ActOnCXXEnterDeclaratorScope - Called when a C++ scope specifier (global
820/// scope or nested-name-specifier) is parsed, part of a declarator-id.
821/// After this method is called, according to [C++ 3.4.3p3], names should be
822/// looked up in the declarator-id's scope, until the declarator is parsed and
823/// ActOnCXXExitDeclaratorScope is called.
824/// The 'SS' should be a non-empty valid CXXScopeSpec.
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000825bool Sema::ActOnCXXEnterDeclaratorScope(Scope *S, CXXScopeSpec &SS) {
Cedric Venet3d658642009-02-14 20:20:19 +0000826 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
John McCall7a1dc562009-12-19 10:49:29 +0000827
828 if (SS.isInvalid()) return true;
829
830 DeclContext *DC = computeDeclContext(SS, true);
831 if (!DC) return true;
832
833 // Before we enter a declarator's context, we need to make sure that
834 // it is a complete declaration context.
John McCall77bb1aa2010-05-01 00:40:08 +0000835 if (!DC->isDependentContext() && RequireCompleteDeclContext(SS, DC))
John McCall7a1dc562009-12-19 10:49:29 +0000836 return true;
837
838 EnterDeclaratorContext(S, DC);
John McCall31f17ec2010-04-27 00:57:59 +0000839
840 // Rebuild the nested name specifier for the new scope.
841 if (DC->isDependentContext())
842 RebuildNestedNameSpecifierInCurrentInstantiation(SS);
843
Douglas Gregor7dfd0fb2009-09-24 23:39:01 +0000844 return false;
Cedric Venet3d658642009-02-14 20:20:19 +0000845}
846
847/// ActOnCXXExitDeclaratorScope - Called when a declarator that previously
848/// invoked ActOnCXXEnterDeclaratorScope(), is finished. 'SS' is the same
849/// CXXScopeSpec that was passed to ActOnCXXEnterDeclaratorScope as well.
850/// Used to indicate that names should revert to being looked up in the
851/// defining scope.
852void Sema::ActOnCXXExitDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
853 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
Douglas Gregordacd4342009-08-26 00:04:55 +0000854 if (SS.isInvalid())
855 return;
John McCall7a1dc562009-12-19 10:49:29 +0000856 assert(!SS.isInvalid() && computeDeclContext(SS, true) &&
857 "exiting declarator scope we never really entered");
858 ExitDeclaratorContext(S);
Cedric Venet3d658642009-02-14 20:20:19 +0000859}