[Lldb-commits] [PATCH] D62852: Ignore DIEs in the skeleton unit in a DWO scenario
Greg Clayton via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Jun 4 07:03:26 PDT 2019
clayborg added inline comments.
================
Comment at: source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp:243-251
+ // With -fsplit-dwarf-inlining, clang will emit non-empty skeleton compile
+ // units. We are not able to access these DIE *and* the dwo file
+ // simultaneously. We also don't need to do that as the dwo file will
+ // contain a superset of information. So, we just delete these extra DIEs
+ // (if any) and reclaim some space.
+ m_die_array.resize(1);
+ m_die_array.shrink_to_fit();
----------------
Can we detect and just not parse in the first place so we don't parse then throw away?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D62852/new/
https://reviews.llvm.org/D62852
More information about the lldb-commits
mailing list