gem5 v23.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
signal.hh
Go to the documentation of this file.
1/*
2 * Copyright 2022 Google, Inc.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright
9 * notice, this list of conditions and the following disclaimer in the
10 * documentation and/or other materials provided with the distribution;
11 * neither the name of the copyright holders nor the names of its
12 * contributors may be used to endorse or promote products derived from
13 * this software without specific prior written permission.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
18 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
19 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28#ifndef __SIM_SIGNAL_HH__
29#define __SIM_SIGNAL_HH__
30
31#include <functional>
32
33#include "base/logging.hh"
34#include "sim/port.hh"
35
36namespace gem5
37{
38
39template <typename State>
40class SignalSourcePort;
41
42template <typename State>
43class SignalSinkPort : public Port
44{
45 public:
46 using OnChangeFunc = std::function<void(const State &new_val)>;
47
48 private:
50
52
53 State _state = {};
55
56 protected:
57 void
58 set(const State &new_state)
59 {
60 if (new_state == _state)
61 return;
62
63 _state = new_state;
64 if (_onChange)
66 }
67
68 public:
69 SignalSinkPort(const std::string &_name, PortID _id=InvalidPortID) :
70 Port(_name, _id)
71 {}
72
73 const State &state() const { return _state; }
74 void onChange(OnChangeFunc func) { _onChange = std::move(func); }
75
76 void
77 bind(Port &peer) override
78 {
79 _source = dynamic_cast<SignalSourcePort<State> *>(&peer);
80 fatal_if(!_source, "Attempt to bind signal pin %s to "
81 "incompatible pin %s", name(), peer.name());
82 Port::bind(peer);
83 }
84 void
85 unbind() override
86 {
87 _source = nullptr;
89 }
90};
91
92template <typename State>
93class SignalSourcePort : public Port
94{
95 private:
97 State _state = {};
98
99 public:
100 SignalSourcePort(const std::string &_name, PortID _id=InvalidPortID) :
101 Port(_name, _id)
102 {}
103
104 void
105 set(const State &new_state)
106 {
107 _state = new_state;
108 sink->set(new_state);
109 }
110
111 const State &state() const { return _state; }
112
113 void
114 bind(Port &peer) override
115 {
116 sink = dynamic_cast<SignalSinkPort<State> *>(&peer);
117 fatal_if(!sink, "Attempt to bind signal pin %s to "
118 "incompatible pin %s", name(), peer.name());
119 Port::bind(peer);
120 }
121 void
122 unbind() override
123 {
124 sink = nullptr;
125 Port::unbind();
126 }
127};
128
129} // namespace gem5
130
131#endif //__SIM_SIGNAL_HH__
Ports are used to interface objects to each other.
Definition port.hh:62
const std::string name() const
Return port name (for DPRINTF).
Definition port.hh:111
virtual void unbind()
Dettach from a peer port.
Definition port.hh:126
virtual void bind(Port &peer)
Attach to a peer port.
Definition port.hh:118
OnChangeFunc _onChange
Definition signal.hh:54
std::function< void(const State &new_val)> OnChangeFunc
Definition signal.hh:46
const State & state() const
Definition signal.hh:73
void onChange(OnChangeFunc func)
Definition signal.hh:74
void set(const State &new_state)
Definition signal.hh:58
void bind(Port &peer) override
Attach to a peer port.
Definition signal.hh:77
SignalSourcePort< State > * _source
Definition signal.hh:51
SignalSinkPort(const std::string &_name, PortID _id=InvalidPortID)
Definition signal.hh:69
void unbind() override
Dettach from a peer port.
Definition signal.hh:85
void bind(Port &peer) override
Attach to a peer port.
Definition signal.hh:114
const State & state() const
Definition signal.hh:111
void unbind() override
Dettach from a peer port.
Definition signal.hh:122
SignalSourcePort(const std::string &_name, PortID _id=InvalidPortID)
Definition signal.hh:100
SignalSinkPort< State > * sink
Definition signal.hh:96
void set(const State &new_state)
Definition signal.hh:105
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Definition logging.hh:236
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
const PortID InvalidPortID
Definition types.hh:246
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition types.hh:245
Port Object Declaration.

Generated on Mon Jul 10 2023 14:24:33 for gem5 by doxygen 1.9.7