+2020-04-02 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
+
+ Remove the 'supports_hardware_single_step' linux target op and
+ override the process_stratum_target's op definition in
+ linux_process_target to return true.
+
+ * linux-low.h (struct linux_target_ops): Remove the op.
+ (class linux_process_target) <finish_step_over>
+ <maybe_hw_step>: Declare.
+ * linux-low.cc (can_hardware_single_step): Remove.
+ (maybe_hw_step): Turn into...
+ (linux_process_target::maybe_hw_step): ...this.
+ (finish_step_over): Turn into...
+ (linux_process_target::finish_step_over): ...this.
+ (linux_process_target::supports_hardware_single_step): Update
+ to return true.
+
+ Update the callers below.
+
+ (linux_process_target::single_step)
+ (linux_process_target::resume_one_lwp_throw)
+
+ * linux-arm-low.cc (class arm_target)
+ <supports_hardware_single_step>: Declare.
+ (arm_supports_hardware_single_step): Turn into...
+ (arm_target::supports_hardware_single_step): ...this.
+ (the_low_target): Remove the op field.
+ * linux-x86-low.cc (x86_supports_hardware_single_step): Remove.
+ (the_low_target): Remove the op field.
+ * linux-aarch64-low.cc (aarch64_supports_hardware_single_step):
+ Remove.
+ (the_low_target): Remove the op field.
+ * linux-bfin-low.cc (bfin_supports_hardware_single_step): Remove.
+ (the_low_target): Remove the op field.
+ * linux-crisv32-low.cc (cris_supports_hardware_single_step): Remove.
+ (the_low_target): Remove the op field.
+ * linux-m32r-low.cc (m32r_supports_hardware_single_step): Remove.
+ (the_low_target): Remove the op field.
+ * linux-m68k-low.cc (m68k_supports_hardware_single_step): Remove.
+ (the_low_target): Remove the op field.
+ * linux-ppc-low.cc (ppc_supports_hardware_single_step): Remove.
+ (the_low_target): Remove the op field.
+ * linux-s390-low.cc (s390_supports_hardware_single_step): Remove.
+ (the_low_target): Remove the op field.
+ * linux-sh-low.cc (sh_supports_hardware_single_step): Remove.
+ (the_low_target): Remove the op field.
+ * linux-tic6x-low.cc (tic6x_supports_hardware_single_step): Remove.
+ (the_low_target): Remove the op field.
+ * linux-tile-low.cc (tile_supports_hardware_single_step): Remove.
+ (the_low_target): Remove the op field.
+ * linux-xtensa-low.cc (xtensa_supports_hardware_single_step):
+ Remove.
+ (the_low_target): Remove the op field.
+
2020-04-02 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Turn the 'supports_range_stepping' linux target op into a method
return arm_breakpoint_kind_from_current_state (pcptr);
}
-/* Support for hardware single step. */
-
-static int
-aarch64_supports_hardware_single_step (void)
-{
- return 1;
-}
-
struct linux_target_ops the_low_target =
{
- aarch64_supports_hardware_single_step,
aarch64_get_syscall_trapinfo,
};
bool supports_z_point_type (char z_type) override;
+ bool supports_hardware_single_step () override;
+
protected:
void low_arch_setup () override;
/* Support for hardware single step. */
-static int
-arm_supports_hardware_single_step (void)
+bool
+arm_target::supports_hardware_single_step ()
{
- return 0;
+ return false;
}
/* Implementation of linux_target_ops method "get_syscall_trapinfo". */
}
struct linux_target_ops the_low_target = {
- arm_supports_hardware_single_step,
arm_get_syscall_trapinfo,
};
current_process ()->tdesc = tdesc_bfin;
}
-/* Support for hardware single step. */
-
-static int
-bfin_supports_hardware_single_step (void)
-{
- return 1;
-}
-
static struct usrregs_info bfin_usrregs_info =
{
bfin_num_regs,
}
struct linux_target_ops the_low_target = {
- bfin_supports_hardware_single_step,
};
/* The linux target ops object. */
current_process ()->tdesc = tdesc_crisv32;
}
-/* Support for hardware single step. */
-
-static int
-cris_supports_hardware_single_step (void)
-{
- return 1;
-}
-
static struct regset_info cris_regsets[] = {
{ PTRACE_GETREGS, PTRACE_SETREGS, 0, cris_num_regs * 4,
GENERAL_REGS, cris_fill_gregset, cris_store_gregset },
}
struct linux_target_ops the_low_target = {
- cris_supports_hardware_single_step,
};
/* The linux target ops object. */
static void unsuspend_all_lwps (struct lwp_info *except);
static void mark_lwp_dead (struct lwp_info *lwp, int wstat);
static int lwp_is_marked_dead (struct lwp_info *lwp);
-static int finish_step_over (struct lwp_info *lwp);
static int kill_lwp (unsigned long lwpid, int signo);
static void enqueue_pending_signal (struct lwp_info *lwp, int signal, siginfo_t *info);
static int linux_low_ptrace_options (int attached);
being stepped. */
ptid_t step_over_bkpt;
-/* True if the low target can hardware single-step. */
-
-static int
-can_hardware_single_step (void)
-{
- if (the_low_target.supports_hardware_single_step != NULL)
- return the_low_target.supports_hardware_single_step ();
- else
- return 0;
-}
-
bool
linux_process_target::low_supports_breakpoints ()
{
return child;
}
-/* Return true if THREAD is doing hardware single step. */
-
-static int
-maybe_hw_step (struct thread_info *thread)
+bool
+linux_process_target::maybe_hw_step (thread_info *thread)
{
- if (can_hardware_single_step ())
- return 1;
+ if (supports_hardware_single_step ())
+ return true;
else
{
/* GDBserver must insert single-step breakpoint for software
single step. */
gdb_assert (has_single_step_breakpoints (thread));
- return 0;
+ return false;
}
}
{
int step = 0;
- if (can_hardware_single_step ())
+ if (supports_hardware_single_step ())
{
step = 1;
}
debug_printf (" pending reinsert at 0x%s\n",
paddress (lwp->bp_reinsert));
- if (can_hardware_single_step ())
+ if (supports_hardware_single_step ())
{
if (fast_tp_collecting == fast_tpoint_collect_result::not_collecting)
{
" single-stepping\n",
lwpid_of (thread));
- if (can_hardware_single_step ())
+ if (supports_hardware_single_step ())
step = 1;
else
{
step_over_bkpt = thread->id;
}
-/* Finish a step-over. Reinsert the breakpoint we had uninserted in
- start_step_over, if still there, and delete any single-step
- breakpoints we've set, on non hardware single-step targets. */
-
-static int
-finish_step_over (struct lwp_info *lwp)
+bool
+linux_process_target::finish_step_over (lwp_info *lwp)
{
if (lwp->bp_reinsert != 0)
{
and later not being able to explain it, because we were
stepping over a breakpoint, and we hold all threads but
LWP stopped while doing that. */
- if (!can_hardware_single_step ())
+ if (!supports_hardware_single_step ())
{
gdb_assert (has_single_step_breakpoints (current_thread));
delete_single_step_breakpoints (current_thread);
step_over_bkpt = null_ptid;
current_thread = saved_thread;
- return 1;
+ return true;
}
else
- return 0;
+ return false;
}
void
bool
linux_process_target::supports_hardware_single_step ()
{
- return can_hardware_single_step ();
+ return true;
}
bool
struct linux_target_ops
{
- /* See target.h. */
- int (*supports_hardware_single_step) (void);
-
/* Fill *SYSNO with the syscall nr trapped. Only to be called when
inferior is stopped due to SYSCALL_SIGTRAP. */
void (*get_syscall_trapinfo) (struct regcache *regcache, int *sysno);
events. */
void complete_ongoing_step_over ();
+ /* Finish a step-over. Reinsert the breakpoint we had uninserted in
+ start_step_over, if still there, and delete any single-step
+ breakpoints we've set, on non hardware single-step targets.
+ Return true if step over finished. */
+ bool finish_step_over (lwp_info *lwp);
+
/* When we finish a step-over, set threads running again. If there's
another thread that may need a step-over, now's the time to start
it. Eventually, we'll move all threads past their breakpoints. */
or can't single step. */
int single_step (lwp_info* lwp);
+ /* Return true if THREAD is doing hardware single step. */
+ bool maybe_hw_step (thread_info *thread);
+
/* Install breakpoints for software single stepping. */
void install_software_single_step_breakpoints (lwp_info *lwp);
current_process ()->tdesc = tdesc_m32r;
}
-/* Support for hardware single step. */
-
-static int
-m32r_supports_hardware_single_step (void)
-{
- return 1;
-}
-
static struct usrregs_info m32r_usrregs_info =
{
m32r_num_regs,
}
struct linux_target_ops the_low_target = {
- m32r_supports_hardware_single_step,
};
/* The linux target ops object. */
current_process ()->tdesc = tdesc_m68k;
}
-/* Support for hardware single step. */
-
-static int
-m68k_supports_hardware_single_step (void)
-{
- return 1;
-}
-
struct linux_target_ops the_low_target = {
- m68k_supports_hardware_single_step,
};
/* The linux target ops object. */
supply_register_by_name (regcache, "spefscr", ®set->spefscr);
}
-/* Support for hardware single step. */
-
-static int
-ppc_supports_hardware_single_step (void)
-{
- return 1;
-}
-
static struct regset_info ppc_regsets[] = {
/* List the extra register sets before GENERAL_REGS. That way we will
fetch them every time, but still fall back to PTRACE_PEEKUSER for the
}
struct linux_target_ops the_low_target = {
- ppc_supports_hardware_single_step,
NULL, /* get_syscall_trapinfo */
ppc_get_ipa_tdesc_idx,
};
}
}
-/* Support for hardware single step. */
-
-static int
-s390_supports_hardware_single_step (void)
-{
- return 1;
-}
-
static struct usrregs_info s390_usrregs_info =
{
s390_num_regs,
}
struct linux_target_ops the_low_target = {
- s390_supports_hardware_single_step,
NULL, /* get_syscall_trapinfo */
s390_get_ipa_tdesc_idx,
};
return false;
}
-/* Support for hardware single step. */
-
-static int
-sh_supports_hardware_single_step (void)
-{
- return 1;
-}
-
/* Provide only a fill function for the general register set. ps_lgetregs
will use this for NPTL support. */
}
struct linux_target_ops the_low_target = {
- sh_supports_hardware_single_step,
};
/* The linux target ops object. */
current_process ()->tdesc = tic6x_read_description (feature);
}
-/* Support for hardware single step. */
-
-static int
-tic6x_supports_hardware_single_step (void)
-{
- return 1;
-}
-
static struct regsets_info tic6x_regsets_info =
{
tic6x_regsets, /* regsets */
}
struct linux_target_ops the_low_target = {
- tic6x_supports_hardware_single_step,
};
#if GDB_SELF_TEST
current_process ()->tdesc = tdesc_tilegx;
}
-/* Support for hardware single step. */
-
-static int
-tile_supports_hardware_single_step (void)
-{
- return 1;
-}
-
-
struct linux_target_ops the_low_target =
{
- tile_supports_hardware_single_step,
};
/* The linux target ops object. */
return true;
}
-/* Implementation of linux_target_ops method "supports_hardware_single_step".
- */
-
-static int
-x86_supports_hardware_single_step (void)
-{
- return 1;
-}
-
static int
x86_get_ipa_tdesc_idx (void)
{
struct linux_target_ops the_low_target =
{
- x86_supports_hardware_single_step,
x86_get_syscall_trapinfo,
x86_get_ipa_tdesc_idx,
};
current_process ()->tdesc = tdesc_xtensa;
}
-/* Support for hardware single step. */
-
-static int
-xtensa_supports_hardware_single_step (void)
-{
- return 1;
-}
-
const regs_info *
xtensa_target::get_regs_info ()
{
}
struct linux_target_ops the_low_target = {
- xtensa_supports_hardware_single_step,
};
/* The linux target ops object. */