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