From: Peter Maydell <peter.maydell@linaro.org>
To: qemu-devel@nongnu.org
Subject: [PULL 00/28] target-arm queue
Date: Fri, 10 Jun 2022 17:07:10 +0100 [thread overview]
Message-ID: <20220610160738.2230762-1-peter.maydell@linaro.org> (raw)
Just flushing my target-arm queue since I won't be working next week :-)
-- PMM
The following changes since commit b3cd3b5a66f0dddfe3d5ba2bef13cd4f5b89cde9:
Merge tag 'pull-riscv-to-apply-20220610' of github.com:alistair23/qemu into staging (2022-06-09 22:08:27 -0700)
are available in the Git repository at:
https://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20220610
for you to fetch changes up to 90c072e063737e9e8f431489bbd334452f89056e:
semihosting/config: Merge --semihosting-config option groups (2022-06-10 14:32:36 +0100)
----------------------------------------------------------------
* refactor exception routing code
* fix SCR_EL3 RAO/RAZ bits
* gdbstub: Don't use GDB syscalls if no GDB is attached
* semihosting/config: Merge --semihosting-config option groups
* tests/qtest: Reduce npcm7xx_sdhci test image size
----------------------------------------------------------------
Hao Wu (1):
tests/qtest: Reduce npcm7xx_sdhci test image size
Peter Maydell (2):
gdbstub: Don't use GDB syscalls if no GDB is attached
semihosting/config: Merge --semihosting-config option groups
Richard Henderson (25):
target/arm: Mark exception helpers as noreturn
target/arm: Add coproc parameter to syn_fp_access_trap
target/arm: Move exception_target_el out of line
target/arm: Move arm_singlestep_active out of line
target/arm: Move arm_generate_debug_exceptions out of line
target/arm: Use is_a64 in arm_generate_debug_exceptions
target/arm: Move exception_bkpt_insn to debug_helper.c
target/arm: Move arm_debug_exception_fsr to debug_helper.c
target/arm: Rename helper_exception_with_syndrome
target/arm: Introduce gen_exception_insn_el_v
target/arm: Rename gen_exception_insn to gen_exception_insn_el
target/arm: Introduce gen_exception_insn
target/arm: Create helper_exception_swstep
target/arm: Remove TBFLAG_ANY.DEBUG_TARGET_EL
target/arm: Move gen_exception to translate.c
target/arm: Rename gen_exception to gen_exception_el
target/arm: Introduce gen_exception
target/arm: Introduce gen_exception_el_v
target/arm: Introduce helper_exception_with_syndrome
target/arm: Remove default_exception_el
target/arm: Create raise_exception_debug
target/arm: Move arm_debug_target_el to debug_helper.c
target/arm: Fix Secure PL1 tests in fp_exception_el
target/arm: Adjust format test in scr_write
target/arm: SCR_EL3.RW is RAO/WI without AArch32 EL[12]
target/arm/cpu.h | 133 ++---------------------
target/arm/helper.h | 8 +-
target/arm/internals.h | 43 +-------
target/arm/syndrome.h | 7 +-
target/arm/translate.h | 43 ++------
gdbstub.c | 14 ++-
semihosting/config.c | 1 +
target/arm/debug_helper.c | 220 +++++++++++++++++++++++++++++++++++++--
target/arm/helper.c | 53 ++++------
target/arm/op_helper.c | 52 +++++----
target/arm/translate-a64.c | 34 +++---
target/arm/translate-m-nocp.c | 15 ++-
target/arm/translate-mve.c | 3 +-
target/arm/translate-vfp.c | 18 +++-
target/arm/translate.c | 106 ++++++++++---------
tests/qtest/npcm7xx_sdhci-test.c | 2 +-
16 files changed, 390 insertions(+), 362 deletions(-)
next reply other threads:[~2022-06-10 16:18 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-10 16:07 Peter Maydell [this message]
2022-06-10 16:07 ` [PULL 01/28] target/arm: Mark exception helpers as noreturn Peter Maydell
2022-06-10 16:07 ` [PULL 02/28] target/arm: Add coproc parameter to syn_fp_access_trap Peter Maydell
2022-08-12 14:47 ` Peter Maydell
2022-06-10 16:07 ` [PULL 03/28] target/arm: Move exception_target_el out of line Peter Maydell
2022-06-10 16:07 ` [PULL 04/28] target/arm: Move arm_singlestep_active " Peter Maydell
2022-06-10 16:07 ` [PULL 05/28] target/arm: Move arm_generate_debug_exceptions " Peter Maydell
2022-06-10 16:07 ` [PULL 06/28] target/arm: Use is_a64 in arm_generate_debug_exceptions Peter Maydell
2022-06-10 16:07 ` [PULL 07/28] target/arm: Move exception_bkpt_insn to debug_helper.c Peter Maydell
2022-06-10 16:07 ` [PULL 08/28] target/arm: Move arm_debug_exception_fsr " Peter Maydell
2022-06-10 16:07 ` [PULL 09/28] target/arm: Rename helper_exception_with_syndrome Peter Maydell
2022-06-10 16:07 ` [PULL 10/28] target/arm: Introduce gen_exception_insn_el_v Peter Maydell
2022-06-10 16:07 ` [PULL 11/28] target/arm: Rename gen_exception_insn to gen_exception_insn_el Peter Maydell
2022-06-10 16:07 ` [PULL 12/28] target/arm: Introduce gen_exception_insn Peter Maydell
2022-06-10 16:07 ` [PULL 13/28] target/arm: Create helper_exception_swstep Peter Maydell
2022-06-10 16:07 ` [PULL 14/28] target/arm: Remove TBFLAG_ANY.DEBUG_TARGET_EL Peter Maydell
2022-06-10 16:07 ` [PULL 15/28] target/arm: Move gen_exception to translate.c Peter Maydell
2022-06-10 16:07 ` [PULL 16/28] target/arm: Rename gen_exception to gen_exception_el Peter Maydell
2022-06-10 16:07 ` [PULL 17/28] target/arm: Introduce gen_exception Peter Maydell
2022-06-10 16:07 ` [PULL 18/28] target/arm: Introduce gen_exception_el_v Peter Maydell
2022-06-10 16:07 ` [PULL 19/28] target/arm: Introduce helper_exception_with_syndrome Peter Maydell
2022-06-10 16:07 ` [PULL 20/28] target/arm: Remove default_exception_el Peter Maydell
2022-06-10 16:07 ` [PULL 21/28] target/arm: Create raise_exception_debug Peter Maydell
2022-06-10 16:07 ` [PULL 22/28] target/arm: Move arm_debug_target_el to debug_helper.c Peter Maydell
2022-06-10 16:07 ` [PULL 23/28] target/arm: Fix Secure PL1 tests in fp_exception_el Peter Maydell
2022-06-10 16:07 ` [PULL 24/28] tests/qtest: Reduce npcm7xx_sdhci test image size Peter Maydell
2022-06-10 16:07 ` [PULL 25/28] target/arm: Adjust format test in scr_write Peter Maydell
2022-06-10 16:07 ` [PULL 26/28] target/arm: SCR_EL3.RW is RAO/WI without AArch32 EL[12] Peter Maydell
2022-06-10 16:07 ` [PULL 27/28] gdbstub: Don't use GDB syscalls if no GDB is attached Peter Maydell
2022-06-10 16:07 ` [PULL 28/28] semihosting/config: Merge --semihosting-config option groups Peter Maydell
2022-06-10 23:10 ` [PULL 00/28] target-arm queue Richard Henderson
-- strict thread matches above, loose matches on Subject: below --
2026-05-01 10:14 Peter Maydell
2024-10-15 10:37 Peter Maydell
2022-10-10 14:27 Peter Maydell
2022-10-12 21:25 ` Stefan Hajnoczi
2021-06-15 15:43 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=20220610160738.2230762-1-peter.maydell@linaro.org \
--to=peter.maydell@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.