From e1403fc2af61c224c573c47c77a36f9b1b78e7df Mon Sep 17 00:00:00 2001 From: Mitch Hayenga Date: Sat, 20 Sep 2014 17:18:35 -0400 Subject: alpha,arm,mips,power,x86,cpu,sim: Cleanup activate/deactivate activate(), suspend(), and halt() used on thread contexts had an optional delay parameter. However this parameter was often ignored. Also, when used, the delay was seemily arbitrarily set to 0 or 1 cycle (no other delays were ever specified). This patch removes the delay parameter and 'Events' associated with them across all ISAs and cores. Unused activate logic is also removed. --- src/cpu/thread_context.hh | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) (limited to 'src/cpu/thread_context.hh') diff --git a/src/cpu/thread_context.hh b/src/cpu/thread_context.hh index 40150ac05..95d89dcc5 100644 --- a/src/cpu/thread_context.hh +++ b/src/cpu/thread_context.hh @@ -165,15 +165,14 @@ class ThreadContext virtual void setStatus(Status new_status) = 0; - /// Set the status to Active. Optional delay indicates number of - /// cycles to wait before beginning execution. - virtual void activate(Cycles delay = Cycles(1)) = 0; + /// Set the status to Active. + virtual void activate() = 0; /// Set the status to Suspended. - virtual void suspend(Cycles delay = Cycles(0)) = 0; + virtual void suspend() = 0; /// Set the status to Halted. - virtual void halt(Cycles delay = Cycles(0)) = 0; + virtual void halt() = 0; virtual void dumpFuncProfile() = 0; @@ -362,16 +361,14 @@ class ProxyThreadContext : public ThreadContext void setStatus(Status new_status) { actualTC->setStatus(new_status); } - /// Set the status to Active. Optional delay indicates number of - /// cycles to wait before beginning execution. - void activate(Cycles delay = Cycles(1)) - { actualTC->activate(delay); } + /// Set the status to Active. + void activate() { actualTC->activate(); } /// Set the status to Suspended. - void suspend(Cycles delay = Cycles(0)) { actualTC->suspend(); } + void suspend() { actualTC->suspend(); } /// Set the status to Halted. - void halt(Cycles delay = Cycles(0)) { actualTC->halt(); } + void halt() { actualTC->halt(); } void dumpFuncProfile() { actualTC->dumpFuncProfile(); } -- cgit v1.2.3