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