From: Richard Henderson <richard.henderson@linaro.org>
To: qemu-devel@nongnu.org
Subject: [PULL 00/27] tcg + linux patch queue
Date: Sun, 13 Oct 2024 15:12:08 -0700 [thread overview]
Message-ID: <20241013221235.1585193-1-richard.henderson@linaro.org> (raw)
The following changes since commit 7e3b6d8063f245d27eecce5aabe624b5785f2a77:
Merge tag 'crypto-fixes-pull-request' of https://gitlab.com/berrange/qemu into staging (2024-10-10 18:05:43 +0100)
are available in the Git repository at:
https://gitlab.com/rth7680/qemu.git tags/pull-tcg-20241013
for you to fetch changes up to e530581ee06573fcf48c7f7a6c3f8ec6e5809243:
target/arm: Fix alignment fault priority in get_phys_addr_lpae (2024-10-13 11:27:06 -0700)
----------------------------------------------------------------
linux-user/i386: Emulate orig_ax
linux-user/vm86: Fix compilation with Clang
tcg: remove singlestep_enabled from DisasContextBase
accel/tcg: Add TCGCPUOps.tlb_fill_align
target/hppa: Handle alignment faults in hppa_get_physical_address
target/arm: Fix alignment fault priority in get_phys_addr_lpae
----------------------------------------------------------------
Ilya Leoshkevich (5):
include/exec: Introduce env_cpu_const()
linux-user/i386: Emulate orig_ax
target/i386/gdbstub: Factor out gdb_get_reg() and gdb_write_reg()
target/i386/gdbstub: Expose orig_ax
tests/tcg: Run test-proc-mappings.py on i386
Paolo Bonzini (1):
tcg: remove singlestep_enabled from DisasContextBase
Richard Henderson (20):
accel/tcg: Assert noreturn from write-only page for atomics
include/exec/memop: Move get_alignment_bits from tcg.h
include/exec/memop: Rename get_alignment_bits
include/exec/memop: Introduce memop_atomicity_bits
accel/tcg: Add TCGCPUOps.tlb_fill_align
accel/tcg: Use the alignment test in tlb_fill_align
target/hppa: Add MemOp argument to hppa_get_physical_address
target/hppa: Perform access rights before protection id check
target/hppa: Fix priority of T, D, and B page faults
target/hppa: Handle alignment faults in hppa_get_physical_address
target/hppa: Implement TCGCPUOps.tlb_fill_align
target/arm: Pass MemOp to get_phys_addr
target/arm: Pass MemOp to get_phys_addr_with_space_nogpc
target/arm: Pass MemOp to get_phys_addr_gpc
target/arm: Pass MemOp to get_phys_addr_nogpc
target/arm: Pass MemOp through get_phys_addr_twostage
target/arm: Pass MemOp to get_phys_addr_lpae
target/arm: Move device detection earlier in get_phys_addr_lpae
target/arm: Implement TCGCPUOps.tlb_fill_align
target/arm: Fix alignment fault priority in get_phys_addr_lpae
Thomas Huth (1):
linux-user/vm86: Fix compilation with Clang
include/exec/cpu-common.h | 13 +-
include/exec/memop.h | 47 +++++++
include/exec/translator.h | 2 -
include/hw/core/cpu.h | 4 +-
include/hw/core/tcg-cpu-ops.h | 26 ++++
include/qemu/typedefs.h | 1 +
include/tcg/tcg.h | 23 ----
linux-user/qemu.h | 4 +
target/arm/internals.h | 12 +-
target/hppa/cpu.h | 8 +-
target/i386/cpu.h | 1 +
accel/tcg/cputlb.c | 160 +++++++++++-----------
accel/tcg/translator.c | 1 -
accel/tcg/user-exec.c | 4 +-
linux-user/elfload.c | 6 +-
linux-user/i386/cpu_loop.c | 3 +
linux-user/vm86.c | 65 ---------
target/arm/cpu.c | 2 +-
target/arm/helper.c | 9 +-
target/arm/ptw.c | 141 ++++++++++---------
target/arm/tcg/cpu-v7m.c | 2 +-
target/arm/tcg/m_helper.c | 8 +-
target/arm/tcg/tlb_helper.c | 49 +++----
target/arm/tcg/translate-a64.c | 4 +-
target/hppa/cpu.c | 2 +-
target/hppa/int_helper.c | 2 +-
target/hppa/mem_helper.c | 55 +++++---
target/hppa/op_helper.c | 2 +-
target/i386/cpu.c | 1 +
target/i386/gdbstub.c | 102 +++++++++++---
target/mips/tcg/translate.c | 5 +-
target/xtensa/translate.c | 2 +-
tcg/tcg-op-ldst.c | 6 +-
tcg/tcg.c | 2 +-
configs/targets/i386-linux-user.mak | 2 +-
configs/targets/x86_64-linux-user.mak | 2 +-
gdb-xml/i386-32bit-linux.xml | 11 ++
gdb-xml/i386-64bit-linux.xml | 11 ++
tcg/arm/tcg-target.c.inc | 4 +-
tcg/sparc64/tcg-target.c.inc | 2 +-
tests/tcg/multiarch/gdbstub/test-proc-mappings.py | 17 +--
41 files changed, 464 insertions(+), 359 deletions(-)
create mode 100644 gdb-xml/i386-32bit-linux.xml
create mode 100644 gdb-xml/i386-64bit-linux.xml
next reply other threads:[~2024-10-13 22:20 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-13 22:12 Richard Henderson [this message]
2024-10-13 22:12 ` [PULL 01/27] tcg: remove singlestep_enabled from DisasContextBase Richard Henderson
2024-10-13 22:12 ` [PULL 02/27] include/exec: Introduce env_cpu_const() Richard Henderson
2024-10-13 22:12 ` [PULL 03/27] linux-user/i386: Emulate orig_ax Richard Henderson
2024-10-13 22:12 ` [PULL 04/27] target/i386/gdbstub: Factor out gdb_get_reg() and gdb_write_reg() Richard Henderson
2024-10-13 22:12 ` [PULL 05/27] target/i386/gdbstub: Expose orig_ax Richard Henderson
2024-10-13 22:12 ` [PULL 06/27] tests/tcg: Run test-proc-mappings.py on i386 Richard Henderson
2024-10-13 22:12 ` [PULL 07/27] linux-user/vm86: Fix compilation with Clang Richard Henderson
2024-10-13 22:12 ` [PULL 08/27] accel/tcg: Assert noreturn from write-only page for atomics Richard Henderson
2024-10-13 22:12 ` [PULL 09/27] include/exec/memop: Move get_alignment_bits from tcg.h Richard Henderson
2024-10-13 22:12 ` [PULL 10/27] include/exec/memop: Rename get_alignment_bits Richard Henderson
2024-10-13 22:12 ` [PULL 11/27] include/exec/memop: Introduce memop_atomicity_bits Richard Henderson
2024-10-13 22:12 ` [PULL 12/27] accel/tcg: Add TCGCPUOps.tlb_fill_align Richard Henderson
2024-10-13 22:12 ` [PULL 13/27] accel/tcg: Use the alignment test in tlb_fill_align Richard Henderson
2024-10-13 22:12 ` [PULL 14/27] target/hppa: Add MemOp argument to hppa_get_physical_address Richard Henderson
2024-10-13 22:12 ` [PULL 15/27] target/hppa: Perform access rights before protection id check Richard Henderson
2024-10-13 22:12 ` [PULL 16/27] target/hppa: Fix priority of T, D, and B page faults Richard Henderson
2024-10-13 22:12 ` [PULL 17/27] target/hppa: Handle alignment faults in hppa_get_physical_address Richard Henderson
2024-10-13 22:12 ` [PULL 18/27] target/hppa: Implement TCGCPUOps.tlb_fill_align Richard Henderson
2024-10-13 22:12 ` [PULL 19/27] target/arm: Pass MemOp to get_phys_addr Richard Henderson
2024-10-13 22:12 ` [PULL 20/27] target/arm: Pass MemOp to get_phys_addr_with_space_nogpc Richard Henderson
2024-10-13 22:12 ` [PULL 21/27] target/arm: Pass MemOp to get_phys_addr_gpc Richard Henderson
2024-10-13 22:12 ` [PULL 22/27] target/arm: Pass MemOp to get_phys_addr_nogpc Richard Henderson
2024-10-13 22:12 ` [PULL 23/27] target/arm: Pass MemOp through get_phys_addr_twostage Richard Henderson
2024-10-13 22:12 ` [PULL 24/27] target/arm: Pass MemOp to get_phys_addr_lpae Richard Henderson
2024-10-13 22:12 ` [PULL 25/27] target/arm: Move device detection earlier in get_phys_addr_lpae Richard Henderson
2024-10-13 22:12 ` [PULL 26/27] target/arm: Implement TCGCPUOps.tlb_fill_align Richard Henderson
2024-10-13 22:12 ` [PULL 27/27] target/arm: Fix alignment fault priority in get_phys_addr_lpae Richard Henderson
2024-10-14 12:03 ` [PULL 00/27] tcg + linux patch queue Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241013221235.1585193-1-richard.henderson@linaro.org \
--to=richard.henderson@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).