Missing review: #1 Trivial conversion, few more lines moved out of the huge translate.c.
Since v2: - Move TRANS() to translate.h (rth) Since v1: - Use TRANS() macro from ppc/translate.c, per rth's comment: https://www.mail-archive.com/[email protected]/msg827660.html Philippe Mathieu-Daudé (7): target/mips: Introduce generic TRANS() macro for decodetree helpers target/mips: Extract NEC Vr54xx helper definitions target/mips: Extract NEC Vr54xx helpers to vr54xx_helper.c target/mips: Introduce decodetree structure for NEC Vr54xx extension target/mips: Convert Vr54xx MACC* opcodes to decodetree target/mips: Convert Vr54xx MUL* opcodes to decodetree target/mips: Convert Vr54xx MSA* opcodes to decodetree target/mips/helper.h | 18 +--- target/mips/tcg/translate.h | 9 ++ target/mips/tcg/vr54xx_helper.h.inc | 24 +++++ target/mips/tcg/vr54xx.decode | 27 ++++++ target/mips/tcg/op_helper.c | 118 ----------------------- target/mips/tcg/translate.c | 98 +------------------ target/mips/tcg/vr54xx_helper.c | 142 ++++++++++++++++++++++++++++ target/mips/tcg/vr54xx_translate.c | 72 ++++++++++++++ target/mips/tcg/meson.build | 3 + 9 files changed, 285 insertions(+), 226 deletions(-) create mode 100644 target/mips/tcg/vr54xx_helper.h.inc create mode 100644 target/mips/tcg/vr54xx.decode create mode 100644 target/mips/tcg/vr54xx_helper.c create mode 100644 target/mips/tcg/vr54xx_translate.c -- 2.31.1
