summaryrefslogtreecommitdiff
path: root/cpu/o3/lsq.hh
diff options
context:
space:
mode:
Diffstat (limited to 'cpu/o3/lsq.hh')
-rw-r--r--cpu/o3/lsq.hh12
1 files changed, 3 insertions, 9 deletions
diff --git a/cpu/o3/lsq.hh b/cpu/o3/lsq.hh
index c59b5f13b..d5f893e57 100644
--- a/cpu/o3/lsq.hh
+++ b/cpu/o3/lsq.hh
@@ -71,6 +71,9 @@ class LSQ {
/** Sets the page table pointer. */
// void setPageTable(PageTable *pt_ptr);
+ void switchOut();
+ void takeOverFrom();
+
/** Number of entries needed for the given amount of threads.*/
int entryAmount(int num_threads);
void removeEntries(unsigned tid);
@@ -271,15 +274,6 @@ class LSQ {
/** Max SQ Size - Used to Enforce Sharing Policies. */
unsigned maxSQEntries;
- /** Global Load Count. */
- int loads;
-
- /** Global Store Count */
- int stores;
-
- /** Global Store To WB Count */
- int storesToWB;
-
/** Number of Threads. */
unsigned numThreads;
};