gem5  v22.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Sequencer.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019-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  * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
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 #ifndef __MEM_RUBY_SYSTEM_SEQUENCER_HH__
42 #define __MEM_RUBY_SYSTEM_SEQUENCER_HH__
43 
44 #include <iostream>
45 #include <list>
46 #include <unordered_map>
47 
49 #include "mem/ruby/protocol/MachineType.hh"
50 #include "mem/ruby/protocol/RubyRequestType.hh"
51 #include "mem/ruby/protocol/SequencerRequestType.hh"
54 #include "params/RubySequencer.hh"
55 
56 namespace gem5
57 {
58 
59 namespace ruby
60 {
61 
63 {
65  RubyRequestType m_type;
66  RubyRequestType m_second_type;
68  SequencerRequest(PacketPtr _pkt, RubyRequestType _m_type,
69  RubyRequestType _m_second_type, Cycles _issue_time)
70  : pkt(_pkt), m_type(_m_type), m_second_type(_m_second_type),
71  issue_time(_issue_time)
72  {}
73 
74  bool functionalWrite(Packet *func_pkt) const
75  {
76  // Follow-up on RubyRequest::functionalWrite
77  // This makes sure the hitCallback won't overrite the value we
78  // expect to find
79  assert(func_pkt->isWrite());
80  return func_pkt->trySatisfyFunctional(pkt);
81  }
82 };
83 
84 std::ostream& operator<<(std::ostream& out, const SequencerRequest& obj);
85 
86 class Sequencer : public RubyPort
87 {
88  public:
89  typedef RubySequencerParams Params;
90  Sequencer(const Params &);
91  ~Sequencer();
92 
97  void writeCallbackScFail(Addr address,
98  DataBlock& data);
99 
100  // Public Methods
101  virtual void wakeup(); // Used only for deadlock detection
102  void resetStats() override;
103  void collateStats();
104 
105  void writeCallback(Addr address,
106  DataBlock& data,
107  const bool externalHit = false,
108  const MachineType mach = MachineType_NUM,
109  const Cycles initialRequestTime = Cycles(0),
110  const Cycles forwardRequestTime = Cycles(0),
111  const Cycles firstResponseTime = Cycles(0),
112  const bool noCoales = false);
113 
114  // Write callback that prevents coalescing
116  {
117  writeCallback(address, data, true, MachineType_NUM, Cycles(0),
118  Cycles(0), Cycles(0), true);
119  }
120 
121  void readCallback(Addr address,
122  DataBlock& data,
123  const bool externalHit = false,
124  const MachineType mach = MachineType_NUM,
125  const Cycles initialRequestTime = Cycles(0),
126  const Cycles forwardRequestTime = Cycles(0),
127  const Cycles firstResponseTime = Cycles(0));
128 
129  void unaddressedCallback(Addr unaddressedReqId,
130  RubyRequestType requestType,
131  const MachineType mach = MachineType_NUM,
132  const Cycles initialRequestTime = Cycles(0),
133  const Cycles forwardRequestTime = Cycles(0),
134  const Cycles firstResponseTime = Cycles(0));
135 
136  RequestStatus makeRequest(PacketPtr pkt) override;
137  virtual bool empty() const;
138  int outstandingCount() const override { return m_outstanding_count; }
139 
140  bool isDeadlockEventScheduled() const override
141  { return deadlockCheckEvent.scheduled(); }
142 
143  void descheduleDeadlockEvent() override
145 
146  virtual void print(std::ostream& out) const;
147 
148  void markRemoved();
149  void evictionCallback(Addr address);
150  int coreId() const { return m_coreId; }
151 
152  virtual int functionalWrite(Packet *func_pkt) override;
153 
154  void recordRequestType(SequencerRequestType requestType);
156 
159  { return *m_typeLatencyHist[t]; }
160 
163  { return *m_hitTypeLatencyHist[t]; }
164 
166  { return *m_hitMachLatencyHist[t]; }
167 
169  { return *m_hitTypeMachLatencyHist[r][t]; }
170 
172  { return m_missLatencyHist; }
174  { return *m_missTypeLatencyHist[t]; }
175 
177  { return *m_missMachLatencyHist[t]; }
178 
180  getMissTypeMachLatencyHist(uint32_t r, uint32_t t) const
181  { return *m_missTypeMachLatencyHist[r][t]; }
182 
184  { return *m_IssueToInitialDelayHist[t]; }
185 
187  getInitialToForwardDelayHist(const MachineType t) const
188  { return *m_InitialToForwardDelayHist[t]; }
189 
191  getForwardRequestToFirstResponseHist(const MachineType t) const
193 
195  getFirstResponseToCompletionDelayHist(const MachineType t) const
197 
198  statistics::Counter getIncompleteTimes(const MachineType t) const
199  { return m_IncompleteTimes[t]; }
200 
201  private:
202  void issueRequest(PacketPtr pkt, RubyRequestType type);
203 
204  void hitCallback(SequencerRequest* srequest, DataBlock& data,
205  bool llscSuccess,
206  const MachineType mach, const bool externalHit,
207  const Cycles initialRequestTime,
208  const Cycles forwardRequestTime,
209  const Cycles firstResponseTime,
210  const bool was_coalesced);
211 
212  void recordMissLatency(SequencerRequest* srequest, bool llscSuccess,
213  const MachineType respondingMach,
214  bool isExternalHit, Cycles initialRequestTime,
215  Cycles forwardRequestTime,
216  Cycles firstResponseTime);
217 
218  // Private copy constructor and assignment operator
219  Sequencer(const Sequencer& obj);
220  Sequencer& operator=(const Sequencer& obj);
221 
222  protected:
223  // RequestTable contains both read and write requests, handles aliasing
224  std::unordered_map<Addr, std::list<SequencerRequest>> m_RequestTable;
225  // UnadressedRequestTable contains "unaddressed" requests,
226  // guaranteed not to alias each other
227  std::unordered_map<uint64_t, SequencerRequest> m_UnaddressedRequestTable;
228 
230 
231  virtual RequestStatus insertRequest(PacketPtr pkt,
232  RubyRequestType primary_type,
233  RubyRequestType secondary_type);
234 
235  private:
237 
239 
240  // The cache access latency for top-level caches (L0/L1). These are
241  // currently assessed at the beginning of each memory access through the
242  // sequencer.
243  // TODO: Migrate these latencies into top-level cache controllers.
246 
247  // Global outstanding request count, across all request tables
250 
251  int m_coreId;
252 
254 
256 
259 
263 
268 
273 
278 
284 
291 
293 
294  // support for LL/SC
295 
300  void llscLoadLinked(const Addr);
301 
306  void llscClearMonitor(const Addr);
307 
316  bool llscStoreConditional(const Addr);
317 
318 
323 
328  uint64_t getCurrentUnaddressedTransactionID() const;
329 
330  public:
337  bool llscCheckMonitor(const Addr);
338 
339 
344  void llscClearLocalMonitor();
345 };
346 
347 inline std::ostream&
348 operator<<(std::ostream& out, const Sequencer& obj)
349 {
350  obj.print(out);
351  out << std::flush;
352  return out;
353 }
354 
355 } // namespace ruby
356 } // namespace gem5
357 
358 #endif // __MEM_RUBY_SYSTEM_SEQUENCER_HH__
gem5::ruby::Sequencer::m_FirstResponseToCompletionDelayHist
std::vector< statistics::Histogram * > m_FirstResponseToCompletionDelayHist
Definition: Sequencer.hh:289
gem5::ruby::Sequencer::~Sequencer
~Sequencer()
Definition: Sequencer.cc:146
gem5::ruby::Sequencer::m_RequestTable
std::unordered_map< Addr, std::list< SequencerRequest > > m_RequestTable
Definition: Sequencer.hh:224
gem5::ruby::Sequencer::m_hitMachLatencyHist
std::vector< statistics::Histogram * > m_hitMachLatencyHist
Histograms for profiling the latencies for requests that did not required external messages.
Definition: Sequencer.hh:271
gem5::ruby::Sequencer
Definition: Sequencer.hh:86
gem5::ruby::Sequencer::m_unaddressedTransactionCnt
uint64_t m_unaddressedTransactionCnt
Definition: Sequencer.hh:253
gem5::ruby::Sequencer::m_deadlock_threshold
Cycles m_deadlock_threshold
Definition: Sequencer.hh:229
data
const char data[]
Definition: circlebuf.test.cc:48
gem5::ruby::Sequencer::getTypeLatencyHist
statistics::Histogram & getTypeLatencyHist(uint32_t t)
Definition: Sequencer.hh:158
gem5::ruby::Sequencer::makeRequest
RequestStatus makeRequest(PacketPtr pkt) override
Definition: Sequencer.cc:755
gem5::ruby::Sequencer::writeCallbackScFail
void writeCallbackScFail(Addr address, DataBlock &data)
Proxy function to writeCallback that first invalidates the line address in the local monitor.
Definition: Sequencer.cc:439
gem5::ruby::Sequencer::issueRequest
void issueRequest(PacketPtr pkt, RubyRequestType type)
Definition: Sequencer.cc:868
gem5::ruby::Sequencer::m_inst_cache_hit_latency
Cycles m_inst_cache_hit_latency
Definition: Sequencer.hh:245
gem5::ruby::Sequencer::m_UnaddressedRequestTable
std::unordered_map< uint64_t, SequencerRequest > m_UnaddressedRequestTable
Definition: Sequencer.hh:227
gem5::ruby::Sequencer::getOutstandReqHist
statistics::Histogram & getOutstandReqHist()
Definition: Sequencer.hh:155
gem5::ruby::Sequencer::getCurrentUnaddressedTransactionID
uint64_t getCurrentUnaddressedTransactionID() const
Generate the current unaddressed transaction ID based on the counter and the Sequencer object's versi...
Definition: Sequencer.cc:992
gem5::ruby::Sequencer::m_dataCache_ptr
CacheMemory * m_dataCache_ptr
Definition: Sequencer.hh:238
gem5::ruby::Sequencer::m_outstandReqHist
statistics::Histogram m_outstandReqHist
Histogram for number of outstanding requests per cycle.
Definition: Sequencer.hh:258
gem5::ruby::operator<<
std::ostream & operator<<(std::ostream &os, const BoolVec &myvector)
Definition: BoolVec.cc:49
gem5::ruby::Sequencer::m_data_cache_hit_latency
Cycles m_data_cache_hit_latency
Definition: Sequencer.hh:244
gem5::ruby::Sequencer::getIssueToInitialDelayHist
statistics::Histogram & getIssueToInitialDelayHist(uint32_t t) const
Definition: Sequencer.hh:183
gem5::ruby::Sequencer::hitCallback
void hitCallback(SequencerRequest *srequest, DataBlock &data, bool llscSuccess, const MachineType mach, const bool externalHit, const Cycles initialRequestTime, const Cycles forwardRequestTime, const Cycles firstResponseTime, const bool was_coalesced)
Definition: Sequencer.cc:603
gem5::ruby::Sequencer::getHitMachLatencyHist
statistics::Histogram & getHitMachLatencyHist(uint32_t t)
Definition: Sequencer.hh:165
gem5::ruby::Sequencer::insertRequest
virtual RequestStatus insertRequest(PacketPtr pkt, RubyRequestType primary_type, RubyRequestType secondary_type)
Definition: Sequencer.cc:304
gem5::ruby::Sequencer::Params
RubySequencerParams Params
Definition: Sequencer.hh:89
gem5::ruby::Sequencer::incrementUnaddressedTransactionCnt
void incrementUnaddressedTransactionCnt()
Increment the unaddressed transaction counter.
Definition: Sequencer.cc:978
gem5::Packet::isWrite
bool isWrite() const
Definition: packet.hh:591
gem5::ruby::Sequencer::getIncompleteTimes
statistics::Counter getIncompleteTimes(const MachineType t) const
Definition: Sequencer.hh:198
gem5::ruby::Sequencer::isDeadlockEventScheduled
bool isDeadlockEventScheduled() const override
Definition: Sequencer.hh:140
std::vector
STL vector class.
Definition: stl.hh:37
gem5::ruby::Sequencer::m_missLatencyHist
statistics::Histogram m_missLatencyHist
Histogram for holding latency profile of all requests that miss in the controller connected to this s...
Definition: Sequencer.hh:276
gem5::ruby::SequencerRequest::SequencerRequest
SequencerRequest(PacketPtr _pkt, RubyRequestType _m_type, RubyRequestType _m_second_type, Cycles _issue_time)
Definition: Sequencer.hh:68
gem5::ruby::Sequencer::outstandingCount
int outstandingCount() const override
Definition: Sequencer.hh:138
gem5::VegaISA::r
Bitfield< 5 > r
Definition: pagetable.hh:60
gem5::ruby::Sequencer::getMissMachLatencyHist
statistics::Histogram & getMissMachLatencyHist(uint32_t t) const
Definition: Sequencer.hh:176
gem5::ruby::Sequencer::recordRequestType
void recordRequestType(SequencerRequestType requestType)
Definition: Sequencer.cc:965
gem5::ruby::Sequencer::coreId
int coreId() const
Definition: Sequencer.hh:150
gem5::ruby::Sequencer::getLatencyHist
statistics::Histogram & getLatencyHist()
Definition: Sequencer.hh:157
gem5::ruby::SequencerRequest::functionalWrite
bool functionalWrite(Packet *func_pkt) const
Definition: Sequencer.hh:74
gem5::ruby::Sequencer::getMissTypeMachLatencyHist
statistics::Histogram & getMissTypeMachLatencyHist(uint32_t r, uint32_t t) const
Definition: Sequencer.hh:180
gem5::ruby::Sequencer::m_outstanding_count
int m_outstanding_count
Definition: Sequencer.hh:248
gem5::Cycles
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:78
gem5::ruby::Sequencer::m_missMachLatencyHist
std::vector< statistics::Histogram * > m_missMachLatencyHist
Histograms for profiling the latencies for requests that required external messages.
Definition: Sequencer.hh:281
gem5::ruby::Sequencer::m_missTypeMachLatencyHist
std::vector< std::vector< statistics::Histogram * > > m_missTypeMachLatencyHist
Definition: Sequencer.hh:283
gem5::statistics::Histogram
A simple histogram stat.
Definition: statistics.hh:2126
gem5::ruby::Sequencer::getMissTypeLatencyHist
statistics::Histogram & getMissTypeLatencyHist(uint32_t t)
Definition: Sequencer.hh:173
gem5::ruby::Sequencer::evictionCallback
void evictionCallback(Addr address)
Definition: Sequencer.cc:971
gem5::ruby::Sequencer::operator=
Sequencer & operator=(const Sequencer &obj)
gem5::ruby::Sequencer::getHitTypeLatencyHist
statistics::Histogram & getHitTypeLatencyHist(uint32_t t)
Definition: Sequencer.hh:162
gem5::ruby::Sequencer::readCallback
void readCallback(Addr address, DataBlock &data, const bool externalHit=false, const MachineType mach=MachineType_NUM, const Cycles initialRequestTime=Cycles(0), const Cycles forwardRequestTime=Cycles(0), const Cycles firstResponseTime=Cycles(0))
Definition: Sequencer.cc:548
gem5::ruby::Sequencer::recordMissLatency
void recordMissLatency(SequencerRequest *srequest, bool llscSuccess, const MachineType respondingMach, bool isExternalHit, Cycles initialRequestTime, Cycles forwardRequestTime, Cycles firstResponseTime)
Definition: Sequencer.cc:373
CacheMemory.hh
gem5::VegaISA::t
Bitfield< 51 > t
Definition: pagetable.hh:56
gem5::ruby::Sequencer::m_ForwardToFirstResponseDelayHist
std::vector< statistics::Histogram * > m_ForwardToFirstResponseDelayHist
Definition: Sequencer.hh:288
gem5::ruby::Sequencer::llscStoreConditional
bool llscStoreConditional(const Addr)
Searches for cache line address in the global monitor tagged with this Sequencer object's version id.
Definition: Sequencer.cc:178
gem5::ruby::Sequencer::m_latencyHist
statistics::Histogram m_latencyHist
Histogram for holding latency profile of all requests.
Definition: Sequencer.hh:261
gem5::ruby::Sequencer::llscCheckMonitor
bool llscCheckMonitor(const Addr)
Searches for cache line address in the global monitor tagged with this Sequencer object's version id.
Definition: Sequencer.cc:201
gem5::Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:291
gem5::ruby::Sequencer::m_IssueToInitialDelayHist
std::vector< statistics::Histogram * > m_IssueToInitialDelayHist
Histograms for recording the breakdown of miss latency.
Definition: Sequencer.hh:286
gem5::ruby::SequencerRequest::m_second_type
RubyRequestType m_second_type
Definition: Sequencer.hh:66
gem5::ruby::Sequencer::llscClearLocalMonitor
void llscClearLocalMonitor()
Removes all addresses from the local monitor.
Definition: Sequencer.cc:217
gem5::ruby::SequencerRequest
Definition: Sequencer.hh:62
gem5::ruby::Sequencer::m_missTypeLatencyHist
std::vector< statistics::Histogram * > m_missTypeLatencyHist
Definition: Sequencer.hh:277
gem5::ruby::Sequencer::m_InitialToForwardDelayHist
std::vector< statistics::Histogram * > m_InitialToForwardDelayHist
Definition: Sequencer.hh:287
gem5::ruby::Sequencer::writeUniqueCallback
void writeUniqueCallback(Addr address, DataBlock &data)
Definition: Sequencer.hh:115
gem5::X86ISA::type
type
Definition: misc.hh:727
gem5::ruby::Sequencer::functionalWrite
virtual int functionalWrite(Packet *func_pkt) override
Definition: Sequencer.cc:258
gem5::ruby::Sequencer::m_hitTypeMachLatencyHist
std::vector< std::vector< statistics::Histogram * > > m_hitTypeMachLatencyHist
Definition: Sequencer.hh:272
gem5::ruby::Sequencer::getHitTypeMachLatencyHist
statistics::Histogram & getHitTypeMachLatencyHist(uint32_t r, uint32_t t)
Definition: Sequencer.hh:168
gem5::ruby::Sequencer::resetStats
void resetStats() override
Callback to reset stats.
Definition: Sequencer.cc:272
gem5::ruby::Sequencer::descheduleDeadlockEvent
void descheduleDeadlockEvent() override
Definition: Sequencer.hh:143
gem5::ruby::Sequencer::m_hitLatencyHist
statistics::Histogram m_hitLatencyHist
Histogram for holding latency profile of all requests that hit in the controller connected to this se...
Definition: Sequencer.hh:266
gem5::ruby::Sequencer::m_hitTypeLatencyHist
std::vector< statistics::Histogram * > m_hitTypeLatencyHist
Definition: Sequencer.hh:267
gem5::ruby::Sequencer::Sequencer
Sequencer(const Params &)
Definition: Sequencer.cc:68
gem5::ruby::Sequencer::m_runningGarnetStandalone
bool m_runningGarnetStandalone
Definition: Sequencer.hh:255
gem5::ruby::Sequencer::empty
virtual bool empty() const
Definition: Sequencer.cc:748
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
gem5::ruby::Sequencer::getInitialToForwardDelayHist
statistics::Histogram & getInitialToForwardDelayHist(const MachineType t) const
Definition: Sequencer.hh:187
gem5::EventManager::deschedule
void deschedule(Event &event)
Definition: eventq.hh:1028
gem5::ruby::Sequencer::m_max_outstanding_requests
int m_max_outstanding_requests
Definition: Sequencer.hh:236
gem5::ruby::Sequencer::print
virtual void print(std::ostream &out) const
Definition: Sequencer.cc:956
gem5::ruby::Sequencer::wakeup
virtual void wakeup()
Definition: Sequencer.cc:223
gem5::ruby::Sequencer::llscLoadLinked
void llscLoadLinked(const Addr)
Places the cache line address into the global monitor tagged with this Sequencer object's version id.
Definition: Sequencer.cc:151
gem5::EventFunctionWrapper
Definition: eventq.hh:1115
gem5::ruby::Sequencer::markRemoved
void markRemoved()
Definition: Sequencer.cc:367
gem5::ruby::RubyPort::Params
RubyPortParams Params
Definition: RubyPort.hh:153
Address.hh
gem5::ruby::Sequencer::llscClearMonitor
void llscClearMonitor(const Addr)
Removes the cache line address from the global monitor.
Definition: Sequencer.cc:164
gem5::ruby::Sequencer::getForwardRequestToFirstResponseHist
statistics::Histogram & getForwardRequestToFirstResponseHist(const MachineType t) const
Definition: Sequencer.hh:191
gem5::ruby::Sequencer::getHitLatencyHist
statistics::Histogram & getHitLatencyHist()
Definition: Sequencer.hh:161
gem5::statistics::Counter
double Counter
All counters are of 64-bit values.
Definition: types.hh:47
gem5::ruby::Sequencer::writeCallback
void writeCallback(Addr address, DataBlock &data, const bool externalHit=false, const MachineType mach=MachineType_NUM, const Cycles initialRequestTime=Cycles(0), const Cycles forwardRequestTime=Cycles(0), const Cycles firstResponseTime=Cycles(0), const bool noCoales=false)
Definition: Sequencer.cc:446
gem5::ruby::SequencerRequest::m_type
RubyRequestType m_type
Definition: Sequencer.hh:65
gem5::ruby::SequencerRequest::issue_time
Cycles issue_time
Definition: Sequencer.hh:67
gem5::ruby::CacheMemory
Definition: CacheMemory.hh:69
gem5::Packet::trySatisfyFunctional
bool trySatisfyFunctional(PacketPtr other)
Check a functional request against a memory value stored in another packet (i.e.
Definition: packet.hh:1371
gem5::ruby::Sequencer::unaddressedCallback
void unaddressedCallback(Addr unaddressedReqId, RubyRequestType requestType, const MachineType mach=MachineType_NUM, const Cycles initialRequestTime=Cycles(0), const Cycles forwardRequestTime=Cycles(0), const Cycles firstResponseTime=Cycles(0))
Definition: Sequencer.cc:698
gem5::ruby::Sequencer::m_coreId
int m_coreId
Definition: Sequencer.hh:251
gem5::ruby::DataBlock
Definition: DataBlock.hh:60
gem5::ruby::Sequencer::deadlockCheckEvent
EventFunctionWrapper deadlockCheckEvent
Definition: Sequencer.hh:292
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: gpu_translation_state.hh:37
RubyPort.hh
gem5::ruby::Sequencer::m_deadlock_check_scheduled
bool m_deadlock_check_scheduled
Definition: Sequencer.hh:249
gem5::ruby::RubyPort
Definition: RubyPort.hh:64
gem5::ruby::Sequencer::getFirstResponseToCompletionDelayHist
statistics::Histogram & getFirstResponseToCompletionDelayHist(const MachineType t) const
Definition: Sequencer.hh:195
gem5::ruby::Sequencer::getMissLatencyHist
statistics::Histogram & getMissLatencyHist()
Definition: Sequencer.hh:171
gem5::ruby::Sequencer::m_IncompleteTimes
std::vector< statistics::Counter > m_IncompleteTimes
Definition: Sequencer.hh:290
gem5::ruby::Sequencer::m_typeLatencyHist
std::vector< statistics::Histogram * > m_typeLatencyHist
Definition: Sequencer.hh:262
gem5::ruby::Sequencer::collateStats
void collateStats()
gem5::Event::scheduled
bool scheduled() const
Determine if the current event is scheduled.
Definition: eventq.hh:465
gem5::ruby::SequencerRequest::pkt
PacketPtr pkt
Definition: Sequencer.hh:64

Generated on Thu Jun 16 2022 10:41:58 for gem5 by doxygen 1.8.17