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.
28 lines
866 B
C++
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
|