diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2021-06-01 16:35:17 -0300 |
---|---|---|
committer | David Gibson <david@gibson.dropbear.id.au> | 2021-06-03 18:10:31 +1000 |
commit | 99082815f17f40d3527b281c7e3e6e5556fad8f1 (patch) | |
tree | 54111670b5d1440ff8abf476774fbed15f3c776d /target/ppc/cpu.h | |
parent | 64a0f6448c6b4454c35e5a73e8be7dee0f852ba5 (diff) | |
download | qemu-99082815f17f40d3527b281c7e3e6e5556fad8f1.zip qemu-99082815f17f40d3527b281c7e3e6e5556fad8f1.tar.gz qemu-99082815f17f40d3527b281c7e3e6e5556fad8f1.tar.bz2 |
target/ppc: Add infrastructure for prefixed insns
Signed-off-by: Luis Pires <luis.pires@eldorado.org.br>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Matheus Ferst <matheus.ferst@eldorado.org.br>
Message-Id: <20210601193528.2533031-4-matheus.ferst@eldorado.org.br>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'target/ppc/cpu.h')
-rw-r--r-- | target/ppc/cpu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/ppc/cpu.h b/target/ppc/cpu.h index b7ae490..b4de0db 100644 --- a/target/ppc/cpu.h +++ b/target/ppc/cpu.h @@ -144,6 +144,7 @@ enum { POWERPC_EXCP_ALIGN_PROT = 0x04, /* Access cross protection boundary */ POWERPC_EXCP_ALIGN_BAT = 0x05, /* Access cross a BAT/seg boundary */ POWERPC_EXCP_ALIGN_CACHE = 0x06, /* Impossible dcbz access */ + POWERPC_EXCP_ALIGN_INSN = 0x07, /* Pref. insn x-ing 64-byte boundary */ /* Exception subtypes for POWERPC_EXCP_PROGRAM */ /* FP exceptions */ POWERPC_EXCP_FP = 0x10, |