summaryrefslogtreecommitdiff
path: root/src/cpu/inorder/resources/cache_unit.hh
diff options
context:
space:
mode:
authorKorey Sewell <ksewell@umich.edu>2010-01-31 18:27:12 -0500
committerKorey Sewell <ksewell@umich.edu>2010-01-31 18:27:12 -0500
commit611a8642c2d50989da15e1ddd9dc87c036e8ab99 (patch)
tree050c513a25bd9f73f8ae2505767bee5578a5de35 /src/cpu/inorder/resources/cache_unit.hh
parent4dbc2f17180d3d8c82d5414daa55b102de9755e5 (diff)
downloadgem5-611a8642c2d50989da15e1ddd9dc87c036e8ab99.tar.xz
inorder: mem. mgmt. update
update address List and address Map to take into account multiple threads
Diffstat (limited to 'src/cpu/inorder/resources/cache_unit.hh')
-rw-r--r--src/cpu/inorder/resources/cache_unit.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/inorder/resources/cache_unit.hh b/src/cpu/inorder/resources/cache_unit.hh
index a6b07ebd9..26f6859ed 100644
--- a/src/cpu/inorder/resources/cache_unit.hh
+++ b/src/cpu/inorder/resources/cache_unit.hh
@@ -198,9 +198,9 @@ class CacheUnit : public Resource
bool cacheBlocked;
- std::vector<Addr> addrList;
+ std::vector<Addr> addrList[ThePipeline::MaxThreads];
- std::map<Addr, InstSeqNum> addrMap;
+ std::map<Addr, InstSeqNum> addrMap[ThePipeline::MaxThreads];
public:
int cacheBlkSize;