aboutsummaryrefslogtreecommitdiff
path: root/gdb/dwarf2
diff options
context:
space:
mode:
authorJan Vrany <jan.vrany@labware.com>2022-12-08 11:30:25 +0000
committerJan Vrany <jan.vrany@labware.com>2022-12-08 11:30:25 +0000
commit05a1f6468ea806239f0cd5605732a09023a90e0a (patch)
tree4b4e58b5493b370789a7636a0f4db009fe7e11df /gdb/dwarf2
parent57336e2e4d05eaac6367400e6ce3aed24f838f2c (diff)
downloadgdb-05a1f6468ea806239f0cd5605732a09023a90e0a.zip
gdb-05a1f6468ea806239f0cd5605732a09023a90e0a.tar.gz
gdb-05a1f6468ea806239f0cd5605732a09023a90e0a.tar.bz2
gdb: skip objfiles with no BFD in DWARF unwinder
While playing with JIT reader I experienced GDB to crash on null-pointer dereference when stepping through non-jitted code. The problem was that dwarf2_frame_find_fde () assumed that all objfiles have BFD but that's not always true. To address this problem, this commit skips such objfiles. To test the fix we put breakpoint in jit_function_add (). The JIT reader does not know how unwind this function so unwinding eventually falls back to DWARF unwinder which in turn iterates over objfiles. Since the the code is jitted, it is guaranteed it would eventually process JIT objfile. Approved-By: Simon Marchi <simon.marchi@efficios.com>
Diffstat (limited to 'gdb/dwarf2')
-rw-r--r--gdb/dwarf2/frame.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/dwarf2/frame.c b/gdb/dwarf2/frame.c
index 3f884ab..54a0912 100644
--- a/gdb/dwarf2/frame.c
+++ b/gdb/dwarf2/frame.c
@@ -1560,6 +1560,9 @@ dwarf2_frame_find_fde (CORE_ADDR *pc, dwarf2_per_objfile **out_per_objfile)
CORE_ADDR offset;
CORE_ADDR seek_pc;
+ if (objfile->obfd == nullptr)
+ continue;
+
comp_unit *unit = find_comp_unit (objfile);
if (unit == NULL)
{