From: Andrew Burgess <aburgess@redhat.com>
To: gdb-patches@sourceware.org
Cc: Andrew Burgess <aburgess@redhat.com>
Subject: [PATCHv8 0/4] gdb: allow 'until' to work in outermost frame
Date: Mon, 20 Jul 2026 10:52:16 +0100 [thread overview]
Message-ID: <cover.1784541057.git.aburgess@redhat.com> (raw)
In-Reply-To: <cover.1784380038.git.aburgess@redhat.com>
In v8:
- Fix for an ARM issue that Linaro CI found. Strip the THUMB bit
from 'objdump -f' entry pc value before comparing it to addresses
read from the $pc register inside GDB.
In v7:
- Addressed Simon's feedback for patch #2. Changes are all minor,
and this patch now has Simon's Approved-By tag.
- While addressing feedback on patch #3 I realised that the approach
taken wouldn't work. Simon pointed out that setting the frame
stop reason was incorrect, but removing that ended up triggering
some assertion failures. As a result I had to take a different
approach with this patch. This is the patch that changed the most.
- Commit message for patch #4 is updated after changes to patch #3.
- Some improvements to testing in both #2 and #3. All pretty minor
though.
- Rebased to HEAD of master branch and retested.
In v6:
- More adjustments to the test in patch #2 to address issues the
Linaro CI testing highlighted. Nothing serious, just minor tweaks
to some patterns to handle different output patterns.
- Rebased to HEAD.
In v5:
- Update to test in patch #2 to allow the test to work on machines
that build PIE by default. I actually extended the test to build
both PIE and non-PIE executables, and test with both.
In v4:
- Rebase to current HEAD of master.
- In patch #2, added a supports_process_entry_point proc as
suggested by Pedro, and make use of this in the new test.
Updates to address review comments from v2 series:
- Doc updates based on Eli's feedback.
- Patch #2:
+ Avoid swallowing Ctrl-C in try/catch. That whole try/catch
block has been removed in v3, so problem sorted!
+ Rewrote entry address calculation as suggested by Pedro, now
pulls all required information from the inferior.
+ Use 'objdump -f' rather than readelf to get the entry address in
the test.
+ Added a helper proc for is_svr4_target, which includes a larger
list of targets beyond just Linux. This is then used in the test.
+ Test updated to use -lbl flag in gdb_test_multiple.
- Patch #3:
+ Use 'frame' rather than 'bt 1'
+ Loosen the test regexp after the 'starti' command, this should
now work on Windows targets, or any target with multiple threads
at startup.
+ Test updated to use -lbl in gdb_test_multiple.
- In patch #3 the entry frame detection is moved from
`frame_unwind_caller_frame` into `get_prev_frame_always`, I hope
this will address Guinevere's concerns about having to add the
additional entry frame detection in multiple locations. Guinevere
also had some concerns about the naming of existing functions
(i.e. not things added by me in this commit), I don't plan to make
any naming changes to the get_prev_frame* functions in this series.
- Patch #4 is new, this adds some caching to avoid repeatedly
looking up the entry address. The new approach requires reading
target memory, which can be expensive, especially on remote
targets.
---
Andrew Burgess (4):
gdb: rename program_space::entry_point_address* functions
gdb: introduce program_space::get_entry_point_info function
gdb: allow 'until' to work in outermost frame
gdb: cache program space entry point information
gdb/NEWS | 7 +
gdb/arc-tdep.c | 2 +-
gdb/arch-utils.c | 2 +-
gdb/doc/gdb.texinfo | 22 ++
gdb/frame.c | 74 ++++-
gdb/infcall.c | 2 +-
gdb/linux-tdep.c | 2 +-
gdb/progspace.c | 105 ++++++-
gdb/progspace.h | 68 ++++-
gdb/solib-frv.c | 2 +-
gdb/solib-svr4.c | 85 ++++++
gdb/solib-svr4.h | 1 +
gdb/solib.h | 14 +
gdb/testsuite/gdb.base/bt-after-starti.exp | 259 ++++++++++++++++++
gdb/testsuite/gdb.base/until-in-entry-frame.c | 22 ++
.../gdb.base/until-in-entry-frame.exp | 173 ++++++++++++
gdb/testsuite/lib/gdb.exp | 39 +++
17 files changed, 850 insertions(+), 29 deletions(-)
create mode 100644 gdb/testsuite/gdb.base/bt-after-starti.exp
create mode 100644 gdb/testsuite/gdb.base/until-in-entry-frame.c
create mode 100644 gdb/testsuite/gdb.base/until-in-entry-frame.exp
base-commit: ca8bf5f5dd69eba877e74ca8bc0796388070401f
--
2.25.4
next prev parent reply other threads:[~2026-07-20 9:52 UTC|newest]
Thread overview: 54+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-08 18:14 [PATCH] " Andrew Burgess
2026-06-11 19:24 ` Guinevere Larsen
2026-06-11 20:40 ` Andrew Burgess
2026-06-12 12:49 ` Guinevere Larsen
2026-06-11 21:59 ` [PATCHv2 0/3] " Andrew Burgess
2026-06-11 21:59 ` [PATCHv2 1/3] gdb: rename program_space::entry_point_address* functions Andrew Burgess
2026-06-12 15:41 ` Pedro Alves
2026-06-11 21:59 ` [PATCHv2 2/3] gdb: introduce program_space::get_entry_point_info function Andrew Burgess
2026-06-12 6:07 ` Eli Zaretskii
2026-06-15 10:14 ` Andrew Burgess
2026-06-15 12:01 ` Eli Zaretskii
2026-06-12 15:41 ` Pedro Alves
2026-06-15 10:29 ` Andrew Burgess
2026-06-16 18:36 ` Pedro Alves
2026-06-23 9:46 ` Andrew Burgess
2026-06-23 10:20 ` Pedro Alves
2026-06-11 21:59 ` [PATCHv2 3/3] gdb: allow 'until' to work in outermost frame Andrew Burgess
2026-06-12 15:57 ` Pedro Alves
2026-06-16 19:47 ` [PATCHv3 0/4] " Andrew Burgess
2026-06-16 19:47 ` [PATCHv3 1/4] gdb: rename program_space::entry_point_address* functions Andrew Burgess
2026-06-16 19:47 ` [PATCHv3 2/4] gdb: introduce program_space::get_entry_point_info function Andrew Burgess
2026-06-17 11:52 ` Eli Zaretskii
2026-06-16 19:47 ` [PATCHv3 3/4] gdb: allow 'until' to work in outermost frame Andrew Burgess
2026-06-16 19:47 ` [PATCHv3 4/4] gdb: cache program space entry point information Andrew Burgess
2026-06-23 10:47 ` [PATCHv4 0/4] gdb: allow 'until' to work in outermost frame Andrew Burgess
2026-06-23 10:47 ` [PATCHv4 1/4] gdb: rename program_space::entry_point_address* functions Andrew Burgess
2026-06-23 10:47 ` [PATCHv4 2/4] gdb: introduce program_space::get_entry_point_info function Andrew Burgess
2026-06-23 10:47 ` [PATCHv4 3/4] gdb: allow 'until' to work in outermost frame Andrew Burgess
2026-06-23 10:47 ` [PATCHv4 4/4] gdb: cache program space entry point information Andrew Burgess
2026-06-25 15:26 ` [PATCHv5 0/4] gdb: allow 'until' to work in outermost frame Andrew Burgess
2026-06-25 15:26 ` [PATCHv5 1/4] gdb: rename program_space::entry_point_address* functions Andrew Burgess
2026-06-25 15:26 ` [PATCHv5 2/4] gdb: introduce program_space::get_entry_point_info function Andrew Burgess
2026-06-25 15:26 ` [PATCHv5 3/4] gdb: allow 'until' to work in outermost frame Andrew Burgess
2026-06-25 15:26 ` [PATCHv5 4/4] gdb: cache program space entry point information Andrew Burgess
2026-07-10 14:24 ` [PATCHv6 0/4] gdb: allow 'until' to work in outermost frame Andrew Burgess
2026-07-10 14:24 ` [PATCHv6 1/4] gdb: rename program_space::entry_point_address* functions Andrew Burgess
2026-07-10 14:24 ` [PATCHv6 2/4] gdb: introduce program_space::get_entry_point_info function Andrew Burgess
2026-07-10 15:39 ` Simon Marchi
2026-07-10 14:24 ` [PATCHv6 3/4] gdb: allow 'until' to work in outermost frame Andrew Burgess
2026-07-10 17:00 ` Simon Marchi
2026-07-10 17:01 ` Simon Marchi
2026-07-16 15:06 ` Andrew Burgess
2026-07-10 14:24 ` [PATCHv6 4/4] gdb: cache program space entry point information Andrew Burgess
2026-07-10 17:07 ` Simon Marchi
2026-07-18 13:11 ` [PATCHv7 0/4] gdb: allow 'until' to work in outermost frame Andrew Burgess
2026-07-18 13:11 ` [PATCHv7 1/4] gdb: rename program_space::entry_point_address* functions Andrew Burgess
2026-07-18 13:11 ` [PATCHv7 2/4] gdb: introduce program_space::get_entry_point_info function Andrew Burgess
2026-07-18 13:11 ` [PATCHv7 3/4] gdb: allow 'until' to work in outermost frame Andrew Burgess
2026-07-18 13:11 ` [PATCHv7 4/4] gdb: cache program space entry point information Andrew Burgess
2026-07-20 9:52 ` Andrew Burgess [this message]
2026-07-20 9:52 ` [PATCHv8 1/4] gdb: rename program_space::entry_point_address* functions Andrew Burgess
2026-07-20 9:52 ` [PATCHv8 2/4] gdb: introduce program_space::get_entry_point_info function Andrew Burgess
2026-07-20 9:52 ` [PATCHv8 3/4] gdb: allow 'until' to work in outermost frame Andrew Burgess
2026-07-20 9:52 ` [PATCHv8 4/4] gdb: cache program space entry point information Andrew Burgess
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1784541057.git.aburgess@redhat.com \
--to=aburgess@redhat.com \
--cc=gdb-patches@sourceware.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox