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