gem5 v24.0.0.0
Loading...
Searching...
No Matches
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
33
34#include "base/logging.hh"
35
36namespace gem5
37{
38
39// return the min number of elements that the manager can reserve given
40// a request for "size" elements
41uint32_t
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
51std::string
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
65bool
66SimplePoolManager::canAllocate(uint32_t numRegions, uint32_t size)
67{
68 return _reservedGroups == 0;
69}
70
71void
72SimplePoolManager::freeRegion(uint32_t firstIdx, uint32_t lastIdx)
73{
74 assert(_reservedGroups > 0);
76
77 if (!_reservedGroups)
78 _nxtFreeIdx = 0;
79}
80
81uint32_t
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;
92
93 return startIdx;
94}
95
96uint32_t
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
uint32_t poolSize()
uint32_t minAllocation()
uint32_t allocateRegion(const uint32_t size, uint32_t *reservedPoolSize)
uint32_t minAllocatedElements(uint32_t size)
void freeRegion(uint32_t firstIdx, uint32_t lastIdx)
bool canAllocate(uint32_t numRegions, uint32_t size)
uint32_t regionSize(std::pair< uint32_t, uint32_t > &region)
STL pair class.
Definition stl.hh:58
#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
Copyright (c) 2024 - Pranith Kumar Copyright (c) 2020 Inria All rights reserved.
Definition binary32.hh:36

Generated on Tue Jun 18 2024 16:24:04 for gem5 by doxygen 1.11.0