target/arm: Convert regime_has_2_ranges from switch to table
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20251008215613.300150-21-richard.henderson@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
9fe4b77afe
commit
bb39dd76d7
3 changed files with 27 additions and 37 deletions
|
|
@ -1027,34 +1027,6 @@ static inline void arm_call_el_change_hook(ARMCPU *cpu)
|
|||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Return true if this address translation regime has two ranges.
|
||||
* Note that this will not return the correct answer for AArch32
|
||||
* Secure PL1&0 (i.e. mmu indexes E3, E30_0, E30_3_PAN), but it is
|
||||
* never called from a context where EL3 can be AArch32. (The
|
||||
* correct return value for ARMMMUIdx_E3 would be different for
|
||||
* that case, so we can't just make the function return the
|
||||
* correct value anyway; we would need an extra "bool e3_is_aarch32"
|
||||
* argument which all the current callsites would pass as 'false'.)
|
||||
*/
|
||||
static inline bool regime_has_2_ranges(ARMMMUIdx mmu_idx)
|
||||
{
|
||||
switch (mmu_idx) {
|
||||
case ARMMMUIdx_Stage1_E0:
|
||||
case ARMMMUIdx_Stage1_E1:
|
||||
case ARMMMUIdx_Stage1_E1_PAN:
|
||||
case ARMMMUIdx_E10_0:
|
||||
case ARMMMUIdx_E10_1:
|
||||
case ARMMMUIdx_E10_1_PAN:
|
||||
case ARMMMUIdx_E20_0:
|
||||
case ARMMMUIdx_E20_2:
|
||||
case ARMMMUIdx_E20_2_PAN:
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
static inline bool regime_is_pan(CPUARMState *env, ARMMMUIdx mmu_idx)
|
||||
{
|
||||
switch (mmu_idx) {
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ FIELD(MMUIDXINFO, EL, 0, 2)
|
|||
FIELD(MMUIDXINFO, ELVALID, 2, 1)
|
||||
FIELD(MMUIDXINFO, REL, 3, 2)
|
||||
FIELD(MMUIDXINFO, RELVALID, 5, 1)
|
||||
FIELD(MMUIDXINFO, 2RANGES, 6, 1)
|
||||
|
||||
extern const uint32_t arm_mmuidx_table[ARM_MMU_IDX_M + 8];
|
||||
|
||||
|
|
@ -39,4 +40,20 @@ static inline uint32_t regime_el(ARMMMUIdx idx)
|
|||
return FIELD_EX32(arm_mmuidx_table[idx], MMUIDXINFO, REL);
|
||||
}
|
||||
|
||||
/*
|
||||
* Return true if this address translation regime has two ranges.
|
||||
* Note that this will not return the correct answer for AArch32
|
||||
* Secure PL1&0 (i.e. mmu indexes E3, E30_0, E30_3_PAN), but it is
|
||||
* never called from a context where EL3 can be AArch32. (The
|
||||
* correct return value for ARMMMUIdx_E3 would be different for
|
||||
* that case, so we can't just make the function return the
|
||||
* correct value anyway; we would need an extra "bool e3_is_aarch32"
|
||||
* argument which all the current callsites would pass as 'false'.)
|
||||
*/
|
||||
static inline bool regime_has_2_ranges(ARMMMUIdx idx)
|
||||
{
|
||||
tcg_debug_assert(arm_mmuidx_is_valid(idx));
|
||||
return FIELD_EX32(arm_mmuidx_table[idx], MMUIDXINFO, 2RANGES);
|
||||
}
|
||||
|
||||
#endif /* TARGET_ARM_MMUIDX_INTERNAL_H */
|
||||
|
|
|
|||
|
|
@ -9,18 +9,19 @@
|
|||
|
||||
#define EL(X) ((X << R_MMUIDXINFO_EL_SHIFT) | R_MMUIDXINFO_ELVALID_MASK)
|
||||
#define REL(X) ((X << R_MMUIDXINFO_REL_SHIFT) | R_MMUIDXINFO_RELVALID_MASK)
|
||||
#define R2 R_MMUIDXINFO_2RANGES_MASK
|
||||
|
||||
const uint32_t arm_mmuidx_table[ARM_MMU_IDX_M + 8] = {
|
||||
/*
|
||||
* A-profile.
|
||||
*/
|
||||
[ARMMMUIdx_E10_0] = EL(0) | REL(1),
|
||||
[ARMMMUIdx_E10_1] = EL(1) | REL(1),
|
||||
[ARMMMUIdx_E10_1_PAN] = EL(1) | REL(1),
|
||||
[ARMMMUIdx_E10_0] = EL(0) | REL(1) | R2,
|
||||
[ARMMMUIdx_E10_1] = EL(1) | REL(1) | R2,
|
||||
[ARMMMUIdx_E10_1_PAN] = EL(1) | REL(1) | R2,
|
||||
|
||||
[ARMMMUIdx_E20_0] = EL(0) | REL(2),
|
||||
[ARMMMUIdx_E20_2] = EL(2) | REL(2),
|
||||
[ARMMMUIdx_E20_2_PAN] = EL(2) | REL(2),
|
||||
[ARMMMUIdx_E20_0] = EL(0) | REL(2) | R2,
|
||||
[ARMMMUIdx_E20_2] = EL(2) | REL(2) | R2,
|
||||
[ARMMMUIdx_E20_2_PAN] = EL(2) | REL(2) | R2,
|
||||
|
||||
[ARMMMUIdx_E2] = EL(2) | REL(2),
|
||||
|
||||
|
|
@ -31,9 +32,9 @@ const uint32_t arm_mmuidx_table[ARM_MMU_IDX_M + 8] = {
|
|||
[ARMMMUIdx_Stage2_S] = REL(2),
|
||||
[ARMMMUIdx_Stage2] = REL(2),
|
||||
|
||||
[ARMMMUIdx_Stage1_E0] = REL(1),
|
||||
[ARMMMUIdx_Stage1_E1] = REL(1),
|
||||
[ARMMMUIdx_Stage1_E1_PAN] = REL(1),
|
||||
[ARMMMUIdx_Stage1_E0] = REL(1) | R2,
|
||||
[ARMMMUIdx_Stage1_E1] = REL(1) | R2,
|
||||
[ARMMMUIdx_Stage1_E1_PAN] = REL(1) | R2,
|
||||
|
||||
/*
|
||||
* M-profile.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue