ladybird/AK/Demangle.h

37 lines
737 B
C
Raw Normal View History

/*
* Copyright (c) 2018-2020, Andreas Kling <andreas@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/ByteString.h>
#include <AK/StringView.h>
2024-12-14 16:13:35 +05:00
#ifndef AK_OS_WINDOWS
# include <cxxabi.h>
#endif
namespace AK {
2024-12-14 16:13:35 +05:00
#ifndef AK_OS_WINDOWS
inline ByteString demangle(StringView name)
{
int status = 0;
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);
if (status == 0)
2022-01-12 04:27:21 +01:00
free(demangled_name);
return string;
}
2024-12-14 16:13:35 +05:00
#else
ByteString demangle(StringView name);
2024-12-14 16:13:35 +05:00
#endif
}
#if USING_AK_GLOBALLY
using AK::demangle;
#endif