mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 02:03:56 -06:00
target/arm: Convert ERET, ERETAA, ERETAB to decodetree
Convert the exception-return insns ERET, ERETA and ERETB to decodetree. These were the last insns left in the legacy decoder function disas_uncond_reg_b(), which allows us to remove it. The old decoder explicitly decoded the DRPS instruction, only in order to call unallocated_encoding() on it, exactly as would have happened if it hadn't decoded it. This is because this insn always UNDEFs unless the CPU is in halting-debug state, which we don't emulate. So we list the pattern in a comment in a64.decode, but don't actively decode it. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20230512144106.3608981-21-peter.maydell@linaro.org
This commit is contained in:
parent
c990fde618
commit
442c9d682c
2 changed files with 63 additions and 108 deletions
|
@ -142,3 +142,11 @@ RETA 1101011 0010 11111 00001 m:1 11111 11111 &reta # RETAA, RETAB
|
|||
&bra rn rm m
|
||||
BRA 1101011 1000 11111 00001 m:1 rn:5 rm:5 &bra # BRAA, BRAB
|
||||
BLRA 1101011 1001 11111 00001 m:1 rn:5 rm:5 &bra # BLRAA, BLRAB
|
||||
|
||||
ERET 1101011 0100 11111 000000 11111 00000
|
||||
ERETA 1101011 0100 11111 00001 m:1 11111 11111 &reta # ERETAA, ERETAB
|
||||
|
||||
# We don't need to decode DRPS because it always UNDEFs except when
|
||||
# the processor is in halting debug state (which we don't implement).
|
||||
# The pattern is listed here as documentation.
|
||||
# DRPS 1101011 0101 11111 000000 11111 00000
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue