blob: afc1e4a8d128b2f2c3d9968209f3dbb5e997efe3 [file] [log] [blame]
Rafael Espindolaec44cfd2016-09-06 19:16:48 +00001//===-- llvm-c++filt.cpp --------------------------------------------------===//
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#include "llvm/Demangle/Demangle.h"
Saleem Abdulrasool81cf2fa2017-01-20 04:25:26 +000011#include "llvm/Support/CommandLine.h"
Rui Ueyama0b9d56a2018-04-13 18:26:06 +000012#include "llvm/Support/InitLLVM.h"
Davide Italianod370d4d2016-09-27 18:50:30 +000013#include "llvm/Support/raw_ostream.h"
Saleem Abdulrasoola5627e52016-11-13 20:43:38 +000014#include <cstdlib>
15#include <iostream>
Rafael Espindolaec44cfd2016-09-06 19:16:48 +000016
17using namespace llvm;
18
Saleem Abdulrasool5e8f1802017-01-21 02:36:26 +000019enum Style {
20 Auto, ///< auto-detect mangling
21 GNU, ///< GNU
22 Lucid, ///< Lucid compiler (lcc)
23 ARM,
24 HP, ///< HP compiler (xCC)
25 EDG, ///< EDG compiler
26 GNUv3, ///< GNU C++ v3 ABI
27 Java, ///< Java (gcj)
28 GNAT ///< ADA copiler (gnat)
29};
30static cl::opt<Style>
31 Format("format", cl::desc("decoration style"),
32 cl::values(clEnumValN(Auto, "auto", "auto-detect style"),
33 clEnumValN(GNU, "gnu", "GNU (itanium) style")),
34 cl::init(Auto));
35static cl::alias FormatShort("s", cl::desc("alias for --format"),
36 cl::aliasopt(Format));
37
Saleem Abdulrasool4133d852017-01-22 17:41:10 +000038static cl::opt<bool> StripUnderscore("strip-underscore",
39 cl::desc("strip the leading underscore"),
40 cl::init(false));
41static cl::alias StripUnderscoreShort("_",
42 cl::desc("alias for --strip-underscore"),
43 cl::aliasopt(StripUnderscore));
44
Saleem Abdulrasool81cf2fa2017-01-20 04:25:26 +000045static cl::opt<bool>
46 Types("types",
47 cl::desc("attempt to demangle types as well as function names"),
48 cl::init(false));
49static cl::alias TypesShort("t", cl::desc("alias for --types"),
50 cl::aliasopt(Types));
51
52static cl::list<std::string>
53Decorated(cl::Positional, cl::desc("<mangled>"), cl::ZeroOrMore);
54
Saleem Abdulrasool08b49042017-01-19 02:58:46 +000055static void demangle(llvm::raw_ostream &OS, const std::string &Mangled) {
Saleem Abdulrasoola5627e52016-11-13 20:43:38 +000056 int Status;
Saleem Abdulrasool4133d852017-01-22 17:41:10 +000057
58 const char *Decorated = Mangled.c_str();
59 if (StripUnderscore)
60 if (Decorated[0] == '_')
61 ++Decorated;
62 size_t DecoratedLength = strlen(Decorated);
63
64 char *Undecorated = nullptr;
65
66 if (Types || ((DecoratedLength >= 2 && strncmp(Decorated, "_Z", 2) == 0) ||
67 (DecoratedLength >= 4 && strncmp(Decorated, "___Z", 4) == 0)))
68 Undecorated = itaniumDemangle(Decorated, nullptr, nullptr, &Status);
69
Saleem Abdulrasool0010ede2017-03-22 21:15:19 +000070 if (!Undecorated &&
71 (DecoratedLength > 6 && strncmp(Decorated, "__imp_", 6) == 0)) {
72 OS << "import thunk for ";
73 Undecorated = itaniumDemangle(Decorated + 6, nullptr, nullptr, &Status);
74 }
75
Saleem Abdulrasool4133d852017-01-22 17:41:10 +000076 OS << (Undecorated ? Undecorated : Mangled) << '\n';
Adam Nemetd3ee0652017-11-29 17:07:41 +000077 OS.flush();
Saleem Abdulrasool4133d852017-01-22 17:41:10 +000078
79 free(Undecorated);
Saleem Abdulrasoola5627e52016-11-13 20:43:38 +000080}
81
Rafael Espindolaec44cfd2016-09-06 19:16:48 +000082int main(int argc, char **argv) {
Rui Ueyama0b9d56a2018-04-13 18:26:06 +000083 InitLLVM X(argc, argv);
Saleem Abdulrasool08015a52017-01-20 05:27:09 +000084
85 cl::ParseCommandLineOptions(argc, argv, "llvm symbol undecoration tool\n");
Saleem Abdulrasool81cf2fa2017-01-20 04:25:26 +000086
87 if (Decorated.empty())
Saleem Abdulrasoola5627e52016-11-13 20:43:38 +000088 for (std::string Mangled; std::getline(std::cin, Mangled);)
Saleem Abdulrasool08b49042017-01-19 02:58:46 +000089 demangle(llvm::outs(), Mangled);
Saleem Abdulrasoola5627e52016-11-13 20:43:38 +000090 else
Saleem Abdulrasool81cf2fa2017-01-20 04:25:26 +000091 for (const auto &Symbol : Decorated)
92 demangle(llvm::outs(), Symbol);
Saleem Abdulrasoola5627e52016-11-13 20:43:38 +000093
94 return EXIT_SUCCESS;
Rafael Espindolaec44cfd2016-09-06 19:16:48 +000095}