diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2021-06-01 16:35:19 -0300 |
---|---|---|
committer | David Gibson <david@gibson.dropbear.id.au> | 2021-06-03 18:10:31 +1000 |
commit | 0a11bb7a35075379dffafb75698dd503eb6f9b9c (patch) | |
tree | 7dcdc66b374de081018c90bfc0102d6aae89353f /target/ppc/translate/fixedpoint-impl.c.inc | |
parent | 5e560864234e78461879c632c414e4fe97a9a506 (diff) | |
download | qemu-0a11bb7a35075379dffafb75698dd503eb6f9b9c.zip qemu-0a11bb7a35075379dffafb75698dd503eb6f9b9c.tar.gz qemu-0a11bb7a35075379dffafb75698dd503eb6f9b9c.tar.bz2 |
target/ppc: Implement PNOP
The illegal suffix behavior matches what was observed in a
POWER10 DD2.0 machine.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Matheus Ferst <matheus.ferst@eldorado.org.br>
Message-Id: <20210601193528.2533031-6-matheus.ferst@eldorado.org.br>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'target/ppc/translate/fixedpoint-impl.c.inc')
-rw-r--r-- | target/ppc/translate/fixedpoint-impl.c.inc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/target/ppc/translate/fixedpoint-impl.c.inc b/target/ppc/translate/fixedpoint-impl.c.inc index 344a3ed..ce034a1 100644 --- a/target/ppc/translate/fixedpoint-impl.c.inc +++ b/target/ppc/translate/fixedpoint-impl.c.inc @@ -60,3 +60,14 @@ static bool trans_ADDIS(DisasContext *ctx, arg_D *a) a->si <<= 16; return trans_ADDI(ctx, a); } + +static bool trans_INVALID(DisasContext *ctx, arg_INVALID *a) +{ + gen_invalid(ctx); + return true; +} + +static bool trans_PNOP(DisasContext *ctx, arg_PNOP *a) +{ + return true; +} |