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
gpu-compute
simple_pool_manager.cc
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2015 Advanced Micro Devices, Inc.
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 met:
7
*
8
* 1. Redistributions of source code must retain the above copyright notice,
9
* this list of conditions and the following disclaimer.
10
*
11
* 2. Redistributions in binary form must reproduce the above copyright notice,
12
* this list of conditions and the following disclaimer in the documentation
13
* and/or other materials provided with the distribution.
14
*
15
* 3. Neither the name of the copyright holder nor the names of its
16
* contributors may be used to endorse or promote products derived from this
17
* software without specific prior written permission.
18
*
19
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
23
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29
* POSSIBILITY OF SUCH DAMAGE.
30
*/
31
32
#include "
gpu-compute/simple_pool_manager.hh
"
33
34
#include "
base/logging.hh
"
35
36
namespace
gem5
37
{
38
39
// return the min number of elements that the manager can reserve given
40
// a request for "size" elements
41
uint32_t
42
SimplePoolManager::minAllocatedElements
(uint32_t size)
43
{
44
fatal_if
(size <= 0 || size >
poolSize
(),
"Illegal VGPR region size=%d\n"
,
45
size);
46
47
return
size %
minAllocation
() > 0 ?
48
(
minAllocation
() - (size %
minAllocation
())) + size : size;
49
}
50
51
std::string
52
SimplePoolManager::printRegion
()
53
{
54
std::string _cout;
55
if
(
_reservedGroups
== 0)
56
_cout =
"VRF is empty\n"
;
57
else
if
(
_reservedGroups
> 0) {
58
uint32_t reservedEntries =
_reservedGroups
*
_regionSize
;
59
_cout =
"VRF reserves "
+
std::to_string
(reservedEntries) +
" VGPRs\n"
;
60
}
61
62
return
_cout;
63
}
64
65
bool
66
SimplePoolManager::canAllocate
(uint32_t numRegions, uint32_t size)
67
{
68
return
_reservedGroups
== 0;
69
}
70
71
void
72
SimplePoolManager::freeRegion
(uint32_t firstIdx, uint32_t lastIdx)
73
{
74
assert(
_reservedGroups
> 0);
75
--
_reservedGroups
;
76
77
if
(!
_reservedGroups
)
78
_nxtFreeIdx
= 0;
79
}
80
81
uint32_t
82
SimplePoolManager::allocateRegion
(
const
uint32_t size,
83
uint32_t *reservedPoolSize)
84
{
85
uint32_t actualSize =
minAllocatedElements
(size);
86
uint32_t startIdx =
_nxtFreeIdx
;
87
_nxtFreeIdx
+= actualSize;
88
_regionSize
= actualSize;
89
assert(
_nxtFreeIdx
<
poolSize
());
90
*reservedPoolSize = actualSize;
91
++
_reservedGroups
;
92
93
return
startIdx;
94
}
95
96
uint32_t
97
SimplePoolManager::regionSize
(
std::pair<uint32_t, uint32_t>
®ion)
98
{
99
bool
wrapAround = (region.first > region.second);
100
if
(!wrapAround) {
101
return
region.second - region.first + 1;
102
}
else
{
103
return
region.second +
poolSize
() - region.first + 1;
104
}
105
}
106
107
}
// namespace gem5
simple_pool_manager.hh
gem5::SimplePoolManager::allocateRegion
uint32_t allocateRegion(const uint32_t size, uint32_t *reservedPoolSize)
Definition:
simple_pool_manager.cc:82
sc_dt::to_string
const std::string to_string(sc_enc enc)
Definition:
sc_fxdefs.cc:91
gem5::SimplePoolManager::_reservedGroups
uint32_t _reservedGroups
Definition:
simple_pool_manager.hh:69
gem5::SimplePoolManager::_nxtFreeIdx
int _nxtFreeIdx
Definition:
simple_pool_manager.hh:67
gem5::SimplePoolManager::canAllocate
bool canAllocate(uint32_t numRegions, uint32_t size)
Definition:
simple_pool_manager.cc:66
gem5::SimplePoolManager::regionSize
uint32_t regionSize(std::pair< uint32_t, uint32_t > ®ion)
Definition:
simple_pool_manager.cc:97
gem5::PoolManager::minAllocation
uint32_t minAllocation()
Definition:
pool_manager.hh:51
std::pair
STL pair class.
Definition:
stl.hh:58
gem5::SimplePoolManager::minAllocatedElements
uint32_t minAllocatedElements(uint32_t size)
Definition:
simple_pool_manager.cc:42
gem5::SimplePoolManager::printRegion
std::string printRegion()
Definition:
simple_pool_manager.cc:52
logging.hh
gem5::PoolManager::poolSize
uint32_t poolSize()
Definition:
pool_manager.hh:60
fatal_if
#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
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition:
gpu_translation_state.hh:37
gem5::SimplePoolManager::_regionSize
uint32_t _regionSize
Definition:
simple_pool_manager.hh:65
gem5::SimplePoolManager::freeRegion
void freeRegion(uint32_t firstIdx, uint32_t lastIdx)
Definition:
simple_pool_manager.cc:72
Generated on Sun Jul 30 2023 01:56:57 for gem5 by
doxygen
1.8.17