2007-06-26 04:37:05 +00:00
|
|
|
2007-06-25 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
* inferior.h (enum resume_step): New definition.
|
|
|
|
(resume): Change STEP parameter type to ENUM RESUME_STEP.
|
|
|
|
* infrun.c (resume): Likewise. Extend debug printing of the STEP
|
|
|
|
parameter. Lock the scheduler only for intentional stepping.
|
|
|
|
(proceed): Replace the variable ONESTEP with tristate RESUME_STEP.
|
|
|
|
Set the third RESUME_STEP state according to BPSTAT_SHOULD_STEP.
|
|
|
|
(currently_stepping): Change the return type to ENUM RESUME_STEP.
|
|
|
|
Return RESUME_STEP_NEEDED if it is just due to BPSTAT_SHOULD_STEP.
|
|
|
|
* linux-nat.c (select_singlestep_lwp_callback): Do not focus on
|
|
|
|
the software watchpoint events.
|
|
|
|
* linux-nat.h (struct lwp_info): Redeclare STEP as ENUM RESUME_STEP.
|
|
|
|
|
2007-10-19 00:12:58 +00:00
|
|
|
2007-10-19 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
* infrun.c (proceed): RESUME_STEP initialized for non-stepping.
|
|
|
|
RESUME_STEP set according to STEP only at the end of the function.
|
|
|
|
|
2008-03-03 16:13:47 +00:00
|
|
|
2008-02-24 Jan Kratochvil <jan.kratochvil@redhat.com>
|
|
|
|
|
|
|
|
Port to GDB-6.8pre.
|
|
|
|
|
2011-01-01 00:27:30 +00:00
|
|
|
Index: gdb-7.2.50.20101231/gdb/inferior.h
|
2008-03-03 16:13:47 +00:00
|
|
|
===================================================================
|
2011-01-01 00:27:30 +00:00
|
|
|
--- gdb-7.2.50.20101231.orig/gdb/inferior.h 2011-01-01 01:25:01.000000000 +0100
|
|
|
|
+++ gdb-7.2.50.20101231/gdb/inferior.h 2011-01-01 01:25:16.000000000 +0100
|
|
|
|
@@ -186,7 +186,15 @@ extern void reopen_exec_file (void);
|
2007-06-21 05:22:01 +00:00
|
|
|
/* The `resume' routine should only be called in special circumstances.
|
|
|
|
Normally, use `proceed', which handles a lot of bookkeeping. */
|
|
|
|
|
|
|
|
-extern void resume (int, enum target_signal);
|
|
|
|
+enum resume_step
|
|
|
|
+ {
|
|
|
|
+ /* currently_stepping () should return non-zero for non-continue. */
|
|
|
|
+ RESUME_STEP_CONTINUE = 0,
|
|
|
|
+ RESUME_STEP_USER, /* Stepping is intentional by the user. */
|
|
|
|
+ RESUME_STEP_NEEDED /* Stepping only for software watchpoints. */
|
|
|
|
+ };
|
|
|
|
+
|
|
|
|
+extern void resume (enum resume_step, enum target_signal);
|
|
|
|
|
|
|
|
/* From misc files */
|
|
|
|
|
2011-01-01 00:27:30 +00:00
|
|
|
Index: gdb-7.2.50.20101231/gdb/infrun.c
|
2008-03-03 16:13:47 +00:00
|
|
|
===================================================================
|
2011-01-01 00:27:30 +00:00
|
|
|
--- gdb-7.2.50.20101231.orig/gdb/infrun.c 2011-01-01 01:25:01.000000000 +0100
|
|
|
|
+++ gdb-7.2.50.20101231/gdb/infrun.c 2011-01-01 01:25:29.000000000 +0100
|
|
|
|
@@ -76,7 +76,7 @@ static int follow_fork (void);
|
2008-12-14 14:05:20 +00:00
|
|
|
static void set_schedlock_func (char *args, int from_tty,
|
|
|
|
struct cmd_list_element *c);
|
2007-06-21 05:22:01 +00:00
|
|
|
|
2008-12-14 14:05:20 +00:00
|
|
|
-static int currently_stepping (struct thread_info *tp);
|
|
|
|
+static enum resume_step currently_stepping (struct thread_info *tp);
|
2007-06-21 05:22:01 +00:00
|
|
|
|
2009-08-04 05:37:29 +00:00
|
|
|
static int currently_stepping_or_nexting_callback (struct thread_info *tp,
|
|
|
|
void *data);
|
2011-01-01 00:27:30 +00:00
|
|
|
@@ -1570,7 +1570,7 @@ maybe_software_singlestep (struct gdbarc
|
2007-06-21 05:22:01 +00:00
|
|
|
STEP nonzero if we should step (zero to continue instead).
|
|
|
|
SIG is the signal to give the inferior (zero for none). */
|
|
|
|
void
|
|
|
|
-resume (int step, enum target_signal sig)
|
|
|
|
+resume (enum resume_step step, enum target_signal sig)
|
|
|
|
{
|
|
|
|
int should_resume = 1;
|
|
|
|
struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
|
2011-01-01 00:27:30 +00:00
|
|
|
@@ -1602,10 +1602,12 @@ resume (int step, enum target_signal sig
|
2010-11-17 02:58:16 +00:00
|
|
|
}
|
2007-06-21 05:22:01 +00:00
|
|
|
|
|
|
|
if (debug_infrun)
|
2008-12-14 14:05:20 +00:00
|
|
|
- fprintf_unfiltered (gdb_stdlog,
|
|
|
|
- "infrun: resume (step=%d, signal=%d), "
|
|
|
|
- "trap_expected=%d\n",
|
2011-01-01 00:27:30 +00:00
|
|
|
- step, sig, tp->control.trap_expected);
|
2008-12-14 14:05:20 +00:00
|
|
|
+ fprintf_unfiltered (gdb_stdlog, "infrun: resume (step=%s, signal=%d), "
|
|
|
|
+ "trap_expected=%d\n",
|
2007-06-21 05:22:01 +00:00
|
|
|
+ (step == RESUME_STEP_CONTINUE ? "RESUME_STEP_CONTINUE"
|
|
|
|
+ : (step == RESUME_STEP_USER ? "RESUME_STEP_USER"
|
|
|
|
+ : "RESUME_STEP_NEEDED")),
|
2011-01-01 00:27:30 +00:00
|
|
|
+ sig, tp->control.trap_expected);
|
2007-06-21 05:22:01 +00:00
|
|
|
|
2010-07-21 21:30:20 +00:00
|
|
|
/* Normally, by the time we reach `resume', the breakpoints are either
|
|
|
|
removed or inserted, as appropriate. The exception is if we're sitting
|
2011-01-01 00:27:30 +00:00
|
|
|
@@ -1723,9 +1725,10 @@ a command like `return' or `jump' to con
|
2008-12-14 14:05:20 +00:00
|
|
|
individually. */
|
2007-06-26 04:37:05 +00:00
|
|
|
resume_ptid = inferior_ptid;
|
|
|
|
}
|
2008-12-14 14:05:20 +00:00
|
|
|
- else if ((scheduler_mode == schedlock_on)
|
|
|
|
+ else if (scheduler_mode == schedlock_on
|
|
|
|
|| (scheduler_mode == schedlock_step
|
|
|
|
- && (step || singlestep_breakpoints_inserted_p)))
|
|
|
|
+ && (step == RESUME_STEP_USER
|
|
|
|
+ || singlestep_breakpoints_inserted_p)))
|
2007-06-21 05:22:01 +00:00
|
|
|
{
|
|
|
|
/* User-settable 'scheduler' mode requires solo thread resume. */
|
|
|
|
resume_ptid = inferior_ptid;
|
2011-01-01 00:27:30 +00:00
|
|
|
@@ -1934,7 +1937,7 @@ proceed (CORE_ADDR addr, enum target_sig
|
2008-12-14 14:05:20 +00:00
|
|
|
struct thread_info *tp;
|
2009-08-04 05:37:29 +00:00
|
|
|
CORE_ADDR pc;
|
2010-01-16 22:32:10 +00:00
|
|
|
struct address_space *aspace;
|
2007-06-21 05:22:01 +00:00
|
|
|
- int oneproc = 0;
|
2007-10-19 00:12:58 +00:00
|
|
|
+ enum resume_step resume_step = RESUME_STEP_CONTINUE;
|
2007-06-21 05:22:01 +00:00
|
|
|
|
2009-08-04 05:37:29 +00:00
|
|
|
/* If we're stopped at a fork/vfork, follow the branch set by the
|
|
|
|
"set follow-fork-mode" command; otherwise, we'll just proceed
|
2011-01-01 00:27:30 +00:00
|
|
|
@@ -1969,13 +1972,13 @@ proceed (CORE_ADDR addr, enum target_sig
|
2008-12-14 14:05:20 +00:00
|
|
|
actually be executing the breakpoint insn anyway.
|
|
|
|
We'll be (un-)executing the previous instruction. */
|
|
|
|
|
2007-06-21 05:22:01 +00:00
|
|
|
- oneproc = 1;
|
|
|
|
+ resume_step = RESUME_STEP_USER;
|
2008-12-14 14:05:20 +00:00
|
|
|
else if (gdbarch_single_step_through_delay_p (gdbarch)
|
|
|
|
&& gdbarch_single_step_through_delay (gdbarch,
|
|
|
|
get_current_frame ()))
|
2007-06-21 05:22:01 +00:00
|
|
|
/* We stepped onto an instruction that needs to be stepped
|
|
|
|
again before re-inserting the breakpoint, do so. */
|
|
|
|
- oneproc = 1;
|
|
|
|
+ resume_step = RESUME_STEP_USER;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-01-01 00:27:30 +00:00
|
|
|
@@ -2016,13 +2019,13 @@ proceed (CORE_ADDR addr, enum target_sig
|
2008-12-14 14:05:20 +00:00
|
|
|
is required it returns TRUE and sets the current thread to
|
|
|
|
the old thread. */
|
|
|
|
if (prepare_to_proceed (step))
|
|
|
|
- oneproc = 1;
|
|
|
|
+ resume_step = RESUME_STEP_USER;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* prepare_to_proceed may change the current thread. */
|
|
|
|
tp = inferior_thread ();
|
2007-06-21 05:22:01 +00:00
|
|
|
|
|
|
|
- if (oneproc)
|
|
|
|
+ if (resume_step == RESUME_STEP_USER)
|
2008-12-14 14:05:20 +00:00
|
|
|
{
|
2011-01-01 00:27:30 +00:00
|
|
|
tp->control.trap_expected = 1;
|
2008-12-14 14:05:20 +00:00
|
|
|
/* If displaced stepping is enabled, we can step over the
|
2011-01-01 00:27:30 +00:00
|
|
|
@@ -2109,8 +2112,13 @@ proceed (CORE_ADDR addr, enum target_sig
|
2008-12-14 14:05:20 +00:00
|
|
|
/* Reset to normal state. */
|
|
|
|
init_infwait_state ();
|
2007-06-21 05:22:01 +00:00
|
|
|
|
2007-10-19 00:12:58 +00:00
|
|
|
+ if (step)
|
|
|
|
+ resume_step = RESUME_STEP_USER;
|
2007-06-21 05:22:01 +00:00
|
|
|
+ if (resume_step == RESUME_STEP_CONTINUE && bpstat_should_step ())
|
|
|
|
+ resume_step = RESUME_STEP_NEEDED;
|
|
|
|
+
|
|
|
|
/* Resume inferior. */
|
2011-01-01 00:27:30 +00:00
|
|
|
- resume (oneproc || step || bpstat_should_step (), tp->suspend.stop_signal);
|
|
|
|
+ resume (resume_step, tp->suspend.stop_signal);
|
2007-06-21 05:22:01 +00:00
|
|
|
|
|
|
|
/* Wait for it to stop (if not standalone)
|
|
|
|
and in any case decode why it stopped, and act accordingly. */
|
2011-01-01 00:27:30 +00:00
|
|
|
@@ -4933,14 +4941,19 @@ infrun: not switching back to stepped th
|
2009-08-04 05:37:29 +00:00
|
|
|
|
|
|
|
/* Is thread TP in the middle of single-stepping? */
|
2007-06-21 05:22:01 +00:00
|
|
|
|
|
|
|
-static int
|
|
|
|
+static enum resume_step
|
2008-12-14 14:05:20 +00:00
|
|
|
currently_stepping (struct thread_info *tp)
|
2007-06-21 05:22:01 +00:00
|
|
|
{
|
2011-01-01 00:27:30 +00:00
|
|
|
- return ((tp->control.step_range_end
|
|
|
|
- && tp->control.step_resume_breakpoint == NULL)
|
|
|
|
- || tp->control.trap_expected
|
|
|
|
- || tp->stepping_through_solib_after_catch
|
|
|
|
- || bpstat_should_step ());
|
|
|
|
+ if ((tp->control.step_range_end
|
|
|
|
+ && tp->control.step_resume_breakpoint == NULL)
|
|
|
|
+ || tp->control.trap_expected
|
2009-08-04 05:37:29 +00:00
|
|
|
+ || tp->stepping_through_solib_after_catch)
|
2007-06-21 05:22:01 +00:00
|
|
|
+ return RESUME_STEP_USER;
|
|
|
|
+
|
|
|
|
+ if (bpstat_should_step ())
|
|
|
|
+ return RESUME_STEP_NEEDED;
|
|
|
|
+
|
|
|
|
+ return RESUME_STEP_CONTINUE;
|
|
|
|
}
|
|
|
|
|
2009-08-04 05:37:29 +00:00
|
|
|
/* Returns true if any thread *but* the one passed in "data" is in the
|
2011-01-01 00:27:30 +00:00
|
|
|
Index: gdb-7.2.50.20101231/gdb/linux-nat.c
|
2008-03-03 16:13:47 +00:00
|
|
|
===================================================================
|
2011-01-01 00:27:30 +00:00
|
|
|
--- gdb-7.2.50.20101231.orig/gdb/linux-nat.c 2011-01-01 01:25:16.000000000 +0100
|
|
|
|
+++ gdb-7.2.50.20101231/gdb/linux-nat.c 2011-01-01 01:25:16.000000000 +0100
|
|
|
|
@@ -2908,7 +2908,10 @@ count_events_callback (struct lwp_info *
|
2007-06-26 04:37:05 +00:00
|
|
|
static int
|
|
|
|
select_singlestep_lwp_callback (struct lwp_info *lp, void *data)
|
|
|
|
{
|
|
|
|
- if (lp->step && lp->status != 0)
|
|
|
|
+ /* We do not focus on software watchpoints as we would not catch
|
|
|
|
+ STEPPING_PAST_SINGLESTEP_BREAKPOINT breakpoints in some other thread
|
|
|
|
+ as they would remain pending due to `Push back breakpoint for %s'. */
|
|
|
|
+ if (lp->step == RESUME_STEP_USER && lp->status != 0)
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
2011-01-01 00:27:30 +00:00
|
|
|
Index: gdb-7.2.50.20101231/gdb/linux-nat.h
|
2008-03-03 16:13:47 +00:00
|
|
|
===================================================================
|
2011-01-01 00:27:30 +00:00
|
|
|
--- gdb-7.2.50.20101231.orig/gdb/linux-nat.h 2011-01-01 01:25:16.000000000 +0100
|
|
|
|
+++ gdb-7.2.50.20101231/gdb/linux-nat.h 2011-01-01 01:25:16.000000000 +0100
|
2008-03-03 16:13:47 +00:00
|
|
|
@@ -55,8 +55,8 @@ struct lwp_info
|
2007-06-26 04:37:05 +00:00
|
|
|
/* If non-zero, a pending wait status. */
|
|
|
|
int status;
|
|
|
|
|
|
|
|
- /* Non-zero if we were stepping this LWP. */
|
|
|
|
- int step;
|
|
|
|
+ /* The kind of stepping of this LWP. */
|
|
|
|
+ enum resume_step step;
|
|
|
|
|
2008-03-03 16:13:47 +00:00
|
|
|
/* Non-zero si_signo if this LWP stopped with a trap. si_addr may
|
|
|
|
be the address of a hardware watchpoint. */
|