diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2013-08-07 14:51:17 -0500 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2013-08-07 14:51:17 -0500 |
commit | e0387415988a11f30b5aac66cd5cc32f7387e08e (patch) | |
tree | d0b6b1f6dd744c4cc491d4dca38c9063d69895cf /src/arch/x86/tlb.hh | |
parent | b5bb2a25aa702ad3d1a173e9e86d2addc24d9c13 (diff) | |
download | gem5-e0387415988a11f30b5aac66cd5cc32f7387e08e.tar.xz |
x86: add tlb checkpointing
This patch adds checkpointing support to x86 tlb. It upgrades the
cpt_upgrader.py script so that previously created checkpoints can
be updated. It moves the checkpoint version to 6.
Diffstat (limited to 'src/arch/x86/tlb.hh')
-rw-r--r-- | src/arch/x86/tlb.hh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/arch/x86/tlb.hh b/src/arch/x86/tlb.hh index 4f0d58d5c..ea2d50ec2 100644 --- a/src/arch/x86/tlb.hh +++ b/src/arch/x86/tlb.hh @@ -95,12 +95,11 @@ namespace X86ISA void demapPage(Addr va, uint64_t asn); protected: - int size; + uint32_t size; TlbEntry * tlb; EntryList freeList; - EntryList entryList; TlbEntryTrie trie; uint64_t lruSeq; |