mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 18:45:27 +00:00
target/arm: Tidy ARMMMUIdx m-profile definitions
Replace the magic numbers with the relevant ARM_MMU_IDX_M_* constants. Keep the definitions short by referencing previous symbols. Backports commit 25568316b2a7e73d68701042ba6ebdb217205e20 from qemu
This commit is contained in:
parent
c223708063
commit
85a7cfbdc6
|
@ -2807,14 +2807,14 @@ typedef enum ARMMMUIdx {
|
|||
ARMMMUIdx_SE10_0 = 4 | ARM_MMU_IDX_A,
|
||||
ARMMMUIdx_SE10_1 = 5 | ARM_MMU_IDX_A,
|
||||
ARMMMUIdx_Stage2 = 6 | ARM_MMU_IDX_A,
|
||||
ARMMMUIdx_MUser = 0 | ARM_MMU_IDX_M,
|
||||
ARMMMUIdx_MPriv = 1 | ARM_MMU_IDX_M,
|
||||
ARMMMUIdx_MUserNegPri = 2 | ARM_MMU_IDX_M,
|
||||
ARMMMUIdx_MPrivNegPri = 3 | ARM_MMU_IDX_M,
|
||||
ARMMMUIdx_MSUser = 4 | ARM_MMU_IDX_M,
|
||||
ARMMMUIdx_MSPriv = 5 | ARM_MMU_IDX_M,
|
||||
ARMMMUIdx_MSUserNegPri = 6 | ARM_MMU_IDX_M,
|
||||
ARMMMUIdx_MSPrivNegPri = 7 | ARM_MMU_IDX_M,
|
||||
ARMMMUIdx_MUser = ARM_MMU_IDX_M,
|
||||
ARMMMUIdx_MPriv = ARM_MMU_IDX_M | ARM_MMU_IDX_M_PRIV,
|
||||
ARMMMUIdx_MUserNegPri = ARMMMUIdx_MUser | ARM_MMU_IDX_M_NEGPRI,
|
||||
ARMMMUIdx_MPrivNegPri = ARMMMUIdx_MPriv | ARM_MMU_IDX_M_NEGPRI,
|
||||
ARMMMUIdx_MSUser = ARMMMUIdx_MUser | ARM_MMU_IDX_M_S,
|
||||
ARMMMUIdx_MSPriv = ARMMMUIdx_MPriv | ARM_MMU_IDX_M_S,
|
||||
ARMMMUIdx_MSUserNegPri = ARMMMUIdx_MUserNegPri | ARM_MMU_IDX_M_S,
|
||||
ARMMMUIdx_MSPrivNegPri = ARMMMUIdx_MPrivNegPri | ARM_MMU_IDX_M_S,
|
||||
/* Indexes below here don't have TLBs and are used only for AT system
|
||||
* instructions or for the first stage of an S12 page table walk.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue