gem5  v21.2.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
AbstractController.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017,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) 2011-2014 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 
42 
43 #include "debug/RubyQueue.hh"
45 #include "mem/ruby/protocol/MemoryMsg.hh"
48 #include "sim/system.hh"
49 
50 namespace gem5
51 {
52 
53 namespace ruby
54 {
55 
57  : ClockedObject(p), Consumer(this), m_version(p.version),
58  m_clusterID(p.cluster_id),
59  m_id(p.system->getRequestorId(this)), m_is_blocking(false),
60  m_number_of_TBEs(p.number_of_TBEs),
61  m_transitions_per_cycle(p.transitions_per_cycle),
62  m_buffer_size(p.buffer_size), m_recycle_latency(p.recycle_latency),
63  m_mandatory_queue_latency(p.mandatory_queue_latency),
64  m_waiting_mem_retry(false),
65  memoryPort(csprintf("%s.memory", name()), this),
66  addrRanges(p.addr_ranges.begin(), p.addr_ranges.end()),
67  stats(this)
68 {
69  if (m_version == 0) {
70  // Combine the statistics from all controllers
71  // of this particular type.
73  }
74 }
75 
76 void
78 {
80  uint32_t size = Network::getNumberOfVirtualNetworks();
81  for (uint32_t i = 0; i < size; i++) {
82  stats.delayVCHistogram.push_back(new statistics::Histogram(this));
83  stats.delayVCHistogram[i]->init(10);
84  }
85 
86  if (getMemReqQueue()) {
87  getMemReqQueue()->setConsumer(this);
88  }
89 
90  // Initialize the addr->downstream machine mappings. Multiple machines
91  // in downstream_destinations can have the same address range if they have
92  // different types. If this is the case, mapAddressToDownstreamMachine
93  // needs to specify the machine type
95  for (auto abs_cntrl : params().downstream_destinations) {
96  MachineID mid = abs_cntrl->getMachineID();
97  const AddrRangeList &ranges = abs_cntrl->getAddrRanges();
98  for (const auto &addr_range : ranges) {
99  auto i = downstreamAddrMap.intersects(addr_range);
100  if (i == downstreamAddrMap.end()) {
101  i = downstreamAddrMap.insert(addr_range, AddrMapEntry());
102  }
103  AddrMapEntry &entry = i->second;
104  fatal_if(entry.count(mid.getType()) > 0,
105  "%s: %s mapped to multiple machines of the same type\n",
106  name(), addr_range.to_string());
107  entry[mid.getType()] = mid;
108  }
110  }
111 
112 }
113 
114 void
116 {
118  uint32_t size = Network::getNumberOfVirtualNetworks();
119  for (uint32_t i = 0; i < size; i++) {
120  stats.delayVCHistogram[i]->reset();
121  }
122 }
123 
124 void
126 {
128 }
129 
130 void
131 AbstractController::profileMsgDelay(uint32_t virtualNetwork, Cycles delay)
132 {
133  assert(virtualNetwork < stats.delayVCHistogram.size());
134  stats.delayHistogram.sample(delay);
135  stats.delayVCHistogram[virtualNetwork]->sample(delay);
136 }
137 
138 void
140 {
141  if (m_waiting_buffers.count(addr) == 0) {
142  MsgVecType* msgVec = new MsgVecType;
143  msgVec->resize(m_in_ports, NULL);
144  m_waiting_buffers[addr] = msgVec;
145  }
146  DPRINTF(RubyQueue, "stalling %s port %d addr %#x\n", buf, m_cur_in_port,
147  addr);
148  assert(m_in_ports > m_cur_in_port);
149  (*(m_waiting_buffers[addr]))[m_cur_in_port] = buf;
150 }
151 
152 void
154 {
155  auto iter = m_waiting_buffers.find(addr);
156  if (iter != m_waiting_buffers.end()) {
157  bool has_other_msgs = false;
158  MsgVecType* msgVec = iter->second;
159  for (unsigned int port = 0; port < msgVec->size(); ++port) {
160  if ((*msgVec)[port] == buf) {
162  (*msgVec)[port] = NULL;
163  } else if ((*msgVec)[port] != NULL) {
164  has_other_msgs = true;
165  }
166  }
167  if (!has_other_msgs) {
168  delete msgVec;
169  m_waiting_buffers.erase(iter);
170  }
171  }
172 }
173 
174 void
176 {
177  if (m_waiting_buffers.count(addr) > 0) {
178  //
179  // Wake up all possible lower rank (i.e. lower priority) buffers that could
180  // be waiting on this message.
181  //
182  for (int in_port_rank = m_cur_in_port - 1;
183  in_port_rank >= 0;
184  in_port_rank--) {
185  if ((*(m_waiting_buffers[addr]))[in_port_rank] != NULL) {
186  (*(m_waiting_buffers[addr]))[in_port_rank]->
187  reanalyzeMessages(addr, clockEdge());
188  }
189  }
190  delete m_waiting_buffers[addr];
191  m_waiting_buffers.erase(addr);
192  }
193 }
194 
195 void
197 {
198  if (m_waiting_buffers.count(addr) > 0) {
199  //
200  // Wake up all possible buffers that could be waiting on this message.
201  //
202  for (int in_port_rank = m_in_ports - 1;
203  in_port_rank >= 0;
204  in_port_rank--) {
205  if ((*(m_waiting_buffers[addr]))[in_port_rank] != NULL) {
206  (*(m_waiting_buffers[addr]))[in_port_rank]->
207  reanalyzeMessages(addr, clockEdge());
208  }
209  }
210  delete m_waiting_buffers[addr];
211  m_waiting_buffers.erase(addr);
212  }
213 }
214 
215 void
217 {
218  //
219  // Wake up all possible buffers that could be waiting on any message.
220  //
221 
222  std::vector<MsgVecType*> wokeUpMsgVecs;
223  MsgBufType wokeUpMsgBufs;
224 
225  if (m_waiting_buffers.size() > 0) {
226  for (WaitingBufType::iterator buf_iter = m_waiting_buffers.begin();
227  buf_iter != m_waiting_buffers.end();
228  ++buf_iter) {
229  for (MsgVecType::iterator vec_iter = buf_iter->second->begin();
230  vec_iter != buf_iter->second->end();
231  ++vec_iter) {
232  //
233  // Make sure the MessageBuffer has not already be reanalyzed
234  //
235  if (*vec_iter != NULL &&
236  (wokeUpMsgBufs.count(*vec_iter) == 0)) {
237  (*vec_iter)->reanalyzeAllMessages(clockEdge());
238  wokeUpMsgBufs.insert(*vec_iter);
239  }
240  }
241  wokeUpMsgVecs.push_back(buf_iter->second);
242  }
243 
244  for (std::vector<MsgVecType*>::iterator wb_iter = wokeUpMsgVecs.begin();
245  wb_iter != wokeUpMsgVecs.end();
246  ++wb_iter) {
247  delete (*wb_iter);
248  }
249 
250  m_waiting_buffers.clear();
251  }
252 }
253 
254 bool
256 {
257  auto mem_queue = getMemReqQueue();
258  assert(mem_queue);
259  if (m_waiting_mem_retry || !mem_queue->isReady(clockEdge())) {
260  return false;
261  }
262 
263  const MemoryMsg *mem_msg = (const MemoryMsg*)mem_queue->peek();
264  unsigned int req_size = RubySystem::getBlockSizeBytes();
265  if (mem_msg->m_Len > 0) {
266  req_size = mem_msg->m_Len;
267  }
268 
269  RequestPtr req
270  = std::make_shared<Request>(mem_msg->m_addr, req_size, 0, m_id);
271  PacketPtr pkt;
272  if (mem_msg->getType() == MemoryRequestType_MEMORY_WB) {
273  pkt = Packet::createWrite(req);
274  pkt->allocate();
275  pkt->setData(mem_msg->m_DataBlk.getData(getOffset(mem_msg->m_addr),
276  req_size));
277  } else if (mem_msg->getType() == MemoryRequestType_MEMORY_READ) {
278  pkt = Packet::createRead(req);
279  uint8_t *newData = new uint8_t[req_size];
280  pkt->dataDynamic(newData);
281  } else {
282  panic("Unknown memory request type (%s) for addr %p",
283  MemoryRequestType_to_string(mem_msg->getType()),
284  mem_msg->m_addr);
285  }
286 
287  SenderState *s = new SenderState(mem_msg->m_Sender);
288  pkt->pushSenderState(s);
289 
291  // Use functional rather than timing accesses during warmup
292  mem_queue->dequeue(clockEdge());
294  // Since the queue was popped the controller may be able
295  // to make more progress. Make sure it wakes up
296  scheduleEvent(Cycles(1));
297  recvTimingResp(pkt);
298  } else if (memoryPort.sendTimingReq(pkt)) {
299  mem_queue->dequeue(clockEdge());
300  // Since the queue was popped the controller may be able
301  // to make more progress. Make sure it wakes up
302  scheduleEvent(Cycles(1));
303  } else {
304  scheduleEvent(Cycles(1));
305  m_waiting_mem_retry = true;
306  delete pkt;
307  delete s;
308  }
309 
310  return true;
311 }
312 
313 void
315 {
316  m_is_blocking = true;
317  m_block_map[addr] = port;
318 }
319 
320 bool
322 {
323  return m_is_blocking && (m_block_map.find(addr) != m_block_map.end());
324 }
325 
326 void
328 {
329  m_block_map.erase(addr);
330  if (m_block_map.size() == 0) {
331  m_is_blocking = false;
332  }
333 }
334 
335 bool
337 {
338  return (m_block_map.count(addr) > 0);
339 }
340 
341 Port &
342 AbstractController::getPort(const std::string &if_name, PortID idx)
343 {
344  return memoryPort;
345 }
346 
347 void
349 {
350  // read from mem. req. queue if write data is pending there
351  MessageBuffer *req_queue = getMemReqQueue();
352  if (!req_queue || !req_queue->functionalRead(pkt))
354 }
355 
356 int
358 {
359  int num_functional_writes = 0;
360 
361  // Update memory itself.
363  return num_functional_writes + 1;
364 }
365 
366 void
368 {
369  assert(getMemRespQueue());
370  assert(pkt->isResponse());
371 
372  std::shared_ptr<MemoryMsg> msg = std::make_shared<MemoryMsg>(clockEdge());
373  (*msg).m_addr = pkt->getAddr();
374  (*msg).m_Sender = m_machineID;
375 
376  SenderState *s = dynamic_cast<SenderState *>(pkt->senderState);
377  (*msg).m_OriginalRequestorMachId = s->id;
378  delete s;
379 
380  if (pkt->isRead()) {
381  (*msg).m_Type = MemoryRequestType_MEMORY_READ;
382  (*msg).m_MessageSize = MessageSizeType_Response_Data;
383 
384  // Copy data from the packet
385  (*msg).m_DataBlk.setData(pkt->getPtr<uint8_t>(), 0,
387  } else if (pkt->isWrite()) {
388  (*msg).m_Type = MemoryRequestType_MEMORY_WB;
389  (*msg).m_MessageSize = MessageSizeType_Writeback_Control;
390  } else {
391  panic("Incorrect packet type received from memory controller!");
392  }
393 
395  delete pkt;
396 }
397 
398 Tick
400 {
401  return ticksToCycles(memoryPort.sendAtomic(pkt));
402 }
403 
404 MachineID
406 {
407  NodeID node = m_net_ptr->addressToNodeID(addr, mtype);
408  MachineID mach = {mtype, node};
409  return mach;
410 }
411 
412 MachineID
414 const
415 {
416  const auto i = downstreamAddrMap.contains(addr);
418  "%s: couldn't find mapping for address %x\n", name(), addr);
419 
420  const AddrMapEntry &entry = i->second;
421  assert(!entry.empty());
422 
423  if (mtype == MachineType_NUM) {
424  fatal_if(entry.size() > 1,
425  "%s: address %x mapped to multiple machine types.\n", name(), addr);
426  return entry.begin()->second;
427  } else {
428  auto j = entry.find(mtype);
429  fatal_if(j == entry.end(),
430  "%s: couldn't find mapping for address %x\n", name(), addr);
431  return j->second;
432  }
433 }
434 
435 
436 bool
438 {
440  return true;
441 }
442 
443 void
445 {
446  controller->m_waiting_mem_retry = false;
447  controller->serviceMemoryQueue();
448 }
449 
451  AbstractController *_controller,
452  PortID id)
453  : RequestPort(_name, _controller, id), controller(_controller)
454 {
455 }
456 
459  : statistics::Group(parent),
460  ADD_STAT(fullyBusyCycles,
461  "cycles for which number of transistions == max transitions"),
462  ADD_STAT(delayHistogram, "delay_histogram")
463 {
468 }
469 
470 } // namespace ruby
471 } // namespace gem5
gem5::ruby::MachineID::getType
MachineType getType() const
Definition: MachineID.hh:66
gem5::PortID
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:252
gem5::ruby::Network::getNumberOfVirtualNetworks
static uint32_t getNumberOfVirtualNetworks()
Definition: Network.hh:90
gem5::ruby::AbstractController::MsgBufType
std::set< MessageBuffer * > MsgBufType
Definition: AbstractController.hh:320
gem5::RequestPort::sendTimingReq
bool sendTimingReq(PacketPtr pkt)
Attempt to send a timing request to the responder port by calling its corresponding receive function.
Definition: port.hh:495
gem5::ruby::AbstractController::ControllerStats::fullyBusyCycles
statistics::Scalar fullyBusyCycles
Counter for the number of cycles when the transitions carried out were equal to the maximum allowed.
Definition: AbstractController.hh:398
system.hh
gem5::ruby::AbstractController::getMemReqQueue
virtual MessageBuffer * getMemReqQueue() const =0
gem5::ruby::AbstractController::profileMsgDelay
void profileMsgDelay(uint32_t virtualNetwork, Cycles delay)
Profiles the delay associated with messages.
Definition: AbstractController.cc:131
gem5::Packet::setData
void setData(const uint8_t *p)
Copy data into the packet from the provided pointer.
Definition: packet.hh:1252
gem5::Packet::pushSenderState
void pushSenderState(SenderState *sender_state)
Push a new sender state to the packet and make the current sender state the predecessor of the new on...
Definition: packet.cc:316
gem5::RequestPort::sendAtomic
Tick sendAtomic(PacketPtr pkt)
Send an atomic request packet, where the data is moved and the state is updated in zero time,...
Definition: port.hh:464
gem5::ruby::AbstractController::serviceMemoryQueue
bool serviceMemoryQueue()
Definition: AbstractController.cc:255
gem5::statistics::nozero
const FlagsType nozero
Don't print if this is zero.
Definition: info.hh:68
gem5::ruby::AbstractController::wakeUpBuffers
void wakeUpBuffers(Addr addr)
Definition: AbstractController.cc:175
gem5::ruby::AbstractController::resetStats
virtual void resetStats()=0
Callback to reset stats.
Definition: AbstractController.cc:115
AbstractController.hh
gem5::ruby::MessageBuffer::enqueue
void enqueue(MsgPtr message, Tick curTime, Tick delta)
Definition: MessageBuffer.cc:197
gem5::Packet::isWrite
bool isWrite() const
Definition: packet.hh:583
gem5::ruby::RubySystem::getBlockSizeBytes
static uint32_t getBlockSizeBytes()
Definition: RubySystem.hh:72
gem5::Packet::createWrite
static PacketPtr createWrite(const RequestPtr &req)
Definition: packet.hh:1013
gem5::X86ISA::system
Bitfield< 15 > system
Definition: misc.hh:1003
gem5::ruby::AbstractController::mapAddressToDownstreamMachine
MachineID mapAddressToDownstreamMachine(Addr addr, MachineType mtype=MachineType_NUM) const
Maps an address to the correct dowstream MachineID (i.e.
Definition: AbstractController.cc:413
std::vector
STL vector class.
Definition: stl.hh:37
gem5::ruby::AbstractController::m_block_map
std::map< Addr, MessageBuffer * > m_block_map
Definition: AbstractController.hh:317
gem5::ruby::AbstractController::isBlocked
bool isBlocked(Addr) const
Definition: AbstractController.cc:321
gem5::csprintf
std::string csprintf(const char *format, const Args &...args)
Definition: cprintf.hh:161
gem5::ruby::Consumer
Definition: Consumer.hh:61
gem5::ruby::AbstractController::getPort
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID)
A function used to return the port associated with this bus object.
Definition: AbstractController.cc:342
gem5::ArmISA::i
Bitfield< 7 > i
Definition: misc_types.hh:67
gem5::ruby::AbstractController::MsgVecType
std::vector< MessageBuffer * > MsgVecType
Definition: AbstractController.hh:319
gem5::ruby::AbstractController::m_is_blocking
bool m_is_blocking
Definition: AbstractController.hh:316
gem5::ruby::AbstractController
Definition: AbstractController.hh:82
gem5::ruby::MessageBuffer::reanalyzeMessages
void reanalyzeMessages(Addr addr, Tick current_time)
Definition: MessageBuffer.cc:379
gem5::statistics::DistBase::sample
void sample(const U &v, int n=1)
Add a value to the distribtion n times.
Definition: statistics.hh:1328
gem5::ruby::AbstractController::ControllerStats::delayHistogram
statistics::Histogram delayHistogram
Histogram for profiling delay for the messages this controller cares for.
Definition: AbstractController.hh:402
gem5::ruby::AbstractController::m_waiting_mem_retry
bool m_waiting_mem_retry
Definition: AbstractController.hh:331
gem5::RequestPort
A RequestPort is a specialisation of a Port, which implements the default protocol for the three diff...
Definition: port.hh:77
gem5::AddrRangeMap::contains
const_iterator contains(const AddrRange &r) const
Find entry that contains the given address range.
Definition: addr_range_map.hh:90
gem5::statistics::registerDumpCallback
void registerDumpCallback(const std::function< void()> &callback)
Register a callback that should be called whenever statistics are about to be dumped.
Definition: statistics.cc:330
gem5::Cycles
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:78
gem5::statistics::Histogram
A simple histogram stat.
Definition: statistics.hh:2126
gem5::ruby::AbstractController::ControllerStats::delayVCHistogram
std::vector< statistics::Histogram * > delayVCHistogram
Definition: AbstractController.hh:403
gem5::ruby::AbstractController::MemoryPort::recvReqRetry
void recvReqRetry()
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
Definition: AbstractController.cc:444
gem5::ArmISA::j
Bitfield< 24 > j
Definition: misc_types.hh:57
gem5::ruby::AbstractController::collateStats
virtual void collateStats()
Function for collating statistics from all the controllers of this particular type.
Definition: AbstractController.hh:158
gem5::RequestPort::sendFunctional
void sendFunctional(PacketPtr pkt) const
Send a functional request packet, where the data is instantly updated everywhere in the memory system...
Definition: port.hh:485
gem5::Packet::isRead
bool isRead() const
Definition: packet.hh:582
gem5::ruby::AbstractController::functionalMemoryWrite
int functionalMemoryWrite(PacketPtr)
Definition: AbstractController.cc:357
gem5::Named::name
virtual std::string name() const
Definition: named.hh:47
gem5::Clocked::cyclesToTicks
Tick cyclesToTicks(Cycles c) const
Definition: clocked_object.hh:227
gem5::SimObject::params
const Params & params() const
Definition: sim_object.hh:176
gem5::ruby::Consumer::scheduleEvent
void scheduleEvent(Cycles timeDelta)
Definition: Consumer.cc:56
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:186
ADD_STAT
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
Definition: group.hh:75
gem5::Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:283
gem5::ruby::MessageBuffer::functionalRead
bool functionalRead(Packet *pkt)
Definition: MessageBuffer.hh:176
gem5::MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:326
gem5::ruby::AbstractController::mapAddressToMachine
MachineID mapAddressToMachine(Addr addr, MachineType mtype) const
Map an address to the correct MachineID.
Definition: AbstractController.cc:405
gem5::Tick
uint64_t Tick
Tick count type.
Definition: types.hh:58
gem5::RequestPtr
std::shared_ptr< Request > RequestPtr
Definition: request.hh:92
gem5::ArmISA::s
Bitfield< 4 > s
Definition: misc_types.hh:562
gem5::ruby::AbstractController::recvAtomic
Tick recvAtomic(PacketPtr pkt)
Definition: AbstractController.cc:399
gem5::ruby::AbstractController::ControllerStats::ControllerStats
ControllerStats(statistics::Group *parent)
Definition: AbstractController.cc:458
gem5::ruby::AbstractController::m_cur_in_port
unsigned int m_cur_in_port
Definition: AbstractController.hh:325
gem5::ruby::AbstractController::downstreamDestinations
NetDest downstreamDestinations
Definition: AbstractController.hh:377
gem5::ruby::getOffset
Addr getOffset(Addr addr)
Definition: Address.cc:54
gem5::AddrRangeMap::end
const_iterator end() const
Definition: addr_range_map.hh:217
gem5::ruby::AbstractController::MemoryPort::MemoryPort
MemoryPort(const std::string &_name, AbstractController *_controller, PortID id=InvalidPortID)
Definition: AbstractController.cc:450
gem5::ruby::AbstractController::AbstractController
AbstractController(const Params &p)
Definition: AbstractController.cc:56
RubySystem.hh
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
gem5::statistics::Histogram::init
Histogram & init(size_type size)
Set the parameters of this histogram.
Definition: statistics.hh:2154
gem5::Packet::senderState
SenderState * senderState
This packet's sender state.
Definition: packet.hh:534
name
const std::string & name()
Definition: trace.cc:49
gem5::ruby::AbstractController::SenderState
Definition: AbstractController.hh:360
gem5::ruby::AbstractController::m_waiting_buffers
WaitingBufType m_waiting_buffers
Definition: AbstractController.hh:322
gem5::ruby::AbstractController::m_machineID
MachineID m_machineID
Definition: AbstractController.hh:309
gem5::statistics::Group::regStats
virtual void regStats()
Callback to set stat parameters.
Definition: group.cc:69
gem5::ruby::AbstractController::m_version
const NodeID m_version
Definition: AbstractController.hh:308
gem5::ClockedObject
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
Definition: clocked_object.hh:234
gem5::Clocked::clockEdge
Tick clockEdge(Cycles cycles=Cycles(0)) const
Determine the tick when a cycle begins, by default the current one, but the argument also enables the...
Definition: clocked_object.hh:177
gem5::ruby::AbstractController::init
void init()
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: AbstractController.cc:77
gem5::ruby::AbstractController::unblock
void unblock(Addr)
Definition: AbstractController.cc:327
gem5::ruby::AbstractController::stats
gem5::ruby::AbstractController::ControllerStats stats
gem5::ruby::MessageBuffer::setConsumer
void setConsumer(Consumer *consumer)
Definition: MessageBuffer.hh:102
Network.hh
gem5::ruby::AbstractController::wakeUpAllBuffers
void wakeUpAllBuffers()
Definition: AbstractController.cc:216
gem5::AddrRangeMap::intersects
const_iterator intersects(const AddrRange &r) const
Find entry that intersects with the given address range.
Definition: addr_range_map.hh:140
gem5::Packet::allocate
void allocate()
Allocate memory for the packet.
Definition: packet.hh:1326
gem5::Port
Ports are used to interface objects to each other.
Definition: port.hh:61
gem5::ruby::AbstractController::m_in_ports
unsigned int m_in_ports
Definition: AbstractController.hh:324
gem5::ruby::Network::addressToNodeID
NodeID addressToNodeID(Addr addr, MachineType mtype)
Map an address to the correct NodeID.
Definition: Network.cc:235
gem5::ruby::AbstractController::MemoryPort::recvTimingResp
bool recvTimingResp(PacketPtr pkt)
Receive a timing response from the peer.
Definition: AbstractController.cc:437
gem5::ruby::RubySystem::getWarmupEnabled
static bool getWarmupEnabled()
Definition: RubySystem.hh:75
gem5::ruby::AbstractController::m_net_ptr
Network * m_net_ptr
Definition: AbstractController.hh:315
gem5::ruby::AbstractController::functionalMemoryRead
void functionalMemoryRead(PacketPtr)
Definition: AbstractController.cc:348
gem5::Packet::dataDynamic
void dataDynamic(T *p)
Set the data pointer to a value that should have delete [] called on it.
Definition: packet.hh:1172
gem5::AddrRangeMap::insert
iterator insert(const AddrRange &r, const V &d)
Definition: addr_range_map.hh:155
gem5::ruby::NetDest::resize
void resize()
Definition: NetDest.cc:253
gem5::statistics::Group
Statistics container.
Definition: group.hh:93
gem5::ruby::AbstractController::m_id
const RequestorID m_id
Definition: AbstractController.hh:313
gem5::ArmISA::id
Bitfield< 33 > id
Definition: misc_types.hh:251
gem5::ruby::NodeID
unsigned int NodeID
Definition: TypeDefines.hh:40
gem5::ruby::NetDest::add
void add(MachineID newElement)
Definition: NetDest.cc:45
gem5::ruby::AbstractController::AddrMapEntry
std::unordered_map< MachineType, MachineID > AddrMapEntry
Definition: AbstractController.hh:373
gem5::ruby::AbstractController::regStats
virtual void regStats()
Callback to set stat parameters.
Definition: AbstractController.cc:125
gem5::ruby::AbstractController::MemoryPort::controller
AbstractController * controller
Definition: AbstractController.hh:341
gem5::statistics::DistBase::reset
void reset()
Reset stat value to default.
Definition: statistics.hh:1352
gem5::ClockedObject::Params
ClockedObjectParams Params
Parameters of ClockedObject.
Definition: clocked_object.hh:240
gem5::statistics::DataWrap::flags
Derived & flags(Flags _flags)
Set the flags and marks this stat to print at the end of simulation.
Definition: statistics.hh:358
gem5::ruby::AbstractController::downstreamAddrMap
AddrRangeMap< AddrMapEntry, 3 > downstreamAddrMap
Definition: AbstractController.hh:375
gem5::Clocked::ticksToCycles
Cycles ticksToCycles(Tick t) const
Definition: clocked_object.hh:222
gem5::ruby::AbstractController::memoryPort
MemoryPort memoryPort
Definition: AbstractController.hh:357
gem5::ruby::MessageBuffer
Definition: MessageBuffer.hh:74
std::list< AddrRange >
gem5::Packet::getAddr
Addr getAddr() const
Definition: packet.hh:781
fatal_if
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Definition: logging.hh:226
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: tlb.cc:60
gem5::Packet::createRead
static PacketPtr createRead(const RequestPtr &req)
Constructor-like methods that return Packets based on Request objects.
Definition: packet.hh:1007
gem5::ruby::AbstractController::getMemRespQueue
virtual MessageBuffer * getMemRespQueue() const =0
gem5::ruby::MachineID
Definition: MachineID.hh:56
gem5::ruby::AbstractController::blockOnQueue
void blockOnQueue(Addr, MessageBuffer *)
Definition: AbstractController.cc:314
gem5::Packet::isResponse
bool isResponse() const
Definition: packet.hh:587
gem5::ruby::AbstractController::recvTimingResp
void recvTimingResp(PacketPtr pkt)
Definition: AbstractController.cc:367
gem5::Named::_name
const std::string _name
Definition: named.hh:41
gem5::ruby::AbstractController::wakeUpBuffer
void wakeUpBuffer(MessageBuffer *buf, Addr addr)
Definition: AbstractController.cc:153
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:178
gem5::X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:84
gem5::ruby::AbstractController::stallBuffer
void stallBuffer(MessageBuffer *buf, Addr addr)
Definition: AbstractController.cc:139
gem5::SenderState
RubyTester::SenderState SenderState
Definition: Check.cc:40
gem5::Packet::getPtr
T * getPtr()
get a pointer to the data ptr.
Definition: packet.hh:1184
Sequencer.hh

Generated on Tue Dec 21 2021 11:34:33 for gem5 by doxygen 1.8.17