summaryrefslogtreecommitdiff
path: root/src/cpu/base.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/base.hh')
-rw-r--r--src/cpu/base.hh22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/cpu/base.hh b/src/cpu/base.hh
index dfee21fab..383ae8185 100644
--- a/src/cpu/base.hh
+++ b/src/cpu/base.hh
@@ -390,13 +390,6 @@ class BaseCPU : public ClockedObject
*/
EventQueue **comInstEventQueue;
- /**
- * Vector of per-thread load-based event queues. Used for
- * scheduling events based on number of loads committed by
- *a particular thread.
- */
- EventQueue **comLoadEventQueue;
-
System *system;
/**
@@ -464,21 +457,6 @@ class BaseCPU : public ClockedObject
void scheduleInstStop(ThreadID tid, Counter insts, const char *cause);
/**
- * Schedule an event that exits the simulation loops after a
- * predefined number of load operations.
- *
- * This method is usually called from the configuration script to
- * get an exit event some time in the future. It is typically used
- * when the script wants to simulate for a specific number of
- * loads rather than ticks.
- *
- * @param tid Thread monitor.
- * @param loads Number of load instructions into the future.
- * @param cause Cause to signal in the exit event.
- */
- void scheduleLoadStop(ThreadID tid, Counter loads, const char *cause);
-
- /**
* Get the number of instructions executed by the specified thread
* on this CPU. Used by Python to control simulation.
*