diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2020-12-08 18:55:47 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-01-14 17:13:53 +0100 |
commit | a685f7d075a7ec09575cbb836cf07b64ae313e30 (patch) | |
tree | 13b583d6ef2a085cd1b610cc98beeb6b11234cad /target/mips/meson.build | |
parent | 96e5b4c7584d623f6cdcb0083829c19141b2b130 (diff) |
target/mips: Extract LSA/DLSA translation generators
Extract gen_lsa() from translate.c and explode it as
gen_LSA() and gen_DLSA().
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20201215225757.764263-22-f4bug@amsat.org>
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 a3c3724188..3810554343 100644 --- a/target/mips/meson.build +++ b/target/mips/meson.build @@ -17,6 +17,7 @@ mips_ss.add(when: 'CONFIG_TCG', if_true: files( 'op_helper.c', 'tlb_helper.c', 'translate.c', + 'translate_addr_const.c', )) mips_ss.add(when: 'CONFIG_KVM', if_true: files('kvm.c')) |