blob: 31e33dda08ade58801722838b0ccf5d45540c508 [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:
David Blaikieb219cfc2011-09-23 05:06:16 +0000140 llvm_unreachable("Dependent nested-name-specifier has no DeclContext");
Douglas Gregorab452ba2009-03-26 23:50:42 +0000141
142 case NestedNameSpecifier::Namespace:
143 return NNS->getAsNamespace();
144
Douglas Gregor14aba762011-02-24 02:36:08 +0000145 case NestedNameSpecifier::NamespaceAlias:
146 return NNS->getAsNamespaceAlias()->getNamespace();
147
Douglas Gregorab452ba2009-03-26 23:50:42 +0000148 case NestedNameSpecifier::TypeSpec:
149 case NestedNameSpecifier::TypeSpecWithTemplate: {
Douglas Gregoredc90502010-02-25 04:46:04 +0000150 const TagType *Tag = NNS->getAsType()->getAs<TagType>();
151 assert(Tag && "Non-tag type in nested-name-specifier");
152 return Tag->getDecl();
153 } break;
Douglas Gregorab452ba2009-03-26 23:50:42 +0000154
155 case NestedNameSpecifier::Global:
156 return Context.getTranslationUnitDecl();
157 }
158
Douglas Gregoredc90502010-02-25 04:46:04 +0000159 // Required to silence a GCC warning.
Douglas Gregorab452ba2009-03-26 23:50:42 +0000160 return 0;
Douglas Gregorca5e77f2009-03-18 00:36:05 +0000161}
162
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000163bool Sema::isDependentScopeSpecifier(const CXXScopeSpec &SS) {
164 if (!SS.isSet() || SS.isInvalid())
165 return false;
166
Mike Stump1eb44332009-09-09 15:08:12 +0000167 NestedNameSpecifier *NNS
Douglas Gregor35073692009-03-26 23:56:24 +0000168 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
Douglas Gregorab452ba2009-03-26 23:50:42 +0000169 return NNS->isDependent();
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000170}
171
Douglas Gregor42af25f2009-05-11 19:58:34 +0000172// \brief Determine whether this C++ scope specifier refers to an
173// unknown specialization, i.e., a dependent type that is not the
174// current instantiation.
175bool Sema::isUnknownSpecialization(const CXXScopeSpec &SS) {
176 if (!isDependentScopeSpecifier(SS))
177 return false;
178
Mike Stump1eb44332009-09-09 15:08:12 +0000179 NestedNameSpecifier *NNS
Douglas Gregor42af25f2009-05-11 19:58:34 +0000180 = static_cast<NestedNameSpecifier *>(SS.getScopeRep());
181 return getCurrentInstantiationOf(NNS) == 0;
182}
183
184/// \brief If the given nested name specifier refers to the current
185/// instantiation, return the declaration that corresponds to that
186/// current instantiation (C++0x [temp.dep.type]p1).
187///
188/// \param NNS a dependent nested name specifier.
189CXXRecordDecl *Sema::getCurrentInstantiationOf(NestedNameSpecifier *NNS) {
190 assert(getLangOptions().CPlusPlus && "Only callable in C++");
191 assert(NNS->isDependent() && "Only dependent nested-name-specifier allowed");
192
Douglas Gregorf59a56e2009-07-21 23:53:31 +0000193 if (!NNS->getAsType())
194 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000195
Douglas Gregor1560def2009-07-31 18:32:42 +0000196 QualType T = QualType(NNS->getAsType(), 0);
Douglas Gregord9ea1802011-02-19 19:24:40 +0000197 return ::getCurrentInstantiationOf(T, CurContext);
Douglas Gregor42af25f2009-05-11 19:58:34 +0000198}
199
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000200/// \brief Require that the context specified by SS be complete.
201///
202/// If SS refers to a type, this routine checks whether the type is
203/// complete enough (or can be made complete enough) for name lookup
204/// into the DeclContext. A type that is not yet completed can be
205/// considered "complete enough" if it is a class/struct/union/enum
206/// that is currently being defined. Or, if we have a type that names
207/// a class template specialization that is not a complete type, we
208/// will attempt to instantiate that class template.
John McCall77bb1aa2010-05-01 00:40:08 +0000209bool Sema::RequireCompleteDeclContext(CXXScopeSpec &SS,
210 DeclContext *DC) {
211 assert(DC != 0 && "given null context");
Mike Stump1eb44332009-09-09 15:08:12 +0000212
John McCall9dc71d22011-07-06 06:57:57 +0000213 if (TagDecl *tag = dyn_cast<TagDecl>(DC)) {
Douglas Gregora4e8c2a2010-02-05 04:39:02 +0000214 // If this is a dependent type, then we consider it complete.
John McCall9dc71d22011-07-06 06:57:57 +0000215 if (tag->isDependentContext())
Douglas Gregora4e8c2a2010-02-05 04:39:02 +0000216 return false;
217
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000218 // If we're currently defining this type, then lookup into the
219 // type is okay: don't complain that it isn't complete yet.
John McCall9dc71d22011-07-06 06:57:57 +0000220 QualType type = Context.getTypeDeclType(tag);
221 const TagType *tagType = type->getAs<TagType>();
222 if (tagType && tagType->isBeingDefined())
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000223 return false;
224
John McCall9dc71d22011-07-06 06:57:57 +0000225 SourceLocation loc = SS.getLastQualifierNameLoc();
226 if (loc.isInvalid()) loc = SS.getRange().getBegin();
227
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000228 // The type must be complete.
John McCall9dc71d22011-07-06 06:57:57 +0000229 if (RequireCompleteType(loc, type,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000230 PDiag(diag::err_incomplete_nested_name_spec)
John McCall77bb1aa2010-05-01 00:40:08 +0000231 << SS.getRange())) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000232 SS.SetInvalid(SS.getRange());
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000233 return true;
234 }
John McCall9dc71d22011-07-06 06:57:57 +0000235
236 // Fixed enum types are complete, but they aren't valid as scopes
237 // until we see a definition, so awkwardly pull out this special
238 // case.
239 if (const EnumType *enumType = dyn_cast_or_null<EnumType>(tagType)) {
John McCall5e1cdac2011-10-07 06:10:15 +0000240 if (!enumType->getDecl()->isCompleteDefinition()) {
John McCall9dc71d22011-07-06 06:57:57 +0000241 Diag(loc, diag::err_incomplete_nested_name_spec)
242 << type << SS.getRange();
243 SS.SetInvalid(SS.getRange());
244 return true;
245 }
246 }
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +0000247 }
248
249 return false;
250}
Cedric Venet3d658642009-02-14 20:20:19 +0000251
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000252bool Sema::ActOnCXXGlobalScopeSpecifier(Scope *S, SourceLocation CCLoc,
253 CXXScopeSpec &SS) {
254 SS.MakeGlobal(Context, CCLoc);
255 return false;
Cedric Venet3d658642009-02-14 20:20:19 +0000256}
257
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000258/// \brief Determines whether the given declaration is an valid acceptable
259/// result for name lookup of a nested-name-specifier.
Douglas Gregoredc90502010-02-25 04:46:04 +0000260bool Sema::isAcceptableNestedNameSpecifier(NamedDecl *SD) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000261 if (!SD)
262 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000263
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000264 // Namespace and namespace aliases are fine.
265 if (isa<NamespaceDecl>(SD) || isa<NamespaceAliasDecl>(SD))
266 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000267
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000268 if (!isa<TypeDecl>(SD))
269 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000270
Richard Smith6b130222011-10-18 21:39:00 +0000271 // Determine whether we have a class (or, in C++11, an enum) or
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000272 // a typedef thereof. If so, build the nested-name-specifier.
273 QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD));
274 if (T->isDependentType())
275 return true;
Richard Smith162e1c12011-04-15 14:24:37 +0000276 else if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(SD)) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000277 if (TD->getUnderlyingType()->isRecordType() ||
Mike Stump1eb44332009-09-09 15:08:12 +0000278 (Context.getLangOptions().CPlusPlus0x &&
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000279 TD->getUnderlyingType()->isEnumeralType()))
280 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000281 } else if (isa<RecordDecl>(SD) ||
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000282 (Context.getLangOptions().CPlusPlus0x && isa<EnumDecl>(SD)))
283 return true;
284
285 return false;
286}
287
Douglas Gregorc68afe22009-09-03 21:38:09 +0000288/// \brief If the given nested-name-specifier begins with a bare identifier
Mike Stump1eb44332009-09-09 15:08:12 +0000289/// (e.g., Base::), perform name lookup for that identifier as a
Douglas Gregorc68afe22009-09-03 21:38:09 +0000290/// nested-name-specifier within the given scope, and return the result of that
291/// name lookup.
292NamedDecl *Sema::FindFirstQualifierInScope(Scope *S, NestedNameSpecifier *NNS) {
293 if (!S || !NNS)
294 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000295
Douglas Gregorc68afe22009-09-03 21:38:09 +0000296 while (NNS->getPrefix())
297 NNS = NNS->getPrefix();
Mike Stump1eb44332009-09-09 15:08:12 +0000298
Douglas Gregorc68afe22009-09-03 21:38:09 +0000299 if (NNS->getKind() != NestedNameSpecifier::Identifier)
300 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000301
John McCalla24dc2e2009-11-17 02:14:36 +0000302 LookupResult Found(*this, NNS->getAsIdentifier(), SourceLocation(),
303 LookupNestedNameSpecifierName);
304 LookupName(Found, S);
Douglas Gregorc68afe22009-09-03 21:38:09 +0000305 assert(!Found.isAmbiguous() && "Cannot handle ambiguities here yet");
306
John McCall1bcee0a2009-12-02 08:25:40 +0000307 if (!Found.isSingleResult())
308 return 0;
309
310 NamedDecl *Result = Found.getFoundDecl();
Douglas Gregoredc90502010-02-25 04:46:04 +0000311 if (isAcceptableNestedNameSpecifier(Result))
Douglas Gregorc68afe22009-09-03 21:38:09 +0000312 return Result;
Mike Stump1eb44332009-09-09 15:08:12 +0000313
Douglas Gregorc68afe22009-09-03 21:38:09 +0000314 return 0;
315}
316
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000317bool Sema::isNonTypeNestedNameSpecifier(Scope *S, CXXScopeSpec &SS,
Douglas Gregor77549082010-02-24 21:29:12 +0000318 SourceLocation IdLoc,
319 IdentifierInfo &II,
John McCallb3d87482010-08-24 05:47:05 +0000320 ParsedType ObjectTypePtr) {
Douglas Gregor77549082010-02-24 21:29:12 +0000321 QualType ObjectType = GetTypeFromParser(ObjectTypePtr);
322 LookupResult Found(*this, &II, IdLoc, LookupNestedNameSpecifierName);
323
324 // Determine where to perform name lookup
325 DeclContext *LookupCtx = 0;
326 bool isDependent = false;
327 if (!ObjectType.isNull()) {
328 // This nested-name-specifier occurs in a member access expression, e.g.,
329 // x->B::f, and we are looking into the type of the object.
330 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
331 LookupCtx = computeDeclContext(ObjectType);
332 isDependent = ObjectType->isDependentType();
333 } else if (SS.isSet()) {
334 // This nested-name-specifier occurs after another nested-name-specifier,
335 // so long into the context associated with the prior nested-name-specifier.
336 LookupCtx = computeDeclContext(SS, false);
337 isDependent = isDependentScopeSpecifier(SS);
338 Found.setContextRange(SS.getRange());
339 }
340
341 if (LookupCtx) {
342 // Perform "qualified" name lookup into the declaration context we
343 // computed, which is either the type of the base of a member access
344 // expression or the declaration context associated with a prior
345 // nested-name-specifier.
346
347 // The declaration context must be complete.
John McCall77bb1aa2010-05-01 00:40:08 +0000348 if (!LookupCtx->isDependentContext() &&
349 RequireCompleteDeclContext(SS, LookupCtx))
Douglas Gregor77549082010-02-24 21:29:12 +0000350 return false;
351
352 LookupQualifiedName(Found, LookupCtx);
353 } else if (isDependent) {
354 return false;
355 } else {
356 LookupName(Found, S);
357 }
358 Found.suppressDiagnostics();
359
360 if (NamedDecl *ND = Found.getAsSingle<NamedDecl>())
361 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
362
363 return false;
364}
365
Kaelyn Uhrain3b4b0472012-01-12 22:32:39 +0000366namespace {
367
368// Callback to only accept typo corrections that can be a valid C++ member
369// intializer: either a non-static field member or a base class.
370class NestedNameSpecifierValidatorCCC : public CorrectionCandidateCallback {
371 public:
372 explicit NestedNameSpecifierValidatorCCC(Sema &SRef)
373 : SRef(SRef) {}
374
375 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
376 return SRef.isAcceptableNestedNameSpecifier(candidate.getCorrectionDecl());
377 }
378
379 private:
380 Sema &SRef;
381};
382
383}
384
Douglas Gregorc68afe22009-09-03 21:38:09 +0000385/// \brief Build a new nested-name-specifier for "identifier::", as described
386/// by ActOnCXXNestedNameSpecifier.
387///
388/// This routine differs only slightly from ActOnCXXNestedNameSpecifier, in
389/// that it contains an extra parameter \p ScopeLookupResult, which provides
390/// the result of name lookup within the scope of the nested-name-specifier
Douglas Gregora6e51992009-12-30 16:01:52 +0000391/// that was computed at template definition time.
Chris Lattner46646492009-12-07 01:36:53 +0000392///
393/// If ErrorRecoveryLookup is true, then this call is used to improve error
394/// recovery. This means that it should not emit diagnostics, it should
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000395/// just return true on failure. It also means it should only return a valid
Chris Lattner46646492009-12-07 01:36:53 +0000396/// scope if it *knows* that the result is correct. It should not return in a
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000397/// dependent context, for example. Nor will it extend \p SS with the scope
398/// specifier.
399bool Sema::BuildCXXNestedNameSpecifier(Scope *S,
400 IdentifierInfo &Identifier,
401 SourceLocation IdentifierLoc,
402 SourceLocation CCLoc,
403 QualType ObjectType,
404 bool EnteringContext,
405 CXXScopeSpec &SS,
406 NamedDecl *ScopeLookupResult,
407 bool ErrorRecoveryLookup) {
408 LookupResult Found(*this, &Identifier, IdentifierLoc,
409 LookupNestedNameSpecifierName);
John McCalla24dc2e2009-11-17 02:14:36 +0000410
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000411 // Determine where to perform name lookup
412 DeclContext *LookupCtx = 0;
413 bool isDependent = false;
Douglas Gregorc68afe22009-09-03 21:38:09 +0000414 if (!ObjectType.isNull()) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000415 // This nested-name-specifier occurs in a member access expression, e.g.,
416 // x->B::f, and we are looking into the type of the object.
417 assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist");
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000418 LookupCtx = computeDeclContext(ObjectType);
419 isDependent = ObjectType->isDependentType();
420 } else if (SS.isSet()) {
421 // This nested-name-specifier occurs after another nested-name-specifier,
Richard Smith3e4c6c42011-05-05 21:57:07 +0000422 // so look into the context associated with the prior nested-name-specifier.
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000423 LookupCtx = computeDeclContext(SS, EnteringContext);
424 isDependent = isDependentScopeSpecifier(SS);
John McCalla24dc2e2009-11-17 02:14:36 +0000425 Found.setContextRange(SS.getRange());
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000426 }
Mike Stump1eb44332009-09-09 15:08:12 +0000427
John McCalla24dc2e2009-11-17 02:14:36 +0000428
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000429 bool ObjectTypeSearchedInScope = false;
430 if (LookupCtx) {
Mike Stump1eb44332009-09-09 15:08:12 +0000431 // Perform "qualified" name lookup into the declaration context we
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000432 // computed, which is either the type of the base of a member access
Mike Stump1eb44332009-09-09 15:08:12 +0000433 // expression or the declaration context associated with a prior
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000434 // nested-name-specifier.
Mike Stump1eb44332009-09-09 15:08:12 +0000435
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000436 // The declaration context must be complete.
John McCall77bb1aa2010-05-01 00:40:08 +0000437 if (!LookupCtx->isDependentContext() &&
438 RequireCompleteDeclContext(SS, LookupCtx))
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000439 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000440
John McCalla24dc2e2009-11-17 02:14:36 +0000441 LookupQualifiedName(Found, LookupCtx);
Mike Stump1eb44332009-09-09 15:08:12 +0000442
John McCalla24dc2e2009-11-17 02:14:36 +0000443 if (!ObjectType.isNull() && Found.empty()) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000444 // C++ [basic.lookup.classref]p4:
445 // If the id-expression in a class member access is a qualified-id of
Mike Stump1eb44332009-09-09 15:08:12 +0000446 // the form
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000447 //
448 // class-name-or-namespace-name::...
449 //
Mike Stump1eb44332009-09-09 15:08:12 +0000450 // the class-name-or-namespace-name following the . or -> operator is
451 // looked up both in the context of the entire postfix-expression and in
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000452 // the scope of the class of the object expression. If the name is found
Mike Stump1eb44332009-09-09 15:08:12 +0000453 // only in the scope of the class of the object expression, the name
454 // shall refer to a class-name. If the name is found only in the
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000455 // context of the entire postfix-expression, the name shall refer to a
456 // class-name or namespace-name. [...]
457 //
458 // Qualified name lookup into a class will not find a namespace-name,
Douglas Gregor714c9922011-05-15 17:27:27 +0000459 // so we do not need to diagnose that case specifically. However,
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000460 // this qualified name lookup may find nothing. In that case, perform
Mike Stump1eb44332009-09-09 15:08:12 +0000461 // unqualified name lookup in the given scope (if available) or
Douglas Gregorc68afe22009-09-03 21:38:09 +0000462 // reconstruct the result from when name lookup was performed at template
463 // definition time.
464 if (S)
John McCalla24dc2e2009-11-17 02:14:36 +0000465 LookupName(Found, S);
John McCallf36e02d2009-10-09 21:13:30 +0000466 else if (ScopeLookupResult)
467 Found.addDecl(ScopeLookupResult);
Mike Stump1eb44332009-09-09 15:08:12 +0000468
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000469 ObjectTypeSearchedInScope = true;
470 }
Douglas Gregorac7cbd82010-07-28 14:49:07 +0000471 } else if (!isDependent) {
472 // Perform unqualified name lookup in the current scope.
473 LookupName(Found, S);
474 }
475
476 // If we performed lookup into a dependent context and did not find anything,
477 // that's fine: just build a dependent nested-name-specifier.
478 if (Found.empty() && isDependent &&
479 !(LookupCtx && LookupCtx->isRecord() &&
480 (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() ||
481 !cast<CXXRecordDecl>(LookupCtx)->hasAnyDependentBases()))) {
Chris Lattner46646492009-12-07 01:36:53 +0000482 // Don't speculate if we're just trying to improve error recovery.
483 if (ErrorRecoveryLookup)
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000484 return true;
Chris Lattner46646492009-12-07 01:36:53 +0000485
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000486 // We were not able to compute the declaration context for a dependent
Mike Stump1eb44332009-09-09 15:08:12 +0000487 // base object type or prior nested-name-specifier, so this
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000488 // nested-name-specifier refers to an unknown specialization. Just build
489 // a dependent nested-name-specifier.
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000490 SS.Extend(Context, &Identifier, IdentifierLoc, CCLoc);
491 return false;
Douglas Gregorac7cbd82010-07-28 14:49:07 +0000492 }
493
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000494 // FIXME: Deal with ambiguities cleanly.
Douglas Gregor175a6562009-12-31 08:26:35 +0000495
496 if (Found.empty() && !ErrorRecoveryLookup) {
497 // We haven't found anything, and we're not recovering from a
498 // different kind of error, so look for typos.
499 DeclarationName Name = Found.getLookupName();
Kaelyn Uhrain3b4b0472012-01-12 22:32:39 +0000500 NestedNameSpecifierValidatorCCC Validator(*this);
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000501 TypoCorrection Corrected;
502 Found.clear();
503 if ((Corrected = CorrectTypo(Found.getLookupNameInfo(),
Kaelyn Uhrain3b4b0472012-01-12 22:32:39 +0000504 Found.getLookupKind(), S, &SS, &Validator,
505 LookupCtx, EnteringContext))) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000506 std::string CorrectedStr(Corrected.getAsString(getLangOptions()));
507 std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOptions()));
Douglas Gregor175a6562009-12-31 08:26:35 +0000508 if (LookupCtx)
509 Diag(Found.getNameLoc(), diag::err_no_member_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000510 << Name << LookupCtx << CorrectedQuotedStr << SS.getRange()
511 << FixItHint::CreateReplacement(Found.getNameLoc(), CorrectedStr);
Douglas Gregor175a6562009-12-31 08:26:35 +0000512 else
513 Diag(Found.getNameLoc(), diag::err_undeclared_var_use_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000514 << Name << CorrectedQuotedStr
515 << FixItHint::CreateReplacement(Found.getNameLoc(), CorrectedStr);
Douglas Gregor67dd1d42010-01-07 00:17:44 +0000516
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000517 if (NamedDecl *ND = Corrected.getCorrectionDecl()) {
518 Diag(ND->getLocation(), diag::note_previous_decl) << CorrectedQuotedStr;
519 Found.addDecl(ND);
520 }
521 Found.setLookupName(Corrected.getCorrection());
Douglas Gregor12eb5d62010-06-29 19:27:42 +0000522 } else {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000523 Found.setLookupName(&Identifier);
Douglas Gregor12eb5d62010-06-29 19:27:42 +0000524 }
Douglas Gregor175a6562009-12-31 08:26:35 +0000525 }
526
John McCall1bcee0a2009-12-02 08:25:40 +0000527 NamedDecl *SD = Found.getAsSingle<NamedDecl>();
Douglas Gregoredc90502010-02-25 04:46:04 +0000528 if (isAcceptableNestedNameSpecifier(SD)) {
Douglas Gregorc68afe22009-09-03 21:38:09 +0000529 if (!ObjectType.isNull() && !ObjectTypeSearchedInScope) {
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000530 // C++ [basic.lookup.classref]p4:
Mike Stump1eb44332009-09-09 15:08:12 +0000531 // [...] If the name is found in both contexts, the
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000532 // class-name-or-namespace-name shall refer to the same entity.
533 //
534 // We already found the name in the scope of the object. Now, look
535 // into the current scope (the scope of the postfix-expression) to
Douglas Gregorc68afe22009-09-03 21:38:09 +0000536 // see if we can find the same name there. As above, if there is no
537 // scope, reconstruct the result from the template instantiation itself.
John McCallf36e02d2009-10-09 21:13:30 +0000538 NamedDecl *OuterDecl;
539 if (S) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000540 LookupResult FoundOuter(*this, &Identifier, IdentifierLoc,
541 LookupNestedNameSpecifierName);
John McCalla24dc2e2009-11-17 02:14:36 +0000542 LookupName(FoundOuter, S);
John McCall1bcee0a2009-12-02 08:25:40 +0000543 OuterDecl = FoundOuter.getAsSingle<NamedDecl>();
John McCallf36e02d2009-10-09 21:13:30 +0000544 } else
545 OuterDecl = ScopeLookupResult;
Mike Stump1eb44332009-09-09 15:08:12 +0000546
Douglas Gregoredc90502010-02-25 04:46:04 +0000547 if (isAcceptableNestedNameSpecifier(OuterDecl) &&
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000548 OuterDecl->getCanonicalDecl() != SD->getCanonicalDecl() &&
549 (!isa<TypeDecl>(OuterDecl) || !isa<TypeDecl>(SD) ||
550 !Context.hasSameType(
Douglas Gregorc68afe22009-09-03 21:38:09 +0000551 Context.getTypeDeclType(cast<TypeDecl>(OuterDecl)),
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000552 Context.getTypeDeclType(cast<TypeDecl>(SD))))) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000553 if (ErrorRecoveryLookup)
554 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000555
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000556 Diag(IdentifierLoc,
557 diag::err_nested_name_member_ref_lookup_ambiguous)
558 << &Identifier;
559 Diag(SD->getLocation(), diag::note_ambig_member_ref_object_type)
560 << ObjectType;
561 Diag(OuterDecl->getLocation(), diag::note_ambig_member_ref_scope);
562
563 // Fall through so that we'll pick the name we found in the object
564 // type, since that's probably what the user wanted anyway.
565 }
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000566 }
Mike Stump1eb44332009-09-09 15:08:12 +0000567
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000568 // If we're just performing this lookup for error-recovery purposes,
569 // don't extend the nested-name-specifier. Just return now.
570 if (ErrorRecoveryLookup)
571 return false;
572
573 if (NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(SD)) {
574 SS.Extend(Context, Namespace, IdentifierLoc, CCLoc);
575 return false;
576 }
Mike Stump1eb44332009-09-09 15:08:12 +0000577
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000578 if (NamespaceAliasDecl *Alias = dyn_cast<NamespaceAliasDecl>(SD)) {
Douglas Gregor14aba762011-02-24 02:36:08 +0000579 SS.Extend(Context, Alias, IdentifierLoc, CCLoc);
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000580 return false;
581 }
Mike Stump1eb44332009-09-09 15:08:12 +0000582
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000583 QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD));
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000584 TypeLocBuilder TLB;
585 if (isa<InjectedClassNameType>(T)) {
586 InjectedClassNameTypeLoc InjectedTL
587 = TLB.push<InjectedClassNameTypeLoc>(T);
588 InjectedTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000589 } else if (isa<RecordType>(T)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000590 RecordTypeLoc RecordTL = TLB.push<RecordTypeLoc>(T);
591 RecordTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000592 } else if (isa<TypedefType>(T)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000593 TypedefTypeLoc TypedefTL = TLB.push<TypedefTypeLoc>(T);
594 TypedefTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000595 } else if (isa<EnumType>(T)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000596 EnumTypeLoc EnumTL = TLB.push<EnumTypeLoc>(T);
597 EnumTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000598 } else if (isa<TemplateTypeParmType>(T)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000599 TemplateTypeParmTypeLoc TemplateTypeTL
600 = TLB.push<TemplateTypeParmTypeLoc>(T);
601 TemplateTypeTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000602 } else if (isa<UnresolvedUsingType>(T)) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000603 UnresolvedUsingTypeLoc UnresolvedTL
604 = TLB.push<UnresolvedUsingTypeLoc>(T);
605 UnresolvedTL.setNameLoc(IdentifierLoc);
Douglas Gregorbd61e342011-05-04 23:05:40 +0000606 } else if (isa<SubstTemplateTypeParmType>(T)) {
607 SubstTemplateTypeParmTypeLoc TL
608 = TLB.push<SubstTemplateTypeParmTypeLoc>(T);
609 TL.setNameLoc(IdentifierLoc);
610 } else if (isa<SubstTemplateTypeParmPackType>(T)) {
611 SubstTemplateTypeParmPackTypeLoc TL
612 = TLB.push<SubstTemplateTypeParmPackTypeLoc>(T);
613 TL.setNameLoc(IdentifierLoc);
614 } else {
615 llvm_unreachable("Unhandled TypeDecl node in nested-name-specifier");
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000616 }
617
Richard Smith95aafb22011-10-20 03:28:47 +0000618 if (T->isEnumeralType())
619 Diag(IdentifierLoc, diag::warn_cxx98_compat_enum_nested_name_spec);
620
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000621 SS.Extend(Context, SourceLocation(), TLB.getTypeLocInContext(Context, T),
622 CCLoc);
623 return false;
Douglas Gregor2dd078a2009-09-02 22:59:36 +0000624 }
Mike Stump1eb44332009-09-09 15:08:12 +0000625
Chris Lattner46646492009-12-07 01:36:53 +0000626 // Otherwise, we have an error case. If we don't want diagnostics, just
627 // return an error now.
628 if (ErrorRecoveryLookup)
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000629 return true;
Chris Lattner46646492009-12-07 01:36:53 +0000630
Cedric Venet3d658642009-02-14 20:20:19 +0000631 // If we didn't find anything during our lookup, try again with
632 // ordinary name lookup, which can help us produce better error
633 // messages.
John McCall1bcee0a2009-12-02 08:25:40 +0000634 if (Found.empty()) {
John McCalla24dc2e2009-11-17 02:14:36 +0000635 Found.clear(LookupOrdinaryName);
636 LookupName(Found, S);
John McCallf36e02d2009-10-09 21:13:30 +0000637 }
Mike Stump1eb44332009-09-09 15:08:12 +0000638
Francois Pichetdfb6ae12011-07-27 01:05:24 +0000639 // In Microsoft mode, if we are within a templated function and we can't
640 // resolve Identifier, then extend the SS with Identifier. This will have
641 // the effect of resolving Identifier during template instantiation.
642 // The goal is to be able to resolve a function call whose
643 // nested-name-specifier is located inside a dependent base class.
644 // Example:
645 //
646 // class C {
647 // public:
648 // static void foo2() { }
649 // };
650 // template <class T> class A { public: typedef C D; };
651 //
652 // template <class T> class B : public A<T> {
653 // public:
654 // void foo() { D::foo2(); }
655 // };
Francois Pichet62ec1f22011-09-17 17:15:52 +0000656 if (getLangOptions().MicrosoftExt) {
Francois Pichetdfb6ae12011-07-27 01:05:24 +0000657 DeclContext *DC = LookupCtx ? LookupCtx : CurContext;
658 if (DC->isDependentContext() && DC->isFunctionOrMethod()) {
659 SS.Extend(Context, &Identifier, IdentifierLoc, CCLoc);
660 return false;
661 }
662 }
663
Cedric Venet3d658642009-02-14 20:20:19 +0000664 unsigned DiagID;
John McCall1bcee0a2009-12-02 08:25:40 +0000665 if (!Found.empty())
Cedric Venet3d658642009-02-14 20:20:19 +0000666 DiagID = diag::err_expected_class_or_namespace;
Anders Carlssona31d5f72009-08-30 07:09:50 +0000667 else if (SS.isSet()) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000668 Diag(IdentifierLoc, diag::err_no_member)
669 << &Identifier << LookupCtx << SS.getRange();
670 return true;
Anders Carlssona31d5f72009-08-30 07:09:50 +0000671 } else
Cedric Venet3d658642009-02-14 20:20:19 +0000672 DiagID = diag::err_undeclared_var_use;
Mike Stump1eb44332009-09-09 15:08:12 +0000673
Cedric Venet3d658642009-02-14 20:20:19 +0000674 if (SS.isSet())
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000675 Diag(IdentifierLoc, DiagID) << &Identifier << SS.getRange();
Cedric Venet3d658642009-02-14 20:20:19 +0000676 else
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000677 Diag(IdentifierLoc, DiagID) << &Identifier;
Mike Stump1eb44332009-09-09 15:08:12 +0000678
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000679 return true;
Cedric Venet3d658642009-02-14 20:20:19 +0000680}
681
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000682bool Sema::ActOnCXXNestedNameSpecifier(Scope *S,
683 IdentifierInfo &Identifier,
684 SourceLocation IdentifierLoc,
685 SourceLocation CCLoc,
686 ParsedType ObjectType,
687 bool EnteringContext,
688 CXXScopeSpec &SS) {
689 if (SS.isInvalid())
690 return true;
691
692 return BuildCXXNestedNameSpecifier(S, Identifier, IdentifierLoc, CCLoc,
693 GetTypeFromParser(ObjectType),
694 EnteringContext, SS,
695 /*ScopeLookupResult=*/0, false);
Chris Lattner46646492009-12-07 01:36:53 +0000696}
697
David Blaikie42d6d0c2011-12-04 05:04:18 +0000698bool Sema::ActOnCXXNestedNameSpecifierDecltype(CXXScopeSpec &SS,
699 const DeclSpec &DS,
700 SourceLocation ColonColonLoc) {
701 if (SS.isInvalid() || DS.getTypeSpecType() == DeclSpec::TST_error)
702 return true;
703
704 assert(DS.getTypeSpecType() == DeclSpec::TST_decltype);
705
706 QualType T = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
707 if (!T->isDependentType() && !T->getAs<TagType>()) {
708 Diag(DS.getTypeSpecTypeLoc(), diag::err_expected_class)
709 << T << getLangOptions().CPlusPlus;
710 return true;
711 }
712
713 TypeLocBuilder TLB;
714 DecltypeTypeLoc DecltypeTL = TLB.push<DecltypeTypeLoc>(T);
715 DecltypeTL.setNameLoc(DS.getTypeSpecTypeLoc());
716 SS.Extend(Context, SourceLocation(), TLB.getTypeLocInContext(Context, T),
717 ColonColonLoc);
718 return false;
719}
720
Chris Lattner46646492009-12-07 01:36:53 +0000721/// IsInvalidUnlessNestedName - This method is used for error recovery
722/// purposes to determine whether the specified identifier is only valid as
723/// a nested name specifier, for example a namespace name. It is
724/// conservatively correct to always return false from this method.
725///
726/// The arguments are the same as those passed to ActOnCXXNestedNameSpecifier.
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000727bool Sema::IsInvalidUnlessNestedName(Scope *S, CXXScopeSpec &SS,
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000728 IdentifierInfo &Identifier,
729 SourceLocation IdentifierLoc,
730 SourceLocation ColonLoc,
731 ParsedType ObjectType,
Chris Lattner46646492009-12-07 01:36:53 +0000732 bool EnteringContext) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000733 if (SS.isInvalid())
734 return false;
735
736 return !BuildCXXNestedNameSpecifier(S, Identifier, IdentifierLoc, ColonLoc,
737 GetTypeFromParser(ObjectType),
738 EnteringContext, SS,
739 /*ScopeLookupResult=*/0, true);
Douglas Gregorc68afe22009-09-03 21:38:09 +0000740}
741
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000742bool Sema::ActOnCXXNestedNameSpecifier(Scope *S,
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000743 SourceLocation TemplateLoc,
744 CXXScopeSpec &SS,
745 TemplateTy Template,
746 SourceLocation TemplateNameLoc,
747 SourceLocation LAngleLoc,
748 ASTTemplateArgsPtr TemplateArgsIn,
749 SourceLocation RAngleLoc,
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000750 SourceLocation CCLoc,
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000751 bool EnteringContext) {
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000752 if (SS.isInvalid())
753 return true;
754
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000755 // Translate the parser's template argument list in our AST format.
756 TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc);
757 translateTemplateArguments(TemplateArgsIn, TemplateArgs);
758
759 if (DependentTemplateName *DTN = Template.get().getAsDependentTemplateName()){
760 // Handle a dependent template specialization for which we cannot resolve
761 // the template name.
762 assert(DTN->getQualifier()
763 == static_cast<NestedNameSpecifier*>(SS.getScopeRep()));
764 QualType T = Context.getDependentTemplateSpecializationType(ETK_None,
Douglas Gregor94fdffa2011-03-01 20:11:18 +0000765 DTN->getQualifier(),
766 DTN->getIdentifier(),
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000767 TemplateArgs);
768
769 // Create source-location information for this type.
770 TypeLocBuilder Builder;
771 DependentTemplateSpecializationTypeLoc SpecTL
772 = Builder.push<DependentTemplateSpecializationTypeLoc>(T);
773 SpecTL.setLAngleLoc(LAngleLoc);
774 SpecTL.setRAngleLoc(RAngleLoc);
775 SpecTL.setKeywordLoc(SourceLocation());
776 SpecTL.setNameLoc(TemplateNameLoc);
Douglas Gregor94fdffa2011-03-01 20:11:18 +0000777 SpecTL.setQualifierLoc(SS.getWithLocInContext(Context));
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000778 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
779 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
780
781 SS.Extend(Context, TemplateLoc, Builder.getTypeLocInContext(Context, T),
782 CCLoc);
783 return false;
784 }
785
Douglas Gregor6cd9d4a2011-03-04 21:37:14 +0000786
787 if (Template.get().getAsOverloadedTemplate() ||
788 isa<FunctionTemplateDecl>(Template.get().getAsTemplateDecl())) {
789 SourceRange R(TemplateNameLoc, RAngleLoc);
790 if (SS.getRange().isValid())
791 R.setBegin(SS.getRange().getBegin());
792
793 Diag(CCLoc, diag::err_non_type_template_in_nested_name_specifier)
794 << Template.get() << R;
795 NoteAllFoundTemplates(Template.get());
796 return true;
797 }
798
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000799 // We were able to resolve the template name to an actual template.
800 // Build an appropriate nested-name-specifier.
801 QualType T = CheckTemplateIdType(Template.get(), TemplateNameLoc,
802 TemplateArgs);
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000803 if (T.isNull())
804 return true;
805
Richard Smith3e4c6c42011-05-05 21:57:07 +0000806 // Alias template specializations can produce types which are not valid
807 // nested name specifiers.
808 if (!T->isDependentType() && !T->getAs<TagType>()) {
809 Diag(TemplateNameLoc, diag::err_nested_name_spec_non_tag) << T;
810 NoteAllFoundTemplates(Template.get());
811 return true;
812 }
Douglas Gregoraa2187d2011-02-28 00:04:36 +0000813
814 // Provide source-location information for the template specialization
815 // type.
816 TypeLocBuilder Builder;
817 TemplateSpecializationTypeLoc SpecTL
818 = Builder.push<TemplateSpecializationTypeLoc>(T);
819
820 SpecTL.setLAngleLoc(LAngleLoc);
821 SpecTL.setRAngleLoc(RAngleLoc);
822 SpecTL.setTemplateNameLoc(TemplateNameLoc);
823 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
824 SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo());
825
826
827 SS.Extend(Context, TemplateLoc, Builder.getTypeLocInContext(Context, T),
828 CCLoc);
Douglas Gregor2e4c34a2011-02-24 00:17:56 +0000829 return false;
Douglas Gregor39a8de12009-02-25 19:37:18 +0000830}
831
Douglas Gregorc34348a2011-02-24 17:54:50 +0000832namespace {
833 /// \brief A structure that stores a nested-name-specifier annotation,
834 /// including both the nested-name-specifier
835 struct NestedNameSpecifierAnnotation {
836 NestedNameSpecifier *NNS;
837 };
838}
839
840void *Sema::SaveNestedNameSpecifierAnnotation(CXXScopeSpec &SS) {
841 if (SS.isEmpty() || SS.isInvalid())
842 return 0;
843
844 void *Mem = Context.Allocate((sizeof(NestedNameSpecifierAnnotation) +
845 SS.location_size()),
846 llvm::alignOf<NestedNameSpecifierAnnotation>());
847 NestedNameSpecifierAnnotation *Annotation
848 = new (Mem) NestedNameSpecifierAnnotation;
849 Annotation->NNS = SS.getScopeRep();
850 memcpy(Annotation + 1, SS.location_data(), SS.location_size());
851 return Annotation;
852}
853
854void Sema::RestoreNestedNameSpecifierAnnotation(void *AnnotationPtr,
855 SourceRange AnnotationRange,
856 CXXScopeSpec &SS) {
857 if (!AnnotationPtr) {
858 SS.SetInvalid(AnnotationRange);
859 return;
860 }
861
862 NestedNameSpecifierAnnotation *Annotation
863 = static_cast<NestedNameSpecifierAnnotation *>(AnnotationPtr);
864 SS.Adopt(NestedNameSpecifierLoc(Annotation->NNS, Annotation + 1));
865}
866
John McCalle7e278b2009-12-11 20:04:54 +0000867bool Sema::ShouldEnterDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
868 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
869
870 NestedNameSpecifier *Qualifier =
871 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
872
873 // There are only two places a well-formed program may qualify a
874 // declarator: first, when defining a namespace or class member
875 // out-of-line, and second, when naming an explicitly-qualified
876 // friend function. The latter case is governed by
877 // C++03 [basic.lookup.unqual]p10:
878 // In a friend declaration naming a member function, a name used
879 // in the function declarator and not part of a template-argument
880 // in a template-id is first looked up in the scope of the member
881 // function's class. If it is not found, or if the name is part of
882 // a template-argument in a template-id, the look up is as
883 // described for unqualified names in the definition of the class
884 // granting friendship.
885 // i.e. we don't push a scope unless it's a class member.
886
887 switch (Qualifier->getKind()) {
888 case NestedNameSpecifier::Global:
889 case NestedNameSpecifier::Namespace:
Douglas Gregor14aba762011-02-24 02:36:08 +0000890 case NestedNameSpecifier::NamespaceAlias:
John McCalle7e278b2009-12-11 20:04:54 +0000891 // These are always namespace scopes. We never want to enter a
892 // namespace scope from anything but a file context.
Sebastian Redl7a126a42010-08-31 00:36:30 +0000893 return CurContext->getRedeclContext()->isFileContext();
John McCalle7e278b2009-12-11 20:04:54 +0000894
895 case NestedNameSpecifier::Identifier:
896 case NestedNameSpecifier::TypeSpec:
897 case NestedNameSpecifier::TypeSpecWithTemplate:
898 // These are never namespace scopes.
899 return true;
900 }
901
902 // Silence bogus warning.
903 return false;
904}
905
Cedric Venet3d658642009-02-14 20:20:19 +0000906/// ActOnCXXEnterDeclaratorScope - Called when a C++ scope specifier (global
907/// scope or nested-name-specifier) is parsed, part of a declarator-id.
908/// After this method is called, according to [C++ 3.4.3p3], names should be
909/// looked up in the declarator-id's scope, until the declarator is parsed and
910/// ActOnCXXExitDeclaratorScope is called.
911/// The 'SS' should be a non-empty valid CXXScopeSpec.
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000912bool Sema::ActOnCXXEnterDeclaratorScope(Scope *S, CXXScopeSpec &SS) {
Cedric Venet3d658642009-02-14 20:20:19 +0000913 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
John McCall7a1dc562009-12-19 10:49:29 +0000914
915 if (SS.isInvalid()) return true;
916
917 DeclContext *DC = computeDeclContext(SS, true);
918 if (!DC) return true;
919
920 // Before we enter a declarator's context, we need to make sure that
921 // it is a complete declaration context.
John McCall77bb1aa2010-05-01 00:40:08 +0000922 if (!DC->isDependentContext() && RequireCompleteDeclContext(SS, DC))
John McCall7a1dc562009-12-19 10:49:29 +0000923 return true;
924
925 EnterDeclaratorContext(S, DC);
John McCall31f17ec2010-04-27 00:57:59 +0000926
927 // Rebuild the nested name specifier for the new scope.
928 if (DC->isDependentContext())
929 RebuildNestedNameSpecifierInCurrentInstantiation(SS);
930
Douglas Gregor7dfd0fb2009-09-24 23:39:01 +0000931 return false;
Cedric Venet3d658642009-02-14 20:20:19 +0000932}
933
934/// ActOnCXXExitDeclaratorScope - Called when a declarator that previously
935/// invoked ActOnCXXEnterDeclaratorScope(), is finished. 'SS' is the same
936/// CXXScopeSpec that was passed to ActOnCXXEnterDeclaratorScope as well.
937/// Used to indicate that names should revert to being looked up in the
938/// defining scope.
939void Sema::ActOnCXXExitDeclaratorScope(Scope *S, const CXXScopeSpec &SS) {
940 assert(SS.isSet() && "Parser passed invalid CXXScopeSpec.");
Douglas Gregordacd4342009-08-26 00:04:55 +0000941 if (SS.isInvalid())
942 return;
John McCall7a1dc562009-12-19 10:49:29 +0000943 assert(!SS.isInvalid() && computeDeclContext(SS, true) &&
944 "exiting declarator scope we never really entered");
945 ExitDeclaratorContext(S);
Cedric Venet3d658642009-02-14 20:20:19 +0000946}