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
base
loader
memory_image.cc
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2002-2004 The Regents of The University of Michigan
3
* All rights reserved.
4
*
5
* Redistribution and use in source and binary forms, with or without
6
* modification, are permitted provided that the following conditions are
7
* met: redistributions of source code must retain the above copyright
8
* notice, this list of conditions and the following disclaimer;
9
* redistributions in binary form must reproduce the above copyright
10
* notice, this list of conditions and the following disclaimer in the
11
* documentation and/or other materials provided with the distribution;
12
* neither the name of the copyright holders nor the names of its
13
* contributors may be used to endorse or promote products derived from
14
* this software without specific prior written permission.
15
*
16
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
*/
28
29
#include "
base/loader/memory_image.hh
"
30
#include "
mem/port_proxy.hh
"
31
32
namespace
gem5
33
{
34
35
namespace
loader
36
{
37
38
bool
39
MemoryImage::writeSegment
(
const
Segment
&
seg
,
const
PortProxy
&proxy)
const
40
{
41
if
(
seg
.size != 0) {
42
if
(
seg
.data) {
43
proxy.
writeBlob
(
seg
.base,
seg
.data,
seg
.size);
44
}
else
{
45
// no image: must be bss
46
proxy.
memsetBlob
(
seg
.base, 0,
seg
.size);
47
}
48
}
49
return
true
;
50
}
51
52
bool
53
MemoryImage::write
(
const
PortProxy
&proxy)
const
54
{
55
for
(
auto
&
seg
:
_segments
)
56
if
(!
writeSegment
(
seg
, proxy))
57
return
false
;
58
return
true
;
59
}
60
61
MemoryImage
&
62
MemoryImage::move
(std::function<
Addr
(
Addr
)> mapper)
63
{
64
for
(
auto
&
seg
:
_segments
)
65
seg
.base = mapper(
seg
.base);
66
return
*
this
;
67
}
68
69
}
// namespace loader
70
}
// namespace gem5
gem5::PortProxy::writeBlob
void writeBlob(Addr addr, const void *p, int size) const
Same as tryWriteBlob, but insists on success.
Definition:
port_proxy.hh:192
gem5::loader::MemoryImage::_segments
std::vector< Segment > _segments
Definition:
memory_image.hh:99
gem5::loader::MemoryImage::Segment
Definition:
memory_image.hh:55
gem5::loader::MemoryImage::move
MemoryImage & move(std::function< Addr(Addr)> mapper)
Definition:
memory_image.cc:62
gem5::loader::MemoryImage
Definition:
memory_image.hh:52
port_proxy.hh
gem5::PortProxy
This object is a proxy for a port or other object which implements the functional response protocol,...
Definition:
port_proxy.hh:86
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition:
types.hh:147
gem5::PortProxy::memsetBlob
void memsetBlob(Addr addr, uint8_t v, int size) const
Same as tryMemsetBlob, but insists on success.
Definition:
port_proxy.hh:202
gem5::X86ISA::seg
Bitfield< 2, 0 > seg
Definition:
types.hh:87
gem5::loader::MemoryImage::write
bool write(const PortProxy &proxy) const
Definition:
memory_image.cc:53
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition:
gpu_translation_state.hh:37
memory_image.hh
gem5::loader::MemoryImage::writeSegment
bool writeSegment(const Segment &seg, const PortProxy &proxy) const
Definition:
memory_image.cc:39
Generated on Sun Jul 30 2023 01:56:51 for gem5 by
doxygen
1.8.17