gem5  v19.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
queue.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012-2013, 2015-2016, 2018 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) 2003-2005 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  * Authors: Erik Hallnor
41  * Andreas Sandberg
42  * Andreas Hansson
43  */
44 
49 #ifndef __MEM_CACHE_QUEUE_HH__
50 #define __MEM_CACHE_QUEUE_HH__
51 
52 #include <cassert>
53 #include <string>
54 #include <type_traits>
55 
56 #include "base/logging.hh"
57 #include "base/trace.hh"
58 #include "base/types.hh"
59 #include "debug/Drain.hh"
60 #include "mem/cache/queue_entry.hh"
61 #include "mem/packet.hh"
62 #include "sim/core.hh"
63 #include "sim/drain.hh"
64 
69 template<class Entry>
70 class Queue : public Drainable
71 {
72  static_assert(std::is_base_of<QueueEntry, Entry>::value,
73  "Entry must be derived from QueueEntry");
74 
75  protected:
77  const std::string label;
78 
85  const int numEntries;
86 
93  const int numReserve;
94 
98  typename Entry::List allocatedList;
100  typename Entry::List readyList;
102  typename Entry::List freeList;
103 
104  typename Entry::Iterator addToReadyList(Entry* entry)
105  {
106  if (readyList.empty() ||
107  readyList.back()->readyTime <= entry->readyTime) {
108  return readyList.insert(readyList.end(), entry);
109  }
110 
111  for (auto i = readyList.begin(); i != readyList.end(); ++i) {
112  if ((*i)->readyTime > entry->readyTime) {
113  return readyList.insert(i, entry);
114  }
115  }
116  panic("Failed to add to ready list.");
117  }
118 
121 
124 
125  public:
126 
133  Queue(const std::string &_label, int num_entries, int reserve) :
134  label(_label), numEntries(num_entries + reserve),
135  numReserve(reserve), entries(numEntries), _numInService(0),
136  allocated(0)
137  {
138  for (int i = 0; i < numEntries; ++i) {
139  freeList.push_back(&entries[i]);
140  }
141  }
142 
143  bool isEmpty() const
144  {
145  return allocated == 0;
146  }
147 
148  bool isFull() const
149  {
150  return (allocated >= numEntries - numReserve);
151  }
152 
153  int numInService() const
154  {
155  return _numInService;
156  }
157 
166  Entry* findMatch(Addr blk_addr, bool is_secure,
167  bool ignore_uncacheable = true) const
168  {
169  for (const auto& entry : allocatedList) {
170  // we ignore any entries allocated for uncacheable
171  // accesses and simply ignore them when matching, in the
172  // cache we never check for matches when adding new
173  // uncacheable entries, and we do not want normal
174  // cacheable accesses being added to an WriteQueueEntry
175  // serving an uncacheable access
176  if (!(ignore_uncacheable && entry->isUncacheable()) &&
177  entry->matchBlockAddr(blk_addr, is_secure)) {
178  return entry;
179  }
180  }
181  return nullptr;
182  }
183 
185  {
186  pkt->pushLabel(label);
187  for (const auto& entry : allocatedList) {
188  if (entry->matchBlockAddr(pkt) &&
189  entry->trySatisfyFunctional(pkt)) {
190  pkt->popLabel();
191  return true;
192  }
193  }
194  pkt->popLabel();
195  return false;
196  }
197 
205  Entry* findPending(const QueueEntry* entry) const
206  {
207  for (const auto& ready_entry : readyList) {
208  if (ready_entry->conflictAddr(entry)) {
209  return ready_entry;
210  }
211  }
212  return nullptr;
213  }
214 
219  Entry* getNext() const
220  {
221  if (readyList.empty() || readyList.front()->readyTime > curTick()) {
222  return nullptr;
223  }
224  return readyList.front();
225  }
226 
228  {
229  return readyList.empty() ? MaxTick : readyList.front()->readyTime;
230  }
231 
238  void deallocate(Entry *entry)
239  {
240  allocatedList.erase(entry->allocIter);
241  freeList.push_front(entry);
242  allocated--;
243  if (entry->inService) {
244  _numInService--;
245  } else {
246  readyList.erase(entry->readyIter);
247  }
248  entry->deallocate();
249  if (drainState() == DrainState::Draining && allocated == 0) {
250  // Notify the drain manager that we have completed
251  // draining if there are no other outstanding requests in
252  // this queue.
253  DPRINTF(Drain, "Queue now empty, signalling drained\n");
254  signalDrainDone();
255  }
256  }
257 
258  DrainState drain() override
259  {
261  }
262 };
263 
264 #endif //__MEM_CACHE_QUEUE_HH__
bool trySatisfyFunctional(PacketPtr pkt)
Definition: queue.hh:184
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:167
#define DPRINTF(x,...)
Definition: trace.hh:229
bool isEmpty() const
Definition: queue.hh:143
Entry::List readyList
Holds pointers to entries that haven&#39;t been sent downstream.
Definition: queue.hh:100
Bitfield< 7 > i
DrainState
Object drain/handover states.
Definition: drain.hh:71
int numInService() const
Definition: queue.hh:153
Running normally.
Entry * getNext() const
Returns the WriteQueueEntry at the head of the readyList.
Definition: queue.hh:219
DrainState drainState() const
Return the current drain state of an object.
Definition: drain.hh:282
Entry::Iterator addToReadyList(Entry *entry)
Definition: queue.hh:104
void signalDrainDone() const
Signal that an object is drained.
Definition: drain.hh:267
const int numReserve
The number of entries to hold as a temporary overflow space.
Definition: queue.hh:93
void pushLabel(const std::string &lbl)
Push label for PrintReq (safe to call unconditionally).
Definition: packet.hh:1326
A high-level queue interface, to be used by both the MSHR queue and the write buffer.
Definition: queue.hh:70
void deallocate(Entry *entry)
Removes the given entry from the queue.
Definition: queue.hh:238
Interface for objects that might require draining before checkpointing.
Definition: drain.hh:223
const Tick MaxTick
Definition: types.hh:65
Tick curTick()
The current simulated tick.
Definition: core.hh:47
Generic queue entry.
uint64_t Tick
Tick count type.
Definition: types.hh:63
DrainState drain() override
Notify an object that it needs to drain its state.
Definition: queue.hh:258
void popLabel()
Pop label for PrintReq (safe to call unconditionally).
Definition: packet.hh:1336
const int numEntries
The total number of entries in this queue.
Definition: queue.hh:85
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
Draining buffers pending serialization/handover.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:255
Entry * findMatch(Addr blk_addr, bool is_secure, bool ignore_uncacheable=true) const
Find the first entry that matches the provided address.
Definition: queue.hh:166
Entry::List freeList
Holds non allocated entries.
Definition: queue.hh:102
Entry * findPending(const QueueEntry *entry) const
Find any pending requests that overlap the given request of a different queue.
Definition: queue.hh:205
A queue entry base class, to be used by both the MSHRs and write-queue entries.
Definition: queue_entry.hh:61
Declaration of the Packet class.
const std::string label
Local label (for functional print requests)
Definition: queue.hh:73
Entry::List allocatedList
Holds pointers to all allocated entries.
Definition: queue.hh:98
Queue(const std::string &_label, int num_entries, int reserve)
Create a queue with a given number of entries.
Definition: queue.hh:133
int _numInService
The number of entries that are in service.
Definition: queue.hh:120
std::vector< Entry > entries
Actual storage.
Definition: queue.hh:96
bool isFull() const
Definition: queue.hh:148
int allocated
The number of currently allocated entries.
Definition: queue.hh:123
Tick nextReadyTime() const
Definition: queue.hh:227

Generated on Fri Feb 28 2020 16:27:01 for gem5 by doxygen 1.8.13