Patches applied successfully (
tree,
apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20240705153052.1219696-1-alex.bennee@linaro.org
Maintainers: "Alex Bennée" <alex.bennee@linaro.org>, "Philippe Mathieu-Daudé" <philmd@linaro.org>, Thomas Huth <thuth@redhat.com>, Wainer dos Santos Moschetta <wainersm@redhat.com>, Beraldo Leal <bleal@redhat.com>, Laurent Vivier <laurent@vivier.eu>, Paolo Bonzini <pbonzini@redhat.com>, Alexandre Iooss <erdnaxe@crans.org>, Mahmoud Mandour <ma.mandourr@gmail.com>, Pierrick Bouvier <pierrick.bouvier@linaro.org>, Eduardo Habkost <eduardo@habkost.net>, Marcel Apfelbaum <marcel.apfelbaum@gmail.com>, Yanan Wang <wangyanan55@huawei.com>, Paul Burton <paulburton@kernel.org>, Aleksandar Rikalo <arikalo@gmail.com>, Peter Xu <peterx@redhat.com>, David Hildenbrand <david@redhat.com>, Peter Maydell <peter.maydell@linaro.org>, Stefan Hajnoczi <stefanha@redhat.com>, Mads Ynddal <mads@ynddal.dk>
configure | 4 +
configs/targets/aarch64-linux-user.mak | 2 +-
gdbstub/internals.h | 23 -
include/gdbstub/commands.h | 103 ++++
include/qemu/plugin.h | 3 +
linux-user/aarch64/mte_user_helper.h | 32 ++
linux-user/aarch64/target_prctl.h | 22 +-
target/arm/internals.h | 6 +
target/arm/tcg/mte_helper.h | 66 +++
contrib/plugins/lockstep.c | 23 +-
gdbstub/gdbstub.c | 341 +++++++-----
gdbstub/syscalls.c | 7 +-
gdbstub/system.c | 7 +-
gdbstub/user-target.c | 25 +-
gdbstub/user.c | 7 +-
hw/core/cpu-common.c | 14 +-
hw/core/loader-fit.c | 2 +-
linux-user/aarch64/mte_user_helper.c | 35 ++
linux-user/main.c | 1 +
linux-user/syscall.c | 9 -
plugins/core.c | 10 +-
system/physmem.c | 4 +-
target/arm/cpu.c | 1 +
target/arm/gdbstub.c | 46 ++
target/arm/gdbstub64.c | 223 ++++++++
target/arm/tcg/mte_helper.c | 48 +-
tests/plugin/insn.c | 112 +++-
tests/tcg/aarch64/bti-1.c | 6 +-
tests/tcg/aarch64/bti-3.c | 6 +-
tests/tcg/aarch64/mte-1.c | 2 +-
tests/tcg/aarch64/mte-8.c | 99 ++++
tests/tcg/arm/fcvt.c | 28 +-
tests/tcg/minilib/printf.c | 2 +-
.gitlab-ci.d/buildtest.yml | 2 +-
.gitlab-ci.d/crossbuilds.yml | 13 +-
gdb-xml/aarch64-mte.xml | 11 +
linux-user/aarch64/meson.build | 2 +
system/trace-events | 6 +
tests/docker/Makefile.include | 7 +-
tests/docker/dockerfiles/debian-i686-cross.docker | 2 +-
tests/lcitool/refresh | 2 +-
tests/tcg/Makefile.target | 2 +-
tests/tcg/aarch64/Makefile.softmmu-target | 4 +-
tests/tcg/aarch64/Makefile.target | 32 +-
tests/tcg/aarch64/fcvt.ref | 604 +++++++++++-----------
tests/tcg/aarch64/gdbstub/test-mte.py | 86 +++
tests/tcg/arm/Makefile.softmmu-target | 4 +-
tests/tcg/arm/Makefile.target | 12 +-
tests/tcg/arm/fcvt.ref | 604 +++++++++++-----------
trace-events | 5 -
50 files changed, 1771 insertions(+), 946 deletions(-)
create mode 100644 include/gdbstub/commands.h
create mode 100644 linux-user/aarch64/mte_user_helper.h
create mode 100644 target/arm/tcg/mte_helper.h
create mode 100644 linux-user/aarch64/mte_user_helper.c
create mode 100644 tests/tcg/aarch64/mte-8.c
create mode 100644 gdb-xml/aarch64-mte.xml
create mode 100644 tests/tcg/aarch64/gdbstub/test-mte.py