diff options
author | Polina Dudnik <pdudnik@gmail.com> | 2009-05-11 10:38:46 -0700 |
---|---|---|
committer | Polina Dudnik <pdudnik@gmail.com> | 2009-05-11 10:38:46 -0700 |
commit | b271090923aedd9a01d845023439af63cac46e55 (patch) | |
tree | da8ca79f6799d94e40dd1dc19b8d875fb9870e55 /src/mem/ruby/profiler/Profiler.cc | |
parent | 9f34659c52e0ea9095e86d82ac87a9c3d4d0f25a (diff) | |
download | gem5-b271090923aedd9a01d845023439af63cac46e55.tar.xz |
ruby: Remove transactional access types (e.g. LD_XACT) from CacheRequestType
1. Modified enumeration
2. Also modified profiler
3. Remove transactions from Tester
4. Edited XACT_MEM out of Synthetic Driver
Diffstat (limited to 'src/mem/ruby/profiler/Profiler.cc')
-rw-r--r-- | src/mem/ruby/profiler/Profiler.cc | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/mem/ruby/profiler/Profiler.cc b/src/mem/ruby/profiler/Profiler.cc index 07cbdcce7..e5579f597 100644 --- a/src/mem/ruby/profiler/Profiler.cc +++ b/src/mem/ruby/profiler/Profiler.cc @@ -1006,15 +1006,6 @@ GenericRequestType Profiler::CacheRequestType_to_GenericRequestType(const CacheR case CacheRequestType_IFETCH: return GenericRequestType_IFETCH; break; - case CacheRequestType_LD_XACT: - return GenericRequestType_LD_XACT; - break; - case CacheRequestType_LDX_XACT: - return GenericRequestType_LDX_XACT; - break; - case CacheRequestType_ST_XACT: - return GenericRequestType_ST_XACT; - break; case CacheRequestType_NULL: return GenericRequestType_NULL; break; |