aboutsummaryrefslogtreecommitdiff
path: root/gdb/ChangeLog
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@efficios.com>2020-12-04 16:43:55 -0500
committerSimon Marchi <simon.marchi@efficios.com>2020-12-04 16:43:55 -0500
commitc7acb87bc602c78e6cbee7a7d73f7bdfeeddeefb (patch)
tree7b91a551664c353e4ecb8c0fb048c8bd2d5e977c /gdb/ChangeLog
parent94b24c74e8658826ae8a688c0eb59685a7db03b8 (diff)
downloadfsf-binutils-gdb-c7acb87bc602c78e6cbee7a7d73f7bdfeeddeefb.zip
fsf-binutils-gdb-c7acb87bc602c78e6cbee7a7d73f7bdfeeddeefb.tar.gz
fsf-binutils-gdb-c7acb87bc602c78e6cbee7a7d73f7bdfeeddeefb.tar.bz2
gdb: move displaced stepping types to displaced-stepping.{h,c}
Move displaced-stepping related stuff unchanged to displaced-stepping.h and displaced-stepping.c. This helps make the following patch a bit smaller and easier to read. gdb/ChangeLog: * Makefile.in (COMMON_SFILES): Add displaced-stepping.c. * aarch64-tdep.h: Include displaced-stepping.h. * displaced-stepping.h (struct displaced_step_copy_insn_closure): Move here. (displaced_step_copy_insn_closure_up): Move here. (struct buf_displaced_step_copy_insn_closure): Move here. (struct displaced_step_inferior_state): Move here. (debug_displaced): Move here. (displaced_debug_printf_1): Move here. (displaced_debug_printf): Move here. * displaced-stepping.c: New file. * gdbarch.sh: Include displaced-stepping.h in gdbarch.h. * gdbarch.h: Re-generate. * inferior.h: Include displaced-stepping.h. * infrun.h (debug_displaced): Move to displaced-stepping.h. (displaced_debug_printf_1): Likewise. (displaced_debug_printf): Likewise. (struct displaced_step_copy_insn_closure): Likewise. (displaced_step_copy_insn_closure_up): Likewise. (struct buf_displaced_step_copy_insn_closure): Likewise. (struct displaced_step_inferior_state): Likewise. * infrun.c (show_debug_displaced): Move to displaced-stepping.c. (displaced_debug_printf_1): Likewise. (displaced_step_copy_insn_closure::~displaced_step_copy_insn_closure): Likewise. (_initialize_infrun): Don't register "set/show debug displaced". Change-Id: I29935f5959b80425370630a45148fc06cd4227ca
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r--gdb/ChangeLog29
1 files changed, 29 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index f1a2922..8512cb4 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,34 @@
2020-12-04 Simon Marchi <simon.marchi@efficios.com>
+ * Makefile.in (COMMON_SFILES): Add displaced-stepping.c.
+ * aarch64-tdep.h: Include displaced-stepping.h.
+ * displaced-stepping.h (struct displaced_step_copy_insn_closure):
+ Move here.
+ (displaced_step_copy_insn_closure_up): Move here.
+ (struct buf_displaced_step_copy_insn_closure): Move here.
+ (struct displaced_step_inferior_state): Move here.
+ (debug_displaced): Move here.
+ (displaced_debug_printf_1): Move here.
+ (displaced_debug_printf): Move here.
+ * displaced-stepping.c: New file.
+ * gdbarch.sh: Include displaced-stepping.h in gdbarch.h.
+ * gdbarch.h: Re-generate.
+ * inferior.h: Include displaced-stepping.h.
+ * infrun.h (debug_displaced): Move to displaced-stepping.h.
+ (displaced_debug_printf_1): Likewise.
+ (displaced_debug_printf): Likewise.
+ (struct displaced_step_copy_insn_closure): Likewise.
+ (displaced_step_copy_insn_closure_up): Likewise.
+ (struct buf_displaced_step_copy_insn_closure): Likewise.
+ (struct displaced_step_inferior_state): Likewise.
+ * infrun.c (show_debug_displaced): Move to displaced-stepping.c.
+ (displaced_debug_printf_1): Likewise.
+ (displaced_step_copy_insn_closure::~displaced_step_copy_insn_closure):
+ Likewise.
+ (_initialize_infrun): Don't register "set/show debug displaced".
+
+2020-12-04 Simon Marchi <simon.marchi@efficios.com>
+
* linux-tdep.c (get_linux_inferior_data): Add inferior
parameter.
(linux_vsyscall_range): Pass current inferior.