systemc: Ignore immediate self notifications.
authorGabe Black <gabeblack@google.com>
Sat, 6 Oct 2018 07:57:48 +0000 (00:57 -0700)
committerGabe Black <gabeblack@google.com>
Tue, 16 Oct 2018 01:01:03 +0000 (01:01 +0000)
Change-Id: If5140bd86159e9257eb9e6ccb8301dd6349dacff
Reviewed-on: https://gem5-review.googlesource.com/c/13310
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>

src/systemc/core/sensitivity.cc
src/systemc/core/sensitivity.hh

index 4f84ce0e90f814a31544446d863970641057d62d..11e04a1005990721cdb4f28c747eaf748df7a23b 100644 (file)
@@ -54,13 +54,30 @@ Sensitivity::satisfy()
     process->satisfySensitivity(this);
 }
 
+bool
+Sensitivity::notifyWork(Event *e)
+{
+    satisfy();
+    return true;
+}
+
 bool
 Sensitivity::notify(Event *e)
 {
+    if (scheduler.current() == process) {
+        static bool warned = false;
+        if (!warned) {
+            SC_REPORT_WARNING("(W536) immediate self-notification ignored "
+                    "as of IEEE 1666-2011", process->name());
+            warned = true;
+        }
+        return false;
+    }
+
     if (process->disabled())
         return false;
-    satisfy();
-    return true;
+
+    return notifyWork(e);
 }
 
 bool
@@ -203,11 +220,8 @@ DynamicSensitivityEventOrList::DynamicSensitivityEventOrList(
 {}
 
 bool
-DynamicSensitivityEventOrList::notify(Event *e)
+DynamicSensitivityEventOrList::notifyWork(Event *e)
 {
-    if (process->disabled())
-        return false;
-
     events.erase(e->sc_event());
 
     // All the other events need this deleted from their lists since this
@@ -225,11 +239,8 @@ DynamicSensitivityEventAndList::DynamicSensitivityEventAndList(
 {}
 
 bool
-DynamicSensitivityEventAndList::notify(Event *e)
+DynamicSensitivityEventAndList::notifyWork(Event *e)
 {
-    if (process->disabled())
-        return false;
-
     events.erase(e->sc_event());
 
     // This sensitivity is satisfied if all events have triggered.
index 7a065d2a861a4f4fb495a3fba137f4c216fcc57f..e0244828b7c6bd80dc4abf144ec359cafa6b6808 100644 (file)
@@ -76,7 +76,8 @@ class Sensitivity
     virtual void clear() = 0;
 
     void satisfy();
-    virtual bool notify(Event *e);
+    virtual bool notifyWork(Event *e);
+    bool notify(Event *e);
 
     enum Category
     {
@@ -276,7 +277,7 @@ class DynamicSensitivityEventOrList :
     DynamicSensitivityEventOrList(
             Process *p, const sc_core::sc_event_or_list *eol);
 
-    bool notify(Event *e) override;
+    bool notifyWork(Event *e) override;
 };
 
 //XXX This sensitivity can't be reused. To reset it, it has to be deleted and
@@ -292,7 +293,7 @@ class DynamicSensitivityEventAndList :
     DynamicSensitivityEventAndList(
             Process *p, const sc_core::sc_event_and_list *eal);
 
-    bool notify(Event *e) override;
+    bool notifyWork(Event *e) override;
 };
 
 } // namespace sc_gem5