mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 12:03:41 +08:00
[GDBserver][AArch64] Enable support for range stepping
gdb/gdbserver/Changelog: * linux-aarch64-low.c (aarch64_supports_range_stepping): New function, return 1. (the_low_target): Install it.
This commit is contained in:
parent
42422cc7d6
commit
d1d0aea1ea
@ -1,3 +1,9 @@
|
|||||||
|
2015-07-15 Pierre Langlois <pierre.langlois@arm.com>
|
||||||
|
|
||||||
|
* linux-aarch64-low.c (aarch64_supports_range_stepping): New
|
||||||
|
function, return 1.
|
||||||
|
(the_low_target): Install it.
|
||||||
|
|
||||||
2015-07-15 Markus Metzger <markus.t.metzger@intel.com>
|
2015-07-15 Markus Metzger <markus.t.metzger@intel.com>
|
||||||
Pedro Alves <palves@redhat.com>
|
Pedro Alves <palves@redhat.com>
|
||||||
|
|
||||||
|
@ -1295,6 +1295,14 @@ aarch64_supports_tracepoints (void)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Implementation of linux_target_ops method "supports_range_stepping". */
|
||||||
|
|
||||||
|
static int
|
||||||
|
aarch64_supports_range_stepping (void)
|
||||||
|
{
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
struct linux_target_ops the_low_target =
|
struct linux_target_ops the_low_target =
|
||||||
{
|
{
|
||||||
aarch64_arch_setup,
|
aarch64_arch_setup,
|
||||||
@ -1323,6 +1331,11 @@ struct linux_target_ops the_low_target =
|
|||||||
aarch64_linux_prepare_to_resume,
|
aarch64_linux_prepare_to_resume,
|
||||||
NULL, /* process_qsupported */
|
NULL, /* process_qsupported */
|
||||||
aarch64_supports_tracepoints,
|
aarch64_supports_tracepoints,
|
||||||
|
NULL, /* get_thread_area */
|
||||||
|
NULL, /* install_fast_tracepoint_jump_pad */
|
||||||
|
NULL, /* emit_ops */
|
||||||
|
NULL, /* get_min_fast_tracepoint_insn_len */
|
||||||
|
aarch64_supports_range_stepping,
|
||||||
};
|
};
|
||||||
|
|
||||||
void
|
void
|
||||||
|
Loading…
Reference in New Issue
Block a user