diff options
| author | Richard Henderson | 2019-12-07 20:37:57 +0100 |
|---|---|---|
| committer | Richard Henderson | 2020-01-22 01:21:59 +0100 |
| commit | 7a1efe1b97c4f68f2f78cbca2e512324ed07524d (patch) | |
| tree | d77e2b4d4083407cbcc4143f0d2d3550947cc31d /accel | |
| parent | cputlb: Merge tlb_table_flush_by_mmuidx into tlb_flush_one_mmuidx_locked (diff) | |
| download | qemu-7a1efe1b97c4f68f2f78cbca2e512324ed07524d.tar.gz qemu-7a1efe1b97c4f68f2f78cbca2e512324ed07524d.tar.xz qemu-7a1efe1b97c4f68f2f78cbca2e512324ed07524d.zip | |
cputlb: Make tlb_n_entries private to cputlb.c
There are no users of this function outside cputlb.c,
and its interface will change in the next patch.
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'accel')
| -rw-r--r-- | accel/tcg/cputlb.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/accel/tcg/cputlb.c b/accel/tcg/cputlb.c index 3a4881cf69..500c56d74d 100644 --- a/accel/tcg/cputlb.c +++ b/accel/tcg/cputlb.c @@ -80,6 +80,11 @@ QEMU_BUILD_BUG_ON(sizeof(target_ulong) > sizeof(run_on_cpu_data)); QEMU_BUILD_BUG_ON(NB_MMU_MODES > 16); #define ALL_MMUIDX_BITS ((1 << NB_MMU_MODES) - 1) +static inline size_t tlb_n_entries(CPUArchState *env, uintptr_t mmu_idx) +{ + return (env_tlb(env)->f[mmu_idx].mask >> CPU_TLB_ENTRY_BITS) + 1; +} + static inline size_t sizeof_tlb(CPUArchState *env, uintptr_t mmu_idx) { return env_tlb(env)->f[mmu_idx].mask + (1 << CPU_TLB_ENTRY_BITS); |
