S390: Add use of unavailable-stack frame ID
authorAndreas Arnez <arnez@linux.vnet.ibm.com>
Wed, 9 Mar 2016 16:12:29 +0000 (17:12 +0100)
committerAndreas Arnez <arnez@linux.vnet.ibm.com>
Wed, 9 Mar 2016 16:12:29 +0000 (17:12 +0100)
commit6d53bec88f4c1576f74e918400aa2ccac2d129db
tree2ee18c5955d794128f61851aa8414c7b6ecec9f7
parentf7990f1690e9ef0471634c871c790f6cf706866d
S390: Add use of unavailable-stack frame ID

When determining the frame ID of an inline frame, GDB currently asserts
that a valid ID of the underlying real frame is found, and that it does
not match outer_frame_id.  From inline_frame_this_id():

  /* For now, require we don't match outer_frame_id either (see
     comment above).  */
  gdb_assert (!frame_id_eq (*this_id, outer_frame_id));

However, this assertion may fail when the real frame's unwinder can not
determine the frame ID.  This happened on an s390x target with a binary
that lacked call frame information and also confused the prologue
analyzer, because then s390_frame_this_id() left the frame ID at its
default.

To fix this, this change enhances s390_frame_this_id such that an
unavailable-stack frame ID is built if no frame base can be determined
but the function address is available.

gdb/ChangeLog:

* s390-linux-tdep.c (s390_prologue_frame_unwind_cache): Store
frame func's PC in info->func before any other failure can occur.
(s390_frame_this_id): Use frame_id_build_unavailable_stack if
info->func has been filled out.
gdb/ChangeLog
gdb/s390-linux-tdep.c
This page took 0.027385 seconds and 4 git commands to generate.