From fe35ea94838d8faba749ecfd49256f59e5fe0653 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Date: Wed, 17 Feb 2021 21:21:17 +0100 Subject: target/mips: Introduce mxu_translate_init() helper MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Extract the MXU register initialization code from mips_tcg_init() as a new mxu_translate_init() helper. Make it public and replace !TARGET_MIPS64 ifdef'ry by the 'TARGET_LONG_BITS == 32' check to elide this code at preprocessing time. Reviewed-by: Richard Henderson Signed-off-by: Philippe Mathieu-Daudé Message-Id: <20210226093111.3865906-13-f4bug@amsat.org> --- target/mips/translate.h | 1 + 1 file changed, 1 insertion(+) (limited to 'target/mips/translate.h') diff --git a/target/mips/translate.h b/target/mips/translate.h index a5c49f1..a807b3d 100644 --- a/target/mips/translate.h +++ b/target/mips/translate.h @@ -179,6 +179,7 @@ extern TCGv bcond; void msa_translate_init(void); /* MXU */ +void mxu_translate_init(void); bool decode_ase_mxu(DisasContext *ctx, uint32_t insn); /* decodetree generated */ -- cgit v1.1