[Lldb-commits] [PATCH] D96238: [lldb] [nfc] DWZ 03/08: rename TypeUnitSupportFiles -> SharedUnitSupportFiles
Jan Kratochvil via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri Mar 12 11:33:16 PST 2021
jankratochvil updated this revision to Diff 330323.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D96238/new/
https://reviews.llvm.org/D96238
Files:
lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
Index: lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
===================================================================
--- lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
+++ lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
@@ -490,7 +490,7 @@
void FindDwpSymbolFile();
- const lldb_private::FileSpecList &GetTypeUnitSupportFiles(DWARFTypeUnit &tu);
+ const lldb_private::FileSpecList &GetSharedUnitSupportFiles(DWARFUnit &tu);
lldb::ModuleWP m_debug_map_module_wp;
SymbolFileDWARFDebugMap *m_debug_map_symfile;
@@ -525,7 +525,7 @@
DIEToClangType m_forward_decl_die_to_clang_type;
ClangTypeToDIE m_forward_decl_clang_type_to_die;
llvm::DenseMap<dw_offset_t, lldb_private::FileSpecList>
- m_type_unit_support_files;
+ m_shared_unit_support_files;
std::vector<uint32_t> m_lldb_cu_to_dwarf_unit;
};
Index: lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
===================================================================
--- lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
+++ lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
@@ -913,15 +913,14 @@
return FileSpec();
}
- auto &tu = llvm::cast<DWARFTypeUnit>(unit);
- return GetTypeUnitSupportFiles(tu).GetFileSpecAtIndex(file_idx);
+ return GetSharedUnitSupportFiles(unit).GetFileSpecAtIndex(file_idx);
}
const FileSpecList &
-SymbolFileDWARF::GetTypeUnitSupportFiles(DWARFTypeUnit &tu) {
+SymbolFileDWARF::GetSharedUnitSupportFiles(DWARFUnit &unit) {
static FileSpecList empty_list;
- dw_offset_t offset = tu.GetLineTableOffset();
+ dw_offset_t offset = unit.GetLineTableOffset();
if (offset == DW_INVALID_OFFSET ||
offset == llvm::DenseMapInfo<dw_offset_t>::getEmptyKey() ||
offset == llvm::DenseMapInfo<dw_offset_t>::getTombstoneKey())
@@ -929,7 +928,7 @@
// Many type units can share a line table, so parse the support file list
// once, and cache it based on the offset field.
- auto iter_bool = m_type_unit_support_files.try_emplace(offset);
+ auto iter_bool = m_shared_unit_support_files.try_emplace(offset);
FileSpecList &list = iter_bool.first->second;
if (iter_bool.second) {
uint64_t line_table_offset = offset;
@@ -938,16 +937,17 @@
llvm::DWARFDebugLine::Prologue prologue;
auto report = [](llvm::Error error) {
Log *log = LogChannelDWARF::GetLogIfAll(DWARF_LOG_DEBUG_INFO);
- LLDB_LOG_ERROR(log, std::move(error),
- "SymbolFileDWARF::GetTypeUnitSupportFiles failed to parse "
- "the line table prologue");
+ LLDB_LOG_ERROR(
+ log, std::move(error),
+ "SymbolFileDWARF::GetSharedUnitSupportFiles failed to parse "
+ "the line table prologue");
};
llvm::Error error = prologue.parse(data, &line_table_offset, report, ctx);
if (error) {
report(std::move(error));
} else {
list = ParseSupportFilesFromPrologue(GetObjectFile()->GetModule(),
- prologue, tu.GetPathStyle());
+ prologue, unit.GetPathStyle());
}
}
return list;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D96238.330323.patch
Type: text/x-patch
Size: 3157 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20210312/f6cbcfe5/attachment.bin>
More information about the lldb-commits
mailing list