[Lldb-commits] [PATCH] D87172: Check if debug line sequences are starting after the first code segment
António Afonso via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri Sep 4 16:58:06 PDT 2020
aadsm created this revision.
aadsm added reviewers: clayborg, labath.
Herald added subscribers: lldb-commits, mgorny.
Herald added a project: LLDB.
aadsm requested review of this revision.
Herald added a reviewer: jdoerfert.
Herald added subscribers: sstefan1, JDevlieghere.
I found a few cases where entries in the debug_line for a specific line of code have invalid entries (the address is outside of a code section or no section at all) and also valid entries. When this happens lldb might not set the breakpoint because the first line entry it will find in the line table might be the invalid one and since it's range is "invalid" no location is resolved. To get around this I changed the way we parse the line sequences to ignore those starting at an address under the first code segment.
Greg suggested to implement it this way so we don't need to check all sections for every line sequence.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D87172
Files:
lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
lldb/unittests/SymbolFile/DWARF/CMakeLists.txt
lldb/unittests/SymbolFile/DWARF/Inputs/test-invalid-offsets.yaml
lldb/unittests/SymbolFile/DWARF/SymbolFileDWARFTests.cpp
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D87172.290049.patch
Type: text/x-patch
Size: 30222 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20200904/cb083674/attachment-0001.bin>
More information about the lldb-commits
mailing list