sc_signal.hh revision 13044
112841Sgabeblack@google.com/*
212841Sgabeblack@google.com * Copyright 2018 Google, Inc.
312841Sgabeblack@google.com *
412841Sgabeblack@google.com * Redistribution and use in source and binary forms, with or without
512841Sgabeblack@google.com * modification, are permitted provided that the following conditions are
612841Sgabeblack@google.com * met: redistributions of source code must retain the above copyright
712841Sgabeblack@google.com * notice, this list of conditions and the following disclaimer;
812841Sgabeblack@google.com * redistributions in binary form must reproduce the above copyright
912841Sgabeblack@google.com * notice, this list of conditions and the following disclaimer in the
1012841Sgabeblack@google.com * documentation and/or other materials provided with the distribution;
1112841Sgabeblack@google.com * neither the name of the copyright holders nor the names of its
1212841Sgabeblack@google.com * contributors may be used to endorse or promote products derived from
1312841Sgabeblack@google.com * this software without specific prior written permission.
1412841Sgabeblack@google.com *
1512841Sgabeblack@google.com * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1612841Sgabeblack@google.com * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1712841Sgabeblack@google.com * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1812841Sgabeblack@google.com * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1912841Sgabeblack@google.com * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2012841Sgabeblack@google.com * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2112841Sgabeblack@google.com * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2212841Sgabeblack@google.com * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2312841Sgabeblack@google.com * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2412841Sgabeblack@google.com * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2512841Sgabeblack@google.com * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2612841Sgabeblack@google.com *
2712841Sgabeblack@google.com * Authors: Gabe Black
2812841Sgabeblack@google.com */
2912841Sgabeblack@google.com
3012841Sgabeblack@google.com#ifndef __SYSTEMC_EXT_CHANNEL_SC_SIGNAL_HH__
3112841Sgabeblack@google.com#define __SYSTEMC_EXT_CHANNEL_SC_SIGNAL_HH__
3212841Sgabeblack@google.com
3312841Sgabeblack@google.com#include <iostream>
3412933Sgabeblack@google.com#include <string>
3512933Sgabeblack@google.com#include <vector>
3612841Sgabeblack@google.com
3713044Sgabeblack@google.com#include "../core/sc_event.hh"
3812841Sgabeblack@google.com#include "../core/sc_module.hh" // for sc_gen_unique_name
3912841Sgabeblack@google.com#include "../core/sc_prim.hh"
4013044Sgabeblack@google.com#include "../dt/bit/sc_logic.hh"
4112841Sgabeblack@google.com#include "sc_signal_inout_if.hh"
4212841Sgabeblack@google.com#include "warn_unimpl.hh" // for warn_unimpl
4312841Sgabeblack@google.com
4412841Sgabeblack@google.comnamespace sc_core
4512841Sgabeblack@google.com{
4612841Sgabeblack@google.com
4712841Sgabeblack@google.comclass sc_port_base;
4812933Sgabeblack@google.comclass sc_trace_file;
4912933Sgabeblack@google.com
5012933Sgabeblack@google.com// Nonstandard
5112933Sgabeblack@google.com// Despite having a warning "FOR INTERNAL USE ONLY!" in all caps above this
5212933Sgabeblack@google.com// class definition in the Accellera implementation, it appears in their
5312933Sgabeblack@google.com// examples and test programs, and so we need to have it here as well.
5412933Sgabeblack@google.comstruct sc_trace_params
5512933Sgabeblack@google.com{
5612933Sgabeblack@google.com    sc_trace_file *tf;
5712933Sgabeblack@google.com    std::string name;
5812933Sgabeblack@google.com
5912933Sgabeblack@google.com    sc_trace_params(sc_trace_file *tf, const std::string &name) :
6012933Sgabeblack@google.com        tf(tf), name(name)
6112933Sgabeblack@google.com    {}
6212933Sgabeblack@google.com};
6312933Sgabeblack@google.comtypedef std::vector<sc_trace_params *> sc_trace_params_vec;
6412841Sgabeblack@google.com
6512841Sgabeblack@google.comtemplate <class T, sc_writer_policy WRITER_POLICY=SC_ONE_WRITER>
6612841Sgabeblack@google.comclass sc_signal : public sc_signal_inout_if<T>,
6712841Sgabeblack@google.com                  public sc_prim_channel
6812841Sgabeblack@google.com{
6912841Sgabeblack@google.com  public:
7012841Sgabeblack@google.com    sc_signal() : sc_signal_inout_if<T>(),
7113044Sgabeblack@google.com                  sc_prim_channel(sc_gen_unique_name("signal")),
7213044Sgabeblack@google.com                  m_cur_val(T()), m_new_val(T())
7312841Sgabeblack@google.com    {}
7413044Sgabeblack@google.com    explicit sc_signal(const char *name) :
7513044Sgabeblack@google.com        sc_signal_inout_if<T>(), sc_prim_channel(name),
7613044Sgabeblack@google.com        m_cur_val(T()), m_new_val(T())
7712841Sgabeblack@google.com    {}
7812912Sgabeblack@google.com    explicit sc_signal(const char *name, const T &initial_value) :
7913044Sgabeblack@google.com        sc_signal_inout_if<T>(), sc_prim_channel(name),
8013044Sgabeblack@google.com        m_cur_val(initial_value), m_new_val(initial_value)
8113044Sgabeblack@google.com    {}
8212841Sgabeblack@google.com    virtual ~sc_signal() {}
8312841Sgabeblack@google.com
8412841Sgabeblack@google.com    virtual void
8512841Sgabeblack@google.com    register_port(sc_port_base &, const char *)
8612841Sgabeblack@google.com    {
8712841Sgabeblack@google.com        sc_channel_warn_unimpl(__PRETTY_FUNCTION__);
8812841Sgabeblack@google.com    }
8912841Sgabeblack@google.com
9013044Sgabeblack@google.com    virtual const T &read() const { return m_cur_val; }
9113044Sgabeblack@google.com    operator const T&() const { return read(); }
9212841Sgabeblack@google.com
9312841Sgabeblack@google.com    virtual sc_writer_policy
9412841Sgabeblack@google.com    get_writer_policy() const
9512841Sgabeblack@google.com    {
9612841Sgabeblack@google.com        return WRITER_POLICY;
9712841Sgabeblack@google.com    }
9812841Sgabeblack@google.com    virtual void
9913044Sgabeblack@google.com    write(const T &t)
10012841Sgabeblack@google.com    {
10113044Sgabeblack@google.com        m_new_val = t;
10213044Sgabeblack@google.com        bool changed = !(m_cur_val == m_new_val);
10313044Sgabeblack@google.com        //TODO check whether this write follows the write policy.
10413044Sgabeblack@google.com        if (changed)
10513044Sgabeblack@google.com            request_update();
10612841Sgabeblack@google.com    }
10712841Sgabeblack@google.com    sc_signal<T, WRITER_POLICY> &
10813044Sgabeblack@google.com    operator = (const T &t)
10912841Sgabeblack@google.com    {
11013044Sgabeblack@google.com        write(t);
11112841Sgabeblack@google.com        return *this;
11212841Sgabeblack@google.com    }
11312841Sgabeblack@google.com    sc_signal<T, WRITER_POLICY> &
11413044Sgabeblack@google.com    operator = (const sc_signal<T, WRITER_POLICY> &s)
11512841Sgabeblack@google.com    {
11613044Sgabeblack@google.com        write(s.read());
11712841Sgabeblack@google.com        return *this;
11812841Sgabeblack@google.com    }
11912841Sgabeblack@google.com
12012841Sgabeblack@google.com    virtual const sc_event &
12112841Sgabeblack@google.com    default_event() const
12212841Sgabeblack@google.com    {
12313044Sgabeblack@google.com        return value_changed_event();
12412841Sgabeblack@google.com    }
12512841Sgabeblack@google.com    virtual const sc_event &
12612841Sgabeblack@google.com    value_changed_event() const
12712841Sgabeblack@google.com    {
12813044Sgabeblack@google.com        return _valueChangedEvent;
12912841Sgabeblack@google.com    }
13012841Sgabeblack@google.com    virtual bool
13112841Sgabeblack@google.com    event() const
13212841Sgabeblack@google.com    {
13312841Sgabeblack@google.com        sc_channel_warn_unimpl(__PRETTY_FUNCTION__);
13412841Sgabeblack@google.com        return false;
13512841Sgabeblack@google.com    }
13612841Sgabeblack@google.com
13713044Sgabeblack@google.com    virtual void print(std::ostream &os=std::cout) const { os << m_cur_val; }
13812841Sgabeblack@google.com    virtual void
13913044Sgabeblack@google.com    dump(std::ostream &os=std::cout) const
14012841Sgabeblack@google.com    {
14113044Sgabeblack@google.com        os << "     name = " << name() << ::std::endl;
14213044Sgabeblack@google.com        os << "    value = " << m_cur_val << ::std::endl;
14313044Sgabeblack@google.com        os << "new value = " << m_new_val << ::std::endl;
14412841Sgabeblack@google.com    }
14512841Sgabeblack@google.com    virtual const char *kind() const { return "sc_signal"; }
14612841Sgabeblack@google.com
14712841Sgabeblack@google.com  protected:
14812841Sgabeblack@google.com    virtual void
14912841Sgabeblack@google.com    update()
15012841Sgabeblack@google.com    {
15113044Sgabeblack@google.com        if (m_new_val == m_cur_val)
15213044Sgabeblack@google.com            return;
15313044Sgabeblack@google.com
15413044Sgabeblack@google.com        m_cur_val = m_new_val;
15513044Sgabeblack@google.com        _valueChangedEvent.notify(SC_ZERO_TIME);
15612841Sgabeblack@google.com    }
15712841Sgabeblack@google.com
15812945Sgabeblack@google.com    // These members which store the current and future value of the signal
15912945Sgabeblack@google.com    // are not specified in the standard but are referred to directly by one
16012945Sgabeblack@google.com    // of the tests.
16112945Sgabeblack@google.com    T m_cur_val;
16212945Sgabeblack@google.com    T m_new_val;
16312945Sgabeblack@google.com
16412841Sgabeblack@google.com  private:
16513044Sgabeblack@google.com    sc_event _valueChangedEvent;
16613044Sgabeblack@google.com
16712841Sgabeblack@google.com    // Disabled
16812841Sgabeblack@google.com    sc_signal(const sc_signal<T, WRITER_POLICY> &) :
16912841Sgabeblack@google.com            sc_signal_inout_if<T>(), sc_prim_channel("")
17012841Sgabeblack@google.com    {}
17112841Sgabeblack@google.com};
17212841Sgabeblack@google.com
17312841Sgabeblack@google.comtemplate <class T, sc_writer_policy WRITER_POLICY>
17412841Sgabeblack@google.cominline std::ostream &
17512841Sgabeblack@google.comoperator << (std::ostream &os, const sc_signal<T, WRITER_POLICY> &)
17612841Sgabeblack@google.com{
17712841Sgabeblack@google.com    sc_channel_warn_unimpl(__PRETTY_FUNCTION__);
17812841Sgabeblack@google.com    return os;
17912841Sgabeblack@google.com}
18012841Sgabeblack@google.com
18112841Sgabeblack@google.comtemplate <sc_writer_policy WRITER_POLICY>
18212841Sgabeblack@google.comclass sc_signal<bool, WRITER_POLICY> :
18312841Sgabeblack@google.com    public sc_signal_inout_if<bool>, public sc_prim_channel
18412841Sgabeblack@google.com{
18512841Sgabeblack@google.com  public:
18613044Sgabeblack@google.com    sc_signal() : sc_signal_inout_if<bool>(),
18713044Sgabeblack@google.com                  sc_prim_channel(sc_gen_unique_name("signal")),
18813044Sgabeblack@google.com                  m_cur_val(bool()), m_new_val(bool())
18913044Sgabeblack@google.com    {}
19013044Sgabeblack@google.com    explicit sc_signal(const char *name) :
19113044Sgabeblack@google.com        sc_signal_inout_if<bool>(), sc_prim_channel(name),
19213044Sgabeblack@google.com        m_cur_val(bool()), m_new_val(bool())
19313044Sgabeblack@google.com    {}
19412912Sgabeblack@google.com    explicit sc_signal(const char *name, const bool &initial_value) :
19513044Sgabeblack@google.com        sc_signal_inout_if<bool>(), sc_prim_channel(name),
19613044Sgabeblack@google.com        m_cur_val(initial_value), m_new_val(initial_value)
19713044Sgabeblack@google.com    {}
19813044Sgabeblack@google.com    virtual ~sc_signal() {}
19912841Sgabeblack@google.com
20012841Sgabeblack@google.com    virtual void
20112841Sgabeblack@google.com    register_port(sc_port_base &, const char *)
20212841Sgabeblack@google.com    {
20312841Sgabeblack@google.com        sc_channel_warn_unimpl(__PRETTY_FUNCTION__);
20412841Sgabeblack@google.com    }
20512841Sgabeblack@google.com
20613044Sgabeblack@google.com    virtual const bool &read() const { return m_cur_val; }
20713044Sgabeblack@google.com    operator const bool &() const { return read(); }
20812841Sgabeblack@google.com
20912841Sgabeblack@google.com    virtual sc_writer_policy
21012841Sgabeblack@google.com    get_writer_policy() const
21112841Sgabeblack@google.com    {
21212841Sgabeblack@google.com        return WRITER_POLICY;
21312841Sgabeblack@google.com    }
21412841Sgabeblack@google.com    virtual void
21513044Sgabeblack@google.com    write(const bool &b)
21612841Sgabeblack@google.com    {
21713044Sgabeblack@google.com        m_new_val = b;
21813044Sgabeblack@google.com        bool changed = !(m_cur_val == m_new_val);
21913044Sgabeblack@google.com        //TODO check whether this write follows the write policy.
22013044Sgabeblack@google.com        if (changed)
22113044Sgabeblack@google.com            request_update();
22212841Sgabeblack@google.com    }
22312841Sgabeblack@google.com    sc_signal<bool, WRITER_POLICY> &
22413044Sgabeblack@google.com    operator = (const bool &b)
22512841Sgabeblack@google.com    {
22613044Sgabeblack@google.com        write(b);
22712841Sgabeblack@google.com        return *this;
22812841Sgabeblack@google.com    }
22912841Sgabeblack@google.com    sc_signal<bool, WRITER_POLICY> &
23013044Sgabeblack@google.com    operator = (const sc_signal<bool, WRITER_POLICY> &s)
23112841Sgabeblack@google.com    {
23213044Sgabeblack@google.com        write(s.read());
23312841Sgabeblack@google.com        return *this;
23412841Sgabeblack@google.com    }
23512841Sgabeblack@google.com
23612841Sgabeblack@google.com    virtual const sc_event &
23712841Sgabeblack@google.com    default_event() const
23812841Sgabeblack@google.com    {
23913044Sgabeblack@google.com        return value_changed_event();
24012841Sgabeblack@google.com    }
24112841Sgabeblack@google.com
24212841Sgabeblack@google.com    virtual const sc_event &
24312841Sgabeblack@google.com    value_changed_event() const
24412841Sgabeblack@google.com    {
24513044Sgabeblack@google.com        return _valueChangedEvent;
24612841Sgabeblack@google.com    }
24712841Sgabeblack@google.com    virtual const sc_event &
24812841Sgabeblack@google.com    posedge_event() const
24912841Sgabeblack@google.com    {
25013044Sgabeblack@google.com        return _posedgeEvent;
25112841Sgabeblack@google.com    }
25212841Sgabeblack@google.com    virtual const sc_event &
25312841Sgabeblack@google.com    negedge_event() const
25412841Sgabeblack@google.com    {
25513044Sgabeblack@google.com        return _negedgeEvent;
25612841Sgabeblack@google.com    }
25712841Sgabeblack@google.com
25812841Sgabeblack@google.com    virtual bool
25912841Sgabeblack@google.com    event() const
26012841Sgabeblack@google.com    {
26112841Sgabeblack@google.com        sc_channel_warn_unimpl(__PRETTY_FUNCTION__);
26212841Sgabeblack@google.com        return false;
26312841Sgabeblack@google.com    }
26412841Sgabeblack@google.com    virtual bool
26512841Sgabeblack@google.com    posedge() const
26612841Sgabeblack@google.com    {
26712841Sgabeblack@google.com        sc_channel_warn_unimpl(__PRETTY_FUNCTION__);
26812841Sgabeblack@google.com        return false;
26912841Sgabeblack@google.com    }
27012841Sgabeblack@google.com    virtual bool
27112841Sgabeblack@google.com    negedge() const
27212841Sgabeblack@google.com    {
27312841Sgabeblack@google.com        sc_channel_warn_unimpl(__PRETTY_FUNCTION__);
27412841Sgabeblack@google.com        return false;
27512841Sgabeblack@google.com    }
27612841Sgabeblack@google.com
27713044Sgabeblack@google.com    virtual void print(std::ostream &os=std::cout) const { os << m_cur_val; }
27812841Sgabeblack@google.com    virtual void
27913044Sgabeblack@google.com    dump(std::ostream &os=std::cout) const
28012841Sgabeblack@google.com    {
28113044Sgabeblack@google.com        os << "     name = " << name() << ::std::endl;
28213044Sgabeblack@google.com        os << "    value = " << m_cur_val << ::std::endl;
28313044Sgabeblack@google.com        os << "new value = " << m_new_val << ::std::endl;
28412841Sgabeblack@google.com    }
28512841Sgabeblack@google.com    virtual const char *kind() const { return "sc_signal"; }
28612841Sgabeblack@google.com
28712841Sgabeblack@google.com  protected:
28812841Sgabeblack@google.com    virtual void
28912841Sgabeblack@google.com    update()
29012841Sgabeblack@google.com    {
29113044Sgabeblack@google.com        if (m_new_val == m_cur_val)
29213044Sgabeblack@google.com            return;
29313044Sgabeblack@google.com
29413044Sgabeblack@google.com        m_cur_val = m_new_val;
29513044Sgabeblack@google.com        _valueChangedEvent.notify(SC_ZERO_TIME);
29613044Sgabeblack@google.com        if (m_cur_val)
29713044Sgabeblack@google.com            _posedgeEvent.notify(SC_ZERO_TIME);
29813044Sgabeblack@google.com        else
29913044Sgabeblack@google.com            _negedgeEvent.notify(SC_ZERO_TIME);
30012841Sgabeblack@google.com    }
30112841Sgabeblack@google.com
30213044Sgabeblack@google.com    bool m_cur_val;
30313044Sgabeblack@google.com    bool m_new_val;
30413044Sgabeblack@google.com
30512841Sgabeblack@google.com  private:
30613044Sgabeblack@google.com    sc_event _valueChangedEvent;
30713044Sgabeblack@google.com    sc_event _posedgeEvent;
30813044Sgabeblack@google.com    sc_event _negedgeEvent;
30913044Sgabeblack@google.com
31012841Sgabeblack@google.com    // Disabled
31112841Sgabeblack@google.com    sc_signal(const sc_signal<bool, WRITER_POLICY> &) :
31212841Sgabeblack@google.com            sc_signal_inout_if<bool>(), sc_prim_channel("")
31312841Sgabeblack@google.com    {}
31412841Sgabeblack@google.com};
31512841Sgabeblack@google.com
31612841Sgabeblack@google.comtemplate <sc_writer_policy WRITER_POLICY>
31712841Sgabeblack@google.comclass sc_signal<sc_dt::sc_logic, WRITER_POLICY> :
31812841Sgabeblack@google.com    public sc_signal_inout_if<sc_dt::sc_logic>, public sc_prim_channel
31912841Sgabeblack@google.com{
32012841Sgabeblack@google.com  public:
32113044Sgabeblack@google.com    sc_signal() : sc_signal_inout_if<sc_dt::sc_logic>(),
32213044Sgabeblack@google.com                  sc_prim_channel(sc_gen_unique_name("signal")),
32313044Sgabeblack@google.com                  m_cur_val(sc_dt::sc_logic()), m_new_val(sc_dt::sc_logic())
32413044Sgabeblack@google.com    {}
32513044Sgabeblack@google.com    explicit sc_signal(const char *name) :
32613044Sgabeblack@google.com        sc_signal_inout_if<sc_dt::sc_logic>(), sc_prim_channel(name),
32713044Sgabeblack@google.com        m_cur_val(sc_dt::sc_logic()), m_new_val(sc_dt::sc_logic())
32813044Sgabeblack@google.com    {}
32912912Sgabeblack@google.com    explicit sc_signal(const char *name,
33012912Sgabeblack@google.com            const sc_dt::sc_logic &initial_value) :
33113044Sgabeblack@google.com        sc_signal_inout_if<sc_dt::sc_logic>(), sc_prim_channel(name),
33213044Sgabeblack@google.com        m_cur_val(initial_value), m_new_val(initial_value)
33313044Sgabeblack@google.com    {}
33413044Sgabeblack@google.com    virtual ~sc_signal() {}
33512841Sgabeblack@google.com
33612841Sgabeblack@google.com    virtual void
33712841Sgabeblack@google.com    register_port(sc_port_base &, const char *)
33812841Sgabeblack@google.com    {
33912841Sgabeblack@google.com        sc_channel_warn_unimpl(__PRETTY_FUNCTION__);
34012841Sgabeblack@google.com    }
34112841Sgabeblack@google.com
34213044Sgabeblack@google.com    virtual const sc_dt::sc_logic &read() const { return m_cur_val; }
34313044Sgabeblack@google.com    operator const sc_dt::sc_logic &() const { return read(); }
34412841Sgabeblack@google.com
34512841Sgabeblack@google.com    virtual sc_writer_policy
34612841Sgabeblack@google.com    get_writer_policy() const
34712841Sgabeblack@google.com    {
34812841Sgabeblack@google.com        return WRITER_POLICY;
34912841Sgabeblack@google.com    }
35012841Sgabeblack@google.com    virtual void
35113044Sgabeblack@google.com    write(const sc_dt::sc_logic &l)
35212841Sgabeblack@google.com    {
35313044Sgabeblack@google.com        m_new_val = l;
35413044Sgabeblack@google.com        bool changed = !(m_cur_val == m_new_val);
35513044Sgabeblack@google.com        //TODO check whether this write follows the write policy.
35613044Sgabeblack@google.com        if (changed)
35713044Sgabeblack@google.com            request_update();
35812841Sgabeblack@google.com    }
35912841Sgabeblack@google.com    sc_signal<sc_dt::sc_logic, WRITER_POLICY> &
36013044Sgabeblack@google.com    operator = (const sc_dt::sc_logic &l)
36112841Sgabeblack@google.com    {
36213044Sgabeblack@google.com        write(l);
36312841Sgabeblack@google.com        return *this;
36412841Sgabeblack@google.com    }
36512841Sgabeblack@google.com    sc_signal<sc_dt::sc_logic, WRITER_POLICY> &
36613044Sgabeblack@google.com    operator = (const sc_signal<sc_dt::sc_logic, WRITER_POLICY> &s)
36712841Sgabeblack@google.com    {
36813044Sgabeblack@google.com        write(s.read());
36912841Sgabeblack@google.com        return *this;
37012841Sgabeblack@google.com    }
37112841Sgabeblack@google.com
37212841Sgabeblack@google.com    virtual const sc_event &
37312841Sgabeblack@google.com    default_event() const
37412841Sgabeblack@google.com    {
37513044Sgabeblack@google.com        return value_changed_event();
37612841Sgabeblack@google.com    }
37712841Sgabeblack@google.com
37812841Sgabeblack@google.com    virtual const sc_event &
37912841Sgabeblack@google.com    value_changed_event() const
38012841Sgabeblack@google.com    {
38113044Sgabeblack@google.com        return _valueChangedEvent;
38212841Sgabeblack@google.com    }
38312841Sgabeblack@google.com    virtual const sc_event &
38412841Sgabeblack@google.com    posedge_event() const
38512841Sgabeblack@google.com    {
38613044Sgabeblack@google.com        return _posedgeEvent;
38712841Sgabeblack@google.com    }
38812841Sgabeblack@google.com    virtual const sc_event &
38912841Sgabeblack@google.com    negedge_event() const
39012841Sgabeblack@google.com    {
39113044Sgabeblack@google.com        return _negedgeEvent;
39212841Sgabeblack@google.com    }
39312841Sgabeblack@google.com
39412841Sgabeblack@google.com    virtual bool
39512841Sgabeblack@google.com    event() const
39612841Sgabeblack@google.com    {
39712841Sgabeblack@google.com        sc_channel_warn_unimpl(__PRETTY_FUNCTION__);
39812841Sgabeblack@google.com        return false;
39912841Sgabeblack@google.com    }
40012841Sgabeblack@google.com    virtual bool
40112841Sgabeblack@google.com    posedge() const
40212841Sgabeblack@google.com    {
40312841Sgabeblack@google.com        sc_channel_warn_unimpl(__PRETTY_FUNCTION__);
40412841Sgabeblack@google.com        return false;
40512841Sgabeblack@google.com    }
40612841Sgabeblack@google.com    virtual bool
40712841Sgabeblack@google.com    negedge() const
40812841Sgabeblack@google.com    {
40912841Sgabeblack@google.com        sc_channel_warn_unimpl(__PRETTY_FUNCTION__);
41012841Sgabeblack@google.com        return false;
41112841Sgabeblack@google.com    }
41212841Sgabeblack@google.com
41313044Sgabeblack@google.com    virtual void print(std::ostream &os=std::cout) const { os << m_cur_val; }
41412841Sgabeblack@google.com    virtual void
41513044Sgabeblack@google.com    dump(std::ostream &os=std::cout) const
41612841Sgabeblack@google.com    {
41713044Sgabeblack@google.com        os << "     name = " << name() << ::std::endl;
41813044Sgabeblack@google.com        os << "    value = " << m_cur_val << ::std::endl;
41913044Sgabeblack@google.com        os << "new value = " << m_new_val << ::std::endl;
42012841Sgabeblack@google.com    }
42112841Sgabeblack@google.com    virtual const char *kind() const { return "sc_signal"; }
42212841Sgabeblack@google.com
42312841Sgabeblack@google.com  protected:
42412841Sgabeblack@google.com    virtual void
42512841Sgabeblack@google.com    update()
42612841Sgabeblack@google.com    {
42713044Sgabeblack@google.com        if (m_new_val == m_cur_val)
42813044Sgabeblack@google.com            return;
42913044Sgabeblack@google.com
43013044Sgabeblack@google.com        m_cur_val = m_new_val;
43113044Sgabeblack@google.com        _valueChangedEvent.notify(SC_ZERO_TIME);
43213044Sgabeblack@google.com        if (m_cur_val == sc_dt::SC_LOGIC_1)
43313044Sgabeblack@google.com            _posedgeEvent.notify(SC_ZERO_TIME);
43413044Sgabeblack@google.com        else if (m_cur_val == sc_dt::SC_LOGIC_0)
43513044Sgabeblack@google.com            _negedgeEvent.notify(SC_ZERO_TIME);
43612841Sgabeblack@google.com    }
43712841Sgabeblack@google.com
43813044Sgabeblack@google.com    sc_dt::sc_logic m_cur_val;
43913044Sgabeblack@google.com    sc_dt::sc_logic m_new_val;
44013044Sgabeblack@google.com
44112841Sgabeblack@google.com  private:
44213044Sgabeblack@google.com    sc_event _valueChangedEvent;
44313044Sgabeblack@google.com    sc_event _posedgeEvent;
44413044Sgabeblack@google.com    sc_event _negedgeEvent;
44513044Sgabeblack@google.com
44612841Sgabeblack@google.com    // Disabled
44712841Sgabeblack@google.com    sc_signal(const sc_signal<sc_dt::sc_logic, WRITER_POLICY> &) :
44812841Sgabeblack@google.com            sc_signal_inout_if<sc_dt::sc_logic>(), sc_prim_channel("")
44912841Sgabeblack@google.com    {}
45012841Sgabeblack@google.com};
45112841Sgabeblack@google.com
45212841Sgabeblack@google.com} // namespace sc_core
45312841Sgabeblack@google.com
45412841Sgabeblack@google.com#endif  //__SYSTEMC_EXT_CHANNEL_SC_SIGNAL_HH__
455