From f951b00d89c716906069160ab21a6d4b6f7e4d6f Mon Sep 17 00:00:00 2001 From: Steve Reinhardt Date: Sun, 19 Oct 2003 17:30:26 -0700 Subject: Get rid of obsolete code, most of it '#if 0'ed anyway. Mostly vestiges of Dave's long-gone instruction prefetching stuff. arch/alpha/isa_traits.hh: Delete unused extractInstructionPrefetchTarget(). base/inifile.cc: Delete '#if 0' code cpu/base_cpu.hh: Delete unused filterThisInstructionPrefetch() function. cpu/exetrace.hh: Delete '#if 0' code (obsolete flags). --HG-- extra : convert_revision : c8317f56ba0a0e568daa785825ee938584987bed --- cpu/base_cpu.hh | 3 --- cpu/exetrace.hh | 13 ------------- 2 files changed, 16 deletions(-) (limited to 'cpu') diff --git a/cpu/base_cpu.hh b/cpu/base_cpu.hh index 5946ced2f..e5d9df6de 100644 --- a/cpu/base_cpu.hh +++ b/cpu/base_cpu.hh @@ -120,9 +120,6 @@ class BaseCPU : public SimObject System *system; #endif - virtual bool filterThisInstructionPrefetch(int thread_number, - short asid, Addr prefetchTarget) const { return true; } - /** * Return pointer to CPU's branch predictor (NULL if none). * @return Branch predictor pointer. diff --git a/cpu/exetrace.hh b/cpu/exetrace.hh index 8e2ea6221..d05dbe0cd 100644 --- a/cpu/exetrace.hh +++ b/cpu/exetrace.hh @@ -43,19 +43,6 @@ class BaseCPU; namespace Trace { -#if 0 - static const FlagVec ALL = ULL(0x1); - static const FlagVec FULL = ULL(0x2); - static const FlagVec SYMBOLS = ULL(0x4); - static const FlagVec EXTENDED = ULL(0x8); - static const FlagVec BRANCH_TAKEN = ULL(0x10); - static const FlagVec BRANCH_NOTTAKEN = ULL(0x20); - static const FlagVec CALLPAL = ULL(0x40); - static const FlagVec SPECULATIVE = ULL(0x100); - static const FlagVec OMIT_COUNT = ULL(0x200); - static const FlagVec INCLUDE_THREAD_NUM = ULL(0x400); -#endif - class InstRecord : public Record { protected: -- cgit v1.2.3