gem5
[DEVELOP-FOR-23.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
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
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
e
f
g
h
i
k
l
m
o
p
q
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
y
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
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
s
t
v
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
Typedefs
a
b
c
d
g
h
i
l
m
r
s
t
u
w
Enumerations
b
h
i
o
p
Enumerator
h
i
o
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
sim
kernel_workload.hh
Go to the documentation of this file.
1
/*
2
* Copyright 2019 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_KERNEL_WORKLOAD_HH__
29
#define __SIM_KERNEL_WORKLOAD_HH__
30
31
#include <string>
32
#include <vector>
33
34
#include "
base/loader/object_file.hh
"
35
#include "
base/loader/symtab.hh
"
36
#include "
base/types.hh
"
37
#include "params/KernelWorkload.hh"
38
#include "
sim/workload.hh
"
39
40
namespace
gem5
41
{
42
43
class
System;
44
45
class
KernelWorkload
:
public
Workload
46
{
47
protected
:
48
loader::MemoryImage
image
;
49
56
Addr
_loadAddrMask
;
57
63
Addr
_loadAddrOffset
;
64
65
Addr
_start
,
_end
;
66
67
std::vector<loader::ObjectFile *>
extras
;
68
69
loader::ObjectFile
*
kernelObj
=
nullptr
;
70
// Keep a separate copy of the kernel's symbol table so we can add things
71
// to it.
72
loader::SymbolTable
kernelSymtab
;
73
74
const
std::string
commandLine
;
75
76
public
:
77
PARAMS
(
KernelWorkload
);
78
79
Addr
start
()
const
{
return
_start
; }
80
Addr
end
()
const
{
return
_end
; }
81
Addr
loadAddrMask
()
const
{
return
_loadAddrMask
; }
82
Addr
loadAddrOffset
()
const
{
return
_loadAddrOffset
; }
83
84
KernelWorkload
(
const
Params
&
p
);
85
86
Addr
getEntry
()
const override
{
return
kernelObj
->
entryPoint
(); }
87
ByteOrder
byteOrder
()
const override
{
return
kernelObj
->
getByteOrder
(); }
88
loader::Arch
89
getArch
()
const override
90
{
91
return
kernelObj
->
getArch
();
92
}
93
94
const
loader::SymbolTable
&
95
symtab
(
ThreadContext
*tc)
override
96
{
97
return
kernelSymtab
;
98
}
99
100
bool
101
insertSymbol
(
const
loader::Symbol
&symbol)
override
102
{
103
return
kernelSymtab
.
insert
(symbol);
104
}
105
106
void
initState
()
override
;
107
108
void
serialize
(
CheckpointOut
&cp)
const override
;
109
void
unserialize
(
CheckpointIn
&cp)
override
;
110
126
template
<
class
T,
typename
... Args>
127
T *
128
addKernelFuncEvent
(
const
char
*lbl, Args... args)
129
{
130
return
addFuncEvent<T>(
kernelSymtab
, lbl, std::forward<Args>(args)...);
131
}
132
133
template
<
class
T,
typename
... Args>
134
T *
135
addKernelFuncEventOrPanic
(
const
char
*lbl, Args... args)
136
{
137
T *
e
= addFuncEvent<T>(
kernelSymtab
, lbl, std::forward<Args>(args)...);
138
panic_if
(!
e
,
"Failed to find kernel symbol '%s'"
, lbl);
139
return
e
;
140
}
142
};
143
144
}
// namespace gem5
145
146
#endif // __SIM_KERNEL_WORKLOAD_HH__
gem5::loader::ObjectFile::getByteOrder
ByteOrder getByteOrder() const
Definition:
object_file.hh:128
gem5::KernelWorkload::KernelWorkload
KernelWorkload(const Params &p)
Definition:
kernel_workload.cc:37
gem5::KernelWorkload::_loadAddrMask
Addr _loadAddrMask
Mask that should be anded for binary/symbol loading.
Definition:
kernel_workload.hh:56
gem5::KernelWorkload::_start
Addr _start
Definition:
kernel_workload.hh:65
gem5::loader::ObjectFile
Definition:
object_file.hh:96
gem5::KernelWorkload::byteOrder
ByteOrder byteOrder() const override
Definition:
kernel_workload.hh:87
gem5::KernelWorkload::_end
Addr _end
Definition:
kernel_workload.hh:65
gem5::loader::ObjectFile::entryPoint
Addr entryPoint() const
Definition:
object_file.hh:136
gem5::KernelWorkload::commandLine
const std::string commandLine
Definition:
kernel_workload.hh:74
gem5::CheckpointIn
Definition:
serialize.hh:68
gem5::KernelWorkload::start
Addr start() const
Definition:
kernel_workload.hh:79
gem5::ArmISA::e
Bitfield< 9 > e
Definition:
misc_types.hh:65
gem5::KernelWorkload::end
Addr end() const
Definition:
kernel_workload.hh:80
gem5::loader::SymbolTable
Definition:
symtab.hh:64
std::vector
STL vector class.
Definition:
stl.hh:37
gem5::KernelWorkload::insertSymbol
bool insertSymbol(const loader::Symbol &symbol) override
Definition:
kernel_workload.hh:101
gem5::KernelWorkload::kernelObj
loader::ObjectFile * kernelObj
Definition:
kernel_workload.hh:69
gem5::KernelWorkload::getArch
loader::Arch getArch() const override
Definition:
kernel_workload.hh:89
gem5::KernelWorkload
Definition:
kernel_workload.hh:45
gem5::SimObject::Params
SimObjectParams Params
Definition:
sim_object.hh:170
gem5::KernelWorkload::PARAMS
PARAMS(KernelWorkload)
gem5::ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition:
thread_context.hh:88
gem5::VegaISA::p
Bitfield< 54 > p
Definition:
pagetable.hh:70
workload.hh
gem5::KernelWorkload::loadAddrMask
Addr loadAddrMask() const
Definition:
kernel_workload.hh:81
gem5::loader::MemoryImage
Definition:
memory_image.hh:52
gem5::KernelWorkload::addKernelFuncEvent
T * addKernelFuncEvent(const char *lbl, Args... args)
Add a function-based event to a kernel symbol.
Definition:
kernel_workload.hh:128
gem5::Workload
Definition:
workload.hh:50
gem5::loader::Arch
Arch
Definition:
object_file.hh:61
gem5::loader::ObjectFile::getArch
Arch getArch() const
Definition:
object_file.hh:126
gem5::KernelWorkload::kernelSymtab
loader::SymbolTable kernelSymtab
Definition:
kernel_workload.hh:72
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition:
types.hh:147
gem5::KernelWorkload::getEntry
Addr getEntry() const override
Definition:
kernel_workload.hh:86
panic_if
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition:
logging.hh:214
gem5::loader::SymbolTable::insert
bool insert(const Symbol &symbol)
Insert a new symbol in the table if it does not already exist.
Definition:
symtab.cc:54
gem5::KernelWorkload::addKernelFuncEventOrPanic
T * addKernelFuncEventOrPanic(const char *lbl, Args... args)
Definition:
kernel_workload.hh:135
types.hh
gem5::KernelWorkload::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition:
kernel_workload.cc:144
gem5::KernelWorkload::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition:
kernel_workload.cc:138
gem5::loader::Symbol
Definition:
symtab.hh:50
gem5::KernelWorkload::symtab
const loader::SymbolTable & symtab(ThreadContext *tc) override
Definition:
kernel_workload.hh:95
gem5::CheckpointOut
std::ostream CheckpointOut
Definition:
serialize.hh:66
symtab.hh
gem5::KernelWorkload::extras
std::vector< loader::ObjectFile * > extras
Definition:
kernel_workload.hh:67
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition:
gpu_translation_state.hh:37
gem5::KernelWorkload::image
loader::MemoryImage image
Definition:
kernel_workload.hh:48
object_file.hh
gem5::KernelWorkload::_loadAddrOffset
Addr _loadAddrOffset
Offset that should be used for binary/symbol loading.
Definition:
kernel_workload.hh:63
gem5::KernelWorkload::loadAddrOffset
Addr loadAddrOffset() const
Definition:
kernel_workload.hh:82
gem5::KernelWorkload::initState
void initState() override
initState() is called on each SimObject when not restoring from a checkpoint.
Definition:
kernel_workload.cc:96
Generated on Sun Jul 30 2023 01:56:59 for gem5 by
doxygen
1.8.17