mirror of
https://github.com/rui314/mold.git
synced 2024-11-11 16:58:12 +03:00
43 lines
1.1 KiB
C++
43 lines
1.1 KiB
C++
#include "mold.h"
|
|
|
|
#include <cxxabi.h>
|
|
#include <stdlib.h>
|
|
|
|
static thread_local char *demangle_buf;
|
|
static thread_local size_t demangle_buf_len;
|
|
|
|
static bool is_mangled_name(std::string_view name) {
|
|
return name.starts_with("_Z");
|
|
}
|
|
|
|
template <typename E>
|
|
std::string_view Symbol<E>::get_demangled_name() const {
|
|
if (is_mangled_name(get_name())) {
|
|
assert(nameptr[namelen] == '\0');
|
|
size_t len = sizeof(demangle_buf);
|
|
int status;
|
|
demangle_buf =
|
|
abi::__cxa_demangle(nameptr, demangle_buf, &demangle_buf_len, &status);
|
|
if (status == 0)
|
|
return demangle_buf;
|
|
}
|
|
|
|
return get_name();
|
|
}
|
|
|
|
template <typename E>
|
|
std::ostream &operator<<(std::ostream &out, const Symbol<E> &sym) {
|
|
if (opt_demangle)
|
|
out << sym.get_demangled_name();
|
|
else
|
|
out << sym.get_name();
|
|
return out;
|
|
}
|
|
|
|
#define INSTANTIATE(E) \
|
|
template class Symbol<E>; \
|
|
template std::ostream &operator<<(std::ostream &, const Symbol<E> &)
|
|
|
|
INSTANTIATE(X86_64);
|
|
INSTANTIATE(I386);
|