- add specific 32/64 bit helpers with type checking an assertion
- various tweaks and fixes (see individual commits)
There are a few other misc clean-ups I did on the way which might be
worth cherry picking for 10.0 but I'll leave that up to maintainers.
Alex Bennée (11):
include/exec: fix assert in size_memop
include/gdbstub: fix include guard in commands.h
gdbstub: assert earlier in handle_read_all_regs
gdbstub: introduce target independent gdb register helper
target/arm: convert 32 bit gdbstub to new helpers
target/arm: convert 64 bit gdbstub to new helpers
target/ppc: expand comment on FP/VMX/VSX access functions
target/ppc: make ppc_maybe_bswap_register static
target/ppc: convert gdbstub to new helpers
target/microblaze: convert gdbstub to new helper
include/gdbstub: add note to helpers.h
include/exec/memop.h | 4 +-
include/gdbstub/commands.h | 2 +-
include/gdbstub/helpers.h | 4 +-
include/gdbstub/registers.h | 55 ++++++++++
target/ppc/cpu.h | 8 +-
gdbstub/gdbstub.c | 25 ++++-
target/arm/gdbstub.c | 55 ++++++----
target/arm/gdbstub64.c | 53 ++++++----
target/microblaze/gdbstub.c | 49 ++++-----
target/ppc/gdbstub.c | 197 ++++++++++++++++++++----------------
10 files changed, 292 insertions(+), 160 deletions(-)
create mode 100644 include/gdbstub/registers.h