sc_time.cc revision 13057
112837Sgabeblack@google.com/*
212837Sgabeblack@google.com * Copyright 2018 Google, Inc.
312837Sgabeblack@google.com *
412837Sgabeblack@google.com * Redistribution and use in source and binary forms, with or without
512837Sgabeblack@google.com * modification, are permitted provided that the following conditions are
612837Sgabeblack@google.com * met: redistributions of source code must retain the above copyright
712837Sgabeblack@google.com * notice, this list of conditions and the following disclaimer;
812837Sgabeblack@google.com * redistributions in binary form must reproduce the above copyright
912837Sgabeblack@google.com * notice, this list of conditions and the following disclaimer in the
1012837Sgabeblack@google.com * documentation and/or other materials provided with the distribution;
1112837Sgabeblack@google.com * neither the name of the copyright holders nor the names of its
1212837Sgabeblack@google.com * contributors may be used to endorse or promote products derived from
1312837Sgabeblack@google.com * this software without specific prior written permission.
1412837Sgabeblack@google.com *
1512837Sgabeblack@google.com * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1612837Sgabeblack@google.com * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1712837Sgabeblack@google.com * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1812837Sgabeblack@google.com * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1912837Sgabeblack@google.com * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2012837Sgabeblack@google.com * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2112837Sgabeblack@google.com * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2212837Sgabeblack@google.com * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2312837Sgabeblack@google.com * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2412837Sgabeblack@google.com * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2512837Sgabeblack@google.com * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2612837Sgabeblack@google.com *
2712837Sgabeblack@google.com * Authors: Gabe Black
2812837Sgabeblack@google.com */
2912837Sgabeblack@google.com
3013039Sgabeblack@google.com#include <vector>
3113039Sgabeblack@google.com
3212837Sgabeblack@google.com#include "base/logging.hh"
3312989Sgabeblack@google.com#include "base/types.hh"
3412986Sgabeblack@google.com#include "python/pybind11/pybind.hh"
3513039Sgabeblack@google.com#include "systemc/core/python.hh"
3612837Sgabeblack@google.com#include "systemc/ext/core/sc_time.hh"
3712837Sgabeblack@google.com
3812837Sgabeblack@google.comnamespace sc_core
3912837Sgabeblack@google.com{
4012837Sgabeblack@google.com
4112983Sgabeblack@google.comnamespace
4212837Sgabeblack@google.com{
4312983Sgabeblack@google.com
4412983Sgabeblack@google.comconst char *TimeUnitNames[] = {
4512983Sgabeblack@google.com    [SC_FS] = "fs",
4612983Sgabeblack@google.com    [SC_PS] = "ps",
4712983Sgabeblack@google.com    [SC_NS] = "ns",
4812983Sgabeblack@google.com    [SC_US] = "us",
4912983Sgabeblack@google.com    [SC_MS] = "ms",
5012983Sgabeblack@google.com    [SC_SEC] = "s"
5112983Sgabeblack@google.com};
5212983Sgabeblack@google.com
5312983Sgabeblack@google.comdouble TimeUnitScale[] = {
5412983Sgabeblack@google.com    [SC_FS] = 1.0e-15,
5512983Sgabeblack@google.com    [SC_PS] = 1.0e-12,
5612983Sgabeblack@google.com    [SC_NS] = 1.0e-9,
5712983Sgabeblack@google.com    [SC_US] = 1.0e-6,
5812983Sgabeblack@google.com    [SC_MS] = 1.0e-3,
5912983Sgabeblack@google.com    [SC_SEC] = 1.0
6012983Sgabeblack@google.com};
6112983Sgabeblack@google.com
6213039Sgabeblack@google.combool timeFixed = false;
6313039Sgabeblack@google.combool pythonReady = false;
6413039Sgabeblack@google.com
6513039Sgabeblack@google.comstruct SetInfo
6613039Sgabeblack@google.com{
6713039Sgabeblack@google.com    SetInfo(::sc_core::sc_time *time, double d, ::sc_core::sc_time_unit tu) :
6813039Sgabeblack@google.com        time(time), d(d), tu(tu)
6913039Sgabeblack@google.com    {}
7013039Sgabeblack@google.com
7113039Sgabeblack@google.com    ::sc_core::sc_time *time;
7213039Sgabeblack@google.com    double d;
7313039Sgabeblack@google.com    ::sc_core::sc_time_unit tu;
7413039Sgabeblack@google.com};
7513039Sgabeblack@google.comstd::vector<SetInfo> toSet;
7613039Sgabeblack@google.com
7712986Sgabeblack@google.comvoid
7813039Sgabeblack@google.comsetWork(sc_time *time, double d, ::sc_core::sc_time_unit tu)
7912986Sgabeblack@google.com{
8013039Sgabeblack@google.com    //XXX Assuming the time resolution is 1ps.
8113039Sgabeblack@google.com    double scale = TimeUnitScale[tu] / TimeUnitScale[SC_PS];
8213039Sgabeblack@google.com    // Accellera claims there is a linux bug, and that these next two
8313039Sgabeblack@google.com    // lines work around them.
8413039Sgabeblack@google.com    volatile double tmp = d * scale + 0.5;
8513039Sgabeblack@google.com    *time = sc_time::from_value(static_cast<uint64_t>(tmp));
8613039Sgabeblack@google.com}
8712986Sgabeblack@google.com
8813039Sgabeblack@google.comvoid
8913039Sgabeblack@google.comfixTime()
9013039Sgabeblack@google.com{
9112986Sgabeblack@google.com    auto ticks = pybind11::module::import("m5.ticks");
9212986Sgabeblack@google.com    auto fix_global_frequency = ticks.attr("fixGlobalFrequency");
9312986Sgabeblack@google.com    fix_global_frequency();
9413039Sgabeblack@google.com
9513039Sgabeblack@google.com    for (auto &t: toSet)
9613039Sgabeblack@google.com        setWork(t.time, t.d, t.tu);
9713039Sgabeblack@google.com    toSet.clear();
9812986Sgabeblack@google.com}
9912986Sgabeblack@google.com
10013039Sgabeblack@google.comvoid
10113039Sgabeblack@google.comset(::sc_core::sc_time *time, double d, ::sc_core::sc_time_unit tu)
10213039Sgabeblack@google.com{
10313039Sgabeblack@google.com    // Only fix time once.
10413039Sgabeblack@google.com    if (!timeFixed) {
10513039Sgabeblack@google.com        timeFixed = true;
10613039Sgabeblack@google.com
10713039Sgabeblack@google.com        // If we've run, python is working and we haven't fixed time yet.
10813039Sgabeblack@google.com        if (pythonReady)
10913039Sgabeblack@google.com            fixTime();
11013039Sgabeblack@google.com    }
11113039Sgabeblack@google.com    if (pythonReady) {
11213039Sgabeblack@google.com        // Time should be working. Set up this sc_time.
11313039Sgabeblack@google.com        setWork(time, d, tu);
11413039Sgabeblack@google.com    } else {
11513039Sgabeblack@google.com        // Time isn't set up yet. Defer setting up this sc_time.
11613039Sgabeblack@google.com        toSet.emplace_back(time, d, tu);
11713039Sgabeblack@google.com    }
11813039Sgabeblack@google.com}
11913039Sgabeblack@google.com
12013039Sgabeblack@google.comclass TimeSetter : public ::sc_gem5::PythonReadyFunc
12113039Sgabeblack@google.com{
12213039Sgabeblack@google.com  public:
12313039Sgabeblack@google.com    TimeSetter() : ::sc_gem5::PythonReadyFunc() {}
12413039Sgabeblack@google.com
12513039Sgabeblack@google.com    void
12613039Sgabeblack@google.com    run() override
12713039Sgabeblack@google.com    {
12813039Sgabeblack@google.com        // Record that we've run and python/pybind should be usable.
12913039Sgabeblack@google.com        pythonReady = true;
13013039Sgabeblack@google.com
13113039Sgabeblack@google.com        // If time is already fixed, let python know.
13213039Sgabeblack@google.com        if (timeFixed)
13313039Sgabeblack@google.com            fixTime();
13413039Sgabeblack@google.com    }
13513039Sgabeblack@google.com} timeSetter;
13613039Sgabeblack@google.com
13712983Sgabeblack@google.com} // anonymous namespace
13812983Sgabeblack@google.com
13912983Sgabeblack@google.comsc_time::sc_time() : val(0) {}
14012983Sgabeblack@google.com
14112983Sgabeblack@google.comsc_time::sc_time(double d, sc_time_unit tu)
14212983Sgabeblack@google.com{
14312983Sgabeblack@google.com    val = 0;
14413039Sgabeblack@google.com    if (d != 0)
14513039Sgabeblack@google.com        set(this, d, tu);
14612837Sgabeblack@google.com}
14712837Sgabeblack@google.com
14812983Sgabeblack@google.comsc_time::sc_time(const sc_time &t)
14912837Sgabeblack@google.com{
15012983Sgabeblack@google.com    val = t.val;
15112837Sgabeblack@google.com}
15212837Sgabeblack@google.com
15313057Sgabeblack@google.comsc_time::sc_time(double d, bool scale)
15412925Sgabeblack@google.com{
15513057Sgabeblack@google.com    //XXX Assuming the time resolution is 1ps, and the default unit is 1ns.
15613057Sgabeblack@google.com    set(this, d, scale ? SC_NS : SC_PS);
15712925Sgabeblack@google.com}
15812925Sgabeblack@google.com
15913057Sgabeblack@google.comsc_time::sc_time(sc_dt::uint64 v, bool scale)
16012925Sgabeblack@google.com{
16113057Sgabeblack@google.com    //XXX Assuming the time resolution is 1ps, and the default unit is 1ns.
16213057Sgabeblack@google.com    set(this, static_cast<double>(v), scale ? SC_NS : SC_PS);
16312925Sgabeblack@google.com}
16412925Sgabeblack@google.com
16512837Sgabeblack@google.comsc_time &
16612983Sgabeblack@google.comsc_time::operator = (const sc_time &t)
16712837Sgabeblack@google.com{
16812983Sgabeblack@google.com    val = t.val;
16912837Sgabeblack@google.com    return *this;
17012837Sgabeblack@google.com}
17112837Sgabeblack@google.com
17212837Sgabeblack@google.comsc_dt::uint64
17312837Sgabeblack@google.comsc_time::value() const
17412837Sgabeblack@google.com{
17512983Sgabeblack@google.com    return val;
17612837Sgabeblack@google.com}
17712837Sgabeblack@google.com
17812837Sgabeblack@google.comdouble
17912837Sgabeblack@google.comsc_time::to_double() const
18012837Sgabeblack@google.com{
18113040Sgabeblack@google.com    return static_cast<double>(val);
18212837Sgabeblack@google.com}
18312837Sgabeblack@google.comdouble
18412837Sgabeblack@google.comsc_time::to_seconds() const
18512837Sgabeblack@google.com{
18613057Sgabeblack@google.com    double d = to_double();
18713057Sgabeblack@google.com    //XXX Assuming the time resolution is 1ps.
18813057Sgabeblack@google.com    double scale = TimeUnitScale[SC_PS] / TimeUnitScale[SC_SEC];
18913057Sgabeblack@google.com    return d * scale;
19012837Sgabeblack@google.com}
19112837Sgabeblack@google.com
19212837Sgabeblack@google.comconst std::string
19312837Sgabeblack@google.comsc_time::to_string() const
19412837Sgabeblack@google.com{
19512837Sgabeblack@google.com    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
19612837Sgabeblack@google.com    return "";
19712837Sgabeblack@google.com}
19812837Sgabeblack@google.com
19912837Sgabeblack@google.combool
20012983Sgabeblack@google.comsc_time::operator == (const sc_time &t) const
20112837Sgabeblack@google.com{
20212983Sgabeblack@google.com    return val == t.val;
20312837Sgabeblack@google.com}
20412837Sgabeblack@google.com
20512837Sgabeblack@google.combool
20612983Sgabeblack@google.comsc_time::operator != (const sc_time &t) const
20712837Sgabeblack@google.com{
20812983Sgabeblack@google.com    return val != t.val;
20912837Sgabeblack@google.com}
21012837Sgabeblack@google.com
21112837Sgabeblack@google.combool
21212983Sgabeblack@google.comsc_time::operator < (const sc_time &t) const
21312837Sgabeblack@google.com{
21412983Sgabeblack@google.com    return val < t.val;
21512837Sgabeblack@google.com}
21612837Sgabeblack@google.com
21712837Sgabeblack@google.combool
21812983Sgabeblack@google.comsc_time::operator <= (const sc_time &t) const
21912837Sgabeblack@google.com{
22012983Sgabeblack@google.com    return val <= t.val;
22112837Sgabeblack@google.com}
22212837Sgabeblack@google.com
22312837Sgabeblack@google.combool
22412983Sgabeblack@google.comsc_time::operator > (const sc_time &t) const
22512837Sgabeblack@google.com{
22612983Sgabeblack@google.com    return val > t.val;
22712837Sgabeblack@google.com}
22812837Sgabeblack@google.com
22912837Sgabeblack@google.combool
23012983Sgabeblack@google.comsc_time::operator >= (const sc_time &t) const
23112837Sgabeblack@google.com{
23212983Sgabeblack@google.com    return val >= t.val;
23312837Sgabeblack@google.com}
23412837Sgabeblack@google.com
23512837Sgabeblack@google.comsc_time &
23612983Sgabeblack@google.comsc_time::operator += (const sc_time &t)
23712837Sgabeblack@google.com{
23812983Sgabeblack@google.com    val += t.val;
23912837Sgabeblack@google.com    return *this;
24012837Sgabeblack@google.com}
24112837Sgabeblack@google.com
24212837Sgabeblack@google.comsc_time &
24312983Sgabeblack@google.comsc_time::operator -= (const sc_time &t)
24412837Sgabeblack@google.com{
24512983Sgabeblack@google.com    val -= t.val;
24612837Sgabeblack@google.com    return *this;
24712837Sgabeblack@google.com}
24812837Sgabeblack@google.com
24912837Sgabeblack@google.comsc_time &
25013040Sgabeblack@google.comsc_time::operator *= (double d)
25112837Sgabeblack@google.com{
25213040Sgabeblack@google.com    val = static_cast<int64_t>(static_cast<double>(val) * d + 0.5);
25312837Sgabeblack@google.com    return *this;
25412837Sgabeblack@google.com}
25512837Sgabeblack@google.com
25612837Sgabeblack@google.comsc_time &
25713040Sgabeblack@google.comsc_time::operator /= (double d)
25812837Sgabeblack@google.com{
25913040Sgabeblack@google.com    val = static_cast<int64_t>(static_cast<double>(val) / d + 0.5);
26012837Sgabeblack@google.com    return *this;
26112837Sgabeblack@google.com}
26212837Sgabeblack@google.com
26312837Sgabeblack@google.comvoid
26412983Sgabeblack@google.comsc_time::print(std::ostream &os) const
26512837Sgabeblack@google.com{
26612983Sgabeblack@google.com    if (val == 0) {
26712983Sgabeblack@google.com        os << "0 s";
26812983Sgabeblack@google.com    } else {
26912983Sgabeblack@google.com        //XXX Assuming the time resolution is 1ps.
27012983Sgabeblack@google.com        sc_time_unit tu = SC_PS;
27112983Sgabeblack@google.com        uint64_t scaled = val;
27212983Sgabeblack@google.com        while (tu < SC_SEC && (scaled % 1000) == 0) {
27312983Sgabeblack@google.com            tu = (sc_time_unit)((int)tu + 1);
27412983Sgabeblack@google.com            scaled /= 1000;
27512983Sgabeblack@google.com        }
27612983Sgabeblack@google.com
27712983Sgabeblack@google.com        os << scaled << ' ' << TimeUnitNames[tu];
27812983Sgabeblack@google.com    }
27912837Sgabeblack@google.com}
28012837Sgabeblack@google.com
28112923Sgabeblack@google.comsc_time
28212983Sgabeblack@google.comsc_time::from_value(sc_dt::uint64 u)
28312923Sgabeblack@google.com{
28412983Sgabeblack@google.com    sc_time t;
28512983Sgabeblack@google.com    t.val = u;
28612983Sgabeblack@google.com    return t;
28712923Sgabeblack@google.com}
28812923Sgabeblack@google.com
28912923Sgabeblack@google.comsc_time
29013057Sgabeblack@google.comsc_time::from_seconds(double d)
29112923Sgabeblack@google.com{
29213057Sgabeblack@google.com    sc_time t;
29313057Sgabeblack@google.com    set(&t, d, SC_SEC);
29413057Sgabeblack@google.com    return t;
29512923Sgabeblack@google.com}
29612923Sgabeblack@google.com
29712923Sgabeblack@google.comsc_time
29812923Sgabeblack@google.comsc_time::from_string(const char *str)
29912923Sgabeblack@google.com{
30012923Sgabeblack@google.com    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
30112923Sgabeblack@google.com    return sc_time();
30212923Sgabeblack@google.com}
30312923Sgabeblack@google.com
30412837Sgabeblack@google.comconst sc_time
30512989Sgabeblack@google.comoperator + (const sc_time &a, const sc_time &b)
30612837Sgabeblack@google.com{
30712989Sgabeblack@google.com    return sc_time::from_value(a.value() + b.value());
30812837Sgabeblack@google.com}
30912837Sgabeblack@google.com
31012837Sgabeblack@google.comconst sc_time
31112989Sgabeblack@google.comoperator - (const sc_time &a, const sc_time &b)
31212837Sgabeblack@google.com{
31312989Sgabeblack@google.com    return sc_time::from_value(a.value() - b.value());
31412837Sgabeblack@google.com}
31512837Sgabeblack@google.com
31612837Sgabeblack@google.comconst sc_time
31713040Sgabeblack@google.comoperator * (const sc_time &t, double d)
31812837Sgabeblack@google.com{
31913040Sgabeblack@google.com    volatile double tmp = static_cast<double>(t.value()) * d + 0.5;
32013040Sgabeblack@google.com    return sc_time::from_value(static_cast<int64_t>(tmp));
32112837Sgabeblack@google.com}
32212837Sgabeblack@google.com
32312837Sgabeblack@google.comconst sc_time
32413040Sgabeblack@google.comoperator * (double d, const sc_time &t)
32512837Sgabeblack@google.com{
32613040Sgabeblack@google.com    volatile double tmp = d * static_cast<double>(t.value()) + 0.5;
32713040Sgabeblack@google.com    return sc_time::from_value(static_cast<int64_t>(tmp));
32812837Sgabeblack@google.com}
32912837Sgabeblack@google.com
33012837Sgabeblack@google.comconst sc_time
33113040Sgabeblack@google.comoperator / (const sc_time &t, double d)
33212837Sgabeblack@google.com{
33313040Sgabeblack@google.com    volatile double tmp = static_cast<double>(t.value()) / d + 0.5;
33413040Sgabeblack@google.com    return sc_time::from_value(static_cast<int64_t>(tmp));
33512837Sgabeblack@google.com}
33612837Sgabeblack@google.com
33712837Sgabeblack@google.comdouble
33813040Sgabeblack@google.comoperator / (const sc_time &t1, const sc_time &t2)
33912837Sgabeblack@google.com{
34013040Sgabeblack@google.com    return t1.to_double() / t2.to_double();
34112837Sgabeblack@google.com}
34212837Sgabeblack@google.com
34312837Sgabeblack@google.comstd::ostream &
34412983Sgabeblack@google.comoperator << (std::ostream &os, const sc_time &t)
34512837Sgabeblack@google.com{
34612983Sgabeblack@google.com    t.print(os);
34712837Sgabeblack@google.com    return os;
34812837Sgabeblack@google.com}
34912837Sgabeblack@google.com
35012837Sgabeblack@google.comconst sc_time SC_ZERO_TIME;
35112837Sgabeblack@google.com
35212837Sgabeblack@google.comvoid
35312837Sgabeblack@google.comsc_set_time_resolution(double, sc_time_unit)
35412837Sgabeblack@google.com{
35512837Sgabeblack@google.com    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
35612837Sgabeblack@google.com}
35712837Sgabeblack@google.com
35812837Sgabeblack@google.comsc_time
35912837Sgabeblack@google.comsc_get_time_resolution()
36012837Sgabeblack@google.com{
36112837Sgabeblack@google.com    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
36212837Sgabeblack@google.com    return sc_time();
36312837Sgabeblack@google.com}
36412837Sgabeblack@google.com
36512837Sgabeblack@google.comconst sc_time &
36612837Sgabeblack@google.comsc_max_time()
36712837Sgabeblack@google.com{
36812989Sgabeblack@google.com    static const sc_time MaxScTime = sc_time::from_value(MaxTick);
36912989Sgabeblack@google.com    return MaxScTime;
37012837Sgabeblack@google.com}
37112837Sgabeblack@google.com
37212916Sgabeblack@google.comvoid
37312916Sgabeblack@google.comsc_set_default_time_unit(double, sc_time_unit)
37412916Sgabeblack@google.com{
37512916Sgabeblack@google.com    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
37612916Sgabeblack@google.com}
37712916Sgabeblack@google.com
37812916Sgabeblack@google.comsc_time
37912916Sgabeblack@google.comsc_get_default_time_unit()
38012916Sgabeblack@google.com{
38112916Sgabeblack@google.com    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
38212916Sgabeblack@google.com    return *(sc_time *)nullptr;
38312916Sgabeblack@google.com}
38412916Sgabeblack@google.com
38512927Sgabeblack@google.comsc_time_tuple::sc_time_tuple(const sc_time &)
38612927Sgabeblack@google.com{
38712927Sgabeblack@google.com    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
38812927Sgabeblack@google.com}
38912927Sgabeblack@google.com
39012927Sgabeblack@google.combool
39112927Sgabeblack@google.comsc_time_tuple::has_value() const
39212927Sgabeblack@google.com{
39312927Sgabeblack@google.com    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
39412927Sgabeblack@google.com    return false;
39512927Sgabeblack@google.com}
39612927Sgabeblack@google.com
39712927Sgabeblack@google.comsc_dt::uint64
39812927Sgabeblack@google.comsc_time_tuple::value() const
39912927Sgabeblack@google.com{
40012927Sgabeblack@google.com    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
40112927Sgabeblack@google.com    return 0;
40212927Sgabeblack@google.com}
40312927Sgabeblack@google.com
40412927Sgabeblack@google.comconst char *
40512927Sgabeblack@google.comsc_time_tuple::unit_symbol() const
40612927Sgabeblack@google.com{
40712927Sgabeblack@google.com    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
40812927Sgabeblack@google.com    return "";
40912927Sgabeblack@google.com}
41012927Sgabeblack@google.com
41112927Sgabeblack@google.comdouble
41212927Sgabeblack@google.comsc_time_tuple::to_double() const
41312927Sgabeblack@google.com{
41412927Sgabeblack@google.com    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
41512927Sgabeblack@google.com    return 0.0;
41612927Sgabeblack@google.com}
41712927Sgabeblack@google.com
41812927Sgabeblack@google.comstd::string
41912927Sgabeblack@google.comsc_time_tuple::to_string() const
42012927Sgabeblack@google.com{
42112927Sgabeblack@google.com    warn("%s not implemented.\n", __PRETTY_FUNCTION__);
42212927Sgabeblack@google.com    return "";
42312927Sgabeblack@google.com}
42412927Sgabeblack@google.com
42512837Sgabeblack@google.com} // namespace sc_core
426