gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
fu_pool.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012-2013 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  * Copyright (c) 2006 The Regents of The University of Michigan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
41 #include "cpu/o3/fu_pool.hh"
42 
43 #include <sstream>
44 
45 #include "cpu/func_unit.hh"
46 
48 //
49 // A pool of function units
50 //
51 
52 inline void
54 {
55  funcUnitsIdx.push_back(fu_idx);
56  ++size;
57 }
58 
59 inline int
61 {
62  int retval = funcUnitsIdx[idx++];
63 
64  if (idx == size)
65  idx = 0;
66 
67  return retval;
68 }
69 
71 {
72  fuListIterator i = funcUnits.begin();
73  fuListIterator end = funcUnits.end();
74  for (; i != end; ++i)
75  delete *i;
76 }
77 
78 
79 // Constructor
81  : SimObject(p)
82 {
83  numFU = 0;
84 
85  funcUnits.clear();
86 
87  maxOpLatencies.fill(Cycles(0));
88  pipelined.fill(true);
89 
90  //
91  // Iterate through the list of FUDescData structures
92  //
93  const std::vector<FUDesc *> &paramList = p.FUList;
94  for (FUDDiterator i = paramList.begin(); i != paramList.end(); ++i) {
95 
96  //
97  // Don't bother with this if we're not going to create any FU's
98  //
99  if ((*i)->number) {
100  //
101  // Create the FuncUnit object from this structure
102  // - add the capabilities listed in the FU's operation
103  // description
104  //
105  // We create the first unit, then duplicate it as needed
106  //
107  FuncUnit *fu = new FuncUnit;
108 
109  OPDDiterator j = (*i)->opDescList.begin();
110  OPDDiterator end = (*i)->opDescList.end();
111  for (; j != end; ++j) {
112  // indicate that this pool has this capability
113  capabilityList.set((*j)->opClass);
114 
115  // Add each of the FU's that will have this capability to the
116  // appropriate queue.
117  for (int k = 0; k < (*i)->number; ++k)
118  fuPerCapList[(*j)->opClass].addFU(numFU + k);
119 
120  // indicate that this FU has the capability
121  fu->addCapability((*j)->opClass, (*j)->opLat, (*j)->pipelined);
122 
123  if ((*j)->opLat > maxOpLatencies[(*j)->opClass])
124  maxOpLatencies[(*j)->opClass] = (*j)->opLat;
125 
126  if (!(*j)->pipelined)
127  pipelined[(*j)->opClass] = false;
128  }
129 
130  numFU++;
131 
132  // Add the appropriate number of copies of this FU to the list
133  fu->name = (*i)->name() + "(0)";
134  funcUnits.push_back(fu);
135 
136  for (int c = 1; c < (*i)->number; ++c) {
137  std::ostringstream s;
138  numFU++;
139  FuncUnit *fu2 = new FuncUnit(*fu);
140 
141  s << (*i)->name() << "(" << c << ")";
142  fu2->name = s.str();
143  funcUnits.push_back(fu2);
144  }
145  }
146  }
147 
148  unitBusy.resize(numFU);
149 
150  for (int i = 0; i < numFU; i++) {
151  unitBusy[i] = false;
152  }
153 }
154 
155 int
156 FUPool::getUnit(OpClass capability)
157 {
158  // If this pool doesn't have the specified capability,
159  // return this information to the caller
160  if (!capabilityList[capability])
161  return -2;
162 
163  int fu_idx = fuPerCapList[capability].getFU();
164  int start_idx = fu_idx;
165 
166  // Iterate through the circular queue if needed, stopping if we've reached
167  // the first element again.
168  while (unitBusy[fu_idx]) {
169  fu_idx = fuPerCapList[capability].getFU();
170  if (fu_idx == start_idx) {
171  // No FU available
172  return -1;
173  }
174  }
175 
176  assert(fu_idx < numFU);
177 
178  unitBusy[fu_idx] = true;
179 
180  return fu_idx;
181 }
182 
183 void
185 {
186  assert(unitBusy[fu_idx]);
187  unitsToBeFreed.push_back(fu_idx);
188 }
189 
190 void
192 {
193  while (!unitsToBeFreed.empty()) {
194  int fu_idx = unitsToBeFreed.back();
195  unitsToBeFreed.pop_back();
196 
197  assert(unitBusy[fu_idx]);
198 
199  unitBusy[fu_idx] = false;
200  }
201 }
202 
203 void
205 {
206  std::cout << "Function Unit Pool (" << name() << ")\n";
207  std::cout << "======================================\n";
208  std::cout << "Free List:\n";
209 
210  for (int i = 0; i < numFU; ++i) {
211  if (unitBusy[i]) {
212  continue;
213  }
214 
215  std::cout << " [" << i << "] : ";
216 
217  std::cout << funcUnits[i]->name << " ";
218 
219  std::cout << "\n";
220  }
221 
222  std::cout << "======================================\n";
223  std::cout << "Busy List:\n";
224  for (int i = 0; i < numFU; ++i) {
225  if (!unitBusy[i]) {
226  continue;
227  }
228 
229  std::cout << " [" << i << "] : ";
230 
231  std::cout << funcUnits[i]->name << " ";
232 
233  std::cout << "\n";
234  }
235 }
236 
237 bool
239 {
240  bool is_drained = true;
241  for (int i = 0; i < numFU; i++)
242  is_drained = is_drained && !unitBusy[i];
243 
244  return is_drained;
245 }
FUPool::FUIdxQueue::funcUnitsIdx
std::vector< int > funcUnitsIdx
Queue of FU indices.
Definition: fu_pool.hh:115
FUPool::maxOpLatencies
std::array< Cycles, Num_OpClasses > maxOpLatencies
Maximum op execution latencies, per op class.
Definition: fu_pool.hh:73
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
FUPool::capabilityList
std::bitset< Num_OpClasses > capabilityList
Bitvector listing capabilities of this FU pool.
Definition: fu_pool.hh:78
FUPool::dump
void dump()
Debugging function used to dump FU information.
Definition: fu_pool.cc:204
FUPool::fuListIterator
std::vector< FuncUnit * >::iterator fuListIterator
Definition: fu_pool.hh:127
FUPool::getUnit
int getUnit(OpClass capability)
Gets a FU providing the requested capability.
Definition: fu_pool.cc:156
std::vector
STL vector class.
Definition: stl.hh:37
FUPool::unitBusy
std::vector< bool > unitBusy
Bitvector listing which FUs are busy.
Definition: fu_pool.hh:81
FUPool::FUPool
FUPool(const Params &p)
Constructs a FU pool.
Definition: fu_pool.cc:80
FUPool::size
int size()
Returns the total number of FUs.
Definition: fu_pool.hh:156
ArmISA::j
Bitfield< 24 > j
Definition: miscregs_types.hh:54
MipsISA::k
Bitfield< 23 > k
Definition: dt_constants.hh:78
FUPool::isDrained
bool isDrained() const
Have all the FUs drained?
Definition: fu_pool.cc:238
FUPool::Params
FUPoolParams Params
Definition: fu_pool.hh:130
func_unit.hh
FUPool::FUIdxQueue::addFU
void addFU(int fu_idx)
Adds a FU to the queue.
Definition: fu_pool.cc:53
FuncUnit::name
std::string name
Definition: func_unit.hh:110
PowerISA::fu
Bitfield< 12 > fu
Definition: miscregs.hh:82
fu_pool.hh
FUPool::numFU
int numFU
Number of FUs.
Definition: fu_pool.hh:122
SimObject::name
virtual const std::string name() const
Definition: sim_object.hh:182
FUPool::pipelined
std::array< bool, Num_OpClasses > pipelined
Whether op is pipelined or not.
Definition: fu_pool.hh:75
FUPool::processFreeUnits
void processFreeUnits()
Frees all FUs on the list.
Definition: fu_pool.cc:191
FUDDiterator
std::vector< FUDesc * >::const_iterator FUDDiterator
Definition: func_unit.hh:88
FUPool::freeUnitNextCycle
void freeUnitNextCycle(int fu_idx)
Frees a FU at the end of this cycle.
Definition: fu_pool.cc:184
Cycles
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:79
FUPool::FUIdxQueue::size
int size
Size of the queue.
Definition: fu_pool.hh:112
FUPool::FUIdxQueue::getFU
int getFU()
Returns the index of the FU at the head of the queue, and changes the index to the next element.
Definition: fu_pool.cc:60
FUPool::funcUnits
std::vector< FuncUnit * > funcUnits
Functional units.
Definition: fu_pool.hh:125
ArmISA::c
Bitfield< 29 > c
Definition: miscregs_types.hh:50
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
ArmISA::s
Bitfield< 4 > s
Definition: miscregs_types.hh:556
FUPool::unitsToBeFreed
std::vector< int > unitsToBeFreed
List of units to be freed at the end of this cycle.
Definition: fu_pool.hh:84
OPDDiterator
std::vector< OpDesc * >::const_iterator OPDDiterator
Definition: func_unit.hh:87
FuncUnit
Definition: func_unit.hh:99
FUPool::~FUPool
~FUPool()
Definition: fu_pool.cc:70
FUPool::fuPerCapList
FUIdxQueue fuPerCapList[Num_OpClasses]
Per op class queues of FUs that provide that capability.
Definition: fu_pool.hh:119
SimObject
Abstract superclass for simulation objects.
Definition: sim_object.hh:141

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