mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 20:05:30 +00:00
target/arm: Mask CPSR_J when Jazelle is not enabled
The J bit signals Jazelle mode, and so of course is RES0 when the feature is not enabled. Backports commit f062d1447f2a80e7a5f593b8cb5ac7cab5e16eb0 from qemu
This commit is contained in:
parent
ca2bb77ab3
commit
e4a7a089f0
|
@ -1066,7 +1066,7 @@ static inline bool arm_mmu_idx_is_stage1_of_2(ARMMMUIdx mmu_idx)
|
|||
static inline uint32_t aarch32_cpsr_valid_mask(uint64_t features,
|
||||
const ARMISARegisters *id)
|
||||
{
|
||||
uint32_t valid = CPSR_M | CPSR_AIF | CPSR_IL | CPSR_NZCV | CPSR_J;
|
||||
uint32_t valid = CPSR_M | CPSR_AIF | CPSR_IL | CPSR_NZCV;
|
||||
|
||||
if ((features >> ARM_FEATURE_V4T) & 1) {
|
||||
valid |= CPSR_T;
|
||||
|
@ -1080,6 +1080,9 @@ static inline uint32_t aarch32_cpsr_valid_mask(uint64_t features,
|
|||
if ((features >> ARM_FEATURE_THUMB2) & 1) {
|
||||
valid |= CPSR_IT;
|
||||
}
|
||||
if (isar_feature_jazelle(id)) {
|
||||
valid |= CPSR_J;
|
||||
}
|
||||
|
||||
return valid;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue