2020-01-18 08:38:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 08:38:21 +00:00
|
|
|
*/
|
|
|
|
|
2019-11-29 13:55:07 +00:00
|
|
|
#pragma once
|
|
|
|
|
2021-12-26 17:07:14 +00:00
|
|
|
#ifndef KERNEL
|
|
|
|
|
2022-12-04 18:02:33 +00:00
|
|
|
# include <AK/DeprecatedString.h>
|
2021-12-26 17:07:14 +00:00
|
|
|
# include <AK/StringView.h>
|
|
|
|
# include <cxxabi.h>
|
2019-11-29 13:55:07 +00:00
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
2022-12-04 18:02:33 +00:00
|
|
|
inline DeprecatedString demangle(StringView name)
|
2019-11-29 13:55:07 +00:00
|
|
|
{
|
|
|
|
int status = 0;
|
2022-12-06 01:12:49 +00:00
|
|
|
auto* demangled_name = abi::__cxa_demangle(name.to_deprecated_string().characters(), nullptr, nullptr, &status);
|
2022-12-04 18:02:33 +00:00
|
|
|
auto string = DeprecatedString(status == 0 ? StringView { demangled_name, strlen(demangled_name) } : name);
|
2019-11-29 13:55:07 +00:00
|
|
|
if (status == 0)
|
2022-01-12 03:27:21 +00:00
|
|
|
free(demangled_name);
|
2019-11-29 13:55:07 +00:00
|
|
|
return string;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-11-26 11:18:30 +00:00
|
|
|
# if USING_AK_GLOBALLY
|
2019-11-29 13:55:07 +00:00
|
|
|
using AK::demangle;
|
2022-11-26 11:18:30 +00:00
|
|
|
# endif
|
2021-12-26 17:07:14 +00:00
|
|
|
|
|
|
|
#endif
|