Files
clang-p2996/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.cpp
Dmitry Vasilyev 2edf534f55 [LLDB][NFC] Added the interface DWARFExpression::Delegate to break dependencies and reduce lldb-server size (#131645)
This patch addresses the issue #129543.
After this patch DWARFExpression does not call DWARFUnit directly and does not depend on
lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp and a lot of clang code.
After this patch the size of lldb-server binary (Linux Aarch64) is reduced from 47MB to 17MB.
2025-03-24 18:40:49 +04:00

28 lines
866 B
C++

//===-- DWARFDefines.cpp --------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "DWARFDefines.h"
#include "lldb/Utility/ConstString.h"
#include <cstdio>
#include <cstring>
#include <string>
namespace lldb_private::plugin {
namespace dwarf {
llvm::StringRef DW_TAG_value_to_name(dw_tag_t tag) {
static constexpr llvm::StringLiteral s_unknown_tag_name("<unknown DW_TAG>");
if (llvm::StringRef tag_name = llvm::dwarf::TagString(tag); !tag_name.empty())
return tag_name;
return s_unknown_tag_name;
}
} // namespace dwarf
} // namespace lldb_private::plugin