diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2019-12-07 11:37:57 -0800 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2020-01-21 14:21:59 -1000 |
| commit | 7a1efe1b97c4f68f2f78cbca2e512324ed07524d (patch) | |
| tree | d77e2b4d4083407cbcc4143f0d2d3550947cc31d /include/exec/cpu_ldst.h | |
| parent | f1293145d6063296bc4221269e8dec258cf6a33b (diff) | |
| download | focaccia-qemu-7a1efe1b97c4f68f2f78cbca2e512324ed07524d.tar.gz focaccia-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 'include/exec/cpu_ldst.h')
| -rw-r--r-- | include/exec/cpu_ldst.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/exec/cpu_ldst.h b/include/exec/cpu_ldst.h index a46116167c..53de19753a 100644 --- a/include/exec/cpu_ldst.h +++ b/include/exec/cpu_ldst.h @@ -234,11 +234,6 @@ static inline uintptr_t tlb_index(CPUArchState *env, uintptr_t mmu_idx, return (addr >> TARGET_PAGE_BITS) & size_mask; } -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; -} - /* Find the TLB entry corresponding to the mmu_idx + address pair. */ static inline CPUTLBEntry *tlb_entry(CPUArchState *env, uintptr_t mmu_idx, target_ulong addr) |