From 7b5a96f06b530db35637aca6f9d0f7a2ddfa6e60 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Wed, 8 Apr 2009 22:21:27 -0700 Subject: tlb: Don't separate the TLB classes into an instruction TLB and a data TLB --- src/arch/x86/X86TLB.py | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'src/arch/x86/X86TLB.py') diff --git a/src/arch/x86/X86TLB.py b/src/arch/x86/X86TLB.py index d5ae95372..15b03fd33 100644 --- a/src/arch/x86/X86TLB.py +++ b/src/arch/x86/X86TLB.py @@ -68,18 +68,8 @@ if build_env['FULL_SYSTEM']: class X86TLB(BaseTLB): type = 'X86TLB' - abstract = True - size = Param.Int("TLB size") + cxx_class = 'X86ISA::TLB' + size = Param.Int(64, "TLB size") if build_env['FULL_SYSTEM']: walker = Param.X86PagetableWalker(\ X86PagetableWalker(), "page table walker") - -class X86DTB(X86TLB): - type = 'X86DTB' - cxx_class = 'X86ISA::DTB' - size = 64 - -class X86ITB(X86TLB): - type = 'X86ITB' - cxx_class = 'X86ISA::ITB' - size = 64 -- cgit v1.2.3