1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

llvm-cxxfilt: support reading from stdin

`c++filt` when given no arguments runs as a REPL, decoding each line as a
decorated name.  Unify the test structure to be more uniform, with the tests for
llvm-cxxfilt living under test/tools/llvm-cxxfilt.

llvm-svn: 286777
This commit is contained in:
Saleem Abdulrasool 2016-11-13 20:43:38 +00:00
parent a6fc956a6e
commit f935b1ce16
4 changed files with 28 additions and 12 deletions

View File

@ -1 +0,0 @@
config.suffixes = ['.test']

View File

@ -0,0 +1,10 @@
RUN: sed -n 's/^STDIN: //p' %s | llvm-cxxfilt | FileCheck %s
STDIN: _Znw
STDIN: _Znwj
STDIN: _Znwm
CHECK: operator new
CHECK: operator new(unsigned int)
CHECK: operator new(unsigned long)

View File

@ -9,18 +9,25 @@
#include "llvm/Demangle/Demangle.h"
#include "llvm/Support/raw_ostream.h"
#include <stdlib.h>
#include <cstdlib>
#include <iostream>
using namespace llvm;
int main(int argc, char **argv) {
for (int I = 1; I < argc; ++I) {
const char *Mangled = argv[I];
int Status;
char *Demangled = itaniumDemangle(Mangled, nullptr, nullptr, &Status);
llvm::outs() << (Demangled ? Demangled : Mangled) << '\n';
free(Demangled);
}
return 0;
static void demangle(llvm::raw_ostream &OS, const char *Mangled) {
int Status;
char *Demangled = itaniumDemangle(Mangled, nullptr, nullptr, &Status);
OS << (Demangled ? Demangled : Mangled) << '\n';
free(Demangled);
}
int main(int argc, char **argv) {
if (argc == 1)
for (std::string Mangled; std::getline(std::cin, Mangled);)
demangle(llvm::outs(), Mangled.c_str());
else
for (int I = 1; I < argc; ++I)
demangle(llvm::outs(), argv[I]);
return EXIT_SUCCESS;
}