[Lldb-commits] [PATCH] D32167: Add support for type units (.debug_types) to LLDB in a way that is compatible with DWARF 5

Paul Robinson via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu May 10 12:41:25 PDT 2018


probinson added a comment.

I can't coment on the xcode and python parts.  The C++ all looks plausible.
I think the "sliding" trick will be trickier in the LLVM parser, as it has to handle .o files (which might have multiple instances of .debug_types in v4, and multiple instances of .debug_info in v5) but is conceptually nice.  The sliding should be kept to DWARFDataExtractor and not pushed down into DataExtractor, IMO, because the problem is (I think) pretty specific to DWARF.


https://reviews.llvm.org/D32167





More information about the lldb-commits mailing list