systemc: Add the non-standard sc_time_tuple class.
authorGabe Black <gabeblack@google.com>
Sat, 16 Jun 2018 04:30:16 +0000 (21:30 -0700)
committerGabe Black <gabeblack@google.com>
Tue, 28 Aug 2018 21:19:19 +0000 (21:19 +0000)
Change-Id: Ia3d6a6a4ea3383c82605653faac570ced7bebb70
Reviewed-on: https://gem5-review.googlesource.com/11277
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>

src/systemc/core/sc_time.cc
src/systemc/ext/core/_using.hh
src/systemc/ext/core/sc_time.hh

index ebc637baf9957a10da2a20308e5190a2b8d9d8da..167b37494ec398f51a42bf43bc533279cb031e67 100644 (file)
@@ -273,4 +273,44 @@ sc_get_default_time_unit()
     return *(sc_time *)nullptr;
 }
 
+sc_time_tuple::sc_time_tuple(const sc_time &)
+{
+    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
+}
+
+bool
+sc_time_tuple::has_value() const
+{
+    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
+    return false;
+}
+
+sc_dt::uint64
+sc_time_tuple::value() const
+{
+    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
+    return 0;
+}
+
+const char *
+sc_time_tuple::unit_symbol() const
+{
+    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
+    return "";
+}
+
+double
+sc_time_tuple::to_double() const
+{
+    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
+    return 0.0;
+}
+
+std::string
+sc_time_tuple::to_string() const
+{
+    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
+    return "";
+}
+
 } // namespace sc_core
index da82700212ee06fa1f6f29966e6cc71cb9a11809..8f00949b2d135c4894879d8b84a0a9437564c841 100644 (file)
@@ -140,6 +140,7 @@ using sc_core::SC_US;
 using sc_core::SC_MS;
 using sc_core::SC_SEC;
 using sc_core::sc_time;
+using sc_core::sc_time_tuple;
 using sc_core::SC_ZERO_TIME;
 using sc_core::sc_set_time_resolution;
 using sc_core::sc_get_time_resolution;
index ff71d7055819f74b3f5e42455d3da0bd36f5f2f7..362834cce7333e2f8f8376662a91cb495b6b8226 100644 (file)
@@ -106,6 +106,31 @@ const sc_time &sc_max_time();
 void sc_set_default_time_unit(double, sc_time_unit);
 sc_time sc_get_default_time_unit();
 
+// Nonstandard
+class sc_time_tuple
+{
+  public:
+    sc_time_tuple() : _value(), _unit(SC_SEC), _offset(1) {}
+    sc_time_tuple(const sc_time &);
+
+    bool has_value() const;
+    sc_dt::uint64 value() const;
+    // Normalized unit.
+    sc_time_unit unit() const { return _unit; }
+    // Normalized unit symbol.
+    const char *unit_symbol() const;
+
+    operator sc_time() const { return sc_time(to_double(), _unit); }
+
+    double to_double() const; // Relative to the normalized unit.
+    std::string to_string() const;
+
+  private:
+    sc_dt::uint64 _value;
+    sc_time_unit _unit;
+    unsigned _offset;
+};
+
 } // namespace sc_core
 
 #endif  //__SYSTEMC_EXT_CORE_SC_TIME_HH__