blob: b6b11dbddf26b5d841331e6a6d9d750318da47ea [file] [log] [blame]
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +00001//===------------------------- ItaniumDemangle.cpp ------------------------===//
Rafael Espindolab940b662016-09-06 19:16:48 +00002//
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 Pilkingtonbb7feae2018-03-19 15:18:23 +000010// FIXME: (possibly) incomplete list of features that clang mangles that this
11// file does not yet support:
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +000012// - C++ modules TS
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +000013
Reid Klecknerb2881f12016-09-06 19:39:56 +000014#include "llvm/Demangle/Demangle.h"
Richard Smith8a57f2e2018-08-20 19:44:01 +000015#include "llvm/Demangle/ItaniumDemangle.h"
Serge Pavlov1a095522018-05-29 07:05:41 +000016
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +000017#include <cassert>
David Blaikie99e17252018-03-21 17:31:49 +000018#include <cctype>
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +000019#include <cstdio>
Rafael Espindolab940b662016-09-06 19:16:48 +000020#include <cstdlib>
21#include <cstring>
David Blaikiea25e20692018-08-20 20:02:29 +000022#include <functional>
David Blaikie99e17252018-03-21 17:31:49 +000023#include <numeric>
Erik Pilkington3a6fed42018-07-27 17:27:40 +000024#include <utility>
David Blaikie99e17252018-03-21 17:31:49 +000025#include <vector>
Rafael Espindolab940b662016-09-06 19:16:48 +000026
Richard Smith8a57f2e2018-08-20 19:44:01 +000027using namespace llvm;
28using namespace llvm::itanium_demangle;
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +000029
Richard Smith8a57f2e2018-08-20 19:44:01 +000030constexpr const char *itanium_demangle::FloatData<float>::spec;
31constexpr const char *itanium_demangle::FloatData<double>::spec;
32constexpr const char *itanium_demangle::FloatData<long double>::spec;
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +000033
Richard Smith8a57f2e2018-08-20 19:44:01 +000034// <discriminator> := _ <non-negative number> # when number < 10
35// := __ <non-negative number> _ # when number >= 10
36// extension := decimal-digit+ # at the end of string
37const 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 Pilkington8c7013d2018-03-25 22:49:57 +000052 }
Richard Smith8a57f2e2018-08-20 19:44:01 +000053 } 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 Pilkingtonbb7feae2018-03-19 15:18:23 +000059 }
60 }
Richard Smith8a57f2e2018-08-20 19:44:01 +000061 return first;
Rafael Espindolab940b662016-09-06 19:16:48 +000062}
63
Richard Smith8a57f2e2018-08-20 19:44:01 +000064#ifndef NDEBUG
65namespace {
66struct DumpVisitor {
67 unsigned Depth = 0;
68 bool PendingNewline = false;
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +000069
Richard Smith8a57f2e2018-08-20 19:44:01 +000070 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 Pilkingtonbb7feae2018-03-19 15:18:23 +000081 }
82
Richard Smith8a57f2e2018-08-20 19:44:01 +000083 void printStr(const char *S) { fprintf(stderr, "%s", S); }
84 void print(StringView SV) {
85 fprintf(stderr, "\"%.*s\"", (int)SV.size(), SV.begin());
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +000086 }
Richard Smith8a57f2e2018-08-20 19:44:01 +000087 void print(const Node *N) {
88 if (N)
89 N->visit(std::ref(*this));
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +000090 else
Richard Smith8a57f2e2018-08-20 19:44:01 +000091 printStr("<null>");
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +000092 }
Richard Smith8a57f2e2018-08-20 19:44:01 +000093 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 Pilkingtonbb7feae2018-03-19 15:18:23 +0000100 }
Richard Smith8a57f2e2018-08-20 19:44:01 +0000101 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 Pilkingtonbb7feae2018-03-19 15:18:23 +0000111 }
Richard Smith8a57f2e2018-08-20 19:44:01 +0000112 printStr("}");
113 --Depth;
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +0000114 }
Erik Pilkingtonfbca8d52018-10-15 22:03:53 +0000115
Richard Smith8a57f2e2018-08-20 19:44:01 +0000116 // Overload used when T is exactly 'bool', not merely convertible to 'bool'.
Erik Pilkingtonfbca8d52018-10-15 22:03:53 +0000117 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 Pilkingtonbb7feae2018-03-19 15:18:23 +0000122 }
Erik Pilkingtonfbca8d52018-10-15 22:03:53 +0000123
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 Pilkingtonbb7feae2018-03-19 15:18:23 +0000127 }
Erik Pilkingtonfbca8d52018-10-15 22:03:53 +0000128
Richard Smith8a57f2e2018-08-20 19:44:01 +0000129 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 Pilkingtonbb7feae2018-03-19 15:18:23 +0000135 }
136 }
Richard Smith8a57f2e2018-08-20 19:44:01 +0000137 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 Pilkingtonbb7feae2018-03-19 15:18:23 +0000145 }
146 }
Richard Smith8a57f2e2018-08-20 19:44:01 +0000147 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 Pilkingtond43931d2018-04-09 18:33:01 +0000153 };
Richard Smith8a57f2e2018-08-20 19:44:01 +0000154 for (QualName Name : Names) {
155 if (Qs & Name.Q) {
156 printStr(Name.Name);
157 Qs = Qualifiers(Qs & ~Name.Q);
158 if (Qs) printStr(" | ");
Erik Pilkingtond43931d2018-04-09 18:33:01 +0000159 }
160 }
Erik Pilkingtond43931d2018-04-09 18:33:01 +0000161 }
Richard Smith8a57f2e2018-08-20 19:44:01 +0000162 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 Pilkingtonbb7feae2018-03-19 15:18:23 +0000177 }
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +0000178
Richard Smith8a57f2e2018-08-20 19:44:01 +0000179 void newLine() {
180 printStr("\n");
181 for (unsigned I = 0; I != Depth; ++I)
182 printStr(" ");
183 PendingNewline = false;
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +0000184 }
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +0000185
Richard Smith8a57f2e2018-08-20 19:44:01 +0000186 template<typename T> void printWithPendingNewline(T V) {
187 print(V);
188 if (wantsNewline(V))
189 PendingNewline = true;
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +0000190 }
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +0000191
Richard Smith8a57f2e2018-08-20 19:44:01 +0000192 template<typename T> void printWithComma(T V) {
193 if (PendingNewline || wantsNewline(V)) {
194 printStr(",");
195 newLine();
196 } else {
197 printStr(", ");
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +0000198 }
199
Richard Smith8a57f2e2018-08-20 19:44:01 +0000200 printWithPendingNewline(V);
201 }
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +0000202
Richard Smith8a57f2e2018-08-20 19:44:01 +0000203 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 Pilkingtonbb7feae2018-03-19 15:18:23 +0000235 }
236};
Richard Smith8a57f2e2018-08-20 19:44:01 +0000237}
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +0000238
Richard Smith8a57f2e2018-08-20 19:44:01 +0000239void itanium_demangle::Node::dump() const {
240 DumpVisitor V;
241 visit(std::ref(V));
242 V.newLine();
243}
Rafael Espindolab940b662016-09-06 19:16:48 +0000244#endif
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +0000245
Richard Smith8a57f2e2018-08-20 19:44:01 +0000246namespace {
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +0000247class 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 Pavlov892bd812018-07-05 06:22:39 +0000256 alignas(long double) char InitialBuffer[AllocSize];
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +0000257 BlockMeta* BlockList = nullptr;
258
259 void grow() {
Erik Pilkington28e08a02018-07-23 22:23:04 +0000260 char* NewMeta = static_cast<char *>(std::malloc(AllocSize));
261 if (NewMeta == nullptr)
262 std::terminate();
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +0000263 BlockList = new (NewMeta) BlockMeta{BlockList, 0};
264 }
265
266 void* allocateMassive(size_t NBytes) {
267 NBytes += sizeof(BlockMeta);
Erik Pilkington28e08a02018-07-23 22:23:04 +0000268 BlockMeta* NewMeta = reinterpret_cast<BlockMeta*>(std::malloc(NBytes));
269 if (NewMeta == nullptr)
270 std::terminate();
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +0000271 BlockList->Next = new (NewMeta) BlockMeta{BlockList->Next, 0};
272 return static_cast<void*>(NewMeta + 1);
273 }
274
275public:
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 Pilkingtonf2a9b0f2018-04-12 20:41:06 +0000291 void reset() {
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +0000292 while (BlockList) {
293 BlockMeta* Tmp = BlockList;
294 BlockList = BlockList->Next;
295 if (reinterpret_cast<char*>(Tmp) != InitialBuffer)
Erik Pilkington28e08a02018-07-23 22:23:04 +0000296 std::free(Tmp);
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +0000297 }
Erik Pilkingtonf2a9b0f2018-04-12 20:41:06 +0000298 BlockList = new (InitialBuffer) BlockMeta{nullptr, 0};
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +0000299 }
Erik Pilkingtonf2a9b0f2018-04-12 20:41:06 +0000300
301 ~BumpPointerAllocator() { reset(); }
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +0000302};
303
Richard Smitha6c34882018-08-16 21:40:57 +0000304class DefaultAllocator {
305 BumpPointerAllocator Alloc;
306
307public:
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 Pilkingtonbb7feae2018-03-19 15:18:23 +0000319} // unnamed namespace
Rafael Espindolab940b662016-09-06 19:16:48 +0000320
Richard Smith8a57f2e2018-08-20 19:44:01 +0000321//===----------------------------------------------------------------------===//
322// Code beyond this point should not be synchronized with libc++abi.
323//===----------------------------------------------------------------------===//
324
Pavel Labathf4c15822018-10-17 18:50:25 +0000325using Demangler = itanium_demangle::ManglingParser<DefaultAllocator>;
Richard Smith8a57f2e2018-08-20 19:44:01 +0000326
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +0000327char *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 Turner8a0efd02018-07-17 19:42:29 +0000331 *Status = demangle_invalid_args;
Rafael Espindolab940b662016-09-06 19:16:48 +0000332 return nullptr;
333 }
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +0000334
Zachary Turner8a0efd02018-07-17 19:42:29 +0000335 int InternalStatus = demangle_success;
Richard Smith8a57f2e2018-08-20 19:44:01 +0000336 Demangler Parser(MangledName, MangledName + std::strlen(MangledName));
Erik Pilkingtonf2a9b0f2018-04-12 20:41:06 +0000337 OutputStream S;
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +0000338
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +0000339 Node *AST = Parser.parse();
340
341 if (AST == nullptr)
Zachary Turner8a0efd02018-07-17 19:42:29 +0000342 InternalStatus = demangle_invalid_mangled_name;
Erik Pilkingtonf2a9b0f2018-04-12 20:41:06 +0000343 else if (initializeOutputStream(Buf, N, S, 1024))
Zachary Turner8a0efd02018-07-17 19:42:29 +0000344 InternalStatus = demangle_memory_alloc_failure;
Erik Pilkingtonf2a9b0f2018-04-12 20:41:06 +0000345 else {
Erik Pilkington8a1cb332018-03-25 22:50:33 +0000346 assert(Parser.ForwardTemplateRefs.empty());
Erik Pilkingtonf2a9b0f2018-04-12 20:41:06 +0000347 AST->print(S);
348 S += '\0';
349 if (N != nullptr)
350 *N = S.getCurrentPosition();
351 Buf = S.getBuffer();
Erik Pilkingtonbb7feae2018-03-19 15:18:23 +0000352 }
353
354 if (Status)
355 *Status = InternalStatus;
Zachary Turner8a0efd02018-07-17 19:42:29 +0000356 return InternalStatus == demangle_success ? Buf : nullptr;
Rafael Espindolab940b662016-09-06 19:16:48 +0000357}
Erik Pilkington67d82d62018-04-12 20:41:38 +0000358
Erik Pilkingtonac6a801c2018-08-13 16:37:47 +0000359bool llvm::itaniumFindTypesInMangledName(const char *MangledName, void *Ctx,
360 void (*Callback)(void *,
361 const char *)) {
Richard Smith8a57f2e2018-08-20 19:44:01 +0000362 Demangler Parser(MangledName, MangledName + std::strlen(MangledName));
Erik Pilkingtonac6a801c2018-08-13 16:37:47 +0000363 Parser.TypeCallback = Callback;
364 Parser.TypeCallbackContext = Ctx;
365 return Parser.parse() == nullptr;
366}
367
Erik Pilkington67d82d62018-04-12 20:41:38 +0000368ItaniumPartialDemangler::ItaniumPartialDemangler()
Richard Smith8a57f2e2018-08-20 19:44:01 +0000369 : RootNode(nullptr), Context(new Demangler{nullptr, nullptr}) {}
Erik Pilkington67d82d62018-04-12 20:41:38 +0000370
371ItaniumPartialDemangler::~ItaniumPartialDemangler() {
Richard Smith8a57f2e2018-08-20 19:44:01 +0000372 delete static_cast<Demangler *>(Context);
Erik Pilkington67d82d62018-04-12 20:41:38 +0000373}
374
375ItaniumPartialDemangler::ItaniumPartialDemangler(
376 ItaniumPartialDemangler &&Other)
377 : RootNode(Other.RootNode), Context(Other.Context) {
378 Other.Context = Other.RootNode = nullptr;
379}
380
381ItaniumPartialDemangler &ItaniumPartialDemangler::
382operator=(ItaniumPartialDemangler &&Other) {
383 std::swap(RootNode, Other.RootNode);
384 std::swap(Context, Other.Context);
385 return *this;
386}
387
388// Demangle MangledName into an AST, storing it into this->RootNode.
389bool ItaniumPartialDemangler::partialDemangle(const char *MangledName) {
Richard Smith8a57f2e2018-08-20 19:44:01 +0000390 Demangler *Parser = static_cast<Demangler *>(Context);
Erik Pilkington67d82d62018-04-12 20:41:38 +0000391 size_t Len = std::strlen(MangledName);
392 Parser->reset(MangledName, MangledName + Len);
393 RootNode = Parser->parse();
394 return RootNode == nullptr;
395}
396
Richard Smith8a57f2e2018-08-20 19:44:01 +0000397static char *printNode(const Node *RootNode, char *Buf, size_t *N) {
Erik Pilkington67d82d62018-04-12 20:41:38 +0000398 OutputStream S;
399 if (initializeOutputStream(Buf, N, S, 128))
400 return nullptr;
401 RootNode->print(S);
402 S += '\0';
403 if (N != nullptr)
404 *N = S.getCurrentPosition();
405 return S.getBuffer();
406}
407
408char *ItaniumPartialDemangler::getFunctionBaseName(char *Buf, size_t *N) const {
409 if (!isFunction())
410 return nullptr;
411
Richard Smith8a57f2e2018-08-20 19:44:01 +0000412 const Node *Name = static_cast<const FunctionEncoding *>(RootNode)->getName();
Erik Pilkington67d82d62018-04-12 20:41:38 +0000413
414 while (true) {
415 switch (Name->getKind()) {
416 case Node::KAbiTagAttr:
Richard Smith8a57f2e2018-08-20 19:44:01 +0000417 Name = static_cast<const AbiTagAttr *>(Name)->Base;
Erik Pilkington67d82d62018-04-12 20:41:38 +0000418 continue;
419 case Node::KStdQualifiedName:
Richard Smith8a57f2e2018-08-20 19:44:01 +0000420 Name = static_cast<const StdQualifiedName *>(Name)->Child;
Erik Pilkington67d82d62018-04-12 20:41:38 +0000421 continue;
422 case Node::KNestedName:
Richard Smith8a57f2e2018-08-20 19:44:01 +0000423 Name = static_cast<const NestedName *>(Name)->Name;
Erik Pilkington67d82d62018-04-12 20:41:38 +0000424 continue;
425 case Node::KLocalName:
Richard Smith8a57f2e2018-08-20 19:44:01 +0000426 Name = static_cast<const LocalName *>(Name)->Entity;
Erik Pilkington67d82d62018-04-12 20:41:38 +0000427 continue;
428 case Node::KNameWithTemplateArgs:
Richard Smith8a57f2e2018-08-20 19:44:01 +0000429 Name = static_cast<const NameWithTemplateArgs *>(Name)->Name;
Erik Pilkington67d82d62018-04-12 20:41:38 +0000430 continue;
431 default:
432 return printNode(Name, Buf, N);
433 }
434 }
435}
436
437char *ItaniumPartialDemangler::getFunctionDeclContextName(char *Buf,
438 size_t *N) const {
439 if (!isFunction())
440 return nullptr;
Richard Smith8a57f2e2018-08-20 19:44:01 +0000441 const Node *Name = static_cast<const FunctionEncoding *>(RootNode)->getName();
Erik Pilkington67d82d62018-04-12 20:41:38 +0000442
443 OutputStream S;
444 if (initializeOutputStream(Buf, N, S, 128))
445 return nullptr;
446
447 KeepGoingLocalFunction:
448 while (true) {
449 if (Name->getKind() == Node::KAbiTagAttr) {
Richard Smith8a57f2e2018-08-20 19:44:01 +0000450 Name = static_cast<const AbiTagAttr *>(Name)->Base;
Erik Pilkington67d82d62018-04-12 20:41:38 +0000451 continue;
452 }
453 if (Name->getKind() == Node::KNameWithTemplateArgs) {
Richard Smith8a57f2e2018-08-20 19:44:01 +0000454 Name = static_cast<const NameWithTemplateArgs *>(Name)->Name;
Erik Pilkington67d82d62018-04-12 20:41:38 +0000455 continue;
456 }
457 break;
458 }
459
460 switch (Name->getKind()) {
461 case Node::KStdQualifiedName:
462 S += "std";
463 break;
464 case Node::KNestedName:
Richard Smith8a57f2e2018-08-20 19:44:01 +0000465 static_cast<const NestedName *>(Name)->Qual->print(S);
Erik Pilkington67d82d62018-04-12 20:41:38 +0000466 break;
467 case Node::KLocalName: {
Richard Smith8a57f2e2018-08-20 19:44:01 +0000468 auto *LN = static_cast<const LocalName *>(Name);
Erik Pilkington67d82d62018-04-12 20:41:38 +0000469 LN->Encoding->print(S);
470 S += "::";
471 Name = LN->Entity;
472 goto KeepGoingLocalFunction;
473 }
474 default:
475 break;
476 }
477 S += '\0';
478 if (N != nullptr)
479 *N = S.getCurrentPosition();
480 return S.getBuffer();
481}
482
483char *ItaniumPartialDemangler::getFunctionName(char *Buf, size_t *N) const {
484 if (!isFunction())
485 return nullptr;
486 auto *Name = static_cast<FunctionEncoding *>(RootNode)->getName();
487 return printNode(Name, Buf, N);
488}
489
490char *ItaniumPartialDemangler::getFunctionParameters(char *Buf,
491 size_t *N) const {
492 if (!isFunction())
493 return nullptr;
494 NodeArray Params = static_cast<FunctionEncoding *>(RootNode)->getParams();
495
496 OutputStream S;
497 if (initializeOutputStream(Buf, N, S, 128))
498 return nullptr;
499
500 S += '(';
501 Params.printWithComma(S);
502 S += ')';
503 S += '\0';
504 if (N != nullptr)
505 *N = S.getCurrentPosition();
506 return S.getBuffer();
507}
508
509char *ItaniumPartialDemangler::getFunctionReturnType(
510 char *Buf, size_t *N) const {
511 if (!isFunction())
512 return nullptr;
513
514 OutputStream S;
515 if (initializeOutputStream(Buf, N, S, 128))
516 return nullptr;
517
Richard Smith8a57f2e2018-08-20 19:44:01 +0000518 if (const Node *Ret =
519 static_cast<const FunctionEncoding *>(RootNode)->getReturnType())
Erik Pilkington67d82d62018-04-12 20:41:38 +0000520 Ret->print(S);
521
522 S += '\0';
523 if (N != nullptr)
524 *N = S.getCurrentPosition();
525 return S.getBuffer();
526}
527
528char *ItaniumPartialDemangler::finishDemangle(char *Buf, size_t *N) const {
529 assert(RootNode != nullptr && "must call partialDemangle()");
530 return printNode(static_cast<Node *>(RootNode), Buf, N);
531}
532
533bool ItaniumPartialDemangler::hasFunctionQualifiers() const {
534 assert(RootNode != nullptr && "must call partialDemangle()");
535 if (!isFunction())
536 return false;
Richard Smith8a57f2e2018-08-20 19:44:01 +0000537 auto *E = static_cast<const FunctionEncoding *>(RootNode);
Erik Pilkington67d82d62018-04-12 20:41:38 +0000538 return E->getCVQuals() != QualNone || E->getRefQual() != FrefQualNone;
539}
540
Fangrui Song79420ac2018-05-24 06:57:57 +0000541bool ItaniumPartialDemangler::isCtorOrDtor() const {
Richard Smith8a57f2e2018-08-20 19:44:01 +0000542 const Node *N = static_cast<const Node *>(RootNode);
Fangrui Song79420ac2018-05-24 06:57:57 +0000543 while (N) {
544 switch (N->getKind()) {
545 default:
546 return false;
547 case Node::KCtorDtorName:
548 return true;
549
550 case Node::KAbiTagAttr:
Richard Smith8a57f2e2018-08-20 19:44:01 +0000551 N = static_cast<const AbiTagAttr *>(N)->Base;
Fangrui Song79420ac2018-05-24 06:57:57 +0000552 break;
553 case Node::KFunctionEncoding:
Richard Smith8a57f2e2018-08-20 19:44:01 +0000554 N = static_cast<const FunctionEncoding *>(N)->getName();
Fangrui Song79420ac2018-05-24 06:57:57 +0000555 break;
556 case Node::KLocalName:
Richard Smith8a57f2e2018-08-20 19:44:01 +0000557 N = static_cast<const LocalName *>(N)->Entity;
Fangrui Song79420ac2018-05-24 06:57:57 +0000558 break;
559 case Node::KNameWithTemplateArgs:
Richard Smith8a57f2e2018-08-20 19:44:01 +0000560 N = static_cast<const NameWithTemplateArgs *>(N)->Name;
Fangrui Song79420ac2018-05-24 06:57:57 +0000561 break;
562 case Node::KNestedName:
Richard Smith8a57f2e2018-08-20 19:44:01 +0000563 N = static_cast<const NestedName *>(N)->Name;
Fangrui Song79420ac2018-05-24 06:57:57 +0000564 break;
565 case Node::KStdQualifiedName:
Richard Smith8a57f2e2018-08-20 19:44:01 +0000566 N = static_cast<const StdQualifiedName *>(N)->Child;
Fangrui Song79420ac2018-05-24 06:57:57 +0000567 break;
568 }
569 }
570 return false;
571}
572
Erik Pilkington67d82d62018-04-12 20:41:38 +0000573bool ItaniumPartialDemangler::isFunction() const {
574 assert(RootNode != nullptr && "must call partialDemangle()");
Richard Smith8a57f2e2018-08-20 19:44:01 +0000575 return static_cast<const Node *>(RootNode)->getKind() ==
576 Node::KFunctionEncoding;
Erik Pilkington67d82d62018-04-12 20:41:38 +0000577}
578
579bool ItaniumPartialDemangler::isSpecialName() const {
580 assert(RootNode != nullptr && "must call partialDemangle()");
Richard Smith8a57f2e2018-08-20 19:44:01 +0000581 auto K = static_cast<const Node *>(RootNode)->getKind();
Erik Pilkington67d82d62018-04-12 20:41:38 +0000582 return K == Node::KSpecialName || K == Node::KCtorVtableSpecialName;
583}
584
585bool ItaniumPartialDemangler::isData() const {
586 return !isFunction() && !isSpecialName();
587}