2020-01-18 03:38:21 -05:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 04:24:48 -04:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 03:38:21 -05:00
|
|
|
*/
|
|
|
|
|
2019-11-29 08:55:07 -05:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/String.h>
|
2020-03-23 08:45:10 -04:00
|
|
|
#include <AK/StringView.h>
|
2020-02-03 00:26:32 -05:00
|
|
|
|
2020-05-20 08:23:32 -04:00
|
|
|
#ifndef BUILDING_SERENITY_TOOLCHAIN
|
2020-03-23 08:45:10 -04:00
|
|
|
# include <cxxabi.h>
|
2020-02-03 00:26:32 -05:00
|
|
|
#endif
|
2019-11-29 08:55:07 -05:00
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
2020-01-16 16:04:44 -05:00
|
|
|
inline String demangle(const StringView& name)
|
2019-11-29 08:55:07 -05:00
|
|
|
{
|
2020-05-20 08:23:32 -04:00
|
|
|
#ifdef BUILDING_SERENITY_TOOLCHAIN
|
2020-02-03 00:26:32 -05:00
|
|
|
return name;
|
|
|
|
#else
|
2019-11-29 08:55:07 -05:00
|
|
|
int status = 0;
|
2020-05-06 13:18:24 -04:00
|
|
|
auto* demangled_name = abi::__cxa_demangle(name.to_string().characters(), nullptr, nullptr, &status);
|
2019-11-29 08:55:07 -05:00
|
|
|
auto string = String(status == 0 ? demangled_name : name);
|
|
|
|
if (status == 0)
|
|
|
|
kfree(demangled_name);
|
|
|
|
return string;
|
2020-02-03 00:26:32 -05:00
|
|
|
#endif
|
2019-11-29 08:55:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
using AK::demangle;
|