Eugene Zelenko | 21fadad | 2017-11-21 23:26:08 +0000 | [diff] [blame] | 1 | //===- NestedNameSpecifier.cpp - C++ nested name specifiers ---------------===// |
Douglas Gregor | 5253768 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 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 defines the NestedNameSpecifier class, which represents |
| 11 | // a C++ nested-name-specifier. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
Eugene Zelenko | 21fadad | 2017-11-21 23:26:08 +0000 | [diff] [blame] | 14 | |
Douglas Gregor | 5253768 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 15 | #include "clang/AST/NestedNameSpecifier.h" |
| 16 | #include "clang/AST/ASTContext.h" |
| 17 | #include "clang/AST/Decl.h" |
Douglas Gregor | 7b26ff9 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 18 | #include "clang/AST/DeclCXX.h" |
Douglas Gregor | 7de5966 | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 19 | #include "clang/AST/PrettyPrinter.h" |
Eugene Zelenko | 21fadad | 2017-11-21 23:26:08 +0000 | [diff] [blame] | 20 | #include "clang/AST/TemplateName.h" |
Douglas Gregor | 5253768 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 21 | #include "clang/AST/Type.h" |
Douglas Gregor | 869ad45 | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 22 | #include "clang/AST/TypeLoc.h" |
Eugene Zelenko | 21fadad | 2017-11-21 23:26:08 +0000 | [diff] [blame] | 23 | #include "clang/Basic/LLVM.h" |
| 24 | #include "clang/Basic/LangOptions.h" |
| 25 | #include "clang/Basic/SourceLocation.h" |
| 26 | #include "llvm/ADT/FoldingSet.h" |
| 27 | #include "llvm/ADT/SmallVector.h" |
| 28 | #include "llvm/Support/Casting.h" |
| 29 | #include "llvm/Support/Compiler.h" |
| 30 | #include "llvm/Support/ErrorHandling.h" |
Douglas Gregor | 1835391 | 2009-03-19 03:51:16 +0000 | [diff] [blame] | 31 | #include "llvm/Support/raw_ostream.h" |
Eugene Zelenko | 21fadad | 2017-11-21 23:26:08 +0000 | [diff] [blame] | 32 | #include <algorithm> |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 33 | #include <cassert> |
Eugene Zelenko | 21fadad | 2017-11-21 23:26:08 +0000 | [diff] [blame] | 34 | #include <cstdlib> |
| 35 | #include <cstring> |
Douglas Gregor | 1835391 | 2009-03-19 03:51:16 +0000 | [diff] [blame] | 36 | |
Douglas Gregor | 5253768 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 37 | using namespace clang; |
| 38 | |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 39 | NestedNameSpecifier * |
Jay Foad | 39c7980 | 2011-01-12 09:06:06 +0000 | [diff] [blame] | 40 | NestedNameSpecifier::FindOrInsert(const ASTContext &Context, |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 41 | const NestedNameSpecifier &Mockup) { |
| 42 | llvm::FoldingSetNodeID ID; |
| 43 | Mockup.Profile(ID); |
Douglas Gregor | 5253768 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 44 | |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 45 | void *InsertPos = nullptr; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 46 | NestedNameSpecifier *NNS |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 47 | = Context.NestedNameSpecifiers.FindNodeOrInsertPos(ID, InsertPos); |
| 48 | if (!NNS) { |
Benjamin Kramer | c3f8925 | 2016-10-20 14:27:22 +0000 | [diff] [blame] | 49 | NNS = |
| 50 | new (Context, alignof(NestedNameSpecifier)) NestedNameSpecifier(Mockup); |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 51 | Context.NestedNameSpecifiers.InsertNode(NNS, InsertPos); |
| 52 | } |
Douglas Gregor | 5253768 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 53 | |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 54 | return NNS; |
Douglas Gregor | 5253768 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 55 | } |
Douglas Gregor | 1835391 | 2009-03-19 03:51:16 +0000 | [diff] [blame] | 56 | |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 57 | NestedNameSpecifier * |
Jay Foad | 39c7980 | 2011-01-12 09:06:06 +0000 | [diff] [blame] | 58 | NestedNameSpecifier::Create(const ASTContext &Context, |
| 59 | NestedNameSpecifier *Prefix, IdentifierInfo *II) { |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 60 | assert(II && "Identifier cannot be NULL"); |
Douglas Gregor | 308047d | 2009-09-09 00:23:06 +0000 | [diff] [blame] | 61 | assert((!Prefix || Prefix->isDependent()) && "Prefix must be dependent"); |
Douglas Gregor | 1835391 | 2009-03-19 03:51:16 +0000 | [diff] [blame] | 62 | |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 63 | NestedNameSpecifier Mockup; |
Douglas Gregor | dce2b62 | 2009-04-01 00:28:59 +0000 | [diff] [blame] | 64 | Mockup.Prefix.setPointer(Prefix); |
Douglas Gregor | 7b26ff9 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 65 | Mockup.Prefix.setInt(StoredIdentifier); |
Douglas Gregor | dce2b62 | 2009-04-01 00:28:59 +0000 | [diff] [blame] | 66 | Mockup.Specifier = II; |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 67 | return FindOrInsert(Context, Mockup); |
| 68 | } |
Douglas Gregor | 1835391 | 2009-03-19 03:51:16 +0000 | [diff] [blame] | 69 | |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 70 | NestedNameSpecifier * |
Jay Foad | 39c7980 | 2011-01-12 09:06:06 +0000 | [diff] [blame] | 71 | NestedNameSpecifier::Create(const ASTContext &Context, |
Dmitri Gribenko | aeeca77 | 2013-01-23 17:06:56 +0000 | [diff] [blame] | 72 | NestedNameSpecifier *Prefix, |
| 73 | const NamespaceDecl *NS) { |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 74 | assert(NS && "Namespace cannot be NULL"); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 75 | assert((!Prefix || |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 76 | (Prefix->getAsType() == nullptr && |
| 77 | Prefix->getAsIdentifier() == nullptr)) && |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 78 | "Broken nested name specifier"); |
| 79 | NestedNameSpecifier Mockup; |
Douglas Gregor | dce2b62 | 2009-04-01 00:28:59 +0000 | [diff] [blame] | 80 | Mockup.Prefix.setPointer(Prefix); |
Nikola Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 81 | Mockup.Prefix.setInt(StoredDecl); |
Dmitri Gribenko | aeeca77 | 2013-01-23 17:06:56 +0000 | [diff] [blame] | 82 | Mockup.Specifier = const_cast<NamespaceDecl *>(NS); |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 83 | return FindOrInsert(Context, Mockup); |
| 84 | } |
| 85 | |
| 86 | NestedNameSpecifier * |
Jay Foad | 39c7980 | 2011-01-12 09:06:06 +0000 | [diff] [blame] | 87 | NestedNameSpecifier::Create(const ASTContext &Context, |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 88 | NestedNameSpecifier *Prefix, |
Douglas Gregor | 7b26ff9 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 89 | NamespaceAliasDecl *Alias) { |
| 90 | assert(Alias && "Namespace alias cannot be NULL"); |
| 91 | assert((!Prefix || |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 92 | (Prefix->getAsType() == nullptr && |
| 93 | Prefix->getAsIdentifier() == nullptr)) && |
Douglas Gregor | 7b26ff9 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 94 | "Broken nested name specifier"); |
| 95 | NestedNameSpecifier Mockup; |
| 96 | Mockup.Prefix.setPointer(Prefix); |
Nikola Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 97 | Mockup.Prefix.setInt(StoredDecl); |
Douglas Gregor | 7b26ff9 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 98 | Mockup.Specifier = Alias; |
| 99 | return FindOrInsert(Context, Mockup); |
| 100 | } |
| 101 | |
| 102 | NestedNameSpecifier * |
| 103 | NestedNameSpecifier::Create(const ASTContext &Context, |
Jay Foad | 39c7980 | 2011-01-12 09:06:06 +0000 | [diff] [blame] | 104 | NestedNameSpecifier *Prefix, |
John McCall | 424cec9 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 105 | bool Template, const Type *T) { |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 106 | assert(T && "Type cannot be NULL"); |
| 107 | NestedNameSpecifier Mockup; |
Douglas Gregor | dce2b62 | 2009-04-01 00:28:59 +0000 | [diff] [blame] | 108 | Mockup.Prefix.setPointer(Prefix); |
Douglas Gregor | 7b26ff9 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 109 | Mockup.Prefix.setInt(Template? StoredTypeSpecWithTemplate : StoredTypeSpec); |
John McCall | 424cec9 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 110 | Mockup.Specifier = const_cast<Type*>(T); |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 111 | return FindOrInsert(Context, Mockup); |
| 112 | } |
Douglas Gregor | 64792e0 | 2009-09-02 23:58:38 +0000 | [diff] [blame] | 113 | |
| 114 | NestedNameSpecifier * |
Jay Foad | 39c7980 | 2011-01-12 09:06:06 +0000 | [diff] [blame] | 115 | NestedNameSpecifier::Create(const ASTContext &Context, IdentifierInfo *II) { |
Douglas Gregor | 64792e0 | 2009-09-02 23:58:38 +0000 | [diff] [blame] | 116 | assert(II && "Identifier cannot be NULL"); |
| 117 | NestedNameSpecifier Mockup; |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 118 | Mockup.Prefix.setPointer(nullptr); |
Douglas Gregor | 7b26ff9 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 119 | Mockup.Prefix.setInt(StoredIdentifier); |
Douglas Gregor | 64792e0 | 2009-09-02 23:58:38 +0000 | [diff] [blame] | 120 | Mockup.Specifier = II; |
| 121 | return FindOrInsert(Context, Mockup); |
| 122 | } |
| 123 | |
Jay Foad | 39c7980 | 2011-01-12 09:06:06 +0000 | [diff] [blame] | 124 | NestedNameSpecifier * |
| 125 | NestedNameSpecifier::GlobalSpecifier(const ASTContext &Context) { |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 126 | if (!Context.GlobalNestedNameSpecifier) |
Richard Smith | beb386a | 2012-08-15 01:41:43 +0000 | [diff] [blame] | 127 | Context.GlobalNestedNameSpecifier = |
Benjamin Kramer | c3f8925 | 2016-10-20 14:27:22 +0000 | [diff] [blame] | 128 | new (Context, alignof(NestedNameSpecifier)) NestedNameSpecifier(); |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 129 | return Context.GlobalNestedNameSpecifier; |
| 130 | } |
| 131 | |
Nikola Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 132 | NestedNameSpecifier * |
| 133 | NestedNameSpecifier::SuperSpecifier(const ASTContext &Context, |
| 134 | CXXRecordDecl *RD) { |
| 135 | NestedNameSpecifier Mockup; |
| 136 | Mockup.Prefix.setPointer(nullptr); |
| 137 | Mockup.Prefix.setInt(StoredDecl); |
| 138 | Mockup.Specifier = RD; |
| 139 | return FindOrInsert(Context, Mockup); |
| 140 | } |
| 141 | |
Douglas Gregor | 7b26ff9 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 142 | NestedNameSpecifier::SpecifierKind NestedNameSpecifier::getKind() const { |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 143 | if (!Specifier) |
Douglas Gregor | 7b26ff9 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 144 | return Global; |
| 145 | |
| 146 | switch (Prefix.getInt()) { |
| 147 | case StoredIdentifier: |
| 148 | return Identifier; |
| 149 | |
Nikola Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 150 | case StoredDecl: { |
| 151 | NamedDecl *ND = static_cast<NamedDecl *>(Specifier); |
| 152 | if (isa<CXXRecordDecl>(ND)) |
| 153 | return Super; |
| 154 | return isa<NamespaceDecl>(ND) ? Namespace : NamespaceAlias; |
| 155 | } |
Douglas Gregor | 7b26ff9 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 156 | |
| 157 | case StoredTypeSpec: |
| 158 | return TypeSpec; |
| 159 | |
| 160 | case StoredTypeSpecWithTemplate: |
| 161 | return TypeSpecWithTemplate; |
| 162 | } |
| 163 | |
David Blaikie | e4d798f | 2012-01-20 21:50:17 +0000 | [diff] [blame] | 164 | llvm_unreachable("Invalid NNS Kind!"); |
Douglas Gregor | 7b26ff9 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 165 | } |
| 166 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 167 | /// Retrieve the namespace stored in this nested name specifier. |
Douglas Gregor | 7b26ff9 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 168 | NamespaceDecl *NestedNameSpecifier::getAsNamespace() const { |
Yaron Keren | e0bcdd4 | 2016-10-08 06:45:10 +0000 | [diff] [blame] | 169 | if (Prefix.getInt() == StoredDecl) |
Douglas Gregor | 7b26ff9 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 170 | return dyn_cast<NamespaceDecl>(static_cast<NamedDecl *>(Specifier)); |
| 171 | |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 172 | return nullptr; |
Douglas Gregor | 7b26ff9 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 173 | } |
| 174 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 175 | /// Retrieve the namespace alias stored in this nested name specifier. |
Douglas Gregor | 7b26ff9 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 176 | NamespaceAliasDecl *NestedNameSpecifier::getAsNamespaceAlias() const { |
Yaron Keren | e0bcdd4 | 2016-10-08 06:45:10 +0000 | [diff] [blame] | 177 | if (Prefix.getInt() == StoredDecl) |
Douglas Gregor | 7b26ff9 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 178 | return dyn_cast<NamespaceAliasDecl>(static_cast<NamedDecl *>(Specifier)); |
| 179 | |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 180 | return nullptr; |
Douglas Gregor | 7b26ff9 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 181 | } |
| 182 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 183 | /// Retrieve the record declaration stored in this nested name specifier. |
Nikola Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 184 | CXXRecordDecl *NestedNameSpecifier::getAsRecordDecl() const { |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 185 | switch (Prefix.getInt()) { |
| 186 | case StoredIdentifier: |
| 187 | return nullptr; |
| 188 | |
| 189 | case StoredDecl: |
Nikola Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 190 | return dyn_cast<CXXRecordDecl>(static_cast<NamedDecl *>(Specifier)); |
| 191 | |
Richard Smith | 5179eb7 | 2016-06-28 19:03:57 +0000 | [diff] [blame] | 192 | case StoredTypeSpec: |
| 193 | case StoredTypeSpecWithTemplate: |
| 194 | return getAsType()->getAsCXXRecordDecl(); |
| 195 | } |
| 196 | |
| 197 | llvm_unreachable("Invalid NNS Kind!"); |
Nikola Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 198 | } |
Douglas Gregor | 7b26ff9 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 199 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 200 | /// Whether this nested name specifier refers to a dependent |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 201 | /// type or not. |
| 202 | bool NestedNameSpecifier::isDependent() const { |
| 203 | switch (getKind()) { |
| 204 | case Identifier: |
| 205 | // Identifier specifiers always represent dependent types |
| 206 | return true; |
| 207 | |
| 208 | case Namespace: |
Douglas Gregor | 7b26ff9 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 209 | case NamespaceAlias: |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 210 | case Global: |
| 211 | return false; |
| 212 | |
Nikola Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 213 | case Super: { |
| 214 | CXXRecordDecl *RD = static_cast<CXXRecordDecl *>(Specifier); |
| 215 | for (const auto &Base : RD->bases()) |
| 216 | if (Base.getType()->isDependentType()) |
| 217 | return true; |
| 218 | |
| 219 | return false; |
| 220 | } |
| 221 | |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 222 | case TypeSpec: |
| 223 | case TypeSpecWithTemplate: |
| 224 | return getAsType()->isDependentType(); |
Douglas Gregor | 1835391 | 2009-03-19 03:51:16 +0000 | [diff] [blame] | 225 | } |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 226 | |
David Blaikie | e4d798f | 2012-01-20 21:50:17 +0000 | [diff] [blame] | 227 | llvm_unreachable("Invalid NNS Kind!"); |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 228 | } |
| 229 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 230 | /// Whether this nested name specifier refers to a dependent |
Douglas Gregor | 678d76c | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 231 | /// type or not. |
| 232 | bool NestedNameSpecifier::isInstantiationDependent() const { |
| 233 | switch (getKind()) { |
| 234 | case Identifier: |
| 235 | // Identifier specifiers always represent dependent types |
| 236 | return true; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 237 | |
Douglas Gregor | 678d76c | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 238 | case Namespace: |
| 239 | case NamespaceAlias: |
| 240 | case Global: |
Nikola Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 241 | case Super: |
Douglas Gregor | 678d76c | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 242 | return false; |
Nikola Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 243 | |
Douglas Gregor | 678d76c | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 244 | case TypeSpec: |
| 245 | case TypeSpecWithTemplate: |
| 246 | return getAsType()->isInstantiationDependentType(); |
| 247 | } |
David Blaikie | e4d798f | 2012-01-20 21:50:17 +0000 | [diff] [blame] | 248 | |
| 249 | llvm_unreachable("Invalid NNS Kind!"); |
Douglas Gregor | 678d76c | 2011-07-01 01:22:09 +0000 | [diff] [blame] | 250 | } |
| 251 | |
Douglas Gregor | 506bd56 | 2010-12-13 22:49:22 +0000 | [diff] [blame] | 252 | bool NestedNameSpecifier::containsUnexpandedParameterPack() const { |
| 253 | switch (getKind()) { |
| 254 | case Identifier: |
| 255 | return getPrefix() && getPrefix()->containsUnexpandedParameterPack(); |
| 256 | |
| 257 | case Namespace: |
Douglas Gregor | 7b26ff9 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 258 | case NamespaceAlias: |
Douglas Gregor | 506bd56 | 2010-12-13 22:49:22 +0000 | [diff] [blame] | 259 | case Global: |
Nikola Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 260 | case Super: |
Douglas Gregor | 506bd56 | 2010-12-13 22:49:22 +0000 | [diff] [blame] | 261 | return false; |
| 262 | |
| 263 | case TypeSpec: |
| 264 | case TypeSpecWithTemplate: |
| 265 | return getAsType()->containsUnexpandedParameterPack(); |
| 266 | } |
| 267 | |
David Blaikie | e4d798f | 2012-01-20 21:50:17 +0000 | [diff] [blame] | 268 | llvm_unreachable("Invalid NNS Kind!"); |
Douglas Gregor | 506bd56 | 2010-12-13 22:49:22 +0000 | [diff] [blame] | 269 | } |
| 270 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 271 | /// Print this nested name specifier to the given output |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 272 | /// stream. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 273 | void |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 274 | NestedNameSpecifier::print(raw_ostream &OS, |
Douglas Gregor | 7de5966 | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 275 | const PrintingPolicy &Policy) const { |
Douglas Gregor | dce2b62 | 2009-04-01 00:28:59 +0000 | [diff] [blame] | 276 | if (getPrefix()) |
Douglas Gregor | 7de5966 | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 277 | getPrefix()->print(OS, Policy); |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 278 | |
| 279 | switch (getKind()) { |
| 280 | case Identifier: |
| 281 | OS << getAsIdentifier()->getName(); |
| 282 | break; |
| 283 | |
| 284 | case Namespace: |
Douglas Gregor | 2e10cf9 | 2011-11-03 00:16:13 +0000 | [diff] [blame] | 285 | if (getAsNamespace()->isAnonymousNamespace()) |
| 286 | return; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 287 | |
Douglas Gregor | 7b26ff9 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 288 | OS << getAsNamespace()->getName(); |
| 289 | break; |
| 290 | |
| 291 | case NamespaceAlias: |
| 292 | OS << getAsNamespaceAlias()->getName(); |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 293 | break; |
| 294 | |
| 295 | case Global: |
| 296 | break; |
| 297 | |
Nikola Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 298 | case Super: |
| 299 | OS << "__super"; |
| 300 | break; |
| 301 | |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 302 | case TypeSpecWithTemplate: |
| 303 | OS << "template "; |
| 304 | // Fall through to print the type. |
Galina Kistanova | f87496d | 2017-06-03 06:31:42 +0000 | [diff] [blame] | 305 | LLVM_FALLTHROUGH; |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 306 | |
| 307 | case TypeSpec: { |
John McCall | 424cec9 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 308 | const Type *T = getAsType(); |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 309 | |
Douglas Gregor | 7de5966 | 2009-05-29 20:38:28 +0000 | [diff] [blame] | 310 | PrintingPolicy InnerPolicy(Policy); |
John McCall | b2e195a | 2009-09-05 06:31:47 +0000 | [diff] [blame] | 311 | InnerPolicy.SuppressScope = true; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 312 | |
Douglas Gregor | 053f691 | 2009-08-26 00:04:55 +0000 | [diff] [blame] | 313 | // Nested-name-specifiers are intended to contain minimally-qualified |
Abramo Bagnara | 6150c88 | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 314 | // types. An actual ElaboratedType will not occur, since we'll store |
Douglas Gregor | 053f691 | 2009-08-26 00:04:55 +0000 | [diff] [blame] | 315 | // just the type that is referred to in the nested-name-specifier (e.g., |
| 316 | // a TypedefType, TagType, etc.). However, when we are dealing with |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 317 | // dependent template-id types (e.g., Outer<T>::template Inner<U>), |
Douglas Gregor | 053f691 | 2009-08-26 00:04:55 +0000 | [diff] [blame] | 318 | // the type requires its own nested-name-specifier for uniqueness, so we |
| 319 | // suppress that nested-name-specifier during printing. |
Abramo Bagnara | 6150c88 | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 320 | assert(!isa<ElaboratedType>(T) && |
| 321 | "Elaborated type in nested-name-specifier"); |
Douglas Gregor | 053f691 | 2009-08-26 00:04:55 +0000 | [diff] [blame] | 322 | if (const TemplateSpecializationType *SpecType |
| 323 | = dyn_cast<TemplateSpecializationType>(T)) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 324 | // Print the template name without its corresponding |
Douglas Gregor | 053f691 | 2009-08-26 00:04:55 +0000 | [diff] [blame] | 325 | // nested-name-specifier. |
| 326 | SpecType->getTemplateName().print(OS, InnerPolicy, true); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 327 | |
Douglas Gregor | 053f691 | 2009-08-26 00:04:55 +0000 | [diff] [blame] | 328 | // Print the template argument list. |
Serge Pavlov | 03e672c | 2017-11-28 16:14:14 +0000 | [diff] [blame] | 329 | printTemplateArgumentList(OS, SpecType->template_arguments(), |
| 330 | InnerPolicy); |
Douglas Gregor | 053f691 | 2009-08-26 00:04:55 +0000 | [diff] [blame] | 331 | } else { |
| 332 | // Print the type normally |
Benjamin Kramer | 9170e91 | 2013-02-22 15:46:01 +0000 | [diff] [blame] | 333 | QualType(T, 0).print(OS, InnerPolicy); |
Douglas Gregor | 053f691 | 2009-08-26 00:04:55 +0000 | [diff] [blame] | 334 | } |
Douglas Gregor | f21eb49 | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 335 | break; |
| 336 | } |
| 337 | } |
| 338 | |
| 339 | OS << "::"; |
| 340 | } |
| 341 | |
Stephen Kelly | 07dd5af | 2018-10-04 19:22:00 +0000 | [diff] [blame] | 342 | LLVM_DUMP_METHOD void NestedNameSpecifier::dump(const LangOptions &LO) const { |
| 343 | dump(llvm::errs(), LO); |
Yaron Keren | 015e6c8 | 2015-12-27 14:34:22 +0000 | [diff] [blame] | 344 | } |
| 345 | |
Stephen Kelly | 07dd5af | 2018-10-04 19:22:00 +0000 | [diff] [blame] | 346 | LLVM_DUMP_METHOD void NestedNameSpecifier::dump() const { dump(llvm::errs()); } |
| 347 | |
| 348 | LLVM_DUMP_METHOD void NestedNameSpecifier::dump(llvm::raw_ostream &OS) const { |
Yaron Keren | 015e6c8 | 2015-12-27 14:34:22 +0000 | [diff] [blame] | 349 | LangOptions LO; |
Stephen Kelly | 07dd5af | 2018-10-04 19:22:00 +0000 | [diff] [blame] | 350 | dump(OS, LO); |
| 351 | } |
| 352 | |
| 353 | LLVM_DUMP_METHOD void NestedNameSpecifier::dump(llvm::raw_ostream &OS, |
| 354 | const LangOptions &LO) const { |
| 355 | print(OS, PrintingPolicy(LO)); |
Douglas Gregor | 333489b | 2009-03-27 23:10:48 +0000 | [diff] [blame] | 356 | } |
Douglas Gregor | 869ad45 | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 357 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 358 | unsigned |
Douglas Gregor | 869ad45 | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 359 | NestedNameSpecifierLoc::getLocalDataLength(NestedNameSpecifier *Qualifier) { |
| 360 | assert(Qualifier && "Expected a non-NULL qualifier"); |
| 361 | |
| 362 | // Location of the trailing '::'. |
| 363 | unsigned Length = sizeof(unsigned); |
| 364 | |
| 365 | switch (Qualifier->getKind()) { |
| 366 | case NestedNameSpecifier::Global: |
| 367 | // Nothing more to add. |
| 368 | break; |
| 369 | |
| 370 | case NestedNameSpecifier::Identifier: |
| 371 | case NestedNameSpecifier::Namespace: |
| 372 | case NestedNameSpecifier::NamespaceAlias: |
Nikola Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 373 | case NestedNameSpecifier::Super: |
Douglas Gregor | 869ad45 | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 374 | // The location of the identifier or namespace name. |
| 375 | Length += sizeof(unsigned); |
| 376 | break; |
| 377 | |
| 378 | case NestedNameSpecifier::TypeSpecWithTemplate: |
| 379 | case NestedNameSpecifier::TypeSpec: |
| 380 | // The "void*" that points at the TypeLoc data. |
| 381 | // Note: the 'template' keyword is part of the TypeLoc. |
| 382 | Length += sizeof(void *); |
| 383 | break; |
| 384 | } |
| 385 | |
| 386 | return Length; |
| 387 | } |
| 388 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 389 | unsigned |
Douglas Gregor | 869ad45 | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 390 | NestedNameSpecifierLoc::getDataLength(NestedNameSpecifier *Qualifier) { |
| 391 | unsigned Length = 0; |
| 392 | for (; Qualifier; Qualifier = Qualifier->getPrefix()) |
| 393 | Length += getLocalDataLength(Qualifier); |
| 394 | return Length; |
| 395 | } |
| 396 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 397 | /// Load a (possibly unaligned) source location from a given address |
Eugene Zelenko | 21fadad | 2017-11-21 23:26:08 +0000 | [diff] [blame] | 398 | /// and offset. |
| 399 | static SourceLocation LoadSourceLocation(void *Data, unsigned Offset) { |
| 400 | unsigned Raw; |
| 401 | memcpy(&Raw, static_cast<char *>(Data) + Offset, sizeof(unsigned)); |
| 402 | return SourceLocation::getFromRawEncoding(Raw); |
| 403 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 404 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 405 | /// Load a (possibly unaligned) pointer from a given address and |
Eugene Zelenko | 21fadad | 2017-11-21 23:26:08 +0000 | [diff] [blame] | 406 | /// offset. |
| 407 | static void *LoadPointer(void *Data, unsigned Offset) { |
| 408 | void *Result; |
| 409 | memcpy(&Result, static_cast<char *>(Data) + Offset, sizeof(void*)); |
| 410 | return Result; |
Alexander Kornienko | ab9db51 | 2015-06-22 23:07:51 +0000 | [diff] [blame] | 411 | } |
Douglas Gregor | 869ad45 | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 412 | |
Douglas Gregor | a9d87bc | 2011-02-25 00:36:19 +0000 | [diff] [blame] | 413 | SourceRange NestedNameSpecifierLoc::getSourceRange() const { |
Douglas Gregor | 12441b3 | 2011-02-25 16:33:46 +0000 | [diff] [blame] | 414 | if (!Qualifier) |
| 415 | return SourceRange(); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 416 | |
Douglas Gregor | 869ad45 | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 417 | NestedNameSpecifierLoc First = *this; |
Douglas Gregor | 12441b3 | 2011-02-25 16:33:46 +0000 | [diff] [blame] | 418 | while (NestedNameSpecifierLoc Prefix = First.getPrefix()) |
Douglas Gregor | 869ad45 | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 419 | First = Prefix; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 420 | |
| 421 | return SourceRange(First.getLocalSourceRange().getBegin(), |
Douglas Gregor | 869ad45 | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 422 | getLocalSourceRange().getEnd()); |
| 423 | } |
| 424 | |
Douglas Gregor | a9d87bc | 2011-02-25 00:36:19 +0000 | [diff] [blame] | 425 | SourceRange NestedNameSpecifierLoc::getLocalSourceRange() const { |
Douglas Gregor | 12441b3 | 2011-02-25 16:33:46 +0000 | [diff] [blame] | 426 | if (!Qualifier) |
| 427 | return SourceRange(); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 428 | |
Douglas Gregor | 869ad45 | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 429 | unsigned Offset = getDataLength(Qualifier->getPrefix()); |
| 430 | switch (Qualifier->getKind()) { |
| 431 | case NestedNameSpecifier::Global: |
| 432 | return LoadSourceLocation(Data, Offset); |
| 433 | |
| 434 | case NestedNameSpecifier::Identifier: |
| 435 | case NestedNameSpecifier::Namespace: |
| 436 | case NestedNameSpecifier::NamespaceAlias: |
Nikola Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 437 | case NestedNameSpecifier::Super: |
Douglas Gregor | 869ad45 | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 438 | return SourceRange(LoadSourceLocation(Data, Offset), |
| 439 | LoadSourceLocation(Data, Offset + sizeof(unsigned))); |
| 440 | |
| 441 | case NestedNameSpecifier::TypeSpecWithTemplate: |
| 442 | case NestedNameSpecifier::TypeSpec: { |
| 443 | // The "void*" that points at the TypeLoc data. |
| 444 | // Note: the 'template' keyword is part of the TypeLoc. |
| 445 | void *TypeData = LoadPointer(Data, Offset); |
| 446 | TypeLoc TL(Qualifier->getAsType(), TypeData); |
| 447 | return SourceRange(TL.getBeginLoc(), |
| 448 | LoadSourceLocation(Data, Offset + sizeof(void*))); |
| 449 | } |
| 450 | } |
David Blaikie | e4d798f | 2012-01-20 21:50:17 +0000 | [diff] [blame] | 451 | |
| 452 | llvm_unreachable("Invalid NNS Kind!"); |
Douglas Gregor | 869ad45 | 2011-02-24 17:54:50 +0000 | [diff] [blame] | 453 | } |
Douglas Gregor | a9d87bc | 2011-02-25 00:36:19 +0000 | [diff] [blame] | 454 | |
| 455 | TypeLoc NestedNameSpecifierLoc::getTypeLoc() const { |
| 456 | assert((Qualifier->getKind() == NestedNameSpecifier::TypeSpec || |
| 457 | Qualifier->getKind() == NestedNameSpecifier::TypeSpecWithTemplate) && |
| 458 | "Nested-name-specifier location is not a type"); |
| 459 | |
| 460 | // The "void*" that points at the TypeLoc data. |
| 461 | unsigned Offset = getDataLength(Qualifier->getPrefix()); |
| 462 | void *TypeData = LoadPointer(Data, Offset); |
| 463 | return TypeLoc(Qualifier->getAsType(), TypeData); |
| 464 | } |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 465 | |
Eugene Zelenko | 21fadad | 2017-11-21 23:26:08 +0000 | [diff] [blame] | 466 | static void Append(char *Start, char *End, char *&Buffer, unsigned &BufferSize, |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 467 | unsigned &BufferCapacity) { |
Eugene Zelenko | 21fadad | 2017-11-21 23:26:08 +0000 | [diff] [blame] | 468 | if (Start == End) |
| 469 | return; |
Chandler Carruth | b6708d8 | 2015-08-04 03:52:56 +0000 | [diff] [blame] | 470 | |
Eugene Zelenko | 21fadad | 2017-11-21 23:26:08 +0000 | [diff] [blame] | 471 | if (BufferSize + (End - Start) > BufferCapacity) { |
| 472 | // Reallocate the buffer. |
| 473 | unsigned NewCapacity = std::max( |
| 474 | (unsigned)(BufferCapacity ? BufferCapacity * 2 : sizeof(void *) * 2), |
| 475 | (unsigned)(BufferSize + (End - Start))); |
Serge Pavlov | 5252573 | 2018-02-21 02:02:39 +0000 | [diff] [blame] | 476 | char *NewBuffer = static_cast<char *>(llvm::safe_malloc(NewCapacity)); |
Eugene Zelenko | 21fadad | 2017-11-21 23:26:08 +0000 | [diff] [blame] | 477 | if (BufferCapacity) { |
| 478 | memcpy(NewBuffer, Buffer, BufferSize); |
| 479 | free(Buffer); |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 480 | } |
Eugene Zelenko | 21fadad | 2017-11-21 23:26:08 +0000 | [diff] [blame] | 481 | Buffer = NewBuffer; |
| 482 | BufferCapacity = NewCapacity; |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 483 | } |
Eugene Zelenko | 21fadad | 2017-11-21 23:26:08 +0000 | [diff] [blame] | 484 | |
| 485 | memcpy(Buffer + BufferSize, Start, End - Start); |
| 486 | BufferSize += End-Start; |
| 487 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 488 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 489 | /// Save a source location to the given buffer. |
Eugene Zelenko | 21fadad | 2017-11-21 23:26:08 +0000 | [diff] [blame] | 490 | static void SaveSourceLocation(SourceLocation Loc, char *&Buffer, |
| 491 | unsigned &BufferSize, unsigned &BufferCapacity) { |
| 492 | unsigned Raw = Loc.getRawEncoding(); |
| 493 | Append(reinterpret_cast<char *>(&Raw), |
| 494 | reinterpret_cast<char *>(&Raw) + sizeof(unsigned), |
| 495 | Buffer, BufferSize, BufferCapacity); |
| 496 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 497 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 498 | /// Save a pointer to the given buffer. |
Eugene Zelenko | 21fadad | 2017-11-21 23:26:08 +0000 | [diff] [blame] | 499 | static void SavePointer(void *Ptr, char *&Buffer, unsigned &BufferSize, |
| 500 | unsigned &BufferCapacity) { |
| 501 | Append(reinterpret_cast<char *>(&Ptr), |
| 502 | reinterpret_cast<char *>(&Ptr) + sizeof(void *), |
| 503 | Buffer, BufferSize, BufferCapacity); |
Alexander Kornienko | ab9db51 | 2015-06-22 23:07:51 +0000 | [diff] [blame] | 504 | } |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 505 | |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 506 | NestedNameSpecifierLocBuilder:: |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 507 | NestedNameSpecifierLocBuilder(const NestedNameSpecifierLocBuilder &Other) |
Eugene Zelenko | 21fadad | 2017-11-21 23:26:08 +0000 | [diff] [blame] | 508 | : Representation(Other.Representation) { |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 509 | if (!Other.Buffer) |
| 510 | return; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 511 | |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 512 | if (Other.BufferCapacity == 0) { |
| 513 | // Shallow copy is okay. |
| 514 | Buffer = Other.Buffer; |
| 515 | BufferSize = Other.BufferSize; |
| 516 | return; |
| 517 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 518 | |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 519 | // Deep copy |
Serge Pavlov | 9f81d6a | 2014-07-16 18:18:13 +0000 | [diff] [blame] | 520 | Append(Other.Buffer, Other.Buffer + Other.BufferSize, Buffer, BufferSize, |
| 521 | BufferCapacity); |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 522 | } |
| 523 | |
| 524 | NestedNameSpecifierLocBuilder & |
| 525 | NestedNameSpecifierLocBuilder:: |
| 526 | operator=(const NestedNameSpecifierLocBuilder &Other) { |
| 527 | Representation = Other.Representation; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 528 | |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 529 | if (Buffer && Other.Buffer && BufferCapacity >= Other.BufferSize) { |
| 530 | // Re-use our storage. |
| 531 | BufferSize = Other.BufferSize; |
| 532 | memcpy(Buffer, Other.Buffer, BufferSize); |
| 533 | return *this; |
| 534 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 535 | |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 536 | // Free our storage, if we have any. |
| 537 | if (BufferCapacity) { |
| 538 | free(Buffer); |
| 539 | BufferCapacity = 0; |
| 540 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 541 | |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 542 | if (!Other.Buffer) { |
| 543 | // Empty. |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 544 | Buffer = nullptr; |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 545 | BufferSize = 0; |
| 546 | return *this; |
| 547 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 548 | |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 549 | if (Other.BufferCapacity == 0) { |
| 550 | // Shallow copy is okay. |
| 551 | Buffer = Other.Buffer; |
| 552 | BufferSize = Other.BufferSize; |
| 553 | return *this; |
| 554 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 555 | |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 556 | // Deep copy. |
Erik Pilkington | c587164 | 2018-09-10 21:54:04 +0000 | [diff] [blame] | 557 | BufferSize = 0; |
Serge Pavlov | 9f81d6a | 2014-07-16 18:18:13 +0000 | [diff] [blame] | 558 | Append(Other.Buffer, Other.Buffer + Other.BufferSize, Buffer, BufferSize, |
| 559 | BufferCapacity); |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 560 | return *this; |
| 561 | } |
| 562 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 563 | void NestedNameSpecifierLocBuilder::Extend(ASTContext &Context, |
| 564 | SourceLocation TemplateKWLoc, |
| 565 | TypeLoc TL, |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 566 | SourceLocation ColonColonLoc) { |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 567 | Representation = NestedNameSpecifier::Create(Context, Representation, |
| 568 | TemplateKWLoc.isValid(), |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 569 | TL.getTypePtr()); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 570 | |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 571 | // Push source-location info into the buffer. |
| 572 | SavePointer(TL.getOpaqueData(), Buffer, BufferSize, BufferCapacity); |
| 573 | SaveSourceLocation(ColonColonLoc, Buffer, BufferSize, BufferCapacity); |
| 574 | } |
| 575 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 576 | void NestedNameSpecifierLocBuilder::Extend(ASTContext &Context, |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 577 | IdentifierInfo *Identifier, |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 578 | SourceLocation IdentifierLoc, |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 579 | SourceLocation ColonColonLoc) { |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 580 | Representation = NestedNameSpecifier::Create(Context, Representation, |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 581 | Identifier); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 582 | |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 583 | // Push source-location info into the buffer. |
| 584 | SaveSourceLocation(IdentifierLoc, Buffer, BufferSize, BufferCapacity); |
| 585 | SaveSourceLocation(ColonColonLoc, Buffer, BufferSize, BufferCapacity); |
| 586 | } |
| 587 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 588 | void NestedNameSpecifierLocBuilder::Extend(ASTContext &Context, |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 589 | NamespaceDecl *Namespace, |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 590 | SourceLocation NamespaceLoc, |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 591 | SourceLocation ColonColonLoc) { |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 592 | Representation = NestedNameSpecifier::Create(Context, Representation, |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 593 | Namespace); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 594 | |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 595 | // Push source-location info into the buffer. |
| 596 | SaveSourceLocation(NamespaceLoc, Buffer, BufferSize, BufferCapacity); |
| 597 | SaveSourceLocation(ColonColonLoc, Buffer, BufferSize, BufferCapacity); |
| 598 | } |
| 599 | |
| 600 | void NestedNameSpecifierLocBuilder::Extend(ASTContext &Context, |
| 601 | NamespaceAliasDecl *Alias, |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 602 | SourceLocation AliasLoc, |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 603 | SourceLocation ColonColonLoc) { |
| 604 | Representation = NestedNameSpecifier::Create(Context, Representation, Alias); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 605 | |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 606 | // Push source-location info into the buffer. |
| 607 | SaveSourceLocation(AliasLoc, Buffer, BufferSize, BufferCapacity); |
| 608 | SaveSourceLocation(ColonColonLoc, Buffer, BufferSize, BufferCapacity); |
| 609 | } |
| 610 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 611 | void NestedNameSpecifierLocBuilder::MakeGlobal(ASTContext &Context, |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 612 | SourceLocation ColonColonLoc) { |
| 613 | assert(!Representation && "Already have a nested-name-specifier!?"); |
| 614 | Representation = NestedNameSpecifier::GlobalSpecifier(Context); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 615 | |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 616 | // Push source-location info into the buffer. |
| 617 | SaveSourceLocation(ColonColonLoc, Buffer, BufferSize, BufferCapacity); |
| 618 | } |
| 619 | |
Nikola Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 620 | void NestedNameSpecifierLocBuilder::MakeSuper(ASTContext &Context, |
| 621 | CXXRecordDecl *RD, |
| 622 | SourceLocation SuperLoc, |
| 623 | SourceLocation ColonColonLoc) { |
| 624 | Representation = NestedNameSpecifier::SuperSpecifier(Context, RD); |
| 625 | |
| 626 | // Push source-location info into the buffer. |
| 627 | SaveSourceLocation(SuperLoc, Buffer, BufferSize, BufferCapacity); |
| 628 | SaveSourceLocation(ColonColonLoc, Buffer, BufferSize, BufferCapacity); |
| 629 | } |
| 630 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 631 | void NestedNameSpecifierLocBuilder::MakeTrivial(ASTContext &Context, |
| 632 | NestedNameSpecifier *Qualifier, |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 633 | SourceRange R) { |
| 634 | Representation = Qualifier; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 635 | |
| 636 | // Construct bogus (but well-formed) source information for the |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 637 | // nested-name-specifier. |
| 638 | BufferSize = 0; |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 639 | SmallVector<NestedNameSpecifier *, 4> Stack; |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 640 | for (NestedNameSpecifier *NNS = Qualifier; NNS; NNS = NNS->getPrefix()) |
| 641 | Stack.push_back(NNS); |
| 642 | while (!Stack.empty()) { |
Robert Wilhelm | 25284cc | 2013-08-23 16:11:15 +0000 | [diff] [blame] | 643 | NestedNameSpecifier *NNS = Stack.pop_back_val(); |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 644 | switch (NNS->getKind()) { |
| 645 | case NestedNameSpecifier::Identifier: |
| 646 | case NestedNameSpecifier::Namespace: |
| 647 | case NestedNameSpecifier::NamespaceAlias: |
| 648 | SaveSourceLocation(R.getBegin(), Buffer, BufferSize, BufferCapacity); |
| 649 | break; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 650 | |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 651 | case NestedNameSpecifier::TypeSpec: |
| 652 | case NestedNameSpecifier::TypeSpecWithTemplate: { |
| 653 | TypeSourceInfo *TSInfo |
| 654 | = Context.getTrivialTypeSourceInfo(QualType(NNS->getAsType(), 0), |
| 655 | R.getBegin()); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 656 | SavePointer(TSInfo->getTypeLoc().getOpaqueData(), Buffer, BufferSize, |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 657 | BufferCapacity); |
| 658 | break; |
| 659 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 660 | |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 661 | case NestedNameSpecifier::Global: |
Nikola Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 662 | case NestedNameSpecifier::Super: |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 663 | break; |
| 664 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 665 | |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 666 | // Save the location of the '::'. |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 667 | SaveSourceLocation(Stack.empty()? R.getEnd() : R.getBegin(), |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 668 | Buffer, BufferSize, BufferCapacity); |
| 669 | } |
| 670 | } |
| 671 | |
| 672 | void NestedNameSpecifierLocBuilder::Adopt(NestedNameSpecifierLoc Other) { |
| 673 | if (BufferCapacity) |
| 674 | free(Buffer); |
| 675 | |
| 676 | if (!Other) { |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 677 | Representation = nullptr; |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 678 | BufferSize = 0; |
| 679 | return; |
| 680 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 681 | |
| 682 | // Rather than copying the data (which is wasteful), "adopt" the |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 683 | // pointer (which points into the ASTContext) but set the capacity to zero to |
| 684 | // indicate that we don't own it. |
| 685 | Representation = Other.getNestedNameSpecifier(); |
| 686 | Buffer = static_cast<char *>(Other.getOpaqueData()); |
| 687 | BufferSize = Other.getDataLength(); |
| 688 | BufferCapacity = 0; |
| 689 | } |
| 690 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 691 | NestedNameSpecifierLoc |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 692 | NestedNameSpecifierLocBuilder::getWithLocInContext(ASTContext &Context) const { |
| 693 | if (!Representation) |
| 694 | return NestedNameSpecifierLoc(); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 695 | |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 696 | // If we adopted our data pointer from elsewhere in the AST context, there's |
| 697 | // no need to copy the memory. |
| 698 | if (BufferCapacity == 0) |
| 699 | return NestedNameSpecifierLoc(Representation, Buffer); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 700 | |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 701 | // FIXME: After copying the source-location information, should we free |
| 702 | // our (temporary) buffer and adopt the ASTContext-allocated memory? |
| 703 | // Doing so would optimize repeated calls to getWithLocInContext(). |
Benjamin Kramer | c3f8925 | 2016-10-20 14:27:22 +0000 | [diff] [blame] | 704 | void *Mem = Context.Allocate(BufferSize, alignof(void *)); |
Douglas Gregor | 9b27251 | 2011-02-28 23:58:31 +0000 | [diff] [blame] | 705 | memcpy(Mem, Buffer, BufferSize); |
| 706 | return NestedNameSpecifierLoc(Representation, Mem); |
| 707 | } |