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/cpu/simple_thread.hh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/cpu/simple_thread.hh') diff --git a/src/cpu/simple_thread.hh b/src/cpu/simple_thread.hh index 73929d362..5194a01ec 100644 --- a/src/cpu/simple_thread.hh +++ b/src/cpu/simple_thread.hh @@ -108,17 +108,17 @@ class SimpleThread : public ThreadState System *system; - TheISA::ITB *itb; - TheISA::DTB *dtb; + TheISA::TLB *itb; + TheISA::TLB *dtb; // constructor: initialize SimpleThread from given process structure #if FULL_SYSTEM SimpleThread(BaseCPU *_cpu, int _thread_num, System *_system, - TheISA::ITB *_itb, TheISA::DTB *_dtb, + TheISA::TLB *_itb, TheISA::TLB *_dtb, bool use_kernel_stats = true); #else SimpleThread(BaseCPU *_cpu, int _thread_num, Process *_process, - TheISA::ITB *_itb, TheISA::DTB *_dtb, int _asid); + TheISA::TLB *_itb, TheISA::TLB *_dtb, int _asid); #endif SimpleThread(); @@ -181,9 +181,9 @@ class SimpleThread : public ThreadState BaseCPU *getCpuPtr() { return cpu; } - TheISA::ITB *getITBPtr() { return itb; } + TheISA::TLB *getITBPtr() { return itb; } - TheISA::DTB *getDTBPtr() { return dtb; } + TheISA::TLB *getDTBPtr() { return dtb; } System *getSystemPtr() { return system; } -- cgit v1.2.3