summaryrefslogtreecommitdiff
path: root/gdb/gdbarch.h
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@efficios.com>2020-06-29 11:27:40 -0400
committerSimon Marchi <simon.marchi@efficios.com>2020-06-29 11:27:46 -0400
commit19b187a978c5229578ca20627c23eb2b3553f24b (patch)
tree6cedff92eafa97785f8ca9b14f37c51d6b09e9bf /gdb/gdbarch.h
parentdf5b8876083ec8c7bfb44ecb91b516c864edebfd (diff)
downloadbinutils-gdb-19b187a978c5229578ca20627c23eb2b3553f24b.tar.gz
gdb: fix documentation of gdbarch_displaced_step_copy_insn
I spotted something that looks wrong in the doc of gdbarch_displaced_step_copy_insn. It says that if the function returns NULL, it means that it has emulated the behavior of the instruction and written the result to REGS. However, it says below that the function may return NULL to indicate that the instruction can't be single-stepped out-of-line, in which case the core steps the instruction in-line. The two are contradictory. The right one is the latter, if the function returns NULL, the core falls back to in-line stepping. I checked all the implementations of this function and they all agree with this. gdb/ChangeLog: * gdbarch.sh (displaced_step_copy_insn): Update doc. * gdbarch.h: Re-generate. Change-Id: I98163cdd38970cde4c77680e249b10f5d2d5bf9b
Diffstat (limited to 'gdb/gdbarch.h')
-rw-r--r--gdb/gdbarch.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/gdbarch.h b/gdb/gdbarch.h
index d7e7c498d9e..4e51c295b36 100644
--- a/gdb/gdbarch.h
+++ b/gdb/gdbarch.h
@@ -1007,9 +1007,7 @@ extern void set_gdbarch_max_insn_length (struct gdbarch *gdbarch, ULONGEST max_i
not the copy at TO. The caller should update it to point at TO later.
Return a pointer to data of the architecture's choice to be passed
- to gdbarch_displaced_step_fixup. Or, return NULL to indicate that
- the instruction's effects have been completely simulated, with the
- resulting state written back to REGS.
+ to gdbarch_displaced_step_fixup.
For a general explanation of displaced stepping and how GDB uses it,
see the comments in infrun.c.