Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 1 | //===------------------------- ItaniumDemangle.cpp ------------------------===// |
Rafael Espindola | ec44cfd | 2016-09-06 19:16:48 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 6 | // Source Licenses. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 10 | // FIXME: (possibly) incomplete list of features that clang mangles that this |
| 11 | // file does not yet support: |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 12 | // - C++ modules TS |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 13 | |
Reid Kleckner | 6b15e98 | 2016-09-06 19:39:56 +0000 | [diff] [blame] | 14 | #include "llvm/Demangle/Demangle.h" |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 15 | #include "llvm/Demangle/ItaniumDemangle.h" |
Serge Pavlov | d3b4e81 | 2018-05-29 07:05:41 +0000 | [diff] [blame] | 16 | |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 17 | #include <cassert> |
David Blaikie | 1c62040 | 2018-03-21 17:31:49 +0000 | [diff] [blame] | 18 | #include <cctype> |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 19 | #include <cstdio> |
Rafael Espindola | ec44cfd | 2016-09-06 19:16:48 +0000 | [diff] [blame] | 20 | #include <cstdlib> |
| 21 | #include <cstring> |
David Blaikie | edb7976 | 2018-08-20 20:02:29 +0000 | [diff] [blame] | 22 | #include <functional> |
David Blaikie | 1c62040 | 2018-03-21 17:31:49 +0000 | [diff] [blame] | 23 | #include <numeric> |
Erik Pilkington | 4d940e7 | 2018-07-27 17:27:40 +0000 | [diff] [blame] | 24 | #include <utility> |
David Blaikie | 1c62040 | 2018-03-21 17:31:49 +0000 | [diff] [blame] | 25 | #include <vector> |
Rafael Espindola | ec44cfd | 2016-09-06 19:16:48 +0000 | [diff] [blame] | 26 | |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 27 | using namespace llvm; |
| 28 | using namespace llvm::itanium_demangle; |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 29 | |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 30 | constexpr const char *itanium_demangle::FloatData<float>::spec; |
| 31 | constexpr const char *itanium_demangle::FloatData<double>::spec; |
| 32 | constexpr const char *itanium_demangle::FloatData<long double>::spec; |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 33 | |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 34 | // <discriminator> := _ <non-negative number> # when number < 10 |
| 35 | // := __ <non-negative number> _ # when number >= 10 |
| 36 | // extension := decimal-digit+ # at the end of string |
| 37 | const char *itanium_demangle::parse_discriminator(const char *first, |
| 38 | const char *last) { |
| 39 | // parse but ignore discriminator |
| 40 | if (first != last) { |
| 41 | if (*first == '_') { |
| 42 | const char *t1 = first + 1; |
| 43 | if (t1 != last) { |
| 44 | if (std::isdigit(*t1)) |
| 45 | first = t1 + 1; |
| 46 | else if (*t1 == '_') { |
| 47 | for (++t1; t1 != last && std::isdigit(*t1); ++t1) |
| 48 | ; |
| 49 | if (t1 != last && *t1 == '_') |
| 50 | first = t1 + 1; |
| 51 | } |
Erik Pilkington | 4990859 | 2018-03-25 22:49:57 +0000 | [diff] [blame] | 52 | } |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 53 | } else if (std::isdigit(*first)) { |
| 54 | const char *t1 = first + 1; |
| 55 | for (; t1 != last && std::isdigit(*t1); ++t1) |
| 56 | ; |
| 57 | if (t1 == last) |
| 58 | first = last; |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 59 | } |
| 60 | } |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 61 | return first; |
Rafael Espindola | ec44cfd | 2016-09-06 19:16:48 +0000 | [diff] [blame] | 62 | } |
| 63 | |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 64 | #ifndef NDEBUG |
| 65 | namespace { |
| 66 | struct DumpVisitor { |
| 67 | unsigned Depth = 0; |
| 68 | bool PendingNewline = false; |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 69 | |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 70 | template<typename NodeT> static constexpr bool wantsNewline(const NodeT *) { |
| 71 | return true; |
| 72 | } |
| 73 | static bool wantsNewline(NodeArray A) { return !A.empty(); } |
| 74 | static constexpr bool wantsNewline(...) { return false; } |
| 75 | |
| 76 | template<typename ...Ts> static bool anyWantNewline(Ts ...Vs) { |
| 77 | for (bool B : {wantsNewline(Vs)...}) |
| 78 | if (B) |
| 79 | return true; |
| 80 | return false; |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 81 | } |
| 82 | |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 83 | void printStr(const char *S) { fprintf(stderr, "%s", S); } |
| 84 | void print(StringView SV) { |
| 85 | fprintf(stderr, "\"%.*s\"", (int)SV.size(), SV.begin()); |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 86 | } |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 87 | void print(const Node *N) { |
| 88 | if (N) |
| 89 | N->visit(std::ref(*this)); |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 90 | else |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 91 | printStr("<null>"); |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 92 | } |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 93 | void print(NodeOrString NS) { |
| 94 | if (NS.isNode()) |
| 95 | print(NS.asNode()); |
| 96 | else if (NS.isString()) |
| 97 | print(NS.asString()); |
| 98 | else |
| 99 | printStr("NodeOrString()"); |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 100 | } |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 101 | void print(NodeArray A) { |
| 102 | ++Depth; |
| 103 | printStr("{"); |
| 104 | bool First = true; |
| 105 | for (const Node *N : A) { |
| 106 | if (First) |
| 107 | print(N); |
| 108 | else |
| 109 | printWithComma(N); |
| 110 | First = false; |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 111 | } |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 112 | printStr("}"); |
| 113 | --Depth; |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 114 | } |
Erik Pilkington | 726b0ec | 2018-10-15 22:03:53 +0000 | [diff] [blame] | 115 | |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 116 | // Overload used when T is exactly 'bool', not merely convertible to 'bool'. |
Erik Pilkington | 726b0ec | 2018-10-15 22:03:53 +0000 | [diff] [blame] | 117 | void print(bool B) { printStr(B ? "true" : "false"); } |
| 118 | |
| 119 | template <class T> |
| 120 | typename std::enable_if<std::is_unsigned<T>::value>::type print(T N) { |
| 121 | fprintf(stderr, "%llu", (unsigned long long)N); |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 122 | } |
Erik Pilkington | 726b0ec | 2018-10-15 22:03:53 +0000 | [diff] [blame] | 123 | |
| 124 | template <class T> |
| 125 | typename std::enable_if<std::is_signed<T>::value>::type print(T N) { |
| 126 | fprintf(stderr, "%lld", (long long)N); |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 127 | } |
Erik Pilkington | 726b0ec | 2018-10-15 22:03:53 +0000 | [diff] [blame] | 128 | |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 129 | void print(ReferenceKind RK) { |
| 130 | switch (RK) { |
| 131 | case ReferenceKind::LValue: |
| 132 | return printStr("ReferenceKind::LValue"); |
| 133 | case ReferenceKind::RValue: |
| 134 | return printStr("ReferenceKind::RValue"); |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 135 | } |
| 136 | } |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 137 | void print(FunctionRefQual RQ) { |
| 138 | switch (RQ) { |
| 139 | case FunctionRefQual::FrefQualNone: |
| 140 | return printStr("FunctionRefQual::FrefQualNone"); |
| 141 | case FunctionRefQual::FrefQualLValue: |
| 142 | return printStr("FunctionRefQual::FrefQualLValue"); |
| 143 | case FunctionRefQual::FrefQualRValue: |
| 144 | return printStr("FunctionRefQual::FrefQualRValue"); |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 145 | } |
| 146 | } |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 147 | void print(Qualifiers Qs) { |
| 148 | if (!Qs) return printStr("QualNone"); |
| 149 | struct QualName { Qualifiers Q; const char *Name; } Names[] = { |
| 150 | {QualConst, "QualConst"}, |
| 151 | {QualVolatile, "QualVolatile"}, |
| 152 | {QualRestrict, "QualRestrict"}, |
Erik Pilkington | 650fe38 | 2018-04-09 18:33:01 +0000 | [diff] [blame] | 153 | }; |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 154 | for (QualName Name : Names) { |
| 155 | if (Qs & Name.Q) { |
| 156 | printStr(Name.Name); |
| 157 | Qs = Qualifiers(Qs & ~Name.Q); |
| 158 | if (Qs) printStr(" | "); |
Erik Pilkington | 650fe38 | 2018-04-09 18:33:01 +0000 | [diff] [blame] | 159 | } |
| 160 | } |
Erik Pilkington | 650fe38 | 2018-04-09 18:33:01 +0000 | [diff] [blame] | 161 | } |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 162 | void print(SpecialSubKind SSK) { |
| 163 | switch (SSK) { |
| 164 | case SpecialSubKind::allocator: |
| 165 | return printStr("SpecialSubKind::allocator"); |
| 166 | case SpecialSubKind::basic_string: |
| 167 | return printStr("SpecialSubKind::basic_string"); |
| 168 | case SpecialSubKind::string: |
| 169 | return printStr("SpecialSubKind::string"); |
| 170 | case SpecialSubKind::istream: |
| 171 | return printStr("SpecialSubKind::istream"); |
| 172 | case SpecialSubKind::ostream: |
| 173 | return printStr("SpecialSubKind::ostream"); |
| 174 | case SpecialSubKind::iostream: |
| 175 | return printStr("SpecialSubKind::iostream"); |
| 176 | } |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 177 | } |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 178 | |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 179 | void newLine() { |
| 180 | printStr("\n"); |
| 181 | for (unsigned I = 0; I != Depth; ++I) |
| 182 | printStr(" "); |
| 183 | PendingNewline = false; |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 184 | } |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 185 | |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 186 | template<typename T> void printWithPendingNewline(T V) { |
| 187 | print(V); |
| 188 | if (wantsNewline(V)) |
| 189 | PendingNewline = true; |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 190 | } |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 191 | |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 192 | template<typename T> void printWithComma(T V) { |
| 193 | if (PendingNewline || wantsNewline(V)) { |
| 194 | printStr(","); |
| 195 | newLine(); |
| 196 | } else { |
| 197 | printStr(", "); |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 198 | } |
| 199 | |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 200 | printWithPendingNewline(V); |
| 201 | } |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 202 | |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 203 | struct CtorArgPrinter { |
| 204 | DumpVisitor &Visitor; |
| 205 | |
| 206 | template<typename T, typename ...Rest> void operator()(T V, Rest ...Vs) { |
| 207 | if (Visitor.anyWantNewline(V, Vs...)) |
| 208 | Visitor.newLine(); |
| 209 | Visitor.printWithPendingNewline(V); |
| 210 | int PrintInOrder[] = { (Visitor.printWithComma(Vs), 0)..., 0 }; |
| 211 | (void)PrintInOrder; |
| 212 | } |
| 213 | }; |
| 214 | |
| 215 | template<typename NodeT> void operator()(const NodeT *Node) { |
| 216 | Depth += 2; |
| 217 | fprintf(stderr, "%s(", itanium_demangle::NodeKind<NodeT>::name()); |
| 218 | Node->match(CtorArgPrinter{*this}); |
| 219 | fprintf(stderr, ")"); |
| 220 | Depth -= 2; |
| 221 | } |
| 222 | |
| 223 | void operator()(const ForwardTemplateReference *Node) { |
| 224 | Depth += 2; |
| 225 | fprintf(stderr, "ForwardTemplateReference("); |
| 226 | if (Node->Ref && !Node->Printing) { |
| 227 | Node->Printing = true; |
| 228 | CtorArgPrinter{*this}(Node->Ref); |
| 229 | Node->Printing = false; |
| 230 | } else { |
| 231 | CtorArgPrinter{*this}(Node->Index); |
| 232 | } |
| 233 | fprintf(stderr, ")"); |
| 234 | Depth -= 2; |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 235 | } |
| 236 | }; |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 237 | } |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 238 | |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 239 | void itanium_demangle::Node::dump() const { |
| 240 | DumpVisitor V; |
| 241 | visit(std::ref(V)); |
| 242 | V.newLine(); |
| 243 | } |
Rafael Espindola | ec44cfd | 2016-09-06 19:16:48 +0000 | [diff] [blame] | 244 | #endif |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 245 | |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 246 | namespace { |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 247 | class BumpPointerAllocator { |
| 248 | struct BlockMeta { |
| 249 | BlockMeta* Next; |
| 250 | size_t Current; |
| 251 | }; |
| 252 | |
| 253 | static constexpr size_t AllocSize = 4096; |
| 254 | static constexpr size_t UsableAllocSize = AllocSize - sizeof(BlockMeta); |
| 255 | |
Serge Pavlov | c7bc4c3 | 2018-07-05 06:22:39 +0000 | [diff] [blame] | 256 | alignas(long double) char InitialBuffer[AllocSize]; |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 257 | BlockMeta* BlockList = nullptr; |
| 258 | |
| 259 | void grow() { |
Erik Pilkington | faddb71 | 2018-07-23 22:23:04 +0000 | [diff] [blame] | 260 | char* NewMeta = static_cast<char *>(std::malloc(AllocSize)); |
| 261 | if (NewMeta == nullptr) |
| 262 | std::terminate(); |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 263 | BlockList = new (NewMeta) BlockMeta{BlockList, 0}; |
| 264 | } |
| 265 | |
| 266 | void* allocateMassive(size_t NBytes) { |
| 267 | NBytes += sizeof(BlockMeta); |
Erik Pilkington | faddb71 | 2018-07-23 22:23:04 +0000 | [diff] [blame] | 268 | BlockMeta* NewMeta = reinterpret_cast<BlockMeta*>(std::malloc(NBytes)); |
| 269 | if (NewMeta == nullptr) |
| 270 | std::terminate(); |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 271 | BlockList->Next = new (NewMeta) BlockMeta{BlockList->Next, 0}; |
| 272 | return static_cast<void*>(NewMeta + 1); |
| 273 | } |
| 274 | |
| 275 | public: |
| 276 | BumpPointerAllocator() |
| 277 | : BlockList(new (InitialBuffer) BlockMeta{nullptr, 0}) {} |
| 278 | |
| 279 | void* allocate(size_t N) { |
| 280 | N = (N + 15u) & ~15u; |
| 281 | if (N + BlockList->Current >= UsableAllocSize) { |
| 282 | if (N > UsableAllocSize) |
| 283 | return allocateMassive(N); |
| 284 | grow(); |
| 285 | } |
| 286 | BlockList->Current += N; |
| 287 | return static_cast<void*>(reinterpret_cast<char*>(BlockList + 1) + |
| 288 | BlockList->Current - N); |
| 289 | } |
| 290 | |
Erik Pilkington | 87bdde8 | 2018-04-12 20:41:06 +0000 | [diff] [blame] | 291 | void reset() { |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 292 | while (BlockList) { |
| 293 | BlockMeta* Tmp = BlockList; |
| 294 | BlockList = BlockList->Next; |
| 295 | if (reinterpret_cast<char*>(Tmp) != InitialBuffer) |
Erik Pilkington | faddb71 | 2018-07-23 22:23:04 +0000 | [diff] [blame] | 296 | std::free(Tmp); |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 297 | } |
Erik Pilkington | 87bdde8 | 2018-04-12 20:41:06 +0000 | [diff] [blame] | 298 | BlockList = new (InitialBuffer) BlockMeta{nullptr, 0}; |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 299 | } |
Erik Pilkington | 87bdde8 | 2018-04-12 20:41:06 +0000 | [diff] [blame] | 300 | |
| 301 | ~BumpPointerAllocator() { reset(); } |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 302 | }; |
| 303 | |
Richard Smith | d2a106b | 2018-08-16 21:40:57 +0000 | [diff] [blame] | 304 | class DefaultAllocator { |
| 305 | BumpPointerAllocator Alloc; |
| 306 | |
| 307 | public: |
| 308 | void reset() { Alloc.reset(); } |
| 309 | |
| 310 | template<typename T, typename ...Args> T *makeNode(Args &&...args) { |
| 311 | return new (Alloc.allocate(sizeof(T))) |
| 312 | T(std::forward<Args>(args)...); |
| 313 | } |
| 314 | |
| 315 | void *allocateNodeArray(size_t sz) { |
| 316 | return Alloc.allocate(sizeof(Node *) * sz); |
| 317 | } |
| 318 | }; |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 319 | } // unnamed namespace |
Rafael Espindola | ec44cfd | 2016-09-06 19:16:48 +0000 | [diff] [blame] | 320 | |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 321 | //===----------------------------------------------------------------------===// |
| 322 | // Code beyond this point should not be synchronized with libc++abi. |
| 323 | //===----------------------------------------------------------------------===// |
| 324 | |
Pavel Labath | 97b215a | 2018-10-17 18:50:25 +0000 | [diff] [blame] | 325 | using Demangler = itanium_demangle::ManglingParser<DefaultAllocator>; |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 326 | |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 327 | char *llvm::itaniumDemangle(const char *MangledName, char *Buf, |
| 328 | size_t *N, int *Status) { |
| 329 | if (MangledName == nullptr || (Buf != nullptr && N == nullptr)) { |
| 330 | if (Status) |
Zachary Turner | dc84f3b | 2018-07-17 19:42:29 +0000 | [diff] [blame] | 331 | *Status = demangle_invalid_args; |
Rafael Espindola | ec44cfd | 2016-09-06 19:16:48 +0000 | [diff] [blame] | 332 | return nullptr; |
| 333 | } |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 334 | |
Zachary Turner | dc84f3b | 2018-07-17 19:42:29 +0000 | [diff] [blame] | 335 | int InternalStatus = demangle_success; |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 336 | Demangler Parser(MangledName, MangledName + std::strlen(MangledName)); |
Erik Pilkington | 87bdde8 | 2018-04-12 20:41:06 +0000 | [diff] [blame] | 337 | OutputStream S; |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 338 | |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 339 | Node *AST = Parser.parse(); |
| 340 | |
| 341 | if (AST == nullptr) |
Zachary Turner | dc84f3b | 2018-07-17 19:42:29 +0000 | [diff] [blame] | 342 | InternalStatus = demangle_invalid_mangled_name; |
Nico Weber | ac4b70f | 2018-11-11 10:04:00 +0000 | [diff] [blame] | 343 | else if (!initializeOutputStream(Buf, N, S, 1024)) |
Zachary Turner | dc84f3b | 2018-07-17 19:42:29 +0000 | [diff] [blame] | 344 | InternalStatus = demangle_memory_alloc_failure; |
Erik Pilkington | 87bdde8 | 2018-04-12 20:41:06 +0000 | [diff] [blame] | 345 | else { |
Erik Pilkington | 21f2826 | 2018-03-25 22:50:33 +0000 | [diff] [blame] | 346 | assert(Parser.ForwardTemplateRefs.empty()); |
Erik Pilkington | 87bdde8 | 2018-04-12 20:41:06 +0000 | [diff] [blame] | 347 | AST->print(S); |
| 348 | S += '\0'; |
| 349 | if (N != nullptr) |
| 350 | *N = S.getCurrentPosition(); |
| 351 | Buf = S.getBuffer(); |
Erik Pilkington | d767d0a | 2018-03-19 15:18:23 +0000 | [diff] [blame] | 352 | } |
| 353 | |
| 354 | if (Status) |
| 355 | *Status = InternalStatus; |
Zachary Turner | dc84f3b | 2018-07-17 19:42:29 +0000 | [diff] [blame] | 356 | return InternalStatus == demangle_success ? Buf : nullptr; |
Rafael Espindola | ec44cfd | 2016-09-06 19:16:48 +0000 | [diff] [blame] | 357 | } |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 358 | |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 359 | ItaniumPartialDemangler::ItaniumPartialDemangler() |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 360 | : RootNode(nullptr), Context(new Demangler{nullptr, nullptr}) {} |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 361 | |
| 362 | ItaniumPartialDemangler::~ItaniumPartialDemangler() { |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 363 | delete static_cast<Demangler *>(Context); |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 364 | } |
| 365 | |
| 366 | ItaniumPartialDemangler::ItaniumPartialDemangler( |
| 367 | ItaniumPartialDemangler &&Other) |
| 368 | : RootNode(Other.RootNode), Context(Other.Context) { |
| 369 | Other.Context = Other.RootNode = nullptr; |
| 370 | } |
| 371 | |
| 372 | ItaniumPartialDemangler &ItaniumPartialDemangler:: |
| 373 | operator=(ItaniumPartialDemangler &&Other) { |
| 374 | std::swap(RootNode, Other.RootNode); |
| 375 | std::swap(Context, Other.Context); |
| 376 | return *this; |
| 377 | } |
| 378 | |
| 379 | // Demangle MangledName into an AST, storing it into this->RootNode. |
| 380 | bool ItaniumPartialDemangler::partialDemangle(const char *MangledName) { |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 381 | Demangler *Parser = static_cast<Demangler *>(Context); |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 382 | size_t Len = std::strlen(MangledName); |
| 383 | Parser->reset(MangledName, MangledName + Len); |
| 384 | RootNode = Parser->parse(); |
| 385 | return RootNode == nullptr; |
| 386 | } |
| 387 | |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 388 | static char *printNode(const Node *RootNode, char *Buf, size_t *N) { |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 389 | OutputStream S; |
Nico Weber | ac4b70f | 2018-11-11 10:04:00 +0000 | [diff] [blame] | 390 | if (!initializeOutputStream(Buf, N, S, 128)) |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 391 | return nullptr; |
| 392 | RootNode->print(S); |
| 393 | S += '\0'; |
| 394 | if (N != nullptr) |
| 395 | *N = S.getCurrentPosition(); |
| 396 | return S.getBuffer(); |
| 397 | } |
| 398 | |
| 399 | char *ItaniumPartialDemangler::getFunctionBaseName(char *Buf, size_t *N) const { |
| 400 | if (!isFunction()) |
| 401 | return nullptr; |
| 402 | |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 403 | const Node *Name = static_cast<const FunctionEncoding *>(RootNode)->getName(); |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 404 | |
| 405 | while (true) { |
| 406 | switch (Name->getKind()) { |
| 407 | case Node::KAbiTagAttr: |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 408 | Name = static_cast<const AbiTagAttr *>(Name)->Base; |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 409 | continue; |
| 410 | case Node::KStdQualifiedName: |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 411 | Name = static_cast<const StdQualifiedName *>(Name)->Child; |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 412 | continue; |
| 413 | case Node::KNestedName: |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 414 | Name = static_cast<const NestedName *>(Name)->Name; |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 415 | continue; |
| 416 | case Node::KLocalName: |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 417 | Name = static_cast<const LocalName *>(Name)->Entity; |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 418 | continue; |
| 419 | case Node::KNameWithTemplateArgs: |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 420 | Name = static_cast<const NameWithTemplateArgs *>(Name)->Name; |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 421 | continue; |
| 422 | default: |
| 423 | return printNode(Name, Buf, N); |
| 424 | } |
| 425 | } |
| 426 | } |
| 427 | |
| 428 | char *ItaniumPartialDemangler::getFunctionDeclContextName(char *Buf, |
| 429 | size_t *N) const { |
| 430 | if (!isFunction()) |
| 431 | return nullptr; |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 432 | const Node *Name = static_cast<const FunctionEncoding *>(RootNode)->getName(); |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 433 | |
| 434 | OutputStream S; |
Nico Weber | ac4b70f | 2018-11-11 10:04:00 +0000 | [diff] [blame] | 435 | if (!initializeOutputStream(Buf, N, S, 128)) |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 436 | return nullptr; |
| 437 | |
| 438 | KeepGoingLocalFunction: |
| 439 | while (true) { |
| 440 | if (Name->getKind() == Node::KAbiTagAttr) { |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 441 | Name = static_cast<const AbiTagAttr *>(Name)->Base; |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 442 | continue; |
| 443 | } |
| 444 | if (Name->getKind() == Node::KNameWithTemplateArgs) { |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 445 | Name = static_cast<const NameWithTemplateArgs *>(Name)->Name; |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 446 | continue; |
| 447 | } |
| 448 | break; |
| 449 | } |
| 450 | |
| 451 | switch (Name->getKind()) { |
| 452 | case Node::KStdQualifiedName: |
| 453 | S += "std"; |
| 454 | break; |
| 455 | case Node::KNestedName: |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 456 | static_cast<const NestedName *>(Name)->Qual->print(S); |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 457 | break; |
| 458 | case Node::KLocalName: { |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 459 | auto *LN = static_cast<const LocalName *>(Name); |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 460 | LN->Encoding->print(S); |
| 461 | S += "::"; |
| 462 | Name = LN->Entity; |
| 463 | goto KeepGoingLocalFunction; |
| 464 | } |
| 465 | default: |
| 466 | break; |
| 467 | } |
| 468 | S += '\0'; |
| 469 | if (N != nullptr) |
| 470 | *N = S.getCurrentPosition(); |
| 471 | return S.getBuffer(); |
| 472 | } |
| 473 | |
| 474 | char *ItaniumPartialDemangler::getFunctionName(char *Buf, size_t *N) const { |
| 475 | if (!isFunction()) |
| 476 | return nullptr; |
| 477 | auto *Name = static_cast<FunctionEncoding *>(RootNode)->getName(); |
| 478 | return printNode(Name, Buf, N); |
| 479 | } |
| 480 | |
| 481 | char *ItaniumPartialDemangler::getFunctionParameters(char *Buf, |
| 482 | size_t *N) const { |
| 483 | if (!isFunction()) |
| 484 | return nullptr; |
| 485 | NodeArray Params = static_cast<FunctionEncoding *>(RootNode)->getParams(); |
| 486 | |
| 487 | OutputStream S; |
Nico Weber | ac4b70f | 2018-11-11 10:04:00 +0000 | [diff] [blame] | 488 | if (!initializeOutputStream(Buf, N, S, 128)) |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 489 | return nullptr; |
| 490 | |
| 491 | S += '('; |
| 492 | Params.printWithComma(S); |
| 493 | S += ')'; |
| 494 | S += '\0'; |
| 495 | if (N != nullptr) |
| 496 | *N = S.getCurrentPosition(); |
| 497 | return S.getBuffer(); |
| 498 | } |
| 499 | |
| 500 | char *ItaniumPartialDemangler::getFunctionReturnType( |
| 501 | char *Buf, size_t *N) const { |
| 502 | if (!isFunction()) |
| 503 | return nullptr; |
| 504 | |
| 505 | OutputStream S; |
Nico Weber | ac4b70f | 2018-11-11 10:04:00 +0000 | [diff] [blame] | 506 | if (!initializeOutputStream(Buf, N, S, 128)) |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 507 | return nullptr; |
| 508 | |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 509 | if (const Node *Ret = |
| 510 | static_cast<const FunctionEncoding *>(RootNode)->getReturnType()) |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 511 | Ret->print(S); |
| 512 | |
| 513 | S += '\0'; |
| 514 | if (N != nullptr) |
| 515 | *N = S.getCurrentPosition(); |
| 516 | return S.getBuffer(); |
| 517 | } |
| 518 | |
| 519 | char *ItaniumPartialDemangler::finishDemangle(char *Buf, size_t *N) const { |
| 520 | assert(RootNode != nullptr && "must call partialDemangle()"); |
| 521 | return printNode(static_cast<Node *>(RootNode), Buf, N); |
| 522 | } |
| 523 | |
| 524 | bool ItaniumPartialDemangler::hasFunctionQualifiers() const { |
| 525 | assert(RootNode != nullptr && "must call partialDemangle()"); |
| 526 | if (!isFunction()) |
| 527 | return false; |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 528 | auto *E = static_cast<const FunctionEncoding *>(RootNode); |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 529 | return E->getCVQuals() != QualNone || E->getRefQual() != FrefQualNone; |
| 530 | } |
| 531 | |
Fangrui Song | 109abe0 | 2018-05-24 06:57:57 +0000 | [diff] [blame] | 532 | bool ItaniumPartialDemangler::isCtorOrDtor() const { |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 533 | const Node *N = static_cast<const Node *>(RootNode); |
Fangrui Song | 109abe0 | 2018-05-24 06:57:57 +0000 | [diff] [blame] | 534 | while (N) { |
| 535 | switch (N->getKind()) { |
| 536 | default: |
| 537 | return false; |
| 538 | case Node::KCtorDtorName: |
| 539 | return true; |
| 540 | |
| 541 | case Node::KAbiTagAttr: |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 542 | N = static_cast<const AbiTagAttr *>(N)->Base; |
Fangrui Song | 109abe0 | 2018-05-24 06:57:57 +0000 | [diff] [blame] | 543 | break; |
| 544 | case Node::KFunctionEncoding: |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 545 | N = static_cast<const FunctionEncoding *>(N)->getName(); |
Fangrui Song | 109abe0 | 2018-05-24 06:57:57 +0000 | [diff] [blame] | 546 | break; |
| 547 | case Node::KLocalName: |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 548 | N = static_cast<const LocalName *>(N)->Entity; |
Fangrui Song | 109abe0 | 2018-05-24 06:57:57 +0000 | [diff] [blame] | 549 | break; |
| 550 | case Node::KNameWithTemplateArgs: |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 551 | N = static_cast<const NameWithTemplateArgs *>(N)->Name; |
Fangrui Song | 109abe0 | 2018-05-24 06:57:57 +0000 | [diff] [blame] | 552 | break; |
| 553 | case Node::KNestedName: |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 554 | N = static_cast<const NestedName *>(N)->Name; |
Fangrui Song | 109abe0 | 2018-05-24 06:57:57 +0000 | [diff] [blame] | 555 | break; |
| 556 | case Node::KStdQualifiedName: |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 557 | N = static_cast<const StdQualifiedName *>(N)->Child; |
Fangrui Song | 109abe0 | 2018-05-24 06:57:57 +0000 | [diff] [blame] | 558 | break; |
| 559 | } |
| 560 | } |
| 561 | return false; |
| 562 | } |
| 563 | |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 564 | bool ItaniumPartialDemangler::isFunction() const { |
| 565 | assert(RootNode != nullptr && "must call partialDemangle()"); |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 566 | return static_cast<const Node *>(RootNode)->getKind() == |
| 567 | Node::KFunctionEncoding; |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 568 | } |
| 569 | |
| 570 | bool ItaniumPartialDemangler::isSpecialName() const { |
| 571 | assert(RootNode != nullptr && "must call partialDemangle()"); |
Richard Smith | 1b0e006 | 2018-08-20 19:44:01 +0000 | [diff] [blame] | 572 | auto K = static_cast<const Node *>(RootNode)->getKind(); |
Erik Pilkington | d0381b6 | 2018-04-12 20:41:38 +0000 | [diff] [blame] | 573 | return K == Node::KSpecialName || K == Node::KCtorVtableSpecialName; |
| 574 | } |
| 575 | |
| 576 | bool ItaniumPartialDemangler::isData() const { |
| 577 | return !isFunction() && !isSpecialName(); |
| 578 | } |