gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
TBEStorage.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2021 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 #ifndef __MEM_RUBY_STRUCTURES_TBESTORAGE_HH__
39 #define __MEM_RUBY_STRUCTURES_TBESTORAGE_HH__
40 
41 #include <cassert>
42 #include <stack>
43 #include <unordered_map>
44 
45 #include <base/statistics.hh>
46 
47 // The TBEStorage is used to track the resources consumed by the TBETable,
48 // i.e. the number of available TBE slots.
49 //
50 // TBEStorage resource tracking has two main differences from TBETable:
51 //
52 // 1) Allows slot reservation. This is useful to implement protocols that
53 // employ retry/credit messages instead of stall when the controller runs
54 // out of TBEs to accept new request.
55 //
56 // 2) Can also assign multiple entries to the same slot. This is useful to
57 // more easily model cases where multiple transactions share the same TBE
58 // resource (i.e. the slot).
59 // E.g: a request that triggers a replacement in a system without
60 // dedicated WB/Eviction buffer; both transactions can can have separate
61 // logical TBEs associated to the same slot.
62 //
63 // The motivation for having a separate structures for tracking TBEs
64 // availability are twofold:
65 //
66 // - Keeps TBETable simple and without the additional overhead for
67 // protocols that do not need these additional features.
68 //
69 // - Having two separate transactions sharing the same TBE resource using
70 // the current TBETable would be cumbersome since the TBETable is indexed
71 // by the transaction address.
72 
73 class TBEStorage {
74  public:
75  TBEStorage(Stats::Group *parent, int number_of_TBEs);
76 
77  // Returns the current number of slots allocated
78  int size() const { return m_slots_used.size(); }
79 
80  // Returns the total capacity of this TBEStorage table
81  int capacity() const { return m_slots_used.size() + m_slots_avail.size(); }
82 
83  // Returns number of slots currently reserved
84  int reserved() const { return m_reserved; }
85 
86  // Returns the number of slots available
87  int slotsAvailable() const { return m_slots_avail.size() - m_reserved; }
88 
89  // Returns the TBEStorage utilization
90  float utilization() const { return size() / (float)capacity(); }
91 
92  // Returns true if slotsAvailable() >= n; current_time is always ignored
93  // This allows this class to be used with check_allocate in SLICC to
94  // trigger resource stalls when there are no slots available
95  bool areNSlotsAvailable(int n, Tick current_time = 0) const;
96 
97  // Increase/decrease the number of reserved slots. Having reserved slots
98  // reduces the number of slots available for allocation
99  void incrementReserved();
100  void decrementReserved();
101 
102  // Assign a TBETable entry to a free slot and returns the slot number.
103  // Notice we don't need any info from TBETable and just track the number
104  // of entries assigned to each slot.
105  // This funcion requires slotsAvailable() > 0
106  int addEntryToNewSlot();
107 
108  // Assign an entry to an existing non-empty slot
109  void addEntryToSlot(int slot);
110 
111  // Remove an entry from an existing non-empty slot. The slot becomes
112  // available again when the number of assigned entries == 0
113  void removeEntryFromSlot(int slot);
114 
115  private:
117  std::stack<int> m_slots_avail;
118  std::unordered_map<int, int> m_slots_used;
119 
121  {
122  TBEStorageStats(Stats::Group *parent);
123 
124  // Statistical variables
128  } m_stats;
129 };
130 
131 inline bool
132 TBEStorage::areNSlotsAvailable(int n, Tick current_time) const
133 {
134  return slotsAvailable() >= n;
135 }
136 
137 inline void
139 {
140  ++m_reserved;
142 }
143 
144 inline void
146 {
147  assert(m_reserved > 0);
148  --m_reserved;
150 }
151 
152 inline int
154 {
155  assert(slotsAvailable() > 0);
156  assert(m_slots_avail.size() > 0);
157  int slot = m_slots_avail.top();
158  m_slots_used[slot] = 1;
159  m_slots_avail.pop();
160  m_stats.avg_size = size();
162  return slot;
163 }
164 
165 inline void
167 {
168  auto iter = m_slots_used.find(slot);
169  assert(iter != m_slots_used.end());
170  iter->second += 1;
171 }
172 
173 inline void
175 {
176  auto iter = m_slots_used.find(slot);
177  assert(iter != m_slots_used.end());
178  assert(iter->second > 0);
179  iter->second -= 1;
180  if (iter->second == 0) {
181  m_slots_used.erase(iter);
182  m_slots_avail.push(slot);
183  }
184  m_stats.avg_size = size();
186 }
187 
188 #endif
TBEStorage::TBEStorageStats::avg_util
Stats::Average avg_util
Definition: TBEStorage.hh:126
TBEStorage::m_stats
TBEStorage::TBEStorageStats m_stats
TBEStorage::size
int size() const
Definition: TBEStorage.hh:78
TBEStorage::incrementReserved
void incrementReserved()
Definition: TBEStorage.hh:138
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
TBEStorage::m_slots_avail
std::stack< int > m_slots_avail
Definition: TBEStorage.hh:117
TBEStorage
Definition: TBEStorage.hh:73
TBEStorage::utilization
float utilization() const
Definition: TBEStorage.hh:90
ArmISA::n
Bitfield< 31 > n
Definition: miscregs_types.hh:450
TBEStorage::TBEStorageStats::avg_size
Stats::Average avg_size
Definition: TBEStorage.hh:125
TBEStorage::capacity
int capacity() const
Definition: TBEStorage.hh:81
TBEStorage::addEntryToNewSlot
int addEntryToNewSlot()
Definition: TBEStorage.hh:153
TBEStorage::removeEntryFromSlot
void removeEntryFromSlot(int slot)
Definition: TBEStorage.hh:174
statistics.hh
TBEStorage::TBEStorageStats
Definition: TBEStorage.hh:120
TBEStorage::decrementReserved
void decrementReserved()
Definition: TBEStorage.hh:145
TBEStorage::TBEStorageStats::TBEStorageStats
TBEStorageStats(Stats::Group *parent)
Definition: TBEStorage.cc:47
TBEStorage::TBEStorage
TBEStorage(Stats::Group *parent, int number_of_TBEs)
Definition: TBEStorage.cc:40
Stats::Average
A stat that calculates the per tick average of a value.
Definition: statistics.hh:1960
TBEStorage::m_slots_used
std::unordered_map< int, int > m_slots_used
Definition: TBEStorage.hh:118
TBEStorage::reserved
int reserved() const
Definition: TBEStorage.hh:84
Stats::Group
Statistics container.
Definition: group.hh:87
TBEStorage::TBEStorageStats::avg_reserved
Stats::Average avg_reserved
Definition: TBEStorage.hh:127
TBEStorage::areNSlotsAvailable
bool areNSlotsAvailable(int n, Tick current_time=0) const
Definition: TBEStorage.hh:132
TBEStorage::addEntryToSlot
void addEntryToSlot(int slot)
Definition: TBEStorage.hh:166
TBEStorage::slotsAvailable
int slotsAvailable() const
Definition: TBEStorage.hh:87
TBEStorage::m_reserved
int m_reserved
Definition: TBEStorage.hh:116

Generated on Tue Mar 23 2021 19:41:28 for gem5 by doxygen 1.8.17