systemc: Modify reportifyException to keep sc_reports in scope.
authorGabe Black <gabeblack@google.com>
Thu, 27 Sep 2018 08:16:42 +0000 (01:16 -0700)
committerGabe Black <gabeblack@google.com>
Tue, 16 Oct 2018 00:38:23 +0000 (00:38 +0000)
reportifyException was sometimes indirectly creating temporary
sc_report objects which would go out of scope when they were
returned. The later code which tried to print them would then read
garbage.

Change-Id: I0a744eb029c62bf2ffee83db0a0e6dcbe3e60f7d
Reviewed-on: https://gem5-review.googlesource.com/c/13190
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>

src/systemc/core/sc_main.cc
src/systemc/core/scheduler.cc
src/systemc/core/scheduler.hh

index e9df6a1e0fcaf0ac08af76f763f52fea746b15e0..59ec9f8bd4ef30d3692eeda65cba59fc31bf168f 100644 (file)
@@ -81,8 +81,7 @@ class ScMainFiber : public Fiber
                 resultStr = r.what();
             } catch (...) {
                 // There was some other type of exception we need to wrap.
-                const sc_report *r = ::sc_gem5::reportifyException();
-                resultStr = r->what();
+                resultStr = ::sc_gem5::reportifyException().what();
             }
             ::sc_gem5::Kernel::scMainFinished(true);
             ::sc_gem5::scheduler.clear();
index fe1d7c2e4bf6cc8a6b7e71a42804423ed43c179d..d57505517056b77fc4bc14781ec323605f2b691b 100644 (file)
@@ -418,11 +418,10 @@ Scheduler::schedulePause()
 }
 
 void
-Scheduler::throwToScMain(const ::sc_core::sc_report *r)
+Scheduler::throwToScMain()
 {
-    if (!r)
-        r = reportifyException();
-    _throwToScMain = r;
+    ::sc_core::sc_report report = reportifyException();
+    _throwToScMain = &report;
     status(StatusOther);
     scMain->run();
 }
@@ -462,7 +461,7 @@ throwingReportHandler(const ::sc_core::sc_report &r,
 
 } // anonymous namespace
 
-const ::sc_core::sc_report *
+const ::sc_core::sc_report
 reportifyException()
 {
     ::sc_core::sc_report_handler_proc old_handler =
@@ -488,7 +487,7 @@ reportifyException()
         }
     } catch (const ::sc_core::sc_report &r) {
         ::sc_core::sc_report_handler::set_handler(old_handler);
-        return &r;
+        return r;
     }
     panic("No exception thrown in reportifyException.");
 }
index de9d627c163ee3befbd5196356486ea6d7dd7249..83585dd2d3d8d9d79509b1941f339beb8b544171 100644 (file)
@@ -365,7 +365,7 @@ class Scheduler
 
     uint64_t changeStamp() { return _changeStamp; }
 
-    void throwToScMain(const ::sc_core::sc_report *r=nullptr);
+    void throwToScMain();
 
     Status status() { return _status; }
     void status(Status s) { _status = s; }
@@ -511,7 +511,7 @@ Scheduler::TimeSlot::process()
     scheduler.completeTimeSlot(this);
 }
 
-const ::sc_core::sc_report *reportifyException();
+const ::sc_core::sc_report reportifyException();
 
 } // namespace sc_gem5