gem5
v19.0.0.0
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
+
Enumerations
a
b
c
d
e
f
i
l
m
o
p
r
s
t
v
x
+
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
y
+
Enumerations
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
w
+
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Related Functions
:
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Files
File List
+
File Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
z
+
Typedefs
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
+
Enumerations
a
b
c
d
e
f
g
i
l
m
o
p
r
s
t
v
w
+
Enumerator
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
systemc
ext
core
sc_sensitive.hh
Go to the documentation of this file.
1
/*
2
* Copyright 2018 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
* Authors: Gabe Black
28
*/
29
30
#ifndef __SYSTEMC_EXT_CORE_SC_SENSITIVE_HH__
31
#define __SYSTEMC_EXT_CORE_SC_SENSITIVE_HH__
32
33
namespace
sc_gem5
34
{
35
36
class
Process
;
37
38
}
// namespace sc_gem5
39
40
namespace
sc_dt
41
{
42
43
class
sc_logic;
44
45
}
// namespace sc_dt
46
47
namespace
sc_core
48
{
49
50
class
sc_event;
51
class
sc_event_finder;
52
class
sc_interface;
53
class
sc_module;
54
class
sc_port_base;
55
56
template
<
class
T>
57
class
sc_signal_in_if;
58
59
template
<
class
T>
60
class
sc_in;
61
62
template
<
class
T>
63
class
sc_inout;
64
65
class
sc_sensitive
66
{
67
public
:
68
sc_sensitive
&
operator <<
(
const
sc_event
&);
69
sc_sensitive
&
operator <<
(
const
sc_interface
&);
70
sc_sensitive
&
operator <<
(
const
sc_port_base
&);
71
sc_sensitive
&
operator <<
(
sc_event_finder
&);
72
73
sc_sensitive
&
operator <<
(::
sc_gem5::Process
*
p
);
74
75
// Nonstandard.
76
void
operator () (::
sc_gem5::Process
*p,
const
sc_signal_in_if<bool>
&);
77
void
operator () (::
sc_gem5::Process
*p,
78
const
sc_signal_in_if<sc_dt::sc_logic>
&);
79
void
operator () (::
sc_gem5::Process
*p,
const
sc_in<bool>
&);
80
void
operator () (::
sc_gem5::Process
*p,
const
sc_in<sc_dt::sc_logic>
&);
81
void
operator () (::
sc_gem5::Process
*p,
const
sc_inout<bool>
&);
82
void
operator () (::
sc_gem5::Process
*p,
83
const
sc_inout<sc_dt::sc_logic>
&);
84
void
operator () (::
sc_gem5::Process
*p,
sc_event_finder
&);
85
86
private
:
87
friend
class
sc_module
;
88
89
// Install all the static events which may not have been ready at
90
// construction time, like the default_event of the peer of an unbound
91
// port.
92
void
finalize();
93
94
sc_sensitive
();
95
96
::sc_gem5::Process
*
currentProcess
;
97
};
98
99
}
// namespace sc_core
100
101
#endif //__SYSTEMC_EXT_CORE_SC_SENSITIVE_HH__
sc_gem5
Definition:
sc_clock.cc:44
sc_core::sc_interface
Definition:
sc_interface.hh:39
sc_dt
Definition:
sc_bit.cc:67
sc_gem5::Process
Definition:
process.hh:64
sc_core::sc_in< bool >
Definition:
sc_in.hh:167
sc_core::sc_sensitive
Definition:
sc_sensitive.hh:65
sc_core
Definition:
messages.cc:33
sc_core::sc_event
Definition:
sc_event.hh:171
sc_core::sc_in< sc_dt::sc_logic >
Definition:
sc_in.hh:330
sc_core::sc_port_base
Definition:
sc_port.hh:76
sc_core::sc_sensitive::currentProcess
::sc_gem5::Process * currentProcess
Definition:
sc_sensitive.hh:96
sc_core::sc_inout< sc_dt::sc_logic >
Definition:
sc_inout.hh:368
sc_core::sc_module
Definition:
sc_module.hh:99
sc_core::sc_signal_in_if< sc_dt::sc_logic >
Definition:
sc_signal_in_if.hh:110
sc_core::sc_inout< bool >
Definition:
sc_inout.hh:195
sc_core::sc_signal_in_if< bool >
Definition:
sc_signal_in_if.hh:76
GenericISA::operator<<
std::ostream & operator<<(std::ostream &os, const SimplePCState< MachInst > &pc)
Definition:
types.hh:187
Process
Definition:
process.hh:64
MipsISA::p
Bitfield< 0 > p
Definition:
pra_constants.hh:325
sc_core::sc_event_finder
Definition:
sc_event.hh:214
Generated on Fri Feb 28 2020 16:27:03 for gem5 by
doxygen
1.8.13