diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2020-02-14 16:45:40 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2020-02-14 16:46:38 -0500 |
commit | fdb61c6c395292a39e594981023b903bc21c6c36 (patch) | |
tree | a64cfd188ab715c02dc4b7ec4a027ffae5f90763 /gdb/amd64-tdep.h | |
parent | 1a627e7e6c61e97951932e3a9c5fb706efe3ef3e (diff) | |
download | gdb-fdb61c6c395292a39e594981023b903bc21c6c36.zip gdb-fdb61c6c395292a39e594981023b903bc21c6c36.tar.gz gdb-fdb61c6c395292a39e594981023b903bc21c6c36.tar.bz2 |
gdb: introduce displaced_step_closure_up type alias
To help with readability, add the type displaced_step_closure_up, an
alias for std::unique_ptr<displaced_step_closure>, and use it throughout
the code base.
gdb/ChangeLog:
* aarch64-tdep.c (aarch64_displaced_step_copy_insn): Use
displaced_step_closure_up.
* aarch64-tdep.h (aarch64_displaced_step_copy_insn): Likewise.
(struct displaced_step_closure_up):
* amd64-tdep.c (amd64_displaced_step_copy_insn): Likewise.
* amd64-tdep.h (amd64_displaced_step_copy_insn): Likewise.
* arm-linux-tdep.c (arm_linux_displaced_step_copy_insn):
Likewise.
* gdbarch.sh (displaced_step_copy_insn): Likewise.
* gdbarch.c, gdbarch.h: Re-generate.
* i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Use
displaced_step_closure_up.
* i386-tdep.c (i386_displaced_step_copy_insn): Likewise.
* i386-tdep.h (i386_displaced_step_copy_insn): Likewise.
* infrun.h (displaced_step_closure_up): New type alias.
(struct displaced_step_inferior_state) <step_closure>: Change
type to displaced_step_closure_up.
* rs6000-tdep.c (ppc_displaced_step_copy_insn): Use
displaced_step_closure_up.
* s390-tdep.c (s390_displaced_step_copy_insn): Likewise.
Diffstat (limited to 'gdb/amd64-tdep.h')
-rw-r--r-- | gdb/amd64-tdep.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/amd64-tdep.h b/gdb/amd64-tdep.h index 33ef0c3..44c1250 100644 --- a/gdb/amd64-tdep.h +++ b/gdb/amd64-tdep.h @@ -26,6 +26,7 @@ struct frame_info; struct regcache; #include "i386-tdep.h" +#include "infrun.h" /* Register numbers of various important registers. */ @@ -87,7 +88,7 @@ enum amd64_regnum #define AMD64_NUM_REGS (AMD64_GSBASE_REGNUM + 1) -extern std::unique_ptr<displaced_step_closure> amd64_displaced_step_copy_insn +extern displaced_step_closure_up amd64_displaced_step_copy_insn (struct gdbarch *gdbarch, CORE_ADDR from, CORE_ADDR to, struct regcache *regs); extern void amd64_displaced_step_fixup (struct gdbarch *gdbarch, |