From: Matt Davis Date: Mon, 11 Feb 2019 20:30:53 +0000 (+0000) Subject: [llvm-cxxfilt] Split and demangle stdin input X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1369773f89721a848c0464386359ee76bc53dc84;p=llvm [llvm-cxxfilt] Split and demangle stdin input Summary: Originally, llvm-cxxfilt would treat a line as a single mangled item to be demangled. If a mangled name appears in the middle of that string, that name would not be demangled. GNU c++filt splits and demangles every word in a string that is piped to it via stdin. Prior to this patch llvm-cxxfilt would never split strings piped to it. This patch replicates the GNU behavior and splits strings that are piped to it via stdin. This fixes PR39990 Reviewers: compnerd, jhenderson, davide Reviewed By: compnerd, jhenderson Subscribers: erik.pilkington, jhenderson, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D57350 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@353743 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/tools/llvm-cxxfilt/simple.test b/test/tools/llvm-cxxfilt/simple.test index 76e70dbba30..90dd18d58dc 100644 --- a/test/tools/llvm-cxxfilt/simple.test +++ b/test/tools/llvm-cxxfilt/simple.test @@ -1,4 +1,10 @@ RUN: llvm-cxxfilt _Z1fi abc | FileCheck %s +RUN: echo "Mangled _Z1fi and _Z3foov in string." | llvm-cxxfilt \ +RUN: | FileCheck %s --check-prefix=CHECK-STRING +RUN: llvm-cxxfilt "CLI remains mangled _Z1fi" \ +RUN: | FileCheck %s --check-prefix=CHECK-MANGLED CHECK: f(int) CHECK-NEXT: abc +CHECK-STRING: Mangled f(int) and foo() in string. +CHECK-MANGLED: CLI remains mangled _Z1fi diff --git a/test/tools/llvm-cxxfilt/types.test b/test/tools/llvm-cxxfilt/types.test index 4f0b2ecaab1..2213c386f82 100644 --- a/test/tools/llvm-cxxfilt/types.test +++ b/test/tools/llvm-cxxfilt/types.test @@ -1,5 +1,6 @@ RUN: llvm-cxxfilt -t f i | FileCheck %s +RUN: echo "f i" | llvm-cxxfilt -t | FileCheck %s --check-prefix="CHECK-STRING" CHECK: float CHECK-NEXT: int - +CHECK-STRING: float int diff --git a/tools/llvm-cxxfilt/llvm-cxxfilt.cpp b/tools/llvm-cxxfilt/llvm-cxxfilt.cpp index 780ec6e3d52..821c705b95b 100644 --- a/tools/llvm-cxxfilt/llvm-cxxfilt.cpp +++ b/tools/llvm-cxxfilt/llvm-cxxfilt.cpp @@ -6,6 +6,7 @@ // //===----------------------------------------------------------------------===// +#include "llvm/ADT/StringExtras.h" #include "llvm/Demangle/Demangle.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/InitLLVM.h" @@ -51,7 +52,7 @@ static cl::alias TypesShort("t", cl::desc("alias for --types"), static cl::list Decorated(cl::Positional, cl::desc(""), cl::ZeroOrMore); -static void demangle(llvm::raw_ostream &OS, const std::string &Mangled) { +static std::string demangle(llvm::raw_ostream &OS, const std::string &Mangled) { int Status; const char *Decorated = Mangled.c_str(); @@ -72,10 +73,28 @@ static void demangle(llvm::raw_ostream &OS, const std::string &Mangled) { Undecorated = itaniumDemangle(Decorated + 6, nullptr, nullptr, &Status); } - OS << (Undecorated ? Undecorated : Mangled) << '\n'; - OS.flush(); - + std::string Result(Undecorated ? Undecorated : Mangled); free(Undecorated); + return Result; +} + +// If 'Split' is true, then 'Mangled' is broken into individual words and each +// word is demangled. Otherwise, the entire string is treated as a single +// mangled item. The result is output to 'OS'. +static void demangleLine(llvm::raw_ostream &OS, StringRef Mangled, bool Split) { + std::string Result; + if (Split) { + SmallVector Words; + SplitString(Mangled, Words); + for (auto Word : Words) + Result += demangle(OS, Word) + ' '; + // Remove the trailing space character. + if (Result.back() == ' ') + Result.pop_back(); + } else + Result = demangle(OS, Mangled); + OS << Result << '\n'; + OS.flush(); } int main(int argc, char **argv) { @@ -85,10 +104,10 @@ int main(int argc, char **argv) { if (Decorated.empty()) for (std::string Mangled; std::getline(std::cin, Mangled);) - demangle(llvm::outs(), Mangled); + demangleLine(llvm::outs(), Mangled, true); else for (const auto &Symbol : Decorated) - demangle(llvm::outs(), Symbol); + demangleLine(llvm::outs(), Symbol, false); return EXIT_SUCCESS; }