Cedric Venet | 08438133 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 1 | //===--- 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 McCall | 8302463 | 2010-08-25 22:03:47 +0000 | [diff] [blame] | 14 | #include "clang/Sema/SemaInternal.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 15 | #include "TypeLocBuilder.h" |
Cedric Venet | 08438133 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 16 | #include "clang/AST/ASTContext.h" |
Douglas Gregor | c9f9b86 | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 17 | #include "clang/AST/DeclTemplate.h" |
Douglas Gregor | d806156 | 2009-08-06 03:17:00 +0000 | [diff] [blame] | 18 | #include "clang/AST/ExprCXX.h" |
Douglas Gregor | 5253768 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 19 | #include "clang/AST/NestedNameSpecifier.h" |
Anders Carlsson | d624e16 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 20 | #include "clang/Basic/PartialDiagnostic.h" |
John McCall | 8b0666c | 2010-08-20 18:27:03 +0000 | [diff] [blame] | 21 | #include "clang/Sema/DeclSpec.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 22 | #include "clang/Sema/Lookup.h" |
| 23 | #include "clang/Sema/Template.h" |
Cedric Venet | 08438133 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/STLExtras.h" |
Douglas Gregor | 168190d | 2009-07-22 00:28:09 +0000 | [diff] [blame] | 25 | #include "llvm/Support/raw_ostream.h" |
Cedric Venet | 08438133 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 26 | using namespace clang; |
| 27 | |
Douglas Gregor | 4112718 | 2009-11-04 22:49:18 +0000 | [diff] [blame] | 28 | /// \brief Find the current instantiation that associated with the given type. |
Richard Smith | d80b2d5 | 2012-11-22 00:24:47 +0000 | [diff] [blame] | 29 | static CXXRecordDecl *getCurrentInstantiationOf(QualType T, |
Douglas Gregor | bf2b26d | 2011-02-19 19:24:40 +0000 | [diff] [blame] | 30 | DeclContext *CurContext) { |
Douglas Gregor | 4112718 | 2009-11-04 22:49:18 +0000 | [diff] [blame] | 31 | if (T.isNull()) |
| 32 | return 0; |
John McCall | 2408e32 | 2010-04-27 00:57:59 +0000 | [diff] [blame] | 33 | |
| 34 | const Type *Ty = T->getCanonicalTypeInternal().getTypePtr(); |
Douglas Gregor | bf2b26d | 2011-02-19 19:24:40 +0000 | [diff] [blame] | 35 | if (const RecordType *RecordTy = dyn_cast<RecordType>(Ty)) { |
| 36 | CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordTy->getDecl()); |
Richard Smith | d80b2d5 | 2012-11-22 00:24:47 +0000 | [diff] [blame] | 37 | if (!Record->isDependentContext() || |
| 38 | Record->isCurrentInstantiation(CurContext)) |
Douglas Gregor | bf2b26d | 2011-02-19 19:24:40 +0000 | [diff] [blame] | 39 | return Record; |
| 40 | |
Douglas Gregor | bf2b26d | 2011-02-19 19:24:40 +0000 | [diff] [blame] | 41 | return 0; |
| 42 | } else if (isa<InjectedClassNameType>(Ty)) |
John McCall | 2408e32 | 2010-04-27 00:57:59 +0000 | [diff] [blame] | 43 | return cast<InjectedClassNameType>(Ty)->getDecl(); |
| 44 | else |
| 45 | return 0; |
Douglas Gregor | 4112718 | 2009-11-04 22:49:18 +0000 | [diff] [blame] | 46 | } |
| 47 | |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 48 | /// \brief Compute the DeclContext that is associated with the given type. |
| 49 | /// |
| 50 | /// \param T the type for which we are attempting to find a DeclContext. |
| 51 | /// |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 52 | /// \returns the declaration context represented by the type T, |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 53 | /// or NULL if the declaration context cannot be computed (e.g., because it is |
| 54 | /// dependent and not the current instantiation). |
| 55 | DeclContext *Sema::computeDeclContext(QualType T) { |
Douglas Gregor | bf2b26d | 2011-02-19 19:24:40 +0000 | [diff] [blame] | 56 | if (!T->isDependentType()) |
| 57 | if (const TagType *Tag = T->getAs<TagType>()) |
| 58 | return Tag->getDecl(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 59 | |
Douglas Gregor | bf2b26d | 2011-02-19 19:24:40 +0000 | [diff] [blame] | 60 | return ::getCurrentInstantiationOf(T, CurContext); |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 61 | } |
| 62 | |
Douglas Gregor | 5253768 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 63 | /// \brief Compute the DeclContext that is associated with the given |
| 64 | /// scope specifier. |
Douglas Gregor | d8d297c | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 65 | /// |
| 66 | /// \param SS the C++ scope specifier as it appears in the source |
| 67 | /// |
| 68 | /// \param EnteringContext when true, we will be entering the context of |
| 69 | /// this scope specifier, so we can retrieve the declaration context of a |
| 70 | /// class template or class template partial specialization even if it is |
| 71 | /// not the current instantiation. |
| 72 | /// |
| 73 | /// \returns the declaration context represented by the scope specifier @p SS, |
| 74 | /// or NULL if the declaration context cannot be computed (e.g., because it is |
| 75 | /// dependent and not the current instantiation). |
| 76 | DeclContext *Sema::computeDeclContext(const CXXScopeSpec &SS, |
| 77 | bool EnteringContext) { |
Douglas Gregor | 5253768 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 78 | if (!SS.isSet() || SS.isInvalid()) |
Douglas Gregor | 6bfde49 | 2009-03-18 00:36:05 +0000 | [diff] [blame] | 79 | return 0; |
Douglas Gregor | 6bfde49 | 2009-03-18 00:36:05 +0000 | [diff] [blame] | 80 | |
Richard Smith | 74bb2d2 | 2013-03-26 00:54:11 +0000 | [diff] [blame] | 81 | NestedNameSpecifier *NNS = SS.getScopeRep(); |
Douglas Gregor | c9f9b86 | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 82 | if (NNS->isDependent()) { |
| 83 | // If this nested-name-specifier refers to the current |
| 84 | // instantiation, return its DeclContext. |
| 85 | if (CXXRecordDecl *Record = getCurrentInstantiationOf(NNS)) |
| 86 | return Record; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 87 | |
Douglas Gregor | d8d297c | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 88 | if (EnteringContext) { |
John McCall | e78aac4 | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 89 | const Type *NNSType = NNS->getAsType(); |
| 90 | if (!NNSType) { |
Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 91 | return 0; |
| 92 | } |
| 93 | |
| 94 | // Look through type alias templates, per C++0x [temp.dep.type]p1. |
| 95 | NNSType = Context.getCanonicalType(NNSType); |
| 96 | if (const TemplateSpecializationType *SpecType |
| 97 | = NNSType->getAs<TemplateSpecializationType>()) { |
Douglas Gregor | e861bac | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 98 | // We are entering the context of the nested name specifier, so try to |
| 99 | // match the nested name specifier to either a primary class template |
| 100 | // or a class template partial specialization. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 101 | if (ClassTemplateDecl *ClassTemplate |
Douglas Gregor | d8d297c | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 102 | = dyn_cast_or_null<ClassTemplateDecl>( |
| 103 | SpecType->getTemplateName().getAsTemplateDecl())) { |
Douglas Gregor | 1530138 | 2009-07-30 17:40:51 +0000 | [diff] [blame] | 104 | QualType ContextType |
| 105 | = Context.getCanonicalType(QualType(SpecType, 0)); |
| 106 | |
Douglas Gregor | d8d297c | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 107 | // If the type of the nested name specifier is the same as the |
| 108 | // injected class name of the named class template, we're entering |
| 109 | // into that class template definition. |
John McCall | e78aac4 | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 110 | QualType Injected |
Douglas Gregor | 9961ce9 | 2010-07-08 18:37:38 +0000 | [diff] [blame] | 111 | = ClassTemplate->getInjectedClassNameSpecialization(); |
Douglas Gregor | 1530138 | 2009-07-30 17:40:51 +0000 | [diff] [blame] | 112 | if (Context.hasSameType(Injected, ContextType)) |
Douglas Gregor | d8d297c | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 113 | return ClassTemplate->getTemplatedDecl(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 114 | |
Douglas Gregor | 1530138 | 2009-07-30 17:40:51 +0000 | [diff] [blame] | 115 | // If the type of the nested name specifier is the same as the |
| 116 | // type of one of the class template's class template partial |
| 117 | // specializations, we're entering into the definition of that |
| 118 | // class template partial specialization. |
| 119 | if (ClassTemplatePartialSpecializationDecl *PartialSpec |
| 120 | = ClassTemplate->findPartialSpecialization(ContextType)) |
| 121 | return PartialSpec; |
Douglas Gregor | d8d297c | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 122 | } |
John McCall | e78aac4 | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 123 | } else if (const RecordType *RecordT = NNSType->getAs<RecordType>()) { |
Douglas Gregor | e861bac | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 124 | // The nested name specifier refers to a member of a class template. |
| 125 | return RecordT->getDecl(); |
Douglas Gregor | d8d297c | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 126 | } |
| 127 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 128 | |
Douglas Gregor | d8d297c | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 129 | return 0; |
Douglas Gregor | c9f9b86 | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 130 | } |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 131 | |
| 132 | switch (NNS->getKind()) { |
| 133 | case NestedNameSpecifier::Identifier: |
David Blaikie | 83d382b | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 134 | llvm_unreachable("Dependent nested-name-specifier has no DeclContext"); |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 135 | |
| 136 | case NestedNameSpecifier::Namespace: |
| 137 | return NNS->getAsNamespace(); |
| 138 | |
Douglas Gregor | 7b26ff9 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 139 | case NestedNameSpecifier::NamespaceAlias: |
| 140 | return NNS->getAsNamespaceAlias()->getNamespace(); |
| 141 | |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 142 | case NestedNameSpecifier::TypeSpec: |
| 143 | case NestedNameSpecifier::TypeSpecWithTemplate: { |
Douglas Gregor | cd3f49f | 2010-02-25 04:46:04 +0000 | [diff] [blame] | 144 | const TagType *Tag = NNS->getAsType()->getAs<TagType>(); |
| 145 | assert(Tag && "Non-tag type in nested-name-specifier"); |
| 146 | return Tag->getDecl(); |
David Blaikie | 8a40f70 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 147 | } |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 148 | |
| 149 | case NestedNameSpecifier::Global: |
| 150 | return Context.getTranslationUnitDecl(); |
| 151 | } |
| 152 | |
David Blaikie | 8a40f70 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 153 | llvm_unreachable("Invalid NestedNameSpecifier::Kind!"); |
Douglas Gregor | 6bfde49 | 2009-03-18 00:36:05 +0000 | [diff] [blame] | 154 | } |
| 155 | |
Douglas Gregor | 90a1a65 | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 156 | bool Sema::isDependentScopeSpecifier(const CXXScopeSpec &SS) { |
| 157 | if (!SS.isSet() || SS.isInvalid()) |
| 158 | return false; |
| 159 | |
Richard Smith | 74bb2d2 | 2013-03-26 00:54:11 +0000 | [diff] [blame] | 160 | return SS.getScopeRep()->isDependent(); |
Douglas Gregor | 90a1a65 | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 161 | } |
| 162 | |
Douglas Gregor | c9f9b86 | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 163 | /// \brief If the given nested name specifier refers to the current |
| 164 | /// instantiation, return the declaration that corresponds to that |
| 165 | /// current instantiation (C++0x [temp.dep.type]p1). |
| 166 | /// |
| 167 | /// \param NNS a dependent nested name specifier. |
| 168 | CXXRecordDecl *Sema::getCurrentInstantiationOf(NestedNameSpecifier *NNS) { |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 169 | assert(getLangOpts().CPlusPlus && "Only callable in C++"); |
Douglas Gregor | c9f9b86 | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 170 | assert(NNS->isDependent() && "Only dependent nested-name-specifier allowed"); |
| 171 | |
Douglas Gregor | d8d297c | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 172 | if (!NNS->getAsType()) |
| 173 | return 0; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 174 | |
Douglas Gregor | b9a955d | 2009-07-31 18:32:42 +0000 | [diff] [blame] | 175 | QualType T = QualType(NNS->getAsType(), 0); |
Douglas Gregor | bf2b26d | 2011-02-19 19:24:40 +0000 | [diff] [blame] | 176 | return ::getCurrentInstantiationOf(T, CurContext); |
Douglas Gregor | c9f9b86 | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 177 | } |
| 178 | |
Douglas Gregor | 2689746 | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 179 | /// \brief Require that the context specified by SS be complete. |
| 180 | /// |
| 181 | /// If SS refers to a type, this routine checks whether the type is |
| 182 | /// complete enough (or can be made complete enough) for name lookup |
| 183 | /// into the DeclContext. A type that is not yet completed can be |
| 184 | /// considered "complete enough" if it is a class/struct/union/enum |
| 185 | /// that is currently being defined. Or, if we have a type that names |
| 186 | /// a class template specialization that is not a complete type, we |
| 187 | /// will attempt to instantiate that class template. |
John McCall | 0b66eb3 | 2010-05-01 00:40:08 +0000 | [diff] [blame] | 188 | bool Sema::RequireCompleteDeclContext(CXXScopeSpec &SS, |
| 189 | DeclContext *DC) { |
| 190 | assert(DC != 0 && "given null context"); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 191 | |
Richard Smith | 4b38ded | 2012-03-14 23:13:10 +0000 | [diff] [blame] | 192 | TagDecl *tag = dyn_cast<TagDecl>(DC); |
Douglas Gregor | 8a6d15d | 2010-02-05 04:39:02 +0000 | [diff] [blame] | 193 | |
Richard Smith | 4b38ded | 2012-03-14 23:13:10 +0000 | [diff] [blame] | 194 | // If this is a dependent type, then we consider it complete. |
| 195 | if (!tag || tag->isDependentContext()) |
| 196 | return false; |
Douglas Gregor | 2689746 | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 197 | |
Richard Smith | 4b38ded | 2012-03-14 23:13:10 +0000 | [diff] [blame] | 198 | // If we're currently defining this type, then lookup into the |
| 199 | // type is okay: don't complain that it isn't complete yet. |
| 200 | QualType type = Context.getTypeDeclType(tag); |
| 201 | const TagType *tagType = type->getAs<TagType>(); |
| 202 | if (tagType && tagType->isBeingDefined()) |
| 203 | return false; |
John McCall | 2187876 | 2011-07-06 06:57:57 +0000 | [diff] [blame] | 204 | |
Richard Smith | 4b38ded | 2012-03-14 23:13:10 +0000 | [diff] [blame] | 205 | SourceLocation loc = SS.getLastQualifierNameLoc(); |
| 206 | if (loc.isInvalid()) loc = SS.getRange().getBegin(); |
John McCall | 2187876 | 2011-07-06 06:57:57 +0000 | [diff] [blame] | 207 | |
Richard Smith | 4b38ded | 2012-03-14 23:13:10 +0000 | [diff] [blame] | 208 | // The type must be complete. |
Douglas Gregor | 7bfb2d0 | 2012-05-04 16:32:21 +0000 | [diff] [blame] | 209 | if (RequireCompleteType(loc, type, diag::err_incomplete_nested_name_spec, |
| 210 | SS.getRange())) { |
Richard Smith | 4b38ded | 2012-03-14 23:13:10 +0000 | [diff] [blame] | 211 | SS.SetInvalid(SS.getRange()); |
| 212 | return true; |
Douglas Gregor | 2689746 | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 213 | } |
| 214 | |
Richard Smith | 4b38ded | 2012-03-14 23:13:10 +0000 | [diff] [blame] | 215 | // Fixed enum types are complete, but they aren't valid as scopes |
| 216 | // until we see a definition, so awkwardly pull out this special |
| 217 | // case. |
| 218 | const EnumType *enumType = dyn_cast_or_null<EnumType>(tagType); |
| 219 | if (!enumType || enumType->getDecl()->isCompleteDefinition()) |
| 220 | return false; |
| 221 | |
| 222 | // Try to instantiate the definition, if this is a specialization of an |
| 223 | // enumeration temploid. |
| 224 | EnumDecl *ED = enumType->getDecl(); |
| 225 | if (EnumDecl *Pattern = ED->getInstantiatedFromMemberEnum()) { |
| 226 | MemberSpecializationInfo *MSI = ED->getMemberSpecializationInfo(); |
Richard Smith | 7d137e3 | 2012-03-23 03:33:32 +0000 | [diff] [blame] | 227 | if (MSI->getTemplateSpecializationKind() != TSK_ExplicitSpecialization) { |
| 228 | if (InstantiateEnum(loc, ED, Pattern, getTemplateInstantiationArgs(ED), |
| 229 | TSK_ImplicitInstantiation)) { |
| 230 | SS.SetInvalid(SS.getRange()); |
| 231 | return true; |
| 232 | } |
| 233 | return false; |
| 234 | } |
Richard Smith | 4b38ded | 2012-03-14 23:13:10 +0000 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | Diag(loc, diag::err_incomplete_nested_name_spec) |
| 238 | << type << SS.getRange(); |
| 239 | SS.SetInvalid(SS.getRange()); |
| 240 | return true; |
Douglas Gregor | 2689746 | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 241 | } |
Cedric Venet | 08438133 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 242 | |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 243 | bool Sema::ActOnCXXGlobalScopeSpecifier(Scope *S, SourceLocation CCLoc, |
| 244 | CXXScopeSpec &SS) { |
| 245 | SS.MakeGlobal(Context, CCLoc); |
| 246 | return false; |
Cedric Venet | 08438133 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 247 | } |
| 248 | |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 249 | /// \brief Determines whether the given declaration is an valid acceptable |
| 250 | /// result for name lookup of a nested-name-specifier. |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 251 | bool Sema::isAcceptableNestedNameSpecifier(const NamedDecl *SD) { |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 252 | if (!SD) |
| 253 | return false; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 254 | |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 255 | // Namespace and namespace aliases are fine. |
| 256 | if (isa<NamespaceDecl>(SD) || isa<NamespaceAliasDecl>(SD)) |
| 257 | return true; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 258 | |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 259 | if (!isa<TypeDecl>(SD)) |
| 260 | return false; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 261 | |
Richard Smith | c823973 | 2011-10-18 21:39:00 +0000 | [diff] [blame] | 262 | // Determine whether we have a class (or, in C++11, an enum) or |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 263 | // a typedef thereof. If so, build the nested-name-specifier. |
| 264 | QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD)); |
| 265 | if (T->isDependentType()) |
| 266 | return true; |
Dmitri Gribenko | fe0483d | 2013-01-23 17:21:11 +0000 | [diff] [blame] | 267 | else if (const TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(SD)) { |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 268 | if (TD->getUnderlyingType()->isRecordType() || |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 269 | (Context.getLangOpts().CPlusPlus11 && |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 270 | TD->getUnderlyingType()->isEnumeralType())) |
| 271 | return true; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 272 | } else if (isa<RecordDecl>(SD) || |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 273 | (Context.getLangOpts().CPlusPlus11 && isa<EnumDecl>(SD))) |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 274 | return true; |
| 275 | |
| 276 | return false; |
| 277 | } |
| 278 | |
Douglas Gregor | 2b6ca46 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 279 | /// \brief If the given nested-name-specifier begins with a bare identifier |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 280 | /// (e.g., Base::), perform name lookup for that identifier as a |
Douglas Gregor | 2b6ca46 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 281 | /// nested-name-specifier within the given scope, and return the result of that |
| 282 | /// name lookup. |
| 283 | NamedDecl *Sema::FindFirstQualifierInScope(Scope *S, NestedNameSpecifier *NNS) { |
| 284 | if (!S || !NNS) |
| 285 | return 0; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 286 | |
Douglas Gregor | 2b6ca46 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 287 | while (NNS->getPrefix()) |
| 288 | NNS = NNS->getPrefix(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 289 | |
Douglas Gregor | 2b6ca46 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 290 | if (NNS->getKind() != NestedNameSpecifier::Identifier) |
| 291 | return 0; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 292 | |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 293 | LookupResult Found(*this, NNS->getAsIdentifier(), SourceLocation(), |
| 294 | LookupNestedNameSpecifierName); |
| 295 | LookupName(Found, S); |
Douglas Gregor | 2b6ca46 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 296 | assert(!Found.isAmbiguous() && "Cannot handle ambiguities here yet"); |
| 297 | |
John McCall | 67c0087 | 2009-12-02 08:25:40 +0000 | [diff] [blame] | 298 | if (!Found.isSingleResult()) |
| 299 | return 0; |
| 300 | |
| 301 | NamedDecl *Result = Found.getFoundDecl(); |
Douglas Gregor | cd3f49f | 2010-02-25 04:46:04 +0000 | [diff] [blame] | 302 | if (isAcceptableNestedNameSpecifier(Result)) |
Douglas Gregor | 2b6ca46 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 303 | return Result; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 304 | |
Douglas Gregor | 2b6ca46 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 305 | return 0; |
| 306 | } |
| 307 | |
Jeffrey Yasskin | c76498d | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 308 | bool Sema::isNonTypeNestedNameSpecifier(Scope *S, CXXScopeSpec &SS, |
Douglas Gregor | 0d5b0a1 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 309 | SourceLocation IdLoc, |
| 310 | IdentifierInfo &II, |
John McCall | ba7bf59 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 311 | ParsedType ObjectTypePtr) { |
Douglas Gregor | 0d5b0a1 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 312 | QualType ObjectType = GetTypeFromParser(ObjectTypePtr); |
| 313 | LookupResult Found(*this, &II, IdLoc, LookupNestedNameSpecifierName); |
| 314 | |
| 315 | // Determine where to perform name lookup |
| 316 | DeclContext *LookupCtx = 0; |
| 317 | bool isDependent = false; |
| 318 | if (!ObjectType.isNull()) { |
| 319 | // This nested-name-specifier occurs in a member access expression, e.g., |
| 320 | // x->B::f, and we are looking into the type of the object. |
| 321 | assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist"); |
| 322 | LookupCtx = computeDeclContext(ObjectType); |
| 323 | isDependent = ObjectType->isDependentType(); |
| 324 | } else if (SS.isSet()) { |
| 325 | // This nested-name-specifier occurs after another nested-name-specifier, |
| 326 | // so long into the context associated with the prior nested-name-specifier. |
| 327 | LookupCtx = computeDeclContext(SS, false); |
| 328 | isDependent = isDependentScopeSpecifier(SS); |
| 329 | Found.setContextRange(SS.getRange()); |
| 330 | } |
| 331 | |
| 332 | if (LookupCtx) { |
| 333 | // Perform "qualified" name lookup into the declaration context we |
| 334 | // computed, which is either the type of the base of a member access |
| 335 | // expression or the declaration context associated with a prior |
| 336 | // nested-name-specifier. |
| 337 | |
| 338 | // The declaration context must be complete. |
John McCall | 0b66eb3 | 2010-05-01 00:40:08 +0000 | [diff] [blame] | 339 | if (!LookupCtx->isDependentContext() && |
| 340 | RequireCompleteDeclContext(SS, LookupCtx)) |
Douglas Gregor | 0d5b0a1 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 341 | return false; |
| 342 | |
| 343 | LookupQualifiedName(Found, LookupCtx); |
| 344 | } else if (isDependent) { |
| 345 | return false; |
| 346 | } else { |
| 347 | LookupName(Found, S); |
| 348 | } |
| 349 | Found.suppressDiagnostics(); |
| 350 | |
| 351 | if (NamedDecl *ND = Found.getAsSingle<NamedDecl>()) |
| 352 | return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND); |
| 353 | |
| 354 | return false; |
| 355 | } |
| 356 | |
Kaelyn Uhrain | fb96ec7 | 2012-01-12 22:32:39 +0000 | [diff] [blame] | 357 | namespace { |
| 358 | |
| 359 | // Callback to only accept typo corrections that can be a valid C++ member |
| 360 | // intializer: either a non-static field member or a base class. |
| 361 | class NestedNameSpecifierValidatorCCC : public CorrectionCandidateCallback { |
| 362 | public: |
| 363 | explicit NestedNameSpecifierValidatorCCC(Sema &SRef) |
| 364 | : SRef(SRef) {} |
| 365 | |
| 366 | virtual bool ValidateCandidate(const TypoCorrection &candidate) { |
| 367 | return SRef.isAcceptableNestedNameSpecifier(candidate.getCorrectionDecl()); |
| 368 | } |
| 369 | |
| 370 | private: |
| 371 | Sema &SRef; |
| 372 | }; |
| 373 | |
| 374 | } |
| 375 | |
Douglas Gregor | 2b6ca46 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 376 | /// \brief Build a new nested-name-specifier for "identifier::", as described |
| 377 | /// by ActOnCXXNestedNameSpecifier. |
| 378 | /// |
| 379 | /// This routine differs only slightly from ActOnCXXNestedNameSpecifier, in |
| 380 | /// that it contains an extra parameter \p ScopeLookupResult, which provides |
| 381 | /// the result of name lookup within the scope of the nested-name-specifier |
Douglas Gregor | ad183ac | 2009-12-30 16:01:52 +0000 | [diff] [blame] | 382 | /// that was computed at template definition time. |
Chris Lattner | 1c42803 | 2009-12-07 01:36:53 +0000 | [diff] [blame] | 383 | /// |
| 384 | /// If ErrorRecoveryLookup is true, then this call is used to improve error |
| 385 | /// recovery. This means that it should not emit diagnostics, it should |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 386 | /// just return true on failure. It also means it should only return a valid |
Chris Lattner | 1c42803 | 2009-12-07 01:36:53 +0000 | [diff] [blame] | 387 | /// scope if it *knows* that the result is correct. It should not return in a |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 388 | /// dependent context, for example. Nor will it extend \p SS with the scope |
| 389 | /// specifier. |
| 390 | bool Sema::BuildCXXNestedNameSpecifier(Scope *S, |
| 391 | IdentifierInfo &Identifier, |
| 392 | SourceLocation IdentifierLoc, |
| 393 | SourceLocation CCLoc, |
| 394 | QualType ObjectType, |
| 395 | bool EnteringContext, |
| 396 | CXXScopeSpec &SS, |
| 397 | NamedDecl *ScopeLookupResult, |
| 398 | bool ErrorRecoveryLookup) { |
| 399 | LookupResult Found(*this, &Identifier, IdentifierLoc, |
| 400 | LookupNestedNameSpecifierName); |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 401 | |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 402 | // Determine where to perform name lookup |
| 403 | DeclContext *LookupCtx = 0; |
| 404 | bool isDependent = false; |
Douglas Gregor | 2b6ca46 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 405 | if (!ObjectType.isNull()) { |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 406 | // This nested-name-specifier occurs in a member access expression, e.g., |
| 407 | // x->B::f, and we are looking into the type of the object. |
| 408 | assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist"); |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 409 | LookupCtx = computeDeclContext(ObjectType); |
| 410 | isDependent = ObjectType->isDependentType(); |
| 411 | } else if (SS.isSet()) { |
| 412 | // This nested-name-specifier occurs after another nested-name-specifier, |
Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 413 | // so look into the context associated with the prior nested-name-specifier. |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 414 | LookupCtx = computeDeclContext(SS, EnteringContext); |
| 415 | isDependent = isDependentScopeSpecifier(SS); |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 416 | Found.setContextRange(SS.getRange()); |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 417 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 418 | |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 419 | |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 420 | bool ObjectTypeSearchedInScope = false; |
| 421 | if (LookupCtx) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 422 | // Perform "qualified" name lookup into the declaration context we |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 423 | // computed, which is either the type of the base of a member access |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 424 | // expression or the declaration context associated with a prior |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 425 | // nested-name-specifier. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 426 | |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 427 | // The declaration context must be complete. |
John McCall | 0b66eb3 | 2010-05-01 00:40:08 +0000 | [diff] [blame] | 428 | if (!LookupCtx->isDependentContext() && |
| 429 | RequireCompleteDeclContext(SS, LookupCtx)) |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 430 | return true; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 431 | |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 432 | LookupQualifiedName(Found, LookupCtx); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 433 | |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 434 | if (!ObjectType.isNull() && Found.empty()) { |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 435 | // C++ [basic.lookup.classref]p4: |
| 436 | // If the id-expression in a class member access is a qualified-id of |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 437 | // the form |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 438 | // |
| 439 | // class-name-or-namespace-name::... |
| 440 | // |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 441 | // the class-name-or-namespace-name following the . or -> operator is |
| 442 | // looked up both in the context of the entire postfix-expression and in |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 443 | // the scope of the class of the object expression. If the name is found |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 444 | // only in the scope of the class of the object expression, the name |
| 445 | // shall refer to a class-name. If the name is found only in the |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 446 | // context of the entire postfix-expression, the name shall refer to a |
| 447 | // class-name or namespace-name. [...] |
| 448 | // |
| 449 | // Qualified name lookup into a class will not find a namespace-name, |
Douglas Gregor | 9d07dfa | 2011-05-15 17:27:27 +0000 | [diff] [blame] | 450 | // so we do not need to diagnose that case specifically. However, |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 451 | // this qualified name lookup may find nothing. In that case, perform |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 452 | // unqualified name lookup in the given scope (if available) or |
Douglas Gregor | 2b6ca46 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 453 | // reconstruct the result from when name lookup was performed at template |
| 454 | // definition time. |
| 455 | if (S) |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 456 | LookupName(Found, S); |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 457 | else if (ScopeLookupResult) |
| 458 | Found.addDecl(ScopeLookupResult); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 459 | |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 460 | ObjectTypeSearchedInScope = true; |
| 461 | } |
Douglas Gregor | df65c8ed | 2010-07-28 14:49:07 +0000 | [diff] [blame] | 462 | } else if (!isDependent) { |
| 463 | // Perform unqualified name lookup in the current scope. |
| 464 | LookupName(Found, S); |
| 465 | } |
| 466 | |
| 467 | // If we performed lookup into a dependent context and did not find anything, |
| 468 | // that's fine: just build a dependent nested-name-specifier. |
| 469 | if (Found.empty() && isDependent && |
| 470 | !(LookupCtx && LookupCtx->isRecord() && |
| 471 | (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() || |
| 472 | !cast<CXXRecordDecl>(LookupCtx)->hasAnyDependentBases()))) { |
Chris Lattner | 1c42803 | 2009-12-07 01:36:53 +0000 | [diff] [blame] | 473 | // Don't speculate if we're just trying to improve error recovery. |
| 474 | if (ErrorRecoveryLookup) |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 475 | return true; |
Chris Lattner | 1c42803 | 2009-12-07 01:36:53 +0000 | [diff] [blame] | 476 | |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 477 | // We were not able to compute the declaration context for a dependent |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 478 | // base object type or prior nested-name-specifier, so this |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 479 | // nested-name-specifier refers to an unknown specialization. Just build |
| 480 | // a dependent nested-name-specifier. |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 481 | SS.Extend(Context, &Identifier, IdentifierLoc, CCLoc); |
| 482 | return false; |
Douglas Gregor | df65c8ed | 2010-07-28 14:49:07 +0000 | [diff] [blame] | 483 | } |
| 484 | |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 485 | // FIXME: Deal with ambiguities cleanly. |
Douglas Gregor | 532e68f | 2009-12-31 08:26:35 +0000 | [diff] [blame] | 486 | |
| 487 | if (Found.empty() && !ErrorRecoveryLookup) { |
| 488 | // We haven't found anything, and we're not recovering from a |
| 489 | // different kind of error, so look for typos. |
| 490 | DeclarationName Name = Found.getLookupName(); |
Kaelyn Uhrain | fb96ec7 | 2012-01-12 22:32:39 +0000 | [diff] [blame] | 491 | NestedNameSpecifierValidatorCCC Validator(*this); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 492 | Found.clear(); |
Richard Smith | f9b1510 | 2013-08-17 00:46:16 +0000 | [diff] [blame^] | 493 | if (TypoCorrection Corrected = |
| 494 | CorrectTypo(Found.getLookupNameInfo(), Found.getLookupKind(), S, |
| 495 | &SS, Validator, LookupCtx, EnteringContext)) { |
| 496 | if (LookupCtx) { |
| 497 | bool DroppedSpecifier = |
| 498 | Corrected.WillReplaceSpecifier() && |
| 499 | Name.getAsString() == Corrected.getAsString(getLangOpts()); |
| 500 | diagnoseTypo(Corrected, PDiag(diag::err_no_member_suggest) |
| 501 | << Name << LookupCtx << DroppedSpecifier |
| 502 | << SS.getRange()); |
| 503 | } else |
| 504 | diagnoseTypo(Corrected, PDiag(diag::err_undeclared_var_use_suggest) |
| 505 | << Name); |
Kaelyn Uhrain | 10413a4 | 2013-07-02 23:47:44 +0000 | [diff] [blame] | 506 | |
Richard Smith | f9b1510 | 2013-08-17 00:46:16 +0000 | [diff] [blame^] | 507 | if (NamedDecl *ND = Corrected.getCorrectionDecl()) |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 508 | Found.addDecl(ND); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 509 | Found.setLookupName(Corrected.getCorrection()); |
Douglas Gregor | c048c52 | 2010-06-29 19:27:42 +0000 | [diff] [blame] | 510 | } else { |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 511 | Found.setLookupName(&Identifier); |
Douglas Gregor | c048c52 | 2010-06-29 19:27:42 +0000 | [diff] [blame] | 512 | } |
Douglas Gregor | 532e68f | 2009-12-31 08:26:35 +0000 | [diff] [blame] | 513 | } |
| 514 | |
John McCall | 67c0087 | 2009-12-02 08:25:40 +0000 | [diff] [blame] | 515 | NamedDecl *SD = Found.getAsSingle<NamedDecl>(); |
Douglas Gregor | cd3f49f | 2010-02-25 04:46:04 +0000 | [diff] [blame] | 516 | if (isAcceptableNestedNameSpecifier(SD)) { |
Douglas Gregor | 1b02e4a | 2012-05-01 20:23:02 +0000 | [diff] [blame] | 517 | if (!ObjectType.isNull() && !ObjectTypeSearchedInScope && |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 518 | !getLangOpts().CPlusPlus11) { |
Douglas Gregor | 1b02e4a | 2012-05-01 20:23:02 +0000 | [diff] [blame] | 519 | // C++03 [basic.lookup.classref]p4: |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 520 | // [...] If the name is found in both contexts, the |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 521 | // class-name-or-namespace-name shall refer to the same entity. |
| 522 | // |
| 523 | // We already found the name in the scope of the object. Now, look |
| 524 | // into the current scope (the scope of the postfix-expression) to |
Douglas Gregor | 2b6ca46 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 525 | // see if we can find the same name there. As above, if there is no |
| 526 | // scope, reconstruct the result from the template instantiation itself. |
Douglas Gregor | 1b02e4a | 2012-05-01 20:23:02 +0000 | [diff] [blame] | 527 | // |
| 528 | // Note that C++11 does *not* perform this redundant lookup. |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 529 | NamedDecl *OuterDecl; |
| 530 | if (S) { |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 531 | LookupResult FoundOuter(*this, &Identifier, IdentifierLoc, |
| 532 | LookupNestedNameSpecifierName); |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 533 | LookupName(FoundOuter, S); |
John McCall | 67c0087 | 2009-12-02 08:25:40 +0000 | [diff] [blame] | 534 | OuterDecl = FoundOuter.getAsSingle<NamedDecl>(); |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 535 | } else |
| 536 | OuterDecl = ScopeLookupResult; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 537 | |
Douglas Gregor | cd3f49f | 2010-02-25 04:46:04 +0000 | [diff] [blame] | 538 | if (isAcceptableNestedNameSpecifier(OuterDecl) && |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 539 | OuterDecl->getCanonicalDecl() != SD->getCanonicalDecl() && |
| 540 | (!isa<TypeDecl>(OuterDecl) || !isa<TypeDecl>(SD) || |
| 541 | !Context.hasSameType( |
Douglas Gregor | 2b6ca46 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 542 | Context.getTypeDeclType(cast<TypeDecl>(OuterDecl)), |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 543 | Context.getTypeDeclType(cast<TypeDecl>(SD))))) { |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 544 | if (ErrorRecoveryLookup) |
| 545 | return true; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 546 | |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 547 | Diag(IdentifierLoc, |
| 548 | diag::err_nested_name_member_ref_lookup_ambiguous) |
| 549 | << &Identifier; |
| 550 | Diag(SD->getLocation(), diag::note_ambig_member_ref_object_type) |
| 551 | << ObjectType; |
| 552 | Diag(OuterDecl->getLocation(), diag::note_ambig_member_ref_scope); |
| 553 | |
| 554 | // Fall through so that we'll pick the name we found in the object |
| 555 | // type, since that's probably what the user wanted anyway. |
| 556 | } |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 557 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 558 | |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 559 | // If we're just performing this lookup for error-recovery purposes, |
| 560 | // don't extend the nested-name-specifier. Just return now. |
| 561 | if (ErrorRecoveryLookup) |
| 562 | return false; |
| 563 | |
| 564 | if (NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(SD)) { |
| 565 | SS.Extend(Context, Namespace, IdentifierLoc, CCLoc); |
| 566 | return false; |
| 567 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 568 | |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 569 | if (NamespaceAliasDecl *Alias = dyn_cast<NamespaceAliasDecl>(SD)) { |
Douglas Gregor | 7b26ff9 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 570 | SS.Extend(Context, Alias, IdentifierLoc, CCLoc); |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 571 | return false; |
| 572 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 573 | |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 574 | QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD)); |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 575 | TypeLocBuilder TLB; |
| 576 | if (isa<InjectedClassNameType>(T)) { |
| 577 | InjectedClassNameTypeLoc InjectedTL |
| 578 | = TLB.push<InjectedClassNameTypeLoc>(T); |
| 579 | InjectedTL.setNameLoc(IdentifierLoc); |
Douglas Gregor | dfd4b74 | 2011-05-04 23:05:40 +0000 | [diff] [blame] | 580 | } else if (isa<RecordType>(T)) { |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 581 | RecordTypeLoc RecordTL = TLB.push<RecordTypeLoc>(T); |
| 582 | RecordTL.setNameLoc(IdentifierLoc); |
Douglas Gregor | dfd4b74 | 2011-05-04 23:05:40 +0000 | [diff] [blame] | 583 | } else if (isa<TypedefType>(T)) { |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 584 | TypedefTypeLoc TypedefTL = TLB.push<TypedefTypeLoc>(T); |
| 585 | TypedefTL.setNameLoc(IdentifierLoc); |
Douglas Gregor | dfd4b74 | 2011-05-04 23:05:40 +0000 | [diff] [blame] | 586 | } else if (isa<EnumType>(T)) { |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 587 | EnumTypeLoc EnumTL = TLB.push<EnumTypeLoc>(T); |
| 588 | EnumTL.setNameLoc(IdentifierLoc); |
Douglas Gregor | dfd4b74 | 2011-05-04 23:05:40 +0000 | [diff] [blame] | 589 | } else if (isa<TemplateTypeParmType>(T)) { |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 590 | TemplateTypeParmTypeLoc TemplateTypeTL |
| 591 | = TLB.push<TemplateTypeParmTypeLoc>(T); |
| 592 | TemplateTypeTL.setNameLoc(IdentifierLoc); |
Douglas Gregor | dfd4b74 | 2011-05-04 23:05:40 +0000 | [diff] [blame] | 593 | } else if (isa<UnresolvedUsingType>(T)) { |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 594 | UnresolvedUsingTypeLoc UnresolvedTL |
| 595 | = TLB.push<UnresolvedUsingTypeLoc>(T); |
| 596 | UnresolvedTL.setNameLoc(IdentifierLoc); |
Douglas Gregor | dfd4b74 | 2011-05-04 23:05:40 +0000 | [diff] [blame] | 597 | } else if (isa<SubstTemplateTypeParmType>(T)) { |
| 598 | SubstTemplateTypeParmTypeLoc TL |
| 599 | = TLB.push<SubstTemplateTypeParmTypeLoc>(T); |
| 600 | TL.setNameLoc(IdentifierLoc); |
| 601 | } else if (isa<SubstTemplateTypeParmPackType>(T)) { |
| 602 | SubstTemplateTypeParmPackTypeLoc TL |
| 603 | = TLB.push<SubstTemplateTypeParmPackTypeLoc>(T); |
| 604 | TL.setNameLoc(IdentifierLoc); |
| 605 | } else { |
| 606 | llvm_unreachable("Unhandled TypeDecl node in nested-name-specifier"); |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 607 | } |
| 608 | |
Richard Smith | 91c7bbd | 2011-10-20 03:28:47 +0000 | [diff] [blame] | 609 | if (T->isEnumeralType()) |
| 610 | Diag(IdentifierLoc, diag::warn_cxx98_compat_enum_nested_name_spec); |
| 611 | |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 612 | SS.Extend(Context, SourceLocation(), TLB.getTypeLocInContext(Context, T), |
| 613 | CCLoc); |
| 614 | return false; |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 615 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 616 | |
Chris Lattner | 1c42803 | 2009-12-07 01:36:53 +0000 | [diff] [blame] | 617 | // Otherwise, we have an error case. If we don't want diagnostics, just |
| 618 | // return an error now. |
| 619 | if (ErrorRecoveryLookup) |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 620 | return true; |
Chris Lattner | 1c42803 | 2009-12-07 01:36:53 +0000 | [diff] [blame] | 621 | |
Cedric Venet | 08438133 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 622 | // If we didn't find anything during our lookup, try again with |
| 623 | // ordinary name lookup, which can help us produce better error |
| 624 | // messages. |
John McCall | 67c0087 | 2009-12-02 08:25:40 +0000 | [diff] [blame] | 625 | if (Found.empty()) { |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 626 | Found.clear(LookupOrdinaryName); |
| 627 | LookupName(Found, S); |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 628 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 629 | |
Francois Pichet | b23dc09 | 2011-07-27 01:05:24 +0000 | [diff] [blame] | 630 | // In Microsoft mode, if we are within a templated function and we can't |
| 631 | // resolve Identifier, then extend the SS with Identifier. This will have |
| 632 | // the effect of resolving Identifier during template instantiation. |
| 633 | // The goal is to be able to resolve a function call whose |
| 634 | // nested-name-specifier is located inside a dependent base class. |
| 635 | // Example: |
| 636 | // |
| 637 | // class C { |
| 638 | // public: |
| 639 | // static void foo2() { } |
| 640 | // }; |
| 641 | // template <class T> class A { public: typedef C D; }; |
| 642 | // |
| 643 | // template <class T> class B : public A<T> { |
| 644 | // public: |
| 645 | // void foo() { D::foo2(); } |
| 646 | // }; |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 647 | if (getLangOpts().MicrosoftExt) { |
Francois Pichet | b23dc09 | 2011-07-27 01:05:24 +0000 | [diff] [blame] | 648 | DeclContext *DC = LookupCtx ? LookupCtx : CurContext; |
| 649 | if (DC->isDependentContext() && DC->isFunctionOrMethod()) { |
| 650 | SS.Extend(Context, &Identifier, IdentifierLoc, CCLoc); |
| 651 | return false; |
| 652 | } |
| 653 | } |
| 654 | |
Cedric Venet | 08438133 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 655 | unsigned DiagID; |
John McCall | 67c0087 | 2009-12-02 08:25:40 +0000 | [diff] [blame] | 656 | if (!Found.empty()) |
Cedric Venet | 08438133 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 657 | DiagID = diag::err_expected_class_or_namespace; |
Anders Carlsson | b533df0 | 2009-08-30 07:09:50 +0000 | [diff] [blame] | 658 | else if (SS.isSet()) { |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 659 | Diag(IdentifierLoc, diag::err_no_member) |
| 660 | << &Identifier << LookupCtx << SS.getRange(); |
| 661 | return true; |
Anders Carlsson | b533df0 | 2009-08-30 07:09:50 +0000 | [diff] [blame] | 662 | } else |
Cedric Venet | 08438133 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 663 | DiagID = diag::err_undeclared_var_use; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 664 | |
Cedric Venet | 08438133 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 665 | if (SS.isSet()) |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 666 | Diag(IdentifierLoc, DiagID) << &Identifier << SS.getRange(); |
Cedric Venet | 08438133 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 667 | else |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 668 | Diag(IdentifierLoc, DiagID) << &Identifier; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 669 | |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 670 | return true; |
Cedric Venet | 08438133 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 671 | } |
| 672 | |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 673 | bool Sema::ActOnCXXNestedNameSpecifier(Scope *S, |
| 674 | IdentifierInfo &Identifier, |
| 675 | SourceLocation IdentifierLoc, |
| 676 | SourceLocation CCLoc, |
| 677 | ParsedType ObjectType, |
| 678 | bool EnteringContext, |
| 679 | CXXScopeSpec &SS) { |
| 680 | if (SS.isInvalid()) |
| 681 | return true; |
| 682 | |
| 683 | return BuildCXXNestedNameSpecifier(S, Identifier, IdentifierLoc, CCLoc, |
| 684 | GetTypeFromParser(ObjectType), |
| 685 | EnteringContext, SS, |
| 686 | /*ScopeLookupResult=*/0, false); |
Chris Lattner | 1c42803 | 2009-12-07 01:36:53 +0000 | [diff] [blame] | 687 | } |
| 688 | |
David Blaikie | 15a430a | 2011-12-04 05:04:18 +0000 | [diff] [blame] | 689 | bool Sema::ActOnCXXNestedNameSpecifierDecltype(CXXScopeSpec &SS, |
| 690 | const DeclSpec &DS, |
| 691 | SourceLocation ColonColonLoc) { |
| 692 | if (SS.isInvalid() || DS.getTypeSpecType() == DeclSpec::TST_error) |
| 693 | return true; |
| 694 | |
| 695 | assert(DS.getTypeSpecType() == DeclSpec::TST_decltype); |
| 696 | |
| 697 | QualType T = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc()); |
| 698 | if (!T->isDependentType() && !T->getAs<TagType>()) { |
| 699 | Diag(DS.getTypeSpecTypeLoc(), diag::err_expected_class) |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 700 | << T << getLangOpts().CPlusPlus; |
David Blaikie | 15a430a | 2011-12-04 05:04:18 +0000 | [diff] [blame] | 701 | return true; |
| 702 | } |
| 703 | |
| 704 | TypeLocBuilder TLB; |
| 705 | DecltypeTypeLoc DecltypeTL = TLB.push<DecltypeTypeLoc>(T); |
| 706 | DecltypeTL.setNameLoc(DS.getTypeSpecTypeLoc()); |
| 707 | SS.Extend(Context, SourceLocation(), TLB.getTypeLocInContext(Context, T), |
| 708 | ColonColonLoc); |
| 709 | return false; |
| 710 | } |
| 711 | |
Chris Lattner | 1c42803 | 2009-12-07 01:36:53 +0000 | [diff] [blame] | 712 | /// IsInvalidUnlessNestedName - This method is used for error recovery |
| 713 | /// purposes to determine whether the specified identifier is only valid as |
| 714 | /// a nested name specifier, for example a namespace name. It is |
| 715 | /// conservatively correct to always return false from this method. |
| 716 | /// |
| 717 | /// The arguments are the same as those passed to ActOnCXXNestedNameSpecifier. |
Jeffrey Yasskin | c76498d | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 718 | bool Sema::IsInvalidUnlessNestedName(Scope *S, CXXScopeSpec &SS, |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 719 | IdentifierInfo &Identifier, |
| 720 | SourceLocation IdentifierLoc, |
| 721 | SourceLocation ColonLoc, |
| 722 | ParsedType ObjectType, |
Chris Lattner | 1c42803 | 2009-12-07 01:36:53 +0000 | [diff] [blame] | 723 | bool EnteringContext) { |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 724 | if (SS.isInvalid()) |
| 725 | return false; |
| 726 | |
| 727 | return !BuildCXXNestedNameSpecifier(S, Identifier, IdentifierLoc, ColonLoc, |
| 728 | GetTypeFromParser(ObjectType), |
| 729 | EnteringContext, SS, |
| 730 | /*ScopeLookupResult=*/0, true); |
Douglas Gregor | 2b6ca46 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 731 | } |
| 732 | |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 733 | bool Sema::ActOnCXXNestedNameSpecifier(Scope *S, |
Abramo Bagnara | 7945c98 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 734 | CXXScopeSpec &SS, |
| 735 | SourceLocation TemplateKWLoc, |
Douglas Gregor | 6e06801 | 2011-02-28 00:04:36 +0000 | [diff] [blame] | 736 | TemplateTy Template, |
| 737 | SourceLocation TemplateNameLoc, |
| 738 | SourceLocation LAngleLoc, |
| 739 | ASTTemplateArgsPtr TemplateArgsIn, |
| 740 | SourceLocation RAngleLoc, |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 741 | SourceLocation CCLoc, |
Douglas Gregor | 6e06801 | 2011-02-28 00:04:36 +0000 | [diff] [blame] | 742 | bool EnteringContext) { |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 743 | if (SS.isInvalid()) |
| 744 | return true; |
| 745 | |
Douglas Gregor | 6e06801 | 2011-02-28 00:04:36 +0000 | [diff] [blame] | 746 | // Translate the parser's template argument list in our AST format. |
| 747 | TemplateArgumentListInfo TemplateArgs(LAngleLoc, RAngleLoc); |
| 748 | translateTemplateArguments(TemplateArgsIn, TemplateArgs); |
| 749 | |
| 750 | if (DependentTemplateName *DTN = Template.get().getAsDependentTemplateName()){ |
| 751 | // Handle a dependent template specialization for which we cannot resolve |
| 752 | // the template name. |
Richard Smith | 74bb2d2 | 2013-03-26 00:54:11 +0000 | [diff] [blame] | 753 | assert(DTN->getQualifier() == SS.getScopeRep()); |
Douglas Gregor | 6e06801 | 2011-02-28 00:04:36 +0000 | [diff] [blame] | 754 | QualType T = Context.getDependentTemplateSpecializationType(ETK_None, |
Douglas Gregor | a7a795b | 2011-03-01 20:11:18 +0000 | [diff] [blame] | 755 | DTN->getQualifier(), |
| 756 | DTN->getIdentifier(), |
Douglas Gregor | 6e06801 | 2011-02-28 00:04:36 +0000 | [diff] [blame] | 757 | TemplateArgs); |
| 758 | |
| 759 | // Create source-location information for this type. |
| 760 | TypeLocBuilder Builder; |
Abramo Bagnara | 48c05be | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 761 | DependentTemplateSpecializationTypeLoc SpecTL |
Douglas Gregor | 6e06801 | 2011-02-28 00:04:36 +0000 | [diff] [blame] | 762 | = Builder.push<DependentTemplateSpecializationTypeLoc>(T); |
Abramo Bagnara | 48c05be | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 763 | SpecTL.setElaboratedKeywordLoc(SourceLocation()); |
| 764 | SpecTL.setQualifierLoc(SS.getWithLocInContext(Context)); |
Abramo Bagnara | e0a70b2 | 2012-02-06 22:45:07 +0000 | [diff] [blame] | 765 | SpecTL.setTemplateKeywordLoc(TemplateKWLoc); |
Abramo Bagnara | 48c05be | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 766 | SpecTL.setTemplateNameLoc(TemplateNameLoc); |
Douglas Gregor | 6e06801 | 2011-02-28 00:04:36 +0000 | [diff] [blame] | 767 | SpecTL.setLAngleLoc(LAngleLoc); |
| 768 | SpecTL.setRAngleLoc(RAngleLoc); |
Douglas Gregor | 6e06801 | 2011-02-28 00:04:36 +0000 | [diff] [blame] | 769 | for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I) |
| 770 | SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo()); |
| 771 | |
Abramo Bagnara | 7945c98 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 772 | SS.Extend(Context, TemplateKWLoc, Builder.getTypeLocInContext(Context, T), |
Douglas Gregor | 6e06801 | 2011-02-28 00:04:36 +0000 | [diff] [blame] | 773 | CCLoc); |
| 774 | return false; |
| 775 | } |
| 776 | |
Douglas Gregor | 8b6070b | 2011-03-04 21:37:14 +0000 | [diff] [blame] | 777 | |
| 778 | if (Template.get().getAsOverloadedTemplate() || |
| 779 | isa<FunctionTemplateDecl>(Template.get().getAsTemplateDecl())) { |
| 780 | SourceRange R(TemplateNameLoc, RAngleLoc); |
| 781 | if (SS.getRange().isValid()) |
| 782 | R.setBegin(SS.getRange().getBegin()); |
| 783 | |
| 784 | Diag(CCLoc, diag::err_non_type_template_in_nested_name_specifier) |
| 785 | << Template.get() << R; |
| 786 | NoteAllFoundTemplates(Template.get()); |
| 787 | return true; |
| 788 | } |
| 789 | |
Douglas Gregor | 6e06801 | 2011-02-28 00:04:36 +0000 | [diff] [blame] | 790 | // We were able to resolve the template name to an actual template. |
| 791 | // Build an appropriate nested-name-specifier. |
| 792 | QualType T = CheckTemplateIdType(Template.get(), TemplateNameLoc, |
| 793 | TemplateArgs); |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 794 | if (T.isNull()) |
| 795 | return true; |
| 796 | |
Richard Smith | 3f1b5d0 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 797 | // Alias template specializations can produce types which are not valid |
| 798 | // nested name specifiers. |
| 799 | if (!T->isDependentType() && !T->getAs<TagType>()) { |
| 800 | Diag(TemplateNameLoc, diag::err_nested_name_spec_non_tag) << T; |
| 801 | NoteAllFoundTemplates(Template.get()); |
| 802 | return true; |
| 803 | } |
Douglas Gregor | 6e06801 | 2011-02-28 00:04:36 +0000 | [diff] [blame] | 804 | |
Abramo Bagnara | 48c05be | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 805 | // Provide source-location information for the template specialization type. |
Douglas Gregor | 6e06801 | 2011-02-28 00:04:36 +0000 | [diff] [blame] | 806 | TypeLocBuilder Builder; |
Abramo Bagnara | 48c05be | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 807 | TemplateSpecializationTypeLoc SpecTL |
Douglas Gregor | 6e06801 | 2011-02-28 00:04:36 +0000 | [diff] [blame] | 808 | = Builder.push<TemplateSpecializationTypeLoc>(T); |
Abramo Bagnara | 48c05be | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 809 | SpecTL.setTemplateKeywordLoc(TemplateKWLoc); |
| 810 | SpecTL.setTemplateNameLoc(TemplateNameLoc); |
Douglas Gregor | 6e06801 | 2011-02-28 00:04:36 +0000 | [diff] [blame] | 811 | SpecTL.setLAngleLoc(LAngleLoc); |
| 812 | SpecTL.setRAngleLoc(RAngleLoc); |
Douglas Gregor | 6e06801 | 2011-02-28 00:04:36 +0000 | [diff] [blame] | 813 | for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I) |
| 814 | SpecTL.setArgLocInfo(I, TemplateArgs[I].getLocInfo()); |
| 815 | |
| 816 | |
Abramo Bagnara | 7945c98 | 2012-01-27 09:46:47 +0000 | [diff] [blame] | 817 | SS.Extend(Context, TemplateKWLoc, Builder.getTypeLocInContext(Context, T), |
Douglas Gregor | 6e06801 | 2011-02-28 00:04:36 +0000 | [diff] [blame] | 818 | CCLoc); |
Douglas Gregor | 90c9972 | 2011-02-24 00:17:56 +0000 | [diff] [blame] | 819 | return false; |
Douglas Gregor | 7f74112 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 820 | } |
| 821 | |
Douglas Gregor | 869ad45 | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 822 | namespace { |
| 823 | /// \brief A structure that stores a nested-name-specifier annotation, |
| 824 | /// including both the nested-name-specifier |
| 825 | struct NestedNameSpecifierAnnotation { |
| 826 | NestedNameSpecifier *NNS; |
| 827 | }; |
| 828 | } |
| 829 | |
| 830 | void *Sema::SaveNestedNameSpecifierAnnotation(CXXScopeSpec &SS) { |
| 831 | if (SS.isEmpty() || SS.isInvalid()) |
| 832 | return 0; |
| 833 | |
| 834 | void *Mem = Context.Allocate((sizeof(NestedNameSpecifierAnnotation) + |
| 835 | SS.location_size()), |
| 836 | llvm::alignOf<NestedNameSpecifierAnnotation>()); |
| 837 | NestedNameSpecifierAnnotation *Annotation |
| 838 | = new (Mem) NestedNameSpecifierAnnotation; |
| 839 | Annotation->NNS = SS.getScopeRep(); |
| 840 | memcpy(Annotation + 1, SS.location_data(), SS.location_size()); |
| 841 | return Annotation; |
| 842 | } |
| 843 | |
| 844 | void Sema::RestoreNestedNameSpecifierAnnotation(void *AnnotationPtr, |
| 845 | SourceRange AnnotationRange, |
| 846 | CXXScopeSpec &SS) { |
| 847 | if (!AnnotationPtr) { |
| 848 | SS.SetInvalid(AnnotationRange); |
| 849 | return; |
| 850 | } |
| 851 | |
| 852 | NestedNameSpecifierAnnotation *Annotation |
| 853 | = static_cast<NestedNameSpecifierAnnotation *>(AnnotationPtr); |
| 854 | SS.Adopt(NestedNameSpecifierLoc(Annotation->NNS, Annotation + 1)); |
| 855 | } |
| 856 | |
John McCall | 2b058ef | 2009-12-11 20:04:54 +0000 | [diff] [blame] | 857 | bool Sema::ShouldEnterDeclaratorScope(Scope *S, const CXXScopeSpec &SS) { |
| 858 | assert(SS.isSet() && "Parser passed invalid CXXScopeSpec."); |
| 859 | |
Richard Smith | 74bb2d2 | 2013-03-26 00:54:11 +0000 | [diff] [blame] | 860 | NestedNameSpecifier *Qualifier = SS.getScopeRep(); |
John McCall | 2b058ef | 2009-12-11 20:04:54 +0000 | [diff] [blame] | 861 | |
| 862 | // There are only two places a well-formed program may qualify a |
| 863 | // declarator: first, when defining a namespace or class member |
| 864 | // out-of-line, and second, when naming an explicitly-qualified |
| 865 | // friend function. The latter case is governed by |
| 866 | // C++03 [basic.lookup.unqual]p10: |
| 867 | // In a friend declaration naming a member function, a name used |
| 868 | // in the function declarator and not part of a template-argument |
| 869 | // in a template-id is first looked up in the scope of the member |
| 870 | // function's class. If it is not found, or if the name is part of |
| 871 | // a template-argument in a template-id, the look up is as |
| 872 | // described for unqualified names in the definition of the class |
| 873 | // granting friendship. |
| 874 | // i.e. we don't push a scope unless it's a class member. |
| 875 | |
| 876 | switch (Qualifier->getKind()) { |
| 877 | case NestedNameSpecifier::Global: |
| 878 | case NestedNameSpecifier::Namespace: |
Douglas Gregor | 7b26ff9 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 879 | case NestedNameSpecifier::NamespaceAlias: |
John McCall | 2b058ef | 2009-12-11 20:04:54 +0000 | [diff] [blame] | 880 | // These are always namespace scopes. We never want to enter a |
| 881 | // namespace scope from anything but a file context. |
Sebastian Redl | 50c6825 | 2010-08-31 00:36:30 +0000 | [diff] [blame] | 882 | return CurContext->getRedeclContext()->isFileContext(); |
John McCall | 2b058ef | 2009-12-11 20:04:54 +0000 | [diff] [blame] | 883 | |
| 884 | case NestedNameSpecifier::Identifier: |
| 885 | case NestedNameSpecifier::TypeSpec: |
| 886 | case NestedNameSpecifier::TypeSpecWithTemplate: |
| 887 | // These are never namespace scopes. |
| 888 | return true; |
| 889 | } |
| 890 | |
David Blaikie | 8a40f70 | 2012-01-17 06:56:22 +0000 | [diff] [blame] | 891 | llvm_unreachable("Invalid NestedNameSpecifier::Kind!"); |
John McCall | 2b058ef | 2009-12-11 20:04:54 +0000 | [diff] [blame] | 892 | } |
| 893 | |
Cedric Venet | 08438133 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 894 | /// ActOnCXXEnterDeclaratorScope - Called when a C++ scope specifier (global |
| 895 | /// scope or nested-name-specifier) is parsed, part of a declarator-id. |
| 896 | /// After this method is called, according to [C++ 3.4.3p3], names should be |
| 897 | /// looked up in the declarator-id's scope, until the declarator is parsed and |
| 898 | /// ActOnCXXExitDeclaratorScope is called. |
| 899 | /// The 'SS' should be a non-empty valid CXXScopeSpec. |
Jeffrey Yasskin | c76498d | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 900 | bool Sema::ActOnCXXEnterDeclaratorScope(Scope *S, CXXScopeSpec &SS) { |
Cedric Venet | 08438133 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 901 | assert(SS.isSet() && "Parser passed invalid CXXScopeSpec."); |
John McCall | 6df5fef | 2009-12-19 10:49:29 +0000 | [diff] [blame] | 902 | |
| 903 | if (SS.isInvalid()) return true; |
| 904 | |
| 905 | DeclContext *DC = computeDeclContext(SS, true); |
| 906 | if (!DC) return true; |
| 907 | |
| 908 | // Before we enter a declarator's context, we need to make sure that |
| 909 | // it is a complete declaration context. |
John McCall | 0b66eb3 | 2010-05-01 00:40:08 +0000 | [diff] [blame] | 910 | if (!DC->isDependentContext() && RequireCompleteDeclContext(SS, DC)) |
John McCall | 6df5fef | 2009-12-19 10:49:29 +0000 | [diff] [blame] | 911 | return true; |
| 912 | |
| 913 | EnterDeclaratorContext(S, DC); |
John McCall | 2408e32 | 2010-04-27 00:57:59 +0000 | [diff] [blame] | 914 | |
| 915 | // Rebuild the nested name specifier for the new scope. |
| 916 | if (DC->isDependentContext()) |
| 917 | RebuildNestedNameSpecifierInCurrentInstantiation(SS); |
| 918 | |
Douglas Gregor | 5013a7e | 2009-09-24 23:39:01 +0000 | [diff] [blame] | 919 | return false; |
Cedric Venet | 08438133 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 920 | } |
| 921 | |
| 922 | /// ActOnCXXExitDeclaratorScope - Called when a declarator that previously |
| 923 | /// invoked ActOnCXXEnterDeclaratorScope(), is finished. 'SS' is the same |
| 924 | /// CXXScopeSpec that was passed to ActOnCXXEnterDeclaratorScope as well. |
| 925 | /// Used to indicate that names should revert to being looked up in the |
| 926 | /// defining scope. |
| 927 | void Sema::ActOnCXXExitDeclaratorScope(Scope *S, const CXXScopeSpec &SS) { |
| 928 | assert(SS.isSet() && "Parser passed invalid CXXScopeSpec."); |
Douglas Gregor | 053f691 | 2009-08-26 00:04:55 +0000 | [diff] [blame] | 929 | if (SS.isInvalid()) |
| 930 | return; |
John McCall | 6df5fef | 2009-12-19 10:49:29 +0000 | [diff] [blame] | 931 | assert(!SS.isInvalid() && computeDeclContext(SS, true) && |
| 932 | "exiting declarator scope we never really entered"); |
| 933 | ExitDeclaratorContext(S); |
Cedric Venet | 08438133 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 934 | } |