diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2011-10-13 02:22:23 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2011-10-13 02:22:23 -0700 |
commit | 8adc6781bf5741cca9a27e9e2c523b4def5a3bc3 (patch) | |
tree | 4beebe8b1f71fe8847045bd6e57182c6ab4e1ec8 /src/arch/x86/tlb.hh | |
parent | 4b2e5ebeada762e88ad97397b8db3ebf4658b70f (diff) | |
download | gem5-8adc6781bf5741cca9a27e9e2c523b4def5a3bc3.tar.xz |
X86: Turn on the page table walker in SE mode.
Diffstat (limited to 'src/arch/x86/tlb.hh')
-rw-r--r-- | src/arch/x86/tlb.hh | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/arch/x86/tlb.hh b/src/arch/x86/tlb.hh index e4ea0e1b7..e82784900 100644 --- a/src/arch/x86/tlb.hh +++ b/src/arch/x86/tlb.hh @@ -85,15 +85,11 @@ namespace X86ISA EntryList::iterator lookupIt(Addr va, bool update_lru = true); -#if FULL_SYSTEM - protected: - Walker * walker; + public: Walker *getWalker(); -#endif - public: void invalidateAll(); void invalidateNonGlobal(); |