[Lldb-commits] [lldb] Improve performance of .debug_names lookups when DW_IDX_parent attributes are used (PR #91808)
Felipe de Azevedo Piovezan via lldb-commits
lldb-commits at lists.llvm.org
Thu May 23 08:40:42 PDT 2024
felipepiovezan wrote:
> Current BOLT behavior is to skip that DIE and reference it's parent:
This, on the other hand, is concerning. It needs to reflect the debug_info section, otherwise we can't use debug_names to answer queries like "find A::B::C::D".
It would be better if the BOLT compiler produced either a "parent_not_indexed" entry, or no parent at all, or implement the nameless parent. All of these allow LLDB to correctly answer the query above, but what BOLT is currently doing does not
https://github.com/llvm/llvm-project/pull/91808
More information about the lldb-commits
mailing list