Message ID | 20201206233949.3783184-13-f4bug@amsat.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | target/mips: Boring code reordering | expand |
On 12/6/20 5:39 PM, Philippe Mathieu-Daudé wrote: > This file contains functions related to TLB management, > rename it as 'tlb_helper.c'. > > Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> > --- > Maybe I missed some functions not TLB specific... > --- > target/mips/{helper.c => tlb_helper.c} | 2 +- > target/mips/meson.build | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > rename target/mips/{helper.c => tlb_helper.c} (99%) Reviewed-by: Richard Henderson <richard.henderson@linaro.org> r~
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 5db7e80e22b..7022be13ae4 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 * diff --git a/target/mips/meson.build b/target/mips/meson.build index 4858bf86ad6..c685f03fb28 100644 --- a/target/mips/meson.build +++ b/target/mips/meson.build @@ -6,10 +6,10 @@ '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'))
This file contains functions related to TLB management, rename it as 'tlb_helper.c'. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> --- Maybe I missed some functions not TLB specific... --- target/mips/{helper.c => tlb_helper.c} | 2 +- target/mips/meson.build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename target/mips/{helper.c => tlb_helper.c} (99%)