mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 22:55:32 +00:00
target/arm: Conditionalize some asserts on aarch32 support
When populating id registers from kvm, on a host that doesn't support aarch32 mode at all, neither arm_div nor jazelle will be supported either. Backports commit 0f8d06f16c9d1041d728d09d464462ebe713c662 from qemu
This commit is contained in:
parent
26d8891d1b
commit
0557899c8e
|
@ -590,6 +590,7 @@ static int arm_cpu_realizefn(struct uc_struct *uc, DeviceState *dev, Error **err
|
||||||
ARMCPU *cpu = ARM_CPU(uc, dev);
|
ARMCPU *cpu = ARM_CPU(uc, dev);
|
||||||
ARMCPUClass *acc = ARM_CPU_GET_CLASS(uc, dev);
|
ARMCPUClass *acc = ARM_CPU_GET_CLASS(uc, dev);
|
||||||
CPUARMState *env = &cpu->env;
|
CPUARMState *env = &cpu->env;
|
||||||
|
bool no_aa32 = false;
|
||||||
|
|
||||||
/* Some features automatically imply others: */
|
/* Some features automatically imply others: */
|
||||||
if (arm_feature(env, ARM_FEATURE_V8)) {
|
if (arm_feature(env, ARM_FEATURE_V8)) {
|
||||||
|
@ -599,6 +600,16 @@ static int arm_cpu_realizefn(struct uc_struct *uc, DeviceState *dev, Error **err
|
||||||
set_feature(env, ARM_FEATURE_V7VE);
|
set_feature(env, ARM_FEATURE_V7VE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* There exist AArch64 cpus without AArch32 support. When KVM
|
||||||
|
* queries ID_ISAR0_EL1 on such a host, the value is UNKNOWN.
|
||||||
|
* Similarly, we cannot check ID_AA64PFR0 without AArch64 support.
|
||||||
|
*/
|
||||||
|
if (arm_feature(&cpu->env, ARM_FEATURE_AARCH64)) {
|
||||||
|
no_aa32 = !cpu_isar_feature(aa64_aa32, cpu);
|
||||||
|
}
|
||||||
|
|
||||||
if (arm_feature(env, ARM_FEATURE_V7VE)) {
|
if (arm_feature(env, ARM_FEATURE_V7VE)) {
|
||||||
/* v7 Virtualization Extensions. In real hardware this implies
|
/* v7 Virtualization Extensions. In real hardware this implies
|
||||||
* EL2 and also the presence of the Security Extensions.
|
* EL2 and also the presence of the Security Extensions.
|
||||||
|
@ -608,7 +619,7 @@ static int arm_cpu_realizefn(struct uc_struct *uc, DeviceState *dev, Error **err
|
||||||
* Presence of EL2 itself is ARM_FEATURE_EL2, and of the
|
* Presence of EL2 itself is ARM_FEATURE_EL2, and of the
|
||||||
* Security Extensions is ARM_FEATURE_EL3.
|
* Security Extensions is ARM_FEATURE_EL3.
|
||||||
*/
|
*/
|
||||||
assert(cpu_isar_feature(arm_div, cpu));
|
assert(no_aa32 || cpu_isar_feature(arm_div, cpu));
|
||||||
set_feature(env, ARM_FEATURE_LPAE);
|
set_feature(env, ARM_FEATURE_LPAE);
|
||||||
set_feature(env, ARM_FEATURE_V7);
|
set_feature(env, ARM_FEATURE_V7);
|
||||||
}
|
}
|
||||||
|
@ -634,7 +645,7 @@ static int arm_cpu_realizefn(struct uc_struct *uc, DeviceState *dev, Error **err
|
||||||
if (arm_feature(env, ARM_FEATURE_V6)) {
|
if (arm_feature(env, ARM_FEATURE_V6)) {
|
||||||
set_feature(env, ARM_FEATURE_V5);
|
set_feature(env, ARM_FEATURE_V5);
|
||||||
if (!arm_feature(env, ARM_FEATURE_M)) {
|
if (!arm_feature(env, ARM_FEATURE_M)) {
|
||||||
assert(cpu_isar_feature(jazelle, cpu));
|
assert(no_aa32 || cpu_isar_feature(jazelle, cpu));
|
||||||
set_feature(env, ARM_FEATURE_AUXCR);
|
set_feature(env, ARM_FEATURE_AUXCR);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3234,6 +3234,11 @@ static inline bool isar_feature_aa64_fp16(const ARMISARegisters *id)
|
||||||
return FIELD_EX64(id->id_aa64pfr0, ID_AA64PFR0, FP) == 1;
|
return FIELD_EX64(id->id_aa64pfr0, ID_AA64PFR0, FP) == 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline bool isar_feature_aa64_aa32(const ARMISARegisters *id)
|
||||||
|
{
|
||||||
|
return FIELD_EX64(id->id_aa64pfr0, ID_AA64PFR0, EL0) >= 2;
|
||||||
|
}
|
||||||
|
|
||||||
static inline bool isar_feature_aa64_sve(const ARMISARegisters *id)
|
static inline bool isar_feature_aa64_sve(const ARMISARegisters *id)
|
||||||
{
|
{
|
||||||
return FIELD_EX64(id->id_aa64pfr0, ID_AA64PFR0, SVE) != 0;
|
return FIELD_EX64(id->id_aa64pfr0, ID_AA64PFR0, SVE) != 0;
|
||||||
|
|
Loading…
Reference in a new issue