[Lldb-commits] [lldb] [lldb][Dwarf] Fix dwarf parse time for line table and .debug_abbrev. (PR #86568)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Mon Mar 25 13:11:25 PDT 2024
================
@@ -1228,10 +1231,9 @@ bool SymbolFileDWARF::ParseLineTable(CompileUnit &comp_unit) {
if (offset == DW_INVALID_OFFSET)
return false;
- ElapsedTime elapsed(m_parse_time);
----------------
clayborg wrote:
We want this to stay in this function so it measures all of the work done by lldb. `m_parse_time` measures both how long it takes us to parse the information, but also should include any needed work to make this data usable for LLDB.
https://github.com/llvm/llvm-project/pull/86568
More information about the lldb-commits
mailing list