diff options
author | Philippe Mathieu-Daudé | 2021-07-28 13:18:48 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé | 2021-08-25 13:02:14 +0200 |
commit | 9d0053923904215d95e8e5ab14b38bb792a0a68f (patch) | |
tree | 8d92642c08209f217c0c84486b943cdb37c532a8 /target/mips/tcg/translate.h | |
parent | target/mips: Extract NEC Vr54xx helpers to vr54xx_helper.c (diff) | |
download | qemu-9d0053923904215d95e8e5ab14b38bb792a0a68f.tar.gz qemu-9d0053923904215d95e8e5ab14b38bb792a0a68f.tar.xz qemu-9d0053923904215d95e8e5ab14b38bb792a0a68f.zip |
target/mips: Introduce decodetree structure for NEC Vr54xx extension
The decoder is called but doesn't decode anything. This will
ease reviewing the next commit.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20210801235926.3178085-3-f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/mips/tcg/translate.h')
-rw-r--r-- | target/mips/tcg/translate.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/mips/tcg/translate.h b/target/mips/tcg/translate.h index 791e3e2c7e..bb0a6b8d74 100644 --- a/target/mips/tcg/translate.h +++ b/target/mips/tcg/translate.h @@ -201,6 +201,7 @@ bool decode_ext_txx9(DisasContext *ctx, uint32_t insn); #if defined(TARGET_MIPS64) bool decode_ext_tx79(DisasContext *ctx, uint32_t insn); #endif +bool decode_ext_vr54xx(DisasContext *ctx, uint32_t insn); /* * Helpers for implementing sets of trans_* functions. |