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
|
|
|
|
|
2021-12-26 12:07:14 -05:00
|
|
|
#ifndef KERNEL
|
|
|
|
|
2023-12-16 09:19:34 -05:00
|
|
|
# include <AK/ByteString.h>
|
2021-12-26 12:07:14 -05:00
|
|
|
# include <AK/StringView.h>
|
|
|
|
# include <cxxabi.h>
|
2019-11-29 08:55:07 -05:00
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
2023-12-16 09:19:34 -05:00
|
|
|
inline ByteString demangle(StringView name)
|
2019-11-29 08:55:07 -05:00
|
|
|
{
|
|
|
|
int status = 0;
|
2023-12-16 09:19:34 -05:00
|
|
|
auto* demangled_name = abi::__cxa_demangle(name.to_byte_string().characters(), nullptr, nullptr, &status);
|
|
|
|
auto string = ByteString(status == 0 ? StringView { demangled_name, strlen(demangled_name) } : name);
|
2019-11-29 08:55:07 -05:00
|
|
|
if (status == 0)
|
2022-01-11 22:27:21 -05:00
|
|
|
free(demangled_name);
|
2019-11-29 08:55:07 -05:00
|
|
|
return string;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-11-26 06:18:30 -05:00
|
|
|
# if USING_AK_GLOBALLY
|
2019-11-29 08:55:07 -05:00
|
|
|
using AK::demangle;
|
2022-11-26 06:18:30 -05:00
|
|
|
# endif
|
2021-12-26 12:07:14 -05:00
|
|
|
|
|
|
|
#endif
|