Small change to use (what I think is) a better practice -- we were using the `m_indexed` bool member to make sure we called `Index()` once, but we should just use `std::once`! This change shouldn't affect functionality. This change may also make concurrent access to `Index()` thread-safe, though the ManualDWARFIndex API isn't completely thread-safe due to `Decode()`. I'm not sure if ManualDWARFIndex was ever intended to be thread-safe. Test Plan: `ninja check-lldb` Tested basic debugging workflow of a couple of large projects I had built. Basically: ``` (lldb) target create <project> (lldb) b main (lldb) r (lldb) step ... ``` I A/B tested the performance of launching several modules with parallel module loading and didn't observe any performance regressions. --------- Co-authored-by: Tom Yang <toyang@fb.com>
657 lines
24 KiB
C++
657 lines
24 KiB
C++
//===-- ManualDWARFIndex.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 "Plugins/SymbolFile/DWARF/ManualDWARFIndex.h"
|
|
#include "Plugins/Language/ObjC/ObjCLanguage.h"
|
|
#include "Plugins/SymbolFile/DWARF/DWARFDebugInfo.h"
|
|
#include "Plugins/SymbolFile/DWARF/DWARFDeclContext.h"
|
|
#include "Plugins/SymbolFile/DWARF/LogChannelDWARF.h"
|
|
#include "Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.h"
|
|
#include "lldb/Core/DataFileCache.h"
|
|
#include "lldb/Core/Debugger.h"
|
|
#include "lldb/Core/Module.h"
|
|
#include "lldb/Core/Progress.h"
|
|
#include "lldb/Symbol/ObjectFile.h"
|
|
#include "lldb/Utility/DataEncoder.h"
|
|
#include "lldb/Utility/DataExtractor.h"
|
|
#include "lldb/Utility/Stream.h"
|
|
#include "lldb/Utility/Timer.h"
|
|
#include "lldb/lldb-private-enumerations.h"
|
|
#include "llvm/Support/ThreadPool.h"
|
|
#include <atomic>
|
|
#include <optional>
|
|
|
|
using namespace lldb_private;
|
|
using namespace lldb;
|
|
using namespace lldb_private::plugin::dwarf;
|
|
using namespace llvm::dwarf;
|
|
|
|
void ManualDWARFIndex::Index() {
|
|
std::call_once(m_indexed_flag, [this]() { IndexImpl(); });
|
|
}
|
|
|
|
void ManualDWARFIndex::IndexImpl() {
|
|
ElapsedTime elapsed(m_index_time);
|
|
LLDB_SCOPED_TIMERF("%p", static_cast<void *>(m_dwarf));
|
|
if (LoadFromCache()) {
|
|
m_dwarf->SetDebugInfoIndexWasLoadedFromCache();
|
|
return;
|
|
}
|
|
|
|
DWARFDebugInfo &main_info = m_dwarf->DebugInfo();
|
|
SymbolFileDWARFDwo *dwp_dwarf = m_dwarf->GetDwpSymbolFile().get();
|
|
DWARFDebugInfo *dwp_info = dwp_dwarf ? &dwp_dwarf->DebugInfo() : nullptr;
|
|
|
|
std::vector<DWARFUnit *> units_to_index;
|
|
units_to_index.reserve(main_info.GetNumUnits() +
|
|
(dwp_info ? dwp_info->GetNumUnits() : 0));
|
|
|
|
// Process all units in the main file, as well as any type units in the dwp
|
|
// file. Type units in dwo files are handled when we reach the dwo file in
|
|
// IndexUnit.
|
|
for (size_t U = 0; U < main_info.GetNumUnits(); ++U) {
|
|
DWARFUnit *unit = main_info.GetUnitAtIndex(U);
|
|
if (unit && m_units_to_avoid.count(unit->GetOffset()) == 0)
|
|
units_to_index.push_back(unit);
|
|
}
|
|
if (dwp_info && dwp_info->ContainsTypeUnits()) {
|
|
for (size_t U = 0; U < dwp_info->GetNumUnits(); ++U) {
|
|
if (auto *tu =
|
|
llvm::dyn_cast<DWARFTypeUnit>(dwp_info->GetUnitAtIndex(U))) {
|
|
if (!m_type_sigs_to_avoid.contains(tu->GetTypeHash()))
|
|
units_to_index.push_back(tu);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (units_to_index.empty())
|
|
return;
|
|
|
|
StreamString module_desc;
|
|
m_module.GetDescription(module_desc.AsRawOstream(),
|
|
lldb::eDescriptionLevelBrief);
|
|
|
|
// Include 2 passes per unit to index for extracting DIEs from the unit and
|
|
// indexing the unit, and then extra entries for finalizing each index in the
|
|
// set.
|
|
const auto indices = IndexSet<NameToDIE>::Indices();
|
|
const uint64_t total_progress = units_to_index.size() * 2 + indices.size();
|
|
Progress progress("Manually indexing DWARF", module_desc.GetData(),
|
|
total_progress, /*debugger=*/nullptr,
|
|
Progress::kDefaultHighFrequencyReportTime);
|
|
|
|
// Share one thread pool across operations to avoid the overhead of
|
|
// recreating the threads.
|
|
llvm::ThreadPoolTaskGroup task_group(Debugger::GetThreadPool());
|
|
const size_t num_threads = Debugger::GetThreadPool().getMaxConcurrency();
|
|
|
|
// Run a function for each compile unit in parallel using as many threads as
|
|
// are available. This is significantly faster than submiting a new task for
|
|
// each unit.
|
|
auto for_each_unit = [&](auto &&fn) {
|
|
std::atomic<size_t> next_cu_idx = 0;
|
|
auto wrapper = [&fn, &next_cu_idx, &units_to_index,
|
|
&progress](size_t worker_id) {
|
|
size_t cu_idx;
|
|
while ((cu_idx = next_cu_idx.fetch_add(1, std::memory_order_relaxed)) <
|
|
units_to_index.size()) {
|
|
fn(worker_id, cu_idx, units_to_index[cu_idx]);
|
|
progress.Increment();
|
|
}
|
|
};
|
|
|
|
for (size_t i = 0; i < num_threads; ++i)
|
|
task_group.async(wrapper, i);
|
|
|
|
task_group.wait();
|
|
};
|
|
|
|
// Extract dies for all DWARFs unit in parallel. Figure out which units
|
|
// didn't have their DIEs already parsed and remember this. If no DIEs were
|
|
// parsed prior to this index function call, we are going to want to clear the
|
|
// CU dies after we are done indexing to make sure we don't pull in all DWARF
|
|
// dies, but we need to wait until all units have been indexed in case a DIE
|
|
// in one unit refers to another and the indexes accesses those DIEs.
|
|
std::vector<std::optional<DWARFUnit::ScopedExtractDIEs>> clear_cu_dies(
|
|
units_to_index.size());
|
|
for_each_unit([&clear_cu_dies](size_t, size_t idx, DWARFUnit *unit) {
|
|
clear_cu_dies[idx] = unit->ExtractDIEsScoped();
|
|
});
|
|
|
|
// Now index all DWARF unit in parallel.
|
|
std::vector<IndexSet<NameToDIE>> sets(num_threads);
|
|
for_each_unit(
|
|
[this, dwp_dwarf, &sets](size_t worker_id, size_t, DWARFUnit *unit) {
|
|
IndexUnit(*unit, dwp_dwarf, sets[worker_id]);
|
|
});
|
|
|
|
// Merge partial indexes into a single index. Process each index in a set in
|
|
// parallel.
|
|
for (NameToDIE IndexSet<NameToDIE>::*index : indices) {
|
|
task_group.async([this, &sets, index, &progress]() {
|
|
NameToDIE &result = m_set.*index;
|
|
for (auto &set : sets)
|
|
result.Append(set.*index);
|
|
result.Finalize();
|
|
progress.Increment();
|
|
});
|
|
}
|
|
task_group.wait();
|
|
|
|
SaveToCache();
|
|
}
|
|
|
|
void ManualDWARFIndex::IndexUnit(DWARFUnit &unit, SymbolFileDWARFDwo *dwp,
|
|
IndexSet<NameToDIE> &set) {
|
|
Log *log = GetLog(DWARFLog::Lookups);
|
|
|
|
if (log) {
|
|
m_module.LogMessage(
|
|
log, "ManualDWARFIndex::IndexUnit for unit at .debug_info[{0:x16}]",
|
|
unit.GetOffset());
|
|
}
|
|
|
|
const LanguageType cu_language = SymbolFileDWARF::GetLanguage(unit);
|
|
|
|
// First check if the unit has a DWO ID. If it does then we only want to index
|
|
// the .dwo file or nothing at all. If we have a compile unit where we can't
|
|
// locate the .dwo/.dwp file we don't want to index anything from the skeleton
|
|
// compile unit because it is usally has no children unless
|
|
// -fsplit-dwarf-inlining was used at compile time. This option will add a
|
|
// copy of all DW_TAG_subprogram and any contained DW_TAG_inline_subroutine
|
|
// DIEs so that symbolication will still work in the absence of the .dwo/.dwp
|
|
// file, but the functions have no return types and all arguments and locals
|
|
// have been removed. So we don't want to index any of these hacked up
|
|
// function types. Types can still exist in the skeleton compile unit DWARF
|
|
// though as some functions have template parameter types and other things
|
|
// that cause extra copies of types to be included, but we should find these
|
|
// types in the .dwo file only as methods could have return types removed and
|
|
// we don't have to index incomplete types from the skeleton compile unit.
|
|
if (unit.GetDWOId()) {
|
|
// Index the .dwo or dwp instead of the skeleton unit.
|
|
if (SymbolFileDWARFDwo *dwo_symbol_file = unit.GetDwoSymbolFile()) {
|
|
// Type units in a dwp file are indexed separately, so we just need to
|
|
// process the split unit here. However, if the split unit is in a dwo
|
|
// file, then we need to process type units here.
|
|
if (dwo_symbol_file == dwp) {
|
|
IndexUnitImpl(unit.GetNonSkeletonUnit(), cu_language, set);
|
|
} else {
|
|
DWARFDebugInfo &dwo_info = dwo_symbol_file->DebugInfo();
|
|
for (size_t i = 0; i < dwo_info.GetNumUnits(); ++i)
|
|
IndexUnitImpl(*dwo_info.GetUnitAtIndex(i), cu_language, set);
|
|
}
|
|
return;
|
|
}
|
|
// This was a DWARF5 skeleton CU and the .dwo file couldn't be located.
|
|
if (unit.GetVersion() >= 5 && unit.IsSkeletonUnit())
|
|
return;
|
|
|
|
// Either this is a DWARF 4 + fission CU with the .dwo file
|
|
// missing, or it's a -gmodules pch or pcm. Try to detect the
|
|
// latter by checking whether the first DIE is a DW_TAG_module.
|
|
// If it's a pch/pcm, continue indexing it.
|
|
if (unit.GetDIE(unit.GetFirstDIEOffset()).GetFirstChild().Tag() !=
|
|
llvm::dwarf::DW_TAG_module)
|
|
return;
|
|
}
|
|
// We have a normal compile unit which we want to index.
|
|
IndexUnitImpl(unit, cu_language, set);
|
|
}
|
|
|
|
void ManualDWARFIndex::IndexUnitImpl(DWARFUnit &unit,
|
|
const LanguageType cu_language,
|
|
IndexSet<NameToDIE> &set) {
|
|
for (const DWARFDebugInfoEntry &die : unit.dies()) {
|
|
const dw_tag_t tag = die.Tag();
|
|
|
|
switch (tag) {
|
|
case DW_TAG_array_type:
|
|
case DW_TAG_base_type:
|
|
case DW_TAG_class_type:
|
|
case DW_TAG_constant:
|
|
case DW_TAG_enumeration_type:
|
|
case DW_TAG_inlined_subroutine:
|
|
case DW_TAG_namespace:
|
|
case DW_TAG_imported_declaration:
|
|
case DW_TAG_string_type:
|
|
case DW_TAG_structure_type:
|
|
case DW_TAG_subprogram:
|
|
case DW_TAG_subroutine_type:
|
|
case DW_TAG_typedef:
|
|
case DW_TAG_union_type:
|
|
case DW_TAG_unspecified_type:
|
|
case DW_TAG_variable:
|
|
break;
|
|
|
|
case DW_TAG_member:
|
|
// Only in DWARF 4 and earlier `static const` members of a struct, a class
|
|
// or a union have an entry tag `DW_TAG_member`
|
|
if (unit.GetVersion() >= 5)
|
|
continue;
|
|
break;
|
|
|
|
default:
|
|
continue;
|
|
}
|
|
|
|
const char *name = nullptr;
|
|
const char *mangled_cstr = nullptr;
|
|
bool is_declaration = false;
|
|
bool has_address = false;
|
|
bool has_location_or_const_value = false;
|
|
bool is_global_or_static_variable = false;
|
|
|
|
DWARFFormValue specification_die_form;
|
|
DWARFAttributes attributes = die.GetAttributes(&unit);
|
|
for (size_t i = 0; i < attributes.Size(); ++i) {
|
|
dw_attr_t attr = attributes.AttributeAtIndex(i);
|
|
DWARFFormValue form_value;
|
|
switch (attr) {
|
|
default:
|
|
break;
|
|
case DW_AT_name:
|
|
if (attributes.ExtractFormValueAtIndex(i, form_value))
|
|
name = form_value.AsCString();
|
|
break;
|
|
|
|
case DW_AT_declaration:
|
|
if (attributes.ExtractFormValueAtIndex(i, form_value))
|
|
is_declaration = form_value.Unsigned() != 0;
|
|
break;
|
|
|
|
case DW_AT_MIPS_linkage_name:
|
|
case DW_AT_linkage_name:
|
|
if (attributes.ExtractFormValueAtIndex(i, form_value))
|
|
mangled_cstr = form_value.AsCString();
|
|
break;
|
|
|
|
case DW_AT_low_pc:
|
|
case DW_AT_high_pc:
|
|
case DW_AT_ranges:
|
|
has_address = true;
|
|
break;
|
|
|
|
case DW_AT_entry_pc:
|
|
has_address = true;
|
|
break;
|
|
|
|
case DW_AT_location:
|
|
case DW_AT_const_value:
|
|
has_location_or_const_value = true;
|
|
is_global_or_static_variable = die.IsGlobalOrStaticScopeVariable();
|
|
|
|
break;
|
|
|
|
case DW_AT_specification:
|
|
if (attributes.ExtractFormValueAtIndex(i, form_value))
|
|
specification_die_form = form_value;
|
|
break;
|
|
}
|
|
}
|
|
|
|
DIERef ref = *DWARFDIE(&unit, &die).GetDIERef();
|
|
switch (tag) {
|
|
case DW_TAG_inlined_subroutine:
|
|
case DW_TAG_subprogram:
|
|
if (has_address) {
|
|
if (name) {
|
|
bool is_objc_method = false;
|
|
if (cu_language == eLanguageTypeObjC ||
|
|
cu_language == eLanguageTypeObjC_plus_plus) {
|
|
std::optional<const ObjCLanguage::ObjCMethodName> objc_method =
|
|
ObjCLanguage::ObjCMethodName::Create(name, true);
|
|
if (objc_method) {
|
|
is_objc_method = true;
|
|
ConstString class_name_with_category(
|
|
objc_method->GetClassNameWithCategory());
|
|
ConstString objc_selector_name(objc_method->GetSelector());
|
|
ConstString objc_fullname_no_category_name(
|
|
objc_method->GetFullNameWithoutCategory().c_str());
|
|
ConstString class_name_no_category(objc_method->GetClassName());
|
|
set.function_fullnames.Insert(ConstString(name), ref);
|
|
if (class_name_with_category)
|
|
set.objc_class_selectors.Insert(class_name_with_category, ref);
|
|
if (class_name_no_category &&
|
|
class_name_no_category != class_name_with_category)
|
|
set.objc_class_selectors.Insert(class_name_no_category, ref);
|
|
if (objc_selector_name)
|
|
set.function_selectors.Insert(objc_selector_name, ref);
|
|
if (objc_fullname_no_category_name)
|
|
set.function_fullnames.Insert(objc_fullname_no_category_name,
|
|
ref);
|
|
}
|
|
}
|
|
// If we have a mangled name, then the DW_AT_name attribute is
|
|
// usually the method name without the class or any parameters
|
|
bool is_method = DWARFDIE(&unit, &die).IsMethod();
|
|
|
|
if (is_method)
|
|
set.function_methods.Insert(ConstString(name), ref);
|
|
else
|
|
set.function_basenames.Insert(ConstString(name), ref);
|
|
|
|
if (!is_method && !mangled_cstr && !is_objc_method)
|
|
set.function_fullnames.Insert(ConstString(name), ref);
|
|
}
|
|
if (mangled_cstr) {
|
|
// Make sure our mangled name isn't the same string table entry as
|
|
// our name. If it starts with '_', then it is ok, else compare the
|
|
// string to make sure it isn't the same and we don't end up with
|
|
// duplicate entries
|
|
if (name && name != mangled_cstr &&
|
|
((mangled_cstr[0] == '_') ||
|
|
(::strcmp(name, mangled_cstr) != 0))) {
|
|
set.function_fullnames.Insert(ConstString(mangled_cstr), ref);
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
case DW_TAG_array_type:
|
|
case DW_TAG_base_type:
|
|
case DW_TAG_class_type:
|
|
case DW_TAG_constant:
|
|
case DW_TAG_enumeration_type:
|
|
case DW_TAG_string_type:
|
|
case DW_TAG_structure_type:
|
|
case DW_TAG_subroutine_type:
|
|
case DW_TAG_typedef:
|
|
case DW_TAG_union_type:
|
|
case DW_TAG_unspecified_type:
|
|
if (name && !is_declaration)
|
|
set.types.Insert(ConstString(name), ref);
|
|
if (mangled_cstr && !is_declaration)
|
|
set.types.Insert(ConstString(mangled_cstr), ref);
|
|
break;
|
|
|
|
case DW_TAG_namespace:
|
|
case DW_TAG_imported_declaration:
|
|
if (name)
|
|
set.namespaces.Insert(ConstString(name), ref);
|
|
break;
|
|
|
|
case DW_TAG_member: {
|
|
// In DWARF 4 and earlier `static const` members of a struct, a class or a
|
|
// union have an entry tag `DW_TAG_member`, and are also tagged as
|
|
// `DW_AT_declaration`, but otherwise follow the same rules as
|
|
// `DW_TAG_variable`.
|
|
bool parent_is_class_type = false;
|
|
if (auto parent = die.GetParent())
|
|
parent_is_class_type = DWARFDIE(&unit, parent).IsStructUnionOrClass();
|
|
if (!parent_is_class_type || !is_declaration)
|
|
break;
|
|
[[fallthrough]];
|
|
}
|
|
case DW_TAG_variable:
|
|
if (name && has_location_or_const_value && is_global_or_static_variable) {
|
|
set.globals.Insert(ConstString(name), ref);
|
|
// Be sure to include variables by their mangled and demangled names if
|
|
// they have any since a variable can have a basename "i", a mangled
|
|
// named "_ZN12_GLOBAL__N_11iE" and a demangled mangled name
|
|
// "(anonymous namespace)::i"...
|
|
|
|
// Make sure our mangled name isn't the same string table entry as our
|
|
// name. If it starts with '_', then it is ok, else compare the string
|
|
// to make sure it isn't the same and we don't end up with duplicate
|
|
// entries
|
|
if (mangled_cstr && name != mangled_cstr &&
|
|
((mangled_cstr[0] == '_') || (::strcmp(name, mangled_cstr) != 0))) {
|
|
set.globals.Insert(ConstString(mangled_cstr), ref);
|
|
}
|
|
}
|
|
break;
|
|
|
|
default:
|
|
continue;
|
|
}
|
|
}
|
|
}
|
|
|
|
void ManualDWARFIndex::GetGlobalVariables(
|
|
ConstString basename,
|
|
llvm::function_ref<IterationAction(DWARFDIE die)> callback) {
|
|
Index();
|
|
m_set.globals.Find(basename,
|
|
DIERefCallback(callback, basename.GetStringRef()));
|
|
}
|
|
|
|
void ManualDWARFIndex::GetGlobalVariables(
|
|
const RegularExpression ®ex,
|
|
llvm::function_ref<IterationAction(DWARFDIE die)> callback) {
|
|
Index();
|
|
m_set.globals.Find(regex, DIERefCallback(callback, regex.GetText()));
|
|
}
|
|
|
|
void ManualDWARFIndex::GetGlobalVariables(
|
|
DWARFUnit &unit,
|
|
llvm::function_ref<IterationAction(DWARFDIE die)> callback) {
|
|
Index();
|
|
m_set.globals.FindAllEntriesForUnit(unit, DIERefCallback(callback));
|
|
}
|
|
|
|
void ManualDWARFIndex::GetObjCMethods(
|
|
ConstString class_name,
|
|
llvm::function_ref<IterationAction(DWARFDIE die)> callback) {
|
|
Index();
|
|
m_set.objc_class_selectors.Find(
|
|
class_name, DIERefCallback(callback, class_name.GetStringRef()));
|
|
}
|
|
|
|
void ManualDWARFIndex::GetCompleteObjCClass(
|
|
ConstString class_name, bool must_be_implementation,
|
|
llvm::function_ref<IterationAction(DWARFDIE die)> callback) {
|
|
Index();
|
|
m_set.types.Find(class_name,
|
|
DIERefCallback(callback, class_name.GetStringRef()));
|
|
}
|
|
|
|
void ManualDWARFIndex::GetTypes(
|
|
ConstString name,
|
|
llvm::function_ref<IterationAction(DWARFDIE die)> callback) {
|
|
Index();
|
|
m_set.types.Find(name, DIERefCallback(callback, name.GetStringRef()));
|
|
}
|
|
|
|
void ManualDWARFIndex::GetTypes(
|
|
const DWARFDeclContext &context,
|
|
llvm::function_ref<IterationAction(DWARFDIE die)> callback) {
|
|
Index();
|
|
auto name = context[0].name;
|
|
m_set.types.Find(ConstString(name),
|
|
DIERefCallback(callback, llvm::StringRef(name)));
|
|
}
|
|
|
|
void ManualDWARFIndex::GetNamespaces(
|
|
ConstString name,
|
|
llvm::function_ref<IterationAction(DWARFDIE die)> callback) {
|
|
Index();
|
|
m_set.namespaces.Find(name, DIERefCallback(callback, name.GetStringRef()));
|
|
}
|
|
|
|
void ManualDWARFIndex::GetFunctions(
|
|
const Module::LookupInfo &lookup_info, SymbolFileDWARF &dwarf,
|
|
const CompilerDeclContext &parent_decl_ctx,
|
|
llvm::function_ref<IterationAction(DWARFDIE die)> callback) {
|
|
Index();
|
|
ConstString name = lookup_info.GetLookupName();
|
|
FunctionNameType name_type_mask = lookup_info.GetNameTypeMask();
|
|
|
|
if (name_type_mask & eFunctionNameTypeFull) {
|
|
if (!m_set.function_fullnames.Find(
|
|
name, DIERefCallback(
|
|
[&](DWARFDIE die) {
|
|
if (!SymbolFileDWARF::DIEInDeclContext(parent_decl_ctx,
|
|
die))
|
|
return IterationAction::Continue;
|
|
return callback(die);
|
|
},
|
|
name.GetStringRef())))
|
|
return;
|
|
}
|
|
if (name_type_mask & eFunctionNameTypeBase) {
|
|
if (!m_set.function_basenames.Find(
|
|
name, DIERefCallback(
|
|
[&](DWARFDIE die) {
|
|
if (!SymbolFileDWARF::DIEInDeclContext(parent_decl_ctx,
|
|
die))
|
|
return IterationAction::Continue;
|
|
return callback(die);
|
|
},
|
|
name.GetStringRef())))
|
|
return;
|
|
}
|
|
|
|
if (name_type_mask & eFunctionNameTypeMethod && !parent_decl_ctx.IsValid()) {
|
|
if (!m_set.function_methods.Find(
|
|
name, DIERefCallback(callback, name.GetStringRef())))
|
|
return;
|
|
}
|
|
|
|
if (name_type_mask & eFunctionNameTypeSelector &&
|
|
!parent_decl_ctx.IsValid()) {
|
|
if (!m_set.function_selectors.Find(
|
|
name, DIERefCallback(callback, name.GetStringRef())))
|
|
return;
|
|
}
|
|
}
|
|
|
|
void ManualDWARFIndex::GetFunctions(
|
|
const RegularExpression ®ex,
|
|
llvm::function_ref<IterationAction(DWARFDIE die)> callback) {
|
|
Index();
|
|
|
|
if (!m_set.function_basenames.Find(regex,
|
|
DIERefCallback(callback, regex.GetText())))
|
|
return;
|
|
if (!m_set.function_fullnames.Find(regex,
|
|
DIERefCallback(callback, regex.GetText())))
|
|
return;
|
|
}
|
|
|
|
void ManualDWARFIndex::Dump(Stream &s) {
|
|
s.Format("Manual DWARF index for ({0}) '{1:F}':",
|
|
m_module.GetArchitecture().GetArchitectureName(),
|
|
m_module.GetObjectFile()->GetFileSpec());
|
|
s.Printf("\nFunction basenames:\n");
|
|
m_set.function_basenames.Dump(&s);
|
|
s.Printf("\nFunction fullnames:\n");
|
|
m_set.function_fullnames.Dump(&s);
|
|
s.Printf("\nFunction methods:\n");
|
|
m_set.function_methods.Dump(&s);
|
|
s.Printf("\nFunction selectors:\n");
|
|
m_set.function_selectors.Dump(&s);
|
|
s.Printf("\nObjective-C class selectors:\n");
|
|
m_set.objc_class_selectors.Dump(&s);
|
|
s.Printf("\nGlobals and statics:\n");
|
|
m_set.globals.Dump(&s);
|
|
s.Printf("\nTypes:\n");
|
|
m_set.types.Dump(&s);
|
|
s.Printf("\nNamespaces:\n");
|
|
m_set.namespaces.Dump(&s);
|
|
}
|
|
|
|
bool ManualDWARFIndex::Decode(const DataExtractor &data,
|
|
lldb::offset_t *offset_ptr,
|
|
bool &signature_mismatch) {
|
|
signature_mismatch = false;
|
|
CacheSignature signature;
|
|
if (!signature.Decode(data, offset_ptr))
|
|
return false;
|
|
if (CacheSignature(m_dwarf->GetObjectFile()) != signature) {
|
|
signature_mismatch = true;
|
|
return false;
|
|
}
|
|
std::optional<IndexSet<NameToDIE>> set = DecodeIndexSet(data, offset_ptr);
|
|
if (!set)
|
|
return false;
|
|
m_set = std::move(*set);
|
|
return true;
|
|
}
|
|
|
|
bool ManualDWARFIndex::Encode(DataEncoder &encoder) const {
|
|
CacheSignature signature(m_dwarf->GetObjectFile());
|
|
if (!signature.Encode(encoder))
|
|
return false;
|
|
EncodeIndexSet(m_set, encoder);
|
|
return true;
|
|
}
|
|
|
|
bool ManualDWARFIndex::IsPartial() const {
|
|
// If we have units or type units to skip, then this index is partial.
|
|
return !m_units_to_avoid.empty() || !m_type_sigs_to_avoid.empty();
|
|
}
|
|
|
|
std::string ManualDWARFIndex::GetCacheKey() {
|
|
std::string key;
|
|
llvm::raw_string_ostream strm(key);
|
|
// DWARF Index can come from different object files for the same module. A
|
|
// module can have one object file as the main executable and might have
|
|
// another object file in a separate symbol file, or we might have a .dwo file
|
|
// that claims its module is the main executable.
|
|
|
|
// This class can be used to index all of the DWARF, or part of the DWARF
|
|
// when there is a .debug_names index where some compile or type units were
|
|
// built without .debug_names. So we need to know when we have a full manual
|
|
// DWARF index or a partial manual DWARF index and save them to different
|
|
// cache files. Before this fix we might end up debugging a binary with
|
|
// .debug_names where some of the compile or type units weren't indexed, and
|
|
// find an issue with the .debug_names tables (bugs or being incomplete), and
|
|
// then we disable loading the .debug_names by setting a setting in LLDB by
|
|
// running "settings set plugin.symbol-file.dwarf.ignore-file-indexes 0" in
|
|
// another LLDB instance. The problem arose when there was an index cache from
|
|
// a previous run where .debug_names was enabled and it had saved a cache file
|
|
// that only covered the missing compile and type units from the .debug_names,
|
|
// and with the setting that disables the loading of the cache files we would
|
|
// load partial cache index cache. So we need to pick a unique cache suffix
|
|
// name that indicates if the cache is partial or full to avoid this problem.
|
|
llvm::StringRef dwarf_index_suffix(IsPartial() ? "partial-" : "full-");
|
|
ObjectFile *objfile = m_dwarf->GetObjectFile();
|
|
strm << objfile->GetModule()->GetCacheKey() << "-dwarf-index-"
|
|
<< dwarf_index_suffix << llvm::format_hex(objfile->GetCacheHash(), 10);
|
|
return key;
|
|
}
|
|
|
|
bool ManualDWARFIndex::LoadFromCache() {
|
|
DataFileCache *cache = Module::GetIndexCache();
|
|
if (!cache)
|
|
return false;
|
|
ObjectFile *objfile = m_dwarf->GetObjectFile();
|
|
if (!objfile)
|
|
return false;
|
|
std::unique_ptr<llvm::MemoryBuffer> mem_buffer_up =
|
|
cache->GetCachedData(GetCacheKey());
|
|
if (!mem_buffer_up)
|
|
return false;
|
|
DataExtractor data(mem_buffer_up->getBufferStart(),
|
|
mem_buffer_up->getBufferSize(),
|
|
endian::InlHostByteOrder(),
|
|
objfile->GetAddressByteSize());
|
|
bool signature_mismatch = false;
|
|
lldb::offset_t offset = 0;
|
|
const bool result = Decode(data, &offset, signature_mismatch);
|
|
if (signature_mismatch)
|
|
cache->RemoveCacheFile(GetCacheKey());
|
|
return result;
|
|
}
|
|
|
|
void ManualDWARFIndex::SaveToCache() {
|
|
DataFileCache *cache = Module::GetIndexCache();
|
|
if (!cache)
|
|
return; // Caching is not enabled.
|
|
ObjectFile *objfile = m_dwarf->GetObjectFile();
|
|
if (!objfile)
|
|
return;
|
|
DataEncoder file(endian::InlHostByteOrder(), objfile->GetAddressByteSize());
|
|
// Encode will return false if the object file doesn't have anything to make
|
|
// a signature from.
|
|
if (Encode(file)) {
|
|
if (cache->SetCachedData(GetCacheKey(), file.GetData()))
|
|
m_dwarf->SetDebugInfoIndexWasSavedToCache();
|
|
}
|
|
}
|