summaryrefslogtreecommitdiff
path: root/cpu/o3/rob.hh
diff options
context:
space:
mode:
Diffstat (limited to 'cpu/o3/rob.hh')
-rw-r--r--cpu/o3/rob.hh3
1 files changed, 3 insertions, 0 deletions
diff --git a/cpu/o3/rob.hh b/cpu/o3/rob.hh
index e05eebe5a..bdbdde32f 100644
--- a/cpu/o3/rob.hh
+++ b/cpu/o3/rob.hh
@@ -95,8 +95,10 @@ class ROB
*/
void setActiveThreads(std::list<unsigned>* at_ptr);
+ /** Switches out the ROB. */
void switchOut();
+ /** Takes over another CPU's thread. */
void takeOverFrom();
/** Function to insert an instruction into the ROB. Note that whatever
@@ -298,6 +300,7 @@ class ROB
/** Number of instructions in the ROB. */
int numInstsInROB;
+ /** Dummy instruction returned if there are no insts left. */
DynInstPtr dummyInst;
private: