[Lldb-commits] [PATCH] D46576: [DWARF] Align non-accelerated function fullname searching with the apple-tables path
Greg Clayton via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue May 8 10:13:04 PDT 2018
clayborg added a comment.
the class would be something like:
class DWARFIndex {
virtual bool Initialize(SymbolFileDWARF &dwarf); // Do manual indexing, or load indexes. Return true if successful (found apple tables, DWARF 5 tables, or had debug info to manually index)
virtual ... Lookup(ConstString name, type, etc);
};
https://reviews.llvm.org/D46576
More information about the lldb-commits
mailing list