diff options
Diffstat (limited to 'src/arch/x86/tlb.hh')
-rw-r--r-- | src/arch/x86/tlb.hh | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/arch/x86/tlb.hh b/src/arch/x86/tlb.hh index d45f94520..93bbf2c9d 100644 --- a/src/arch/x86/tlb.hh +++ b/src/arch/x86/tlb.hh @@ -215,6 +215,13 @@ namespace X86ISA Port *getPort(const std::string &if_name, int idx = -1); + public: + void invalidateAll(); + + void invalidateNonGlobal(); + + void demapPage(Addr va); + protected: int size; @@ -226,12 +233,6 @@ namespace X86ISA void insert(Addr vpn, TlbEntry &entry); - void invalidateAll(); - - void invalidateNonGlobal(); - - void demapPage(Addr va); - template<class TlbFault> Fault translate(RequestPtr &req, ThreadContext *tc, bool write, bool execute); |