gem5  v20.0.0.3
Sequencer.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019-2020 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 
57 {
59  RubyRequestType m_type;
60  RubyRequestType m_second_type;
62  SequencerRequest(PacketPtr _pkt, RubyRequestType _m_type,
63  RubyRequestType _m_second_type, Cycles _issue_time)
64  : pkt(_pkt), m_type(_m_type), m_second_type(_m_second_type),
65  issue_time(_issue_time)
66  {}
67 
68  bool functionalWrite(Packet *func_pkt) const
69  {
70  // Follow-up on RubyRequest::functionalWrite
71  // This makes sure the hitCallback won't overrite the value we
72  // expect to find
73  assert(func_pkt->isWrite());
74  return func_pkt->trySatisfyFunctional(pkt);
75  }
76 };
77 
78 std::ostream& operator<<(std::ostream& out, const SequencerRequest& obj);
79 
80 class Sequencer : public RubyPort
81 {
82  public:
83  typedef RubySequencerParams Params;
84  Sequencer(const Params *);
85  ~Sequencer();
86 
91  void writeCallbackScFail(Addr address,
92  DataBlock& data);
93 
94  // Public Methods
95  void wakeup(); // Used only for deadlock detection
96  void resetStats() override;
97  void collateStats();
98  void regStats() override;
99 
100  void writeCallback(Addr address,
101  DataBlock& data,
102  const bool externalHit = false,
103  const MachineType mach = MachineType_NUM,
104  const Cycles initialRequestTime = Cycles(0),
105  const Cycles forwardRequestTime = Cycles(0),
106  const Cycles firstResponseTime = Cycles(0));
107 
108  void readCallback(Addr address,
109  DataBlock& data,
110  const bool externalHit = false,
111  const MachineType mach = MachineType_NUM,
112  const Cycles initialRequestTime = Cycles(0),
113  const Cycles forwardRequestTime = Cycles(0),
114  const Cycles firstResponseTime = Cycles(0));
115 
116  RequestStatus makeRequest(PacketPtr pkt) override;
117  bool empty() const;
118  int outstandingCount() const override { return m_outstanding_count; }
119 
120  bool isDeadlockEventScheduled() const override
121  { return deadlockCheckEvent.scheduled(); }
122 
123  void descheduleDeadlockEvent() override
124  { deschedule(deadlockCheckEvent); }
125 
126  void print(std::ostream& out) const;
127  void checkCoherence(Addr address);
128 
129  void markRemoved();
130  void evictionCallback(Addr address);
131  int coreId() const { return m_coreId; }
132 
133  virtual int functionalWrite(Packet *func_pkt) override;
134 
135  void recordRequestType(SequencerRequestType requestType);
136  Stats::Histogram& getOutstandReqHist() { return m_outstandReqHist; }
137 
138  Stats::Histogram& getLatencyHist() { return m_latencyHist; }
140  { return *m_typeLatencyHist[t]; }
141 
142  Stats::Histogram& getHitLatencyHist() { return m_hitLatencyHist; }
144  { return *m_hitTypeLatencyHist[t]; }
145 
147  { return *m_hitMachLatencyHist[t]; }
148 
150  { return *m_hitTypeMachLatencyHist[r][t]; }
151 
153  { return m_missLatencyHist; }
155  { return *m_missTypeLatencyHist[t]; }
156 
158  { return *m_missMachLatencyHist[t]; }
159 
161  getMissTypeMachLatencyHist(uint32_t r, uint32_t t) const
162  { return *m_missTypeMachLatencyHist[r][t]; }
163 
165  { return *m_IssueToInitialDelayHist[t]; }
166 
168  getInitialToForwardDelayHist(const MachineType t) const
169  { return *m_InitialToForwardDelayHist[t]; }
170 
172  getForwardRequestToFirstResponseHist(const MachineType t) const
173  { return *m_ForwardToFirstResponseDelayHist[t]; }
174 
176  getFirstResponseToCompletionDelayHist(const MachineType t) const
177  { return *m_FirstResponseToCompletionDelayHist[t]; }
178 
179  Stats::Counter getIncompleteTimes(const MachineType t) const
180  { return m_IncompleteTimes[t]; }
181 
182  private:
183  void issueRequest(PacketPtr pkt, RubyRequestType type);
184 
185  void hitCallback(SequencerRequest* srequest, DataBlock& data,
186  bool llscSuccess,
187  const MachineType mach, const bool externalHit,
188  const Cycles initialRequestTime,
189  const Cycles forwardRequestTime,
190  const Cycles firstResponseTime);
191 
192  void recordMissLatency(SequencerRequest* srequest, bool llscSuccess,
193  const MachineType respondingMach,
194  bool isExternalHit, Cycles initialRequestTime,
195  Cycles forwardRequestTime,
196  Cycles firstResponseTime);
197 
198  RequestStatus insertRequest(PacketPtr pkt, RubyRequestType primary_type,
199  RubyRequestType secondary_type);
200 
201  // Private copy constructor and assignment operator
202  Sequencer(const Sequencer& obj);
203  Sequencer& operator=(const Sequencer& obj);
204 
205  private:
208 
211 
212  // The cache access latency for top-level caches (L0/L1). These are
213  // currently assessed at the beginning of each memory access through the
214  // sequencer.
215  // TODO: Migrate these latencies into top-level cache controllers.
218 
219  // RequestTable contains both read and write requests, handles aliasing
220  std::unordered_map<Addr, std::list<SequencerRequest>> m_RequestTable;
221 
222  // Global outstanding request count, across all request tables
225 
226  int m_coreId;
227 
229 
232 
236 
241 
246 
251 
256 
263 
265 
266  // support for LL/SC
267 
272  void llscLoadLinked(const Addr);
273 
278  void llscClearMonitor(const Addr);
279 
288  bool llscStoreConditional(const Addr);
289 
290  public:
297  bool llscCheckMonitor(const Addr);
298 };
299 
300 inline std::ostream&
301 operator<<(std::ostream& out, const Sequencer& obj)
302 {
303  obj.print(out);
304  out << std::flush;
305  return out;
306 }
307 
308 #endif // __MEM_RUBY_SYSTEM_SEQUENCER_HH__
Stats::Histogram & getMissLatencyHist()
Definition: Sequencer.hh:152
Stats::Histogram & getHitTypeLatencyHist(uint32_t t)
Definition: Sequencer.hh:143
int m_max_outstanding_requests
Definition: Sequencer.hh:206
std::unordered_map< Addr, std::list< SequencerRequest > > m_RequestTable
Definition: Sequencer.hh:220
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:81
Cycles issue_time
Definition: Sequencer.hh:61
std::vector< Stats::Histogram * > m_missTypeLatencyHist
Definition: Sequencer.hh:250
SequencerRequest(PacketPtr _pkt, RubyRequestType _m_type, RubyRequestType _m_second_type, Cycles _issue_time)
Definition: Sequencer.hh:62
Stats::Histogram & getTypeLatencyHist(uint32_t t)
Definition: Sequencer.hh:139
void print(std::ostream &out) const
Definition: Sequencer.cc:733
Stats::Histogram & getMissMachLatencyHist(uint32_t t) const
Definition: Sequencer.hh:157
void descheduleDeadlockEvent() override
Definition: Sequencer.hh:123
Stats::Histogram & getMissTypeMachLatencyHist(uint32_t r, uint32_t t) const
Definition: Sequencer.hh:161
EventFunctionWrapper deadlockCheckEvent
Definition: Sequencer.hh:264
int coreId() const
Definition: Sequencer.hh:131
PacketPtr pkt
Definition: Sequencer.hh:58
std::vector< Stats::Histogram * > m_FirstResponseToCompletionDelayHist
Definition: Sequencer.hh:261
Stats::Histogram m_missLatencyHist
Histogram for holding latency profile of all requests that miss in the controller connected to this s...
Definition: Sequencer.hh:249
Stats::Histogram m_latencyHist
Histogram for holding latency profile of all requests.
Definition: Sequencer.hh:234
Stats::Histogram & getHitTypeMachLatencyHist(uint32_t r, uint32_t t)
Definition: Sequencer.hh:149
CacheMemory * m_dataCache_ptr
Definition: Sequencer.hh:209
Cycles m_inst_cache_hit_latency
Definition: Sequencer.hh:217
std::vector< Stats::Histogram * > m_typeLatencyHist
Definition: Sequencer.hh:235
bool isWrite() const
Definition: packet.hh:523
STL vector class.
Definition: stl.hh:37
Stats::Histogram m_outstandReqHist
Histogram for number of outstanding requests per cycle.
Definition: Sequencer.hh:231
std::vector< Stats::Histogram * > m_ForwardToFirstResponseDelayHist
Definition: Sequencer.hh:260
CacheMemory * m_instCache_ptr
Definition: Sequencer.hh:210
double Counter
All counters are of 64-bit values.
Definition: types.hh:41
Stats::Histogram & getInitialToForwardDelayHist(const MachineType t) const
Definition: Sequencer.hh:168
RubyRequestType m_type
Definition: Sequencer.hh:59
std::vector< Stats::Histogram * > m_InitialToForwardDelayHist
Definition: Sequencer.hh:259
uint8_t type
Definition: inet.hh:328
bool m_deadlock_check_scheduled
Definition: Sequencer.hh:224
bool trySatisfyFunctional(PacketPtr other)
Check a functional request against a memory value stored in another packet (i.e.
Definition: packet.hh:1258
std::vector< Stats::Histogram * > m_hitTypeLatencyHist
Definition: Sequencer.hh:240
Stats::Histogram & getForwardRequestToFirstResponseHist(const MachineType t) const
Definition: Sequencer.hh:172
std::vector< Stats::Histogram * > m_IssueToInitialDelayHist
Histograms for recording the breakdown of miss latency.
Definition: Sequencer.hh:258
Stats::Histogram & getOutstandReqHist()
Definition: Sequencer.hh:136
Stats::Histogram & getHitLatencyHist()
Definition: Sequencer.hh:142
Stats::Histogram & getLatencyHist()
Definition: Sequencer.hh:138
A simple histogram stat.
Definition: statistics.hh:2626
Stats::Histogram & getHitMachLatencyHist(uint32_t t)
Definition: Sequencer.hh:146
RubyRequestType m_second_type
Definition: Sequencer.hh:60
std::vector< Stats::Histogram * > m_missMachLatencyHist
Histograms for profiling the latencies for requests that required external messages.
Definition: Sequencer.hh:254
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
int m_coreId
Definition: Sequencer.hh:226
Stats::Histogram & getFirstResponseToCompletionDelayHist(const MachineType t) const
Definition: Sequencer.hh:176
Stats::Counter getIncompleteTimes(const MachineType t) const
Definition: Sequencer.hh:179
std::vector< std::vector< Stats::Histogram * > > m_missTypeMachLatencyHist
Definition: Sequencer.hh:255
std::vector< Stats::Counter > m_IncompleteTimes
Definition: Sequencer.hh:262
bool isDeadlockEventScheduled() const override
Definition: Sequencer.hh:120
Cycles m_data_cache_hit_latency
Definition: Sequencer.hh:216
bool m_runningGarnetStandalone
Definition: Sequencer.hh:228
std::ostream & operator<<(std::ostream &out, const SequencerRequest &obj)
std::vector< Stats::Histogram * > m_hitMachLatencyHist
Histograms for profiling the latencies for requests that did not required external messages...
Definition: Sequencer.hh:244
Stats::Histogram & getMissTypeLatencyHist(uint32_t t)
Definition: Sequencer.hh:154
Cycles m_deadlock_threshold
Definition: Sequencer.hh:207
Bitfield< 5 > t
bool functionalWrite(Packet *func_pkt) const
Definition: Sequencer.hh:68
RubySequencerParams Params
Definition: Sequencer.hh:83
int outstandingCount() const override
Definition: Sequencer.hh:118
const char data[]
int m_outstanding_count
Definition: Sequencer.hh:223
Stats::Histogram m_hitLatencyHist
Histogram for holding latency profile of all requests that hit in the controller connected to this se...
Definition: Sequencer.hh:239
std::vector< std::vector< Stats::Histogram * > > m_hitTypeMachLatencyHist
Definition: Sequencer.hh:245
Stats::Histogram & getIssueToInitialDelayHist(uint32_t t) const
Definition: Sequencer.hh:164

Generated on Fri Jul 3 2020 15:53:04 for gem5 by doxygen 1.8.13