1
0
Fork 0
forked from suyu/suyu
suyu/src/common/demangle.cpp

38 lines
989 B
C++
Raw Normal View History

2023-01-14 06:12:41 +01:00
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#include "common/demangle.h"
#include "common/scope_exit.h"
2023-01-14 06:12:41 +01:00
namespace llvm {
char* itaniumDemangle(const char* mangled_name, char* buf, size_t* n, int* status);
}
namespace Common {
std::string DemangleSymbol(const std::string& mangled) {
auto is_itanium = [](const std::string& name) -> bool {
// A valid Itanium encoding requires 1-4 leading underscores, followed by 'Z'.
auto pos = name.find_first_not_of('_');
return pos > 0 && pos <= 4 && pos < name.size() && name[pos] == 'Z';
2023-01-14 06:12:41 +01:00
};
if (mangled.empty()) {
return mangled;
}
2023-01-14 06:12:41 +01:00
char* demangled = nullptr;
SCOPE_EXIT({ std::free(demangled); });
2023-01-14 06:12:41 +01:00
if (is_itanium(mangled)) {
demangled = llvm::itaniumDemangle(mangled.c_str(), nullptr, nullptr, nullptr);
}
if (!demangled) {
return mangled;
}
return demangled;
2023-01-14 06:12:41 +01:00
}
} // namespace Common