From: Philippe Mathieu-Daudé Date: Sun, 6 Dec 2020 22:27:17 +0000 (+0100) Subject: target/mips: Rename helper.c as tlb_helper.c X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=4cb213dc90dfc53e447b057fe45d44ddfafc9933;p=qmiga%2Fqemu.git target/mips: Rename helper.c as tlb_helper.c This file contains functions related to TLB management, rename it as 'tlb_helper.c'. Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Richard Henderson Message-Id: <20201206233949.3783184-13-f4bug@amsat.org> --- diff --git a/target/mips/meson.build b/target/mips/meson.build index 4179395a8e..5a49951c6d 100644 --- a/target/mips/meson.build +++ b/target/mips/meson.build @@ -4,10 +4,10 @@ mips_ss.add(files( 'dsp_helper.c', 'fpu_helper.c', 'gdbstub.c', - 'helper.c', 'lmmi_helper.c', 'msa_helper.c', 'op_helper.c', + 'tlb_helper.c', 'translate.c', )) mips_ss.add(when: 'CONFIG_KVM', if_true: files('kvm.c')) diff --git a/target/mips/helper.c b/target/mips/tlb_helper.c similarity index 99% rename from target/mips/helper.c rename to target/mips/tlb_helper.c index 68804b84b1..b02c0479e7 100644 --- a/target/mips/helper.c +++ b/target/mips/tlb_helper.c @@ -1,5 +1,5 @@ /* - * MIPS emulation helpers for qemu. + * MIPS TLB (Translation lookaside buffer) helpers. * * Copyright (c) 2004-2005 Jocelyn Mayer *