aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2018-10-19 12:46:18 -0700
committerRichard Henderson <richard.henderson@linaro.org>2018-10-31 12:16:12 +0000
commitd5363e5849c245a4880edbd0cdbc29c73694fac0 (patch)
tree4e5665938f6eb55b0ebc08954cdbab2f5372b65d /include
parent1308e0267174daaf557dac8366ea2ba615d3337f (diff)
downloadqemu-d5363e5849c245a4880edbd0cdbc29c73694fac0.zip
qemu-d5363e5849c245a4880edbd0cdbc29c73694fac0.tar.gz
qemu-d5363e5849c245a4880edbd0cdbc29c73694fac0.tar.bz2
cputlb: Move env->vtlb_index to env->tlb_d.vindex
The rest of the tlb victim cache is per-tlb, the next use index should be as well. Tested-by: Emilio G. Cota <cota@braap.org> Reviewed-by: Emilio G. Cota <cota@braap.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include')
-rw-r--r--include/exec/cpu-defs.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/exec/cpu-defs.h b/include/exec/cpu-defs.h
index df8ae18..181c0db 100644
--- a/include/exec/cpu-defs.h
+++ b/include/exec/cpu-defs.h
@@ -150,6 +150,8 @@ typedef struct CPUTLBDesc {
*/
target_ulong large_page_addr;
target_ulong large_page_mask;
+ /* The next index to use in the tlb victim table. */
+ size_t vindex;
} CPUTLBDesc;
/*
@@ -178,8 +180,7 @@ typedef struct CPUTLBCommon {
CPUTLBEntry tlb_v_table[NB_MMU_MODES][CPU_VTLB_SIZE]; \
CPUIOTLBEntry iotlb[NB_MMU_MODES][CPU_TLB_SIZE]; \
CPUIOTLBEntry iotlb_v[NB_MMU_MODES][CPU_VTLB_SIZE]; \
- size_t tlb_flush_count; \
- target_ulong vtlb_index; \
+ size_t tlb_flush_count;
#else