gem5
v20.1.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
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Enumerations
a
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
n
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
l
m
n
o
p
r
s
t
u
v
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
_
a
b
c
d
e
f
g
h
i
l
m
o
p
q
r
s
t
v
Enumerator
_
a
b
c
d
e
f
g
h
i
k
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
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
systemc
core
kernel.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
28
#ifndef __SYSTEMC_KERNEL_HH__
29
#define __SYSTEMC_KERNEL_HH__
30
31
#include "params/SystemC_Kernel.hh"
32
#include "
sim/sim_object.hh
"
33
#include "
systemc/ext/core/sc_main.hh
"
34
35
namespace
sc_gem5
36
{
37
38
/*
39
* This class represents the systemc kernel. There should be exactly one in
40
* the simulation. It receives gem5 SimObject lifecycle callbacks (init,
41
* regStats, etc.) and manages the lifecycle of the systemc simulation
42
* accordingly. It also acts as a collecting point for systemc related
43
* control functionality.
44
*/
45
class
Kernel
:
public
SimObject
46
{
47
public
:
48
typedef
SystemC_KernelParams
Params
;
49
Kernel
(
Params
*
params
);
50
51
void
init
()
override
;
52
void
regStats
()
override
;
53
void
startup
()
override
;
54
55
void
t0Handler
();
56
57
static
sc_core::sc_status
status
();
58
static
void
status
(
sc_core::sc_status
s
);
59
60
static
void
stop
();
61
62
static
bool
startOfSimulationComplete
();
63
static
bool
endOfSimulationComplete
();
64
65
private
:
66
static
void
stopWork
();
67
68
EventWrapper<Kernel, &Kernel::t0Handler>
t0Event
;
69
};
70
71
extern
Kernel
*
kernel
;
72
73
}
// namespace sc_gem5
74
75
#endif // __SYSTEMC_KERNEL_H__
sc_gem5::Kernel::regStats
void regStats() override
Callback to set stat parameters.
Definition:
kernel.cc:85
SimObject::Params
SimObjectParams Params
Definition:
sim_object.hh:113
sc_gem5::Kernel::stop
static void stop()
Definition:
kernel.cc:140
sc_gem5::Kernel::endOfSimulationComplete
static bool endOfSimulationComplete()
Definition:
kernel.cc:52
sc_gem5::Kernel::t0Handler
void t0Handler()
Definition:
kernel.cc:169
EventWrapper
Definition:
eventq.hh:1070
sc_gem5::Kernel::init
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition:
kernel.cc:65
sc_gem5::kernel
Kernel * kernel
Definition:
kernel.cc:181
sc_gem5::Kernel::Kernel
Kernel(Params *params)
Definition:
kernel.cc:57
sc_gem5::Kernel
Definition:
kernel.hh:45
sim_object.hh
sc_main.hh
sc_gem5::Kernel::stopWork
static void stopWork()
Definition:
kernel.cc:149
sc_gem5::Kernel::t0Event
EventWrapper< Kernel, &Kernel::t0Handler > t0Event
Definition:
kernel.hh:68
sc_gem5::Kernel::startOfSimulationComplete
static bool startOfSimulationComplete()
Definition:
kernel.cc:51
SimObject::params
const Params * params() const
Definition:
sim_object.hh:119
sc_gem5::Kernel::startup
void startup() override
startup() is the final initialization call before simulation.
Definition:
kernel.cc:109
sc_core::sc_status
sc_status
Definition:
sc_main.hh:81
sc_gem5
Definition:
sc_clock.cc:42
ArmISA::s
Bitfield< 4 > s
Definition:
miscregs_types.hh:556
sc_gem5::Kernel::status
static sc_core::sc_status status()
Definition:
kernel.cc:54
sc_gem5::Kernel::Params
SystemC_KernelParams Params
Definition:
kernel.hh:48
SimObject
Abstract superclass for simulation objects.
Definition:
sim_object.hh:92
Generated on Wed Sep 30 2020 14:02:14 for gem5 by
doxygen
1.8.17