1 //===--- Demangle.h ---------------------------------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_DEMANGLE_DEMANGLE_H
10 #define LLVM_DEMANGLE_DEMANGLE_H
16 /// This is a llvm local version of __cxa_demangle. Other than the name and
17 /// being in the llvm namespace it is identical.
19 /// The mangled_name is demangled into buf and returned. If the buffer is not
20 /// large enough, realloc is used to expand it.
22 /// The *status will be set to a value from the following enumeration
24 demangle_unknown_error
= -4,
25 demangle_invalid_args
= -3,
26 demangle_invalid_mangled_name
= -2,
27 demangle_memory_alloc_failure
= -1,
31 char *itaniumDemangle(const char *mangled_name
, char *buf
, size_t *n
,
35 enum MSDemangleFlags
{ MSDF_None
= 0, MSDF_DumpBackrefs
= 1 << 0 };
36 char *microsoftDemangle(const char *mangled_name
, char *buf
, size_t *n
,
37 int *status
, MSDemangleFlags Flags
= MSDF_None
);
39 /// Attempt to demangle a string using different demangling schemes.
40 /// The function uses heuristics to determine which demangling scheme to use.
41 /// \param MangledName - reference to string to demangle.
42 /// \returns - the demangled string, or a copy of the input string if no
43 /// demangling occurred.
44 std::string
demangle(const std::string
&MangledName
);
46 /// "Partial" demangler. This supports demangling a string into an AST
47 /// (typically an intermediate stage in itaniumDemangle) and querying certain
48 /// properties or partially printing the demangled name.
49 struct ItaniumPartialDemangler
{
50 ItaniumPartialDemangler();
52 ItaniumPartialDemangler(ItaniumPartialDemangler
&&Other
);
53 ItaniumPartialDemangler
&operator=(ItaniumPartialDemangler
&&Other
);
55 /// Demangle into an AST. Subsequent calls to the rest of the member functions
56 /// implicitly operate on the AST this produces.
57 /// \return true on error, false otherwise
58 bool partialDemangle(const char *MangledName
);
60 /// Just print the entire mangled name into Buf. Buf and N behave like the
61 /// second and third parameters to itaniumDemangle.
62 char *finishDemangle(char *Buf
, size_t *N
) const;
64 /// Get the base name of a function. This doesn't include trailing template
65 /// arguments, ie for "a::b<int>" this function returns "b".
66 char *getFunctionBaseName(char *Buf
, size_t *N
) const;
68 /// Get the context name for a function. For "a::b::c", this function returns
70 char *getFunctionDeclContextName(char *Buf
, size_t *N
) const;
72 /// Get the entire name of this function.
73 char *getFunctionName(char *Buf
, size_t *N
) const;
75 /// Get the parameters for this function.
76 char *getFunctionParameters(char *Buf
, size_t *N
) const;
77 char *getFunctionReturnType(char *Buf
, size_t *N
) const;
79 /// If this function has any any cv or reference qualifiers. These imply that
80 /// the function is a non-static member function.
81 bool hasFunctionQualifiers() const;
83 /// If this symbol describes a constructor or destructor.
84 bool isCtorOrDtor() const;
86 /// If this symbol describes a function.
87 bool isFunction() const;
89 /// If this symbol describes a variable.
92 /// If this symbol is a <special-name>. These are generally implicitly
93 /// generated by the implementation, such as vtables and typeinfo names.
94 bool isSpecialName() const;
96 ~ItaniumPartialDemangler();