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