blob: d99278aa13f69dd9afbeb9c9be8c7457f0602d30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/String.h>
#include <AK/StringView.h>
#ifndef BUILDING_SERENITY_TOOLCHAIN
# include <cxxabi.h>
#endif
namespace AK {
inline String demangle(const StringView& name)
{
#ifdef BUILDING_SERENITY_TOOLCHAIN
return name;
#else
int status = 0;
auto* demangled_name = abi::__cxa_demangle(name.to_string().characters(), nullptr, nullptr, &status);
auto string = String(status == 0 ? demangled_name : name);
if (status == 0)
kfree(demangled_name);
return string;
#endif
}
}
using AK::demangle;
|