diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2020-11-16 05:13:37 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-01-14 17:13:53 +0100 |
commit | 80e64a380feb891700cbb21e4966c898dd9c5af9 (patch) | |
tree | 15935d56378f23bf776ad2a5078a442e969944c2 /target/mips/meson.build | |
parent | 54ccff51022fcb93d8b3febe18c2bd663ce15ed9 (diff) |
target/mips: Extract MSA translation routines
Extract 2200 lines from the huge translate.c to a new file,
'msa_translate.c'. As there are too many inter-dependencies
we don't compile it as another object yet, but keep including
it in the big translate.o. We gain in code maintainability.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20201120210844.2625602-5-f4bug@amsat.org>
Tested-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
Diffstat (limited to 'target/mips/meson.build')
-rw-r--r-- | target/mips/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/mips/meson.build b/target/mips/meson.build index 596eb1aeeb..2aa4d81300 100644 --- a/target/mips/meson.build +++ b/target/mips/meson.build @@ -8,6 +8,7 @@ mips_ss.add(when: 'CONFIG_TCG', if_true: files( 'fpu_helper.c', 'lmmi_helper.c', 'msa_helper.c', + 'msa_translate.c', 'op_helper.c', 'tlb_helper.c', 'translate.c', |