forked from Imagelibrary/binutils-gdb
gdb: cleanup around some set_momentary_breakpoint_at_pc calls
I noticed a couple of places in infrun.c where we call set_momentary_breakpoint_at_pc, and then set the newly created breakpoint's thread field, these are in: insert_exception_resume_breakpoint insert_exception_resume_from_probe Function set_momentary_breakpoint_at_pc calls set_momentary_breakpoint, which always creates the breakpoint as thread-specific for the current inferior_thread(). The two insert_* functions mentioned above take an arbitrary thread_info* as an argument and set the breakpoint::thread to hold the thread number of that arbitrary thread. However, the insert_* functions store the breakpoint pointer within the current inferior_thread(), so we know that the thread being passed in must be the currently selected thread. What this means is that we can: 1. Assert that the thread being passed in is the currently selected thread, and 2. No longer adjust the breakpoint::thread field, this will already have been set correctly be calling set_momentary_breakpoint_at_pc. There should be no user visible changes after this commit.
This commit is contained in:
12
gdb/infrun.c
12
gdb/infrun.c
@@ -8190,6 +8190,9 @@ insert_exception_resume_breakpoint (struct thread_info *tp,
|
||||
infrun_debug_printf ("exception resume at %lx",
|
||||
(unsigned long) handler);
|
||||
|
||||
/* set_momentary_breakpoint_at_pc creates a thread-specific
|
||||
breakpoint for the current inferior thread. */
|
||||
gdb_assert (tp == inferior_thread ());
|
||||
bp = set_momentary_breakpoint_at_pc (get_frame_arch (frame),
|
||||
handler,
|
||||
bp_exception_resume).release ();
|
||||
@@ -8197,8 +8200,7 @@ insert_exception_resume_breakpoint (struct thread_info *tp,
|
||||
/* set_momentary_breakpoint_at_pc invalidates FRAME. */
|
||||
frame = nullptr;
|
||||
|
||||
bp->thread = tp->global_num;
|
||||
inferior_thread ()->control.exception_resume_breakpoint = bp;
|
||||
tp->control.exception_resume_breakpoint = bp;
|
||||
}
|
||||
}
|
||||
catch (const gdb_exception_error &e)
|
||||
@@ -8228,10 +8230,12 @@ insert_exception_resume_from_probe (struct thread_info *tp,
|
||||
infrun_debug_printf ("exception resume at %s",
|
||||
paddress (probe->objfile->arch (), handler));
|
||||
|
||||
/* set_momentary_breakpoint_at_pc creates a thread-specific breakpoint
|
||||
for the current inferior thread. */
|
||||
gdb_assert (tp == inferior_thread ());
|
||||
bp = set_momentary_breakpoint_at_pc (get_frame_arch (frame),
|
||||
handler, bp_exception_resume).release ();
|
||||
bp->thread = tp->global_num;
|
||||
inferior_thread ()->control.exception_resume_breakpoint = bp;
|
||||
tp->control.exception_resume_breakpoint = bp;
|
||||
}
|
||||
|
||||
/* This is called when an exception has been intercepted. Check to
|
||||
|
||||
Reference in New Issue
Block a user