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" |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/STLExtras.h" |
Douglas Gregor | 7551c18 | 2009-07-22 00:28:09 +0000 | [diff] [blame] | 23 | #include "llvm/Support/raw_ostream.h" |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 24 | using namespace clang; |
| 25 | |
Douglas Gregor | 43d8863 | 2009-11-04 22:49:18 +0000 | [diff] [blame] | 26 | /// \brief Find the current instantiation that associated with the given type. |
Douglas Gregor | d9ea180 | 2011-02-19 19:24:40 +0000 | [diff] [blame^] | 27 | static CXXRecordDecl *getCurrentInstantiationOf(QualType T, |
| 28 | DeclContext *CurContext) { |
Douglas Gregor | 43d8863 | 2009-11-04 22:49:18 +0000 | [diff] [blame] | 29 | if (T.isNull()) |
| 30 | return 0; |
John McCall | 31f17ec | 2010-04-27 00:57:59 +0000 | [diff] [blame] | 31 | |
| 32 | const Type *Ty = T->getCanonicalTypeInternal().getTypePtr(); |
Douglas Gregor | d9ea180 | 2011-02-19 19:24:40 +0000 | [diff] [blame^] | 33 | if (const RecordType *RecordTy = dyn_cast<RecordType>(Ty)) { |
| 34 | CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordTy->getDecl()); |
| 35 | if (!T->isDependentType()) |
| 36 | return Record; |
| 37 | |
| 38 | // This may be a member of a class template or class template partial |
| 39 | // specialization. If it's part of the current semantic context, then it's |
| 40 | // an injected-class-name; |
| 41 | for (; !CurContext->isFileContext(); CurContext = CurContext->getParent()) |
| 42 | if (CurContext->Equals(Record)) |
| 43 | return Record; |
| 44 | |
| 45 | return 0; |
| 46 | } else if (isa<InjectedClassNameType>(Ty)) |
John McCall | 31f17ec | 2010-04-27 00:57:59 +0000 | [diff] [blame] | 47 | return cast<InjectedClassNameType>(Ty)->getDecl(); |
| 48 | else |
| 49 | return 0; |
Douglas Gregor | 43d8863 | 2009-11-04 22:49:18 +0000 | [diff] [blame] | 50 | } |
| 51 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 52 | /// \brief Compute the DeclContext that is associated with the given type. |
| 53 | /// |
| 54 | /// \param T the type for which we are attempting to find a DeclContext. |
| 55 | /// |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 56 | /// \returns the declaration context represented by the type T, |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 57 | /// or NULL if the declaration context cannot be computed (e.g., because it is |
| 58 | /// dependent and not the current instantiation). |
| 59 | DeclContext *Sema::computeDeclContext(QualType T) { |
Douglas Gregor | d9ea180 | 2011-02-19 19:24:40 +0000 | [diff] [blame^] | 60 | if (!T->isDependentType()) |
| 61 | if (const TagType *Tag = T->getAs<TagType>()) |
| 62 | return Tag->getDecl(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 63 | |
Douglas Gregor | d9ea180 | 2011-02-19 19:24:40 +0000 | [diff] [blame^] | 64 | return ::getCurrentInstantiationOf(T, CurContext); |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 65 | } |
| 66 | |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 67 | /// \brief Compute the DeclContext that is associated with the given |
| 68 | /// scope specifier. |
Douglas Gregor | f59a56e | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 69 | /// |
| 70 | /// \param SS the C++ scope specifier as it appears in the source |
| 71 | /// |
| 72 | /// \param EnteringContext when true, we will be entering the context of |
| 73 | /// this scope specifier, so we can retrieve the declaration context of a |
| 74 | /// class template or class template partial specialization even if it is |
| 75 | /// not the current instantiation. |
| 76 | /// |
| 77 | /// \returns the declaration context represented by the scope specifier @p SS, |
| 78 | /// or NULL if the declaration context cannot be computed (e.g., because it is |
| 79 | /// dependent and not the current instantiation). |
| 80 | DeclContext *Sema::computeDeclContext(const CXXScopeSpec &SS, |
| 81 | bool EnteringContext) { |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 82 | if (!SS.isSet() || SS.isInvalid()) |
Douglas Gregor | ca5e77f | 2009-03-18 00:36:05 +0000 | [diff] [blame] | 83 | return 0; |
Douglas Gregor | ca5e77f | 2009-03-18 00:36:05 +0000 | [diff] [blame] | 84 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 85 | NestedNameSpecifier *NNS |
Douglas Gregor | 3507369 | 2009-03-26 23:56:24 +0000 | [diff] [blame] | 86 | = static_cast<NestedNameSpecifier *>(SS.getScopeRep()); |
Douglas Gregor | 42af25f | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 87 | if (NNS->isDependent()) { |
| 88 | // If this nested-name-specifier refers to the current |
| 89 | // instantiation, return its DeclContext. |
| 90 | if (CXXRecordDecl *Record = getCurrentInstantiationOf(NNS)) |
| 91 | return Record; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 92 | |
Douglas Gregor | f59a56e | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 93 | if (EnteringContext) { |
John McCall | 3cb0ebd | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 94 | const Type *NNSType = NNS->getAsType(); |
| 95 | if (!NNSType) { |
| 96 | // do nothing, fall out |
| 97 | } else if (const TemplateSpecializationType *SpecType |
| 98 | = NNSType->getAs<TemplateSpecializationType>()) { |
Douglas Gregor | 495c35d | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 99 | // We are entering the context of the nested name specifier, so try to |
| 100 | // match the nested name specifier to either a primary class template |
| 101 | // or a class template partial specialization. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 102 | if (ClassTemplateDecl *ClassTemplate |
Douglas Gregor | f59a56e | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 103 | = dyn_cast_or_null<ClassTemplateDecl>( |
| 104 | SpecType->getTemplateName().getAsTemplateDecl())) { |
Douglas Gregor | b88e888 | 2009-07-30 17:40:51 +0000 | [diff] [blame] | 105 | QualType ContextType |
| 106 | = Context.getCanonicalType(QualType(SpecType, 0)); |
| 107 | |
Douglas Gregor | f59a56e | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 108 | // If the type of the nested name specifier is the same as the |
| 109 | // injected class name of the named class template, we're entering |
| 110 | // into that class template definition. |
John McCall | 3cb0ebd | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 111 | QualType Injected |
Douglas Gregor | 24bae92 | 2010-07-08 18:37:38 +0000 | [diff] [blame] | 112 | = ClassTemplate->getInjectedClassNameSpecialization(); |
Douglas Gregor | b88e888 | 2009-07-30 17:40:51 +0000 | [diff] [blame] | 113 | if (Context.hasSameType(Injected, ContextType)) |
Douglas Gregor | f59a56e | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 114 | return ClassTemplate->getTemplatedDecl(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 115 | |
Douglas Gregor | b88e888 | 2009-07-30 17:40:51 +0000 | [diff] [blame] | 116 | // If the type of the nested name specifier is the same as the |
| 117 | // type of one of the class template's class template partial |
| 118 | // specializations, we're entering into the definition of that |
| 119 | // class template partial specialization. |
| 120 | if (ClassTemplatePartialSpecializationDecl *PartialSpec |
| 121 | = ClassTemplate->findPartialSpecialization(ContextType)) |
| 122 | return PartialSpec; |
Douglas Gregor | f59a56e | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 123 | } |
John McCall | 3cb0ebd | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 124 | } else if (const RecordType *RecordT = NNSType->getAs<RecordType>()) { |
Douglas Gregor | 495c35d | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 125 | // The nested name specifier refers to a member of a class template. |
| 126 | return RecordT->getDecl(); |
Douglas Gregor | f59a56e | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 127 | } |
| 128 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 129 | |
Douglas Gregor | f59a56e | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 130 | return 0; |
Douglas Gregor | 42af25f | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 131 | } |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 132 | |
| 133 | switch (NNS->getKind()) { |
| 134 | case NestedNameSpecifier::Identifier: |
| 135 | assert(false && "Dependent nested-name-specifier has no DeclContext"); |
| 136 | break; |
| 137 | |
| 138 | case NestedNameSpecifier::Namespace: |
| 139 | return NNS->getAsNamespace(); |
| 140 | |
| 141 | case NestedNameSpecifier::TypeSpec: |
| 142 | case NestedNameSpecifier::TypeSpecWithTemplate: { |
Douglas Gregor | edc9050 | 2010-02-25 04:46:04 +0000 | [diff] [blame] | 143 | const TagType *Tag = NNS->getAsType()->getAs<TagType>(); |
| 144 | assert(Tag && "Non-tag type in nested-name-specifier"); |
| 145 | return Tag->getDecl(); |
| 146 | } break; |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 147 | |
| 148 | case NestedNameSpecifier::Global: |
| 149 | return Context.getTranslationUnitDecl(); |
| 150 | } |
| 151 | |
Douglas Gregor | edc9050 | 2010-02-25 04:46:04 +0000 | [diff] [blame] | 152 | // Required to silence a GCC warning. |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 153 | return 0; |
Douglas Gregor | ca5e77f | 2009-03-18 00:36:05 +0000 | [diff] [blame] | 154 | } |
| 155 | |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 156 | bool Sema::isDependentScopeSpecifier(const CXXScopeSpec &SS) { |
| 157 | if (!SS.isSet() || SS.isInvalid()) |
| 158 | return false; |
| 159 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 160 | NestedNameSpecifier *NNS |
Douglas Gregor | 3507369 | 2009-03-26 23:56:24 +0000 | [diff] [blame] | 161 | = static_cast<NestedNameSpecifier *>(SS.getScopeRep()); |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 162 | return NNS->isDependent(); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 163 | } |
| 164 | |
Douglas Gregor | 42af25f | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 165 | // \brief Determine whether this C++ scope specifier refers to an |
| 166 | // unknown specialization, i.e., a dependent type that is not the |
| 167 | // current instantiation. |
| 168 | bool Sema::isUnknownSpecialization(const CXXScopeSpec &SS) { |
| 169 | if (!isDependentScopeSpecifier(SS)) |
| 170 | return false; |
| 171 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 172 | NestedNameSpecifier *NNS |
Douglas Gregor | 42af25f | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 173 | = static_cast<NestedNameSpecifier *>(SS.getScopeRep()); |
| 174 | return getCurrentInstantiationOf(NNS) == 0; |
| 175 | } |
| 176 | |
| 177 | /// \brief If the given nested name specifier refers to the current |
| 178 | /// instantiation, return the declaration that corresponds to that |
| 179 | /// current instantiation (C++0x [temp.dep.type]p1). |
| 180 | /// |
| 181 | /// \param NNS a dependent nested name specifier. |
| 182 | CXXRecordDecl *Sema::getCurrentInstantiationOf(NestedNameSpecifier *NNS) { |
| 183 | assert(getLangOptions().CPlusPlus && "Only callable in C++"); |
| 184 | assert(NNS->isDependent() && "Only dependent nested-name-specifier allowed"); |
| 185 | |
Douglas Gregor | f59a56e | 2009-07-21 23:53:31 +0000 | [diff] [blame] | 186 | if (!NNS->getAsType()) |
| 187 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 188 | |
Douglas Gregor | 1560def | 2009-07-31 18:32:42 +0000 | [diff] [blame] | 189 | QualType T = QualType(NNS->getAsType(), 0); |
Douglas Gregor | d9ea180 | 2011-02-19 19:24:40 +0000 | [diff] [blame^] | 190 | return ::getCurrentInstantiationOf(T, CurContext); |
Douglas Gregor | 42af25f | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 191 | } |
| 192 | |
Douglas Gregor | 4fdf1fa | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 193 | /// \brief Require that the context specified by SS be complete. |
| 194 | /// |
| 195 | /// If SS refers to a type, this routine checks whether the type is |
| 196 | /// complete enough (or can be made complete enough) for name lookup |
| 197 | /// into the DeclContext. A type that is not yet completed can be |
| 198 | /// considered "complete enough" if it is a class/struct/union/enum |
| 199 | /// that is currently being defined. Or, if we have a type that names |
| 200 | /// a class template specialization that is not a complete type, we |
| 201 | /// will attempt to instantiate that class template. |
John McCall | 77bb1aa | 2010-05-01 00:40:08 +0000 | [diff] [blame] | 202 | bool Sema::RequireCompleteDeclContext(CXXScopeSpec &SS, |
| 203 | DeclContext *DC) { |
| 204 | assert(DC != 0 && "given null context"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 205 | |
Douglas Gregor | 4fdf1fa | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 206 | if (TagDecl *Tag = dyn_cast<TagDecl>(DC)) { |
Douglas Gregor | a4e8c2a | 2010-02-05 04:39:02 +0000 | [diff] [blame] | 207 | // If this is a dependent type, then we consider it complete. |
| 208 | if (Tag->isDependentContext()) |
| 209 | return false; |
| 210 | |
Douglas Gregor | 4fdf1fa | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 211 | // If we're currently defining this type, then lookup into the |
| 212 | // type is okay: don't complain that it isn't complete yet. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 213 | const TagType *TagT = Context.getTypeDeclType(Tag)->getAs<TagType>(); |
John McCall | 3cb0ebd | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 214 | if (TagT && TagT->isBeingDefined()) |
Douglas Gregor | 4fdf1fa | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 215 | return false; |
| 216 | |
| 217 | // The type must be complete. |
Jeffrey Yasskin | 9ab1454 | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 218 | if (RequireCompleteType(SS.getRange().getBegin(), |
| 219 | Context.getTypeDeclType(Tag), |
| 220 | PDiag(diag::err_incomplete_nested_name_spec) |
John McCall | 77bb1aa | 2010-05-01 00:40:08 +0000 | [diff] [blame] | 221 | << SS.getRange())) { |
Jeffrey Yasskin | 9ab1454 | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 222 | SS.setScopeRep(0); // Mark the ScopeSpec invalid. |
| 223 | return true; |
| 224 | } |
Douglas Gregor | 4fdf1fa | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 225 | } |
| 226 | |
| 227 | return false; |
| 228 | } |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 229 | |
| 230 | /// ActOnCXXGlobalScopeSpecifier - Return the object that represents the |
| 231 | /// global scope ('::'). |
| 232 | Sema::CXXScopeTy *Sema::ActOnCXXGlobalScopeSpecifier(Scope *S, |
| 233 | SourceLocation CCLoc) { |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 234 | return NestedNameSpecifier::GlobalSpecifier(Context); |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 235 | } |
| 236 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 237 | /// \brief Determines whether the given declaration is an valid acceptable |
| 238 | /// result for name lookup of a nested-name-specifier. |
Douglas Gregor | edc9050 | 2010-02-25 04:46:04 +0000 | [diff] [blame] | 239 | bool Sema::isAcceptableNestedNameSpecifier(NamedDecl *SD) { |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 240 | if (!SD) |
| 241 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 242 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 243 | // Namespace and namespace aliases are fine. |
| 244 | if (isa<NamespaceDecl>(SD) || isa<NamespaceAliasDecl>(SD)) |
| 245 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 246 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 247 | if (!isa<TypeDecl>(SD)) |
| 248 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 249 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 250 | // Determine whether we have a class (or, in C++0x, an enum) or |
| 251 | // a typedef thereof. If so, build the nested-name-specifier. |
| 252 | QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD)); |
| 253 | if (T->isDependentType()) |
| 254 | return true; |
| 255 | else if (TypedefDecl *TD = dyn_cast<TypedefDecl>(SD)) { |
| 256 | if (TD->getUnderlyingType()->isRecordType() || |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 257 | (Context.getLangOptions().CPlusPlus0x && |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 258 | TD->getUnderlyingType()->isEnumeralType())) |
| 259 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 260 | } else if (isa<RecordDecl>(SD) || |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 261 | (Context.getLangOptions().CPlusPlus0x && isa<EnumDecl>(SD))) |
| 262 | return true; |
| 263 | |
| 264 | return false; |
| 265 | } |
| 266 | |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 267 | /// \brief If the given nested-name-specifier begins with a bare identifier |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 268 | /// (e.g., Base::), perform name lookup for that identifier as a |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 269 | /// nested-name-specifier within the given scope, and return the result of that |
| 270 | /// name lookup. |
| 271 | NamedDecl *Sema::FindFirstQualifierInScope(Scope *S, NestedNameSpecifier *NNS) { |
| 272 | if (!S || !NNS) |
| 273 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 274 | |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 275 | while (NNS->getPrefix()) |
| 276 | NNS = NNS->getPrefix(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 277 | |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 278 | if (NNS->getKind() != NestedNameSpecifier::Identifier) |
| 279 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 280 | |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 281 | LookupResult Found(*this, NNS->getAsIdentifier(), SourceLocation(), |
| 282 | LookupNestedNameSpecifierName); |
| 283 | LookupName(Found, S); |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 284 | assert(!Found.isAmbiguous() && "Cannot handle ambiguities here yet"); |
| 285 | |
John McCall | 1bcee0a | 2009-12-02 08:25:40 +0000 | [diff] [blame] | 286 | if (!Found.isSingleResult()) |
| 287 | return 0; |
| 288 | |
| 289 | NamedDecl *Result = Found.getFoundDecl(); |
Douglas Gregor | edc9050 | 2010-02-25 04:46:04 +0000 | [diff] [blame] | 290 | if (isAcceptableNestedNameSpecifier(Result)) |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 291 | return Result; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 292 | |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 293 | return 0; |
| 294 | } |
| 295 | |
Jeffrey Yasskin | 9ab1454 | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 296 | bool Sema::isNonTypeNestedNameSpecifier(Scope *S, CXXScopeSpec &SS, |
Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 297 | SourceLocation IdLoc, |
| 298 | IdentifierInfo &II, |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 299 | ParsedType ObjectTypePtr) { |
Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 300 | QualType ObjectType = GetTypeFromParser(ObjectTypePtr); |
| 301 | LookupResult Found(*this, &II, IdLoc, LookupNestedNameSpecifierName); |
| 302 | |
| 303 | // Determine where to perform name lookup |
| 304 | DeclContext *LookupCtx = 0; |
| 305 | bool isDependent = false; |
| 306 | if (!ObjectType.isNull()) { |
| 307 | // This nested-name-specifier occurs in a member access expression, e.g., |
| 308 | // x->B::f, and we are looking into the type of the object. |
| 309 | assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist"); |
| 310 | LookupCtx = computeDeclContext(ObjectType); |
| 311 | isDependent = ObjectType->isDependentType(); |
| 312 | } else if (SS.isSet()) { |
| 313 | // This nested-name-specifier occurs after another nested-name-specifier, |
| 314 | // so long into the context associated with the prior nested-name-specifier. |
| 315 | LookupCtx = computeDeclContext(SS, false); |
| 316 | isDependent = isDependentScopeSpecifier(SS); |
| 317 | Found.setContextRange(SS.getRange()); |
| 318 | } |
| 319 | |
| 320 | if (LookupCtx) { |
| 321 | // Perform "qualified" name lookup into the declaration context we |
| 322 | // computed, which is either the type of the base of a member access |
| 323 | // expression or the declaration context associated with a prior |
| 324 | // nested-name-specifier. |
| 325 | |
| 326 | // The declaration context must be complete. |
John McCall | 77bb1aa | 2010-05-01 00:40:08 +0000 | [diff] [blame] | 327 | if (!LookupCtx->isDependentContext() && |
| 328 | RequireCompleteDeclContext(SS, LookupCtx)) |
Douglas Gregor | 7754908 | 2010-02-24 21:29:12 +0000 | [diff] [blame] | 329 | return false; |
| 330 | |
| 331 | LookupQualifiedName(Found, LookupCtx); |
| 332 | } else if (isDependent) { |
| 333 | return false; |
| 334 | } else { |
| 335 | LookupName(Found, S); |
| 336 | } |
| 337 | Found.suppressDiagnostics(); |
| 338 | |
| 339 | if (NamedDecl *ND = Found.getAsSingle<NamedDecl>()) |
| 340 | return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND); |
| 341 | |
| 342 | return false; |
| 343 | } |
| 344 | |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 345 | /// \brief Build a new nested-name-specifier for "identifier::", as described |
| 346 | /// by ActOnCXXNestedNameSpecifier. |
| 347 | /// |
| 348 | /// This routine differs only slightly from ActOnCXXNestedNameSpecifier, in |
| 349 | /// that it contains an extra parameter \p ScopeLookupResult, which provides |
| 350 | /// 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] | 351 | /// that was computed at template definition time. |
Chris Lattner | 4664649 | 2009-12-07 01:36:53 +0000 | [diff] [blame] | 352 | /// |
| 353 | /// If ErrorRecoveryLookup is true, then this call is used to improve error |
| 354 | /// recovery. This means that it should not emit diagnostics, it should |
| 355 | /// just return null on failure. It also means it should only return a valid |
| 356 | /// scope if it *knows* that the result is correct. It should not return in a |
| 357 | /// dependent context, for example. |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 358 | Sema::CXXScopeTy *Sema::BuildCXXNestedNameSpecifier(Scope *S, |
Jeffrey Yasskin | 9ab1454 | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 359 | CXXScopeSpec &SS, |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 360 | SourceLocation IdLoc, |
| 361 | SourceLocation CCLoc, |
Douglas Gregor | 495c35d | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 362 | IdentifierInfo &II, |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 363 | QualType ObjectType, |
| 364 | NamedDecl *ScopeLookupResult, |
Chris Lattner | 4664649 | 2009-12-07 01:36:53 +0000 | [diff] [blame] | 365 | bool EnteringContext, |
| 366 | bool ErrorRecoveryLookup) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 367 | NestedNameSpecifier *Prefix |
Douglas Gregor | 3507369 | 2009-03-26 23:56:24 +0000 | [diff] [blame] | 368 | = static_cast<NestedNameSpecifier *>(SS.getScopeRep()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 369 | |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 370 | LookupResult Found(*this, &II, IdLoc, LookupNestedNameSpecifierName); |
| 371 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 372 | // Determine where to perform name lookup |
| 373 | DeclContext *LookupCtx = 0; |
| 374 | bool isDependent = false; |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 375 | if (!ObjectType.isNull()) { |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 376 | // This nested-name-specifier occurs in a member access expression, e.g., |
| 377 | // x->B::f, and we are looking into the type of the object. |
| 378 | assert(!SS.isSet() && "ObjectType and scope specifier cannot coexist"); |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 379 | LookupCtx = computeDeclContext(ObjectType); |
| 380 | isDependent = ObjectType->isDependentType(); |
| 381 | } else if (SS.isSet()) { |
| 382 | // This nested-name-specifier occurs after another nested-name-specifier, |
| 383 | // so long into the context associated with the prior nested-name-specifier. |
| 384 | LookupCtx = computeDeclContext(SS, EnteringContext); |
| 385 | isDependent = isDependentScopeSpecifier(SS); |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 386 | Found.setContextRange(SS.getRange()); |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 387 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 388 | |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 389 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 390 | bool ObjectTypeSearchedInScope = false; |
| 391 | if (LookupCtx) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 392 | // Perform "qualified" name lookup into the declaration context we |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 393 | // 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] | 394 | // expression or the declaration context associated with a prior |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 395 | // nested-name-specifier. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 396 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 397 | // The declaration context must be complete. |
John McCall | 77bb1aa | 2010-05-01 00:40:08 +0000 | [diff] [blame] | 398 | if (!LookupCtx->isDependentContext() && |
| 399 | RequireCompleteDeclContext(SS, LookupCtx)) |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 400 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 401 | |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 402 | LookupQualifiedName(Found, LookupCtx); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 403 | |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 404 | if (!ObjectType.isNull() && Found.empty()) { |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 405 | // C++ [basic.lookup.classref]p4: |
| 406 | // 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] | 407 | // the form |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 408 | // |
| 409 | // class-name-or-namespace-name::... |
| 410 | // |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 411 | // the class-name-or-namespace-name following the . or -> operator is |
| 412 | // 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] | 413 | // 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] | 414 | // only in the scope of the class of the object expression, the name |
| 415 | // 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] | 416 | // context of the entire postfix-expression, the name shall refer to a |
| 417 | // class-name or namespace-name. [...] |
| 418 | // |
| 419 | // Qualified name lookup into a class will not find a namespace-name, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 420 | // so we do not need to diagnoste that case specifically. However, |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 421 | // this qualified name lookup may find nothing. In that case, perform |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 422 | // unqualified name lookup in the given scope (if available) or |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 423 | // reconstruct the result from when name lookup was performed at template |
| 424 | // definition time. |
| 425 | if (S) |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 426 | LookupName(Found, S); |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 427 | else if (ScopeLookupResult) |
| 428 | Found.addDecl(ScopeLookupResult); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 429 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 430 | ObjectTypeSearchedInScope = true; |
| 431 | } |
Douglas Gregor | ac7cbd8 | 2010-07-28 14:49:07 +0000 | [diff] [blame] | 432 | } else if (!isDependent) { |
| 433 | // Perform unqualified name lookup in the current scope. |
| 434 | LookupName(Found, S); |
| 435 | } |
| 436 | |
| 437 | // If we performed lookup into a dependent context and did not find anything, |
| 438 | // that's fine: just build a dependent nested-name-specifier. |
| 439 | if (Found.empty() && isDependent && |
| 440 | !(LookupCtx && LookupCtx->isRecord() && |
| 441 | (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() || |
| 442 | !cast<CXXRecordDecl>(LookupCtx)->hasAnyDependentBases()))) { |
Chris Lattner | 4664649 | 2009-12-07 01:36:53 +0000 | [diff] [blame] | 443 | // Don't speculate if we're just trying to improve error recovery. |
| 444 | if (ErrorRecoveryLookup) |
| 445 | return 0; |
| 446 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 447 | // We were not able to compute the declaration context for a dependent |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 448 | // base object type or prior nested-name-specifier, so this |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 449 | // nested-name-specifier refers to an unknown specialization. Just build |
| 450 | // a dependent nested-name-specifier. |
Douglas Gregor | 2700dcd | 2009-09-02 23:58:38 +0000 | [diff] [blame] | 451 | if (!Prefix) |
| 452 | return NestedNameSpecifier::Create(Context, &II); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 453 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 454 | return NestedNameSpecifier::Create(Context, Prefix, &II); |
Douglas Gregor | ac7cbd8 | 2010-07-28 14:49:07 +0000 | [diff] [blame] | 455 | } |
| 456 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 457 | // FIXME: Deal with ambiguities cleanly. |
Douglas Gregor | 175a656 | 2009-12-31 08:26:35 +0000 | [diff] [blame] | 458 | |
| 459 | if (Found.empty() && !ErrorRecoveryLookup) { |
| 460 | // We haven't found anything, and we're not recovering from a |
| 461 | // different kind of error, so look for typos. |
| 462 | DeclarationName Name = Found.getLookupName(); |
Douglas Gregor | aaf8716 | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 463 | if (CorrectTypo(Found, S, &SS, LookupCtx, EnteringContext, |
| 464 | CTC_NoKeywords) && |
Douglas Gregor | 175a656 | 2009-12-31 08:26:35 +0000 | [diff] [blame] | 465 | Found.isSingleResult() && |
Douglas Gregor | edc9050 | 2010-02-25 04:46:04 +0000 | [diff] [blame] | 466 | isAcceptableNestedNameSpecifier(Found.getAsSingle<NamedDecl>())) { |
Douglas Gregor | 175a656 | 2009-12-31 08:26:35 +0000 | [diff] [blame] | 467 | if (LookupCtx) |
| 468 | Diag(Found.getNameLoc(), diag::err_no_member_suggest) |
| 469 | << Name << LookupCtx << Found.getLookupName() << SS.getRange() |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 470 | << FixItHint::CreateReplacement(Found.getNameLoc(), |
| 471 | Found.getLookupName().getAsString()); |
Douglas Gregor | 175a656 | 2009-12-31 08:26:35 +0000 | [diff] [blame] | 472 | else |
| 473 | Diag(Found.getNameLoc(), diag::err_undeclared_var_use_suggest) |
| 474 | << Name << Found.getLookupName() |
Douglas Gregor | 849b243 | 2010-03-31 17:46:05 +0000 | [diff] [blame] | 475 | << FixItHint::CreateReplacement(Found.getNameLoc(), |
| 476 | Found.getLookupName().getAsString()); |
Douglas Gregor | 67dd1d4 | 2010-01-07 00:17:44 +0000 | [diff] [blame] | 477 | |
| 478 | if (NamedDecl *ND = Found.getAsSingle<NamedDecl>()) |
| 479 | Diag(ND->getLocation(), diag::note_previous_decl) |
| 480 | << ND->getDeclName(); |
Douglas Gregor | 12eb5d6 | 2010-06-29 19:27:42 +0000 | [diff] [blame] | 481 | } else { |
Douglas Gregor | 175a656 | 2009-12-31 08:26:35 +0000 | [diff] [blame] | 482 | Found.clear(); |
Douglas Gregor | 12eb5d6 | 2010-06-29 19:27:42 +0000 | [diff] [blame] | 483 | Found.setLookupName(&II); |
| 484 | } |
Douglas Gregor | 175a656 | 2009-12-31 08:26:35 +0000 | [diff] [blame] | 485 | } |
| 486 | |
John McCall | 1bcee0a | 2009-12-02 08:25:40 +0000 | [diff] [blame] | 487 | NamedDecl *SD = Found.getAsSingle<NamedDecl>(); |
Douglas Gregor | edc9050 | 2010-02-25 04:46:04 +0000 | [diff] [blame] | 488 | if (isAcceptableNestedNameSpecifier(SD)) { |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 489 | if (!ObjectType.isNull() && !ObjectTypeSearchedInScope) { |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 490 | // C++ [basic.lookup.classref]p4: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 491 | // [...] If the name is found in both contexts, the |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 492 | // class-name-or-namespace-name shall refer to the same entity. |
| 493 | // |
| 494 | // We already found the name in the scope of the object. Now, look |
| 495 | // into the current scope (the scope of the postfix-expression) to |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 496 | // see if we can find the same name there. As above, if there is no |
| 497 | // scope, reconstruct the result from the template instantiation itself. |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 498 | NamedDecl *OuterDecl; |
| 499 | if (S) { |
Douglas Gregor | edc9050 | 2010-02-25 04:46:04 +0000 | [diff] [blame] | 500 | LookupResult FoundOuter(*this, &II, IdLoc, LookupNestedNameSpecifierName); |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 501 | LookupName(FoundOuter, S); |
John McCall | 1bcee0a | 2009-12-02 08:25:40 +0000 | [diff] [blame] | 502 | OuterDecl = FoundOuter.getAsSingle<NamedDecl>(); |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 503 | } else |
| 504 | OuterDecl = ScopeLookupResult; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 505 | |
Douglas Gregor | edc9050 | 2010-02-25 04:46:04 +0000 | [diff] [blame] | 506 | if (isAcceptableNestedNameSpecifier(OuterDecl) && |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 507 | OuterDecl->getCanonicalDecl() != SD->getCanonicalDecl() && |
| 508 | (!isa<TypeDecl>(OuterDecl) || !isa<TypeDecl>(SD) || |
| 509 | !Context.hasSameType( |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 510 | Context.getTypeDeclType(cast<TypeDecl>(OuterDecl)), |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 511 | Context.getTypeDeclType(cast<TypeDecl>(SD))))) { |
Chris Lattner | 4664649 | 2009-12-07 01:36:53 +0000 | [diff] [blame] | 512 | if (ErrorRecoveryLookup) |
| 513 | return 0; |
| 514 | |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 515 | Diag(IdLoc, diag::err_nested_name_member_ref_lookup_ambiguous) |
| 516 | << &II; |
| 517 | Diag(SD->getLocation(), diag::note_ambig_member_ref_object_type) |
| 518 | << ObjectType; |
| 519 | Diag(OuterDecl->getLocation(), diag::note_ambig_member_ref_scope); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 520 | |
Chris Lattner | 4664649 | 2009-12-07 01:36:53 +0000 | [diff] [blame] | 521 | // Fall through so that we'll pick the name we found in the object |
| 522 | // type, since that's probably what the user wanted anyway. |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 523 | } |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 524 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 525 | |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 526 | if (NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(SD)) |
| 527 | return NestedNameSpecifier::Create(Context, Prefix, Namespace); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 528 | |
Douglas Gregor | dacd434 | 2009-08-26 00:04:55 +0000 | [diff] [blame] | 529 | // FIXME: It would be nice to maintain the namespace alias name, then |
| 530 | // see through that alias when resolving the nested-name-specifier down to |
| 531 | // a declaration context. |
Anders Carlsson | 81c85c4 | 2009-03-28 23:53:49 +0000 | [diff] [blame] | 532 | if (NamespaceAliasDecl *Alias = dyn_cast<NamespaceAliasDecl>(SD)) |
| 533 | return NestedNameSpecifier::Create(Context, Prefix, |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 534 | Alias->getNamespace()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 535 | |
Douglas Gregor | 2dd078a | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 536 | QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD)); |
| 537 | return NestedNameSpecifier::Create(Context, Prefix, false, |
| 538 | T.getTypePtr()); |
| 539 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 540 | |
Chris Lattner | 4664649 | 2009-12-07 01:36:53 +0000 | [diff] [blame] | 541 | // Otherwise, we have an error case. If we don't want diagnostics, just |
| 542 | // return an error now. |
| 543 | if (ErrorRecoveryLookup) |
| 544 | return 0; |
| 545 | |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 546 | // If we didn't find anything during our lookup, try again with |
| 547 | // ordinary name lookup, which can help us produce better error |
| 548 | // messages. |
John McCall | 1bcee0a | 2009-12-02 08:25:40 +0000 | [diff] [blame] | 549 | if (Found.empty()) { |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 550 | Found.clear(LookupOrdinaryName); |
| 551 | LookupName(Found, S); |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 552 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 553 | |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 554 | unsigned DiagID; |
John McCall | 1bcee0a | 2009-12-02 08:25:40 +0000 | [diff] [blame] | 555 | if (!Found.empty()) |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 556 | DiagID = diag::err_expected_class_or_namespace; |
Anders Carlsson | a31d5f7 | 2009-08-30 07:09:50 +0000 | [diff] [blame] | 557 | else if (SS.isSet()) { |
Douglas Gregor | 3f09327 | 2009-10-13 21:16:44 +0000 | [diff] [blame] | 558 | Diag(IdLoc, diag::err_no_member) << &II << LookupCtx << SS.getRange(); |
Anders Carlsson | a31d5f7 | 2009-08-30 07:09:50 +0000 | [diff] [blame] | 559 | return 0; |
| 560 | } else |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 561 | DiagID = diag::err_undeclared_var_use; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 562 | |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 563 | if (SS.isSet()) |
| 564 | Diag(IdLoc, DiagID) << &II << SS.getRange(); |
| 565 | else |
| 566 | Diag(IdLoc, DiagID) << &II; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 567 | |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 568 | return 0; |
| 569 | } |
| 570 | |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 571 | /// ActOnCXXNestedNameSpecifier - Called during parsing of a |
| 572 | /// nested-name-specifier. e.g. for "foo::bar::" we parsed "foo::" and now |
| 573 | /// we want to resolve "bar::". 'SS' is empty or the previously parsed |
| 574 | /// nested-name part ("foo::"), 'IdLoc' is the source location of 'bar', |
| 575 | /// 'CCLoc' is the location of '::' and 'II' is the identifier for 'bar'. |
| 576 | /// Returns a CXXScopeTy* object representing the C++ scope. |
| 577 | Sema::CXXScopeTy *Sema::ActOnCXXNestedNameSpecifier(Scope *S, |
Jeffrey Yasskin | 9ab1454 | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 578 | CXXScopeSpec &SS, |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 579 | SourceLocation IdLoc, |
| 580 | SourceLocation CCLoc, |
| 581 | IdentifierInfo &II, |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 582 | ParsedType ObjectTypePtr, |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 583 | bool EnteringContext) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 584 | return BuildCXXNestedNameSpecifier(S, SS, IdLoc, CCLoc, II, |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 585 | GetTypeFromParser(ObjectTypePtr), |
Chris Lattner | 4664649 | 2009-12-07 01:36:53 +0000 | [diff] [blame] | 586 | /*ScopeLookupResult=*/0, EnteringContext, |
| 587 | false); |
| 588 | } |
| 589 | |
| 590 | /// IsInvalidUnlessNestedName - This method is used for error recovery |
| 591 | /// purposes to determine whether the specified identifier is only valid as |
| 592 | /// a nested name specifier, for example a namespace name. It is |
| 593 | /// conservatively correct to always return false from this method. |
| 594 | /// |
| 595 | /// The arguments are the same as those passed to ActOnCXXNestedNameSpecifier. |
Jeffrey Yasskin | 9ab1454 | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 596 | bool Sema::IsInvalidUnlessNestedName(Scope *S, CXXScopeSpec &SS, |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 597 | IdentifierInfo &II, ParsedType ObjectType, |
Chris Lattner | 4664649 | 2009-12-07 01:36:53 +0000 | [diff] [blame] | 598 | bool EnteringContext) { |
| 599 | return BuildCXXNestedNameSpecifier(S, SS, SourceLocation(), SourceLocation(), |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 600 | II, GetTypeFromParser(ObjectType), |
Chris Lattner | 4664649 | 2009-12-07 01:36:53 +0000 | [diff] [blame] | 601 | /*ScopeLookupResult=*/0, EnteringContext, |
| 602 | true); |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 603 | } |
| 604 | |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 605 | Sema::CXXScopeTy *Sema::ActOnCXXNestedNameSpecifier(Scope *S, |
| 606 | const CXXScopeSpec &SS, |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 607 | ParsedType Ty, |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 608 | SourceRange TypeRange, |
Douglas Gregor | edc9050 | 2010-02-25 04:46:04 +0000 | [diff] [blame] | 609 | SourceLocation CCLoc) { |
John McCall | b3d8748 | 2010-08-24 05:47:05 +0000 | [diff] [blame] | 610 | NestedNameSpecifier *Prefix = SS.getScopeRep(); |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 611 | QualType T = GetTypeFromParser(Ty); |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 612 | return NestedNameSpecifier::Create(Context, Prefix, /*FIXME:*/false, |
Douglas Gregor | 3f5b61c | 2009-05-14 00:28:11 +0000 | [diff] [blame] | 613 | T.getTypePtr()); |
Douglas Gregor | 39a8de1 | 2009-02-25 19:37:18 +0000 | [diff] [blame] | 614 | } |
| 615 | |
John McCall | e7e278b | 2009-12-11 20:04:54 +0000 | [diff] [blame] | 616 | bool Sema::ShouldEnterDeclaratorScope(Scope *S, const CXXScopeSpec &SS) { |
| 617 | assert(SS.isSet() && "Parser passed invalid CXXScopeSpec."); |
| 618 | |
| 619 | NestedNameSpecifier *Qualifier = |
| 620 | static_cast<NestedNameSpecifier*>(SS.getScopeRep()); |
| 621 | |
| 622 | // There are only two places a well-formed program may qualify a |
| 623 | // declarator: first, when defining a namespace or class member |
| 624 | // out-of-line, and second, when naming an explicitly-qualified |
| 625 | // friend function. The latter case is governed by |
| 626 | // C++03 [basic.lookup.unqual]p10: |
| 627 | // In a friend declaration naming a member function, a name used |
| 628 | // in the function declarator and not part of a template-argument |
| 629 | // in a template-id is first looked up in the scope of the member |
| 630 | // function's class. If it is not found, or if the name is part of |
| 631 | // a template-argument in a template-id, the look up is as |
| 632 | // described for unqualified names in the definition of the class |
| 633 | // granting friendship. |
| 634 | // i.e. we don't push a scope unless it's a class member. |
| 635 | |
| 636 | switch (Qualifier->getKind()) { |
| 637 | case NestedNameSpecifier::Global: |
| 638 | case NestedNameSpecifier::Namespace: |
| 639 | // These are always namespace scopes. We never want to enter a |
| 640 | // namespace scope from anything but a file context. |
Sebastian Redl | 7a126a4 | 2010-08-31 00:36:30 +0000 | [diff] [blame] | 641 | return CurContext->getRedeclContext()->isFileContext(); |
John McCall | e7e278b | 2009-12-11 20:04:54 +0000 | [diff] [blame] | 642 | |
| 643 | case NestedNameSpecifier::Identifier: |
| 644 | case NestedNameSpecifier::TypeSpec: |
| 645 | case NestedNameSpecifier::TypeSpecWithTemplate: |
| 646 | // These are never namespace scopes. |
| 647 | return true; |
| 648 | } |
| 649 | |
| 650 | // Silence bogus warning. |
| 651 | return false; |
| 652 | } |
| 653 | |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 654 | /// ActOnCXXEnterDeclaratorScope - Called when a C++ scope specifier (global |
| 655 | /// scope or nested-name-specifier) is parsed, part of a declarator-id. |
| 656 | /// After this method is called, according to [C++ 3.4.3p3], names should be |
| 657 | /// looked up in the declarator-id's scope, until the declarator is parsed and |
| 658 | /// ActOnCXXExitDeclaratorScope is called. |
| 659 | /// The 'SS' should be a non-empty valid CXXScopeSpec. |
Jeffrey Yasskin | 9ab1454 | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 660 | bool Sema::ActOnCXXEnterDeclaratorScope(Scope *S, CXXScopeSpec &SS) { |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 661 | assert(SS.isSet() && "Parser passed invalid CXXScopeSpec."); |
John McCall | 7a1dc56 | 2009-12-19 10:49:29 +0000 | [diff] [blame] | 662 | |
| 663 | if (SS.isInvalid()) return true; |
| 664 | |
| 665 | DeclContext *DC = computeDeclContext(SS, true); |
| 666 | if (!DC) return true; |
| 667 | |
| 668 | // Before we enter a declarator's context, we need to make sure that |
| 669 | // it is a complete declaration context. |
John McCall | 77bb1aa | 2010-05-01 00:40:08 +0000 | [diff] [blame] | 670 | if (!DC->isDependentContext() && RequireCompleteDeclContext(SS, DC)) |
John McCall | 7a1dc56 | 2009-12-19 10:49:29 +0000 | [diff] [blame] | 671 | return true; |
| 672 | |
| 673 | EnterDeclaratorContext(S, DC); |
John McCall | 31f17ec | 2010-04-27 00:57:59 +0000 | [diff] [blame] | 674 | |
| 675 | // Rebuild the nested name specifier for the new scope. |
| 676 | if (DC->isDependentContext()) |
| 677 | RebuildNestedNameSpecifierInCurrentInstantiation(SS); |
| 678 | |
Douglas Gregor | 7dfd0fb | 2009-09-24 23:39:01 +0000 | [diff] [blame] | 679 | return false; |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 680 | } |
| 681 | |
| 682 | /// ActOnCXXExitDeclaratorScope - Called when a declarator that previously |
| 683 | /// invoked ActOnCXXEnterDeclaratorScope(), is finished. 'SS' is the same |
| 684 | /// CXXScopeSpec that was passed to ActOnCXXEnterDeclaratorScope as well. |
| 685 | /// Used to indicate that names should revert to being looked up in the |
| 686 | /// defining scope. |
| 687 | void Sema::ActOnCXXExitDeclaratorScope(Scope *S, const CXXScopeSpec &SS) { |
| 688 | assert(SS.isSet() && "Parser passed invalid CXXScopeSpec."); |
Douglas Gregor | dacd434 | 2009-08-26 00:04:55 +0000 | [diff] [blame] | 689 | if (SS.isInvalid()) |
| 690 | return; |
John McCall | 7a1dc56 | 2009-12-19 10:49:29 +0000 | [diff] [blame] | 691 | assert(!SS.isInvalid() && computeDeclContext(SS, true) && |
| 692 | "exiting declarator scope we never really entered"); |
| 693 | ExitDeclaratorContext(S); |
Cedric Venet | 3d65864 | 2009-02-14 20:20:19 +0000 | [diff] [blame] | 694 | } |