aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>2020-12-06 23:27:17 +0100
committerPhilippe Mathieu-Daudé <f4bug@amsat.org>2021-01-14 17:13:53 +0100
commit4cb213dc90dfc53e447b057fe45d44ddfafc9933 (patch)
treeb53dc633b9319923fb9825b6f69807c1e350c838
parente9927723ba928230222d68ece45d232ed602e78a (diff)
downloadqemu-4cb213dc90dfc53e447b057fe45d44ddfafc9933.zip
qemu-4cb213dc90dfc53e447b057fe45d44ddfafc9933.tar.gz
qemu-4cb213dc90dfc53e447b057fe45d44ddfafc9933.tar.bz2
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é <f4bug@amsat.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20201206233949.3783184-13-f4bug@amsat.org>
-rw-r--r--target/mips/meson.build2
-rw-r--r--target/mips/tlb_helper.c (renamed from target/mips/helper.c)2
2 files changed, 2 insertions, 2 deletions
diff --git a/target/mips/meson.build b/target/mips/meson.build
index 4179395..5a49951 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
index 68804b8..b02c047 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
*