systemc: Don't schedule the ready event unnecessarily.

If we're already going to process the thing we'd be scheduling it to
process, just let the existing invocation get to it.

Change-Id: Ifeebc80903065567fc0eed02beefec6156b22ff7
Reviewed-on: https://gem5-review.googlesource.com/c/12964
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>
This commit is contained in:
Gabe Black
2018-09-22 04:51:29 -07:00
parent 1e17aca38e
commit a503a24d97
2 changed files with 13 additions and 6 deletions

View File

@@ -193,7 +193,8 @@ Scheduler::ready(Process *p)
else
readyListThreads.pushLast(p);
scheduleReadyEvent();
if (!inEvaluate())
scheduleReadyEvent();
}
void
@@ -234,7 +235,8 @@ void
Scheduler::requestUpdate(Channel *c)
{
updateList.pushLast(c);
scheduleReadyEvent();
if (!inEvaluate())
scheduleReadyEvent();
}
void
@@ -274,8 +276,10 @@ Scheduler::runReady()
_changeStamp++;
}
if (_stopNow)
if (_stopNow) {
status(StatusOther);
return;
}
runUpdate();
runDelta();

View File

@@ -231,7 +231,8 @@ class Scheduler
// Delta notification/timeout.
if (delay.value() == 0) {
event->schedule(deltas, tick);
scheduleReadyEvent();
if (!inEvaluate() && !inUpdate())
scheduleReadyEvent();
return;
}
@@ -331,8 +332,9 @@ class Scheduler
enum Status
{
StatusOther = 0,
StatusDelta,
StatusEvaluate,
StatusUpdate,
StatusDelta,
StatusTiming,
StatusPaused,
StatusStopped
@@ -343,8 +345,9 @@ class Scheduler
bool paused() { return status() == StatusPaused; }
bool stopped() { return status() == StatusStopped; }
bool inDelta() { return status() == StatusDelta; }
bool inEvaluate() { return status() == StatusEvaluate; }
bool inUpdate() { return status() == StatusUpdate; }
bool inDelta() { return status() == StatusDelta; }
bool inTiming() { return status() == StatusTiming; }
uint64_t changeStamp() { return _changeStamp; }