[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC v6 26/38] target/arm: wrap call to aarch64_sve_change_el in tcg_ena
From: |
Claudio Fontana |
Subject: |
[RFC v6 26/38] target/arm: wrap call to aarch64_sve_change_el in tcg_enabled() |
Date: |
Thu, 11 Mar 2021 14:30:14 +0100 |
After this patch it is possible to build only kvm:
./configure --disable-tcg --enable-kvm
Signed-off-by: Claudio Fontana <cfontana@suse.de>
---
target/arm/cpu-sysemu.c | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/target/arm/cpu-sysemu.c b/target/arm/cpu-sysemu.c
index eb928832a9..05d6e79ad9 100644
--- a/target/arm/cpu-sysemu.c
+++ b/target/arm/cpu-sysemu.c
@@ -820,11 +820,13 @@ static void arm_cpu_do_interrupt_aarch64(CPUState *cs)
unsigned int cur_el = arm_current_el(env);
int rt;
- /*
- * Note that new_el can never be 0. If cur_el is 0, then
- * el0_a64 is is_a64(), else el0_a64 is ignored.
- */
- aarch64_sve_change_el(env, cur_el, new_el, is_a64(env));
+ if (tcg_enabled()) {
+ /*
+ * Note that new_el can never be 0. If cur_el is 0, then
+ * el0_a64 is is_a64(), else el0_a64 is ignored.
+ */
+ aarch64_sve_change_el(env, cur_el, new_el, is_a64(env));
+ }
if (cur_el < new_el) {
/* Entry vector offset depends on whether the implemented EL
--
2.26.2
- [RFC v6 16/38] target/arm: split vfp state setting from tcg helpers, (continued)
- [RFC v6 16/38] target/arm: split vfp state setting from tcg helpers, Claudio Fontana, 2021/03/11
- [RFC v6 10/38] target/arm: cpregs: fix style (mostly just comments), Claudio Fontana, 2021/03/11
- [RFC v6 14/38] target/arm: move cpsr_read, cpsr_write to cpu_common, Claudio Fontana, 2021/03/11
- [RFC v6 17/38] target/arm: move arm_mmu_idx* to cpu-mmu, Claudio Fontana, 2021/03/11
- [RFC v6 15/38] target/arm: add temporary stub for arm_rebuild_hflags, Claudio Fontana, 2021/03/11
- [RFC v6 09/38] target/arm: split cpregs from tcg/helper.c, Claudio Fontana, 2021/03/11
- [RFC v6 19/38] target/arm: move arm_sctlr away from tcg helpers, Claudio Fontana, 2021/03/11
- [RFC v6 23/38] target/arm: move sve_exception_el out of TCG helpers, Claudio Fontana, 2021/03/11
- [RFC v6 25/38] target/arm: cpu: fix style, Claudio Fontana, 2021/03/11
- [RFC v6 24/38] target/arm: refactor exception and cpu code, Claudio Fontana, 2021/03/11
- [RFC v6 26/38] target/arm: wrap call to aarch64_sve_change_el in tcg_enabled(),
Claudio Fontana <=
- [RFC v6 20/38] target/arm: move arm_cpu_list to common_cpu, Claudio Fontana, 2021/03/11
- [RFC v6 18/38] target/arm: move sve_zcr_len_for_el to common_cpu, Claudio Fontana, 2021/03/11
- [RFC v6 21/38] target/arm: move aarch64_sync_32_to_64 (and vv) to cpu code, Claudio Fontana, 2021/03/11
- [RFC v6 27/38] target/arm: remove kvm include file for PSCI and arm-powerctl, Claudio Fontana, 2021/03/11
- [RFC v6 22/38] target/arm: split a15 cpu model and 32bit class functions to cpu32.c, Claudio Fontana, 2021/03/11
- [RFC v6 28/38] target/arm: move kvm-const.h, kvm.c, kvm64.c, kvm_arm.h to kvm/, Claudio Fontana, 2021/03/11
- [RFC v6 32/38] tests: restrict TCG-only arm-cpu-features tests to TCG builds, Claudio Fontana, 2021/03/11
- [RFC v6 29/38] target/arm: cleanup cpu includes, Claudio Fontana, 2021/03/11
- [RFC v6 31/38] tests/qtest: skip bios-tables-test test_acpi_oem_fields_virt for KVM, Claudio Fontana, 2021/03/11
- [RFC v6 35/38] tests: do not run qom-test on all machines for ARM KVM-only, Claudio Fontana, 2021/03/11