gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
RubySystem.cc
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-2011 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 <fcntl.h>
44 #include <zlib.h>
45 
46 #include <cstdio>
47 #include <list>
48 
49 #include "base/intmath.hh"
50 #include "base/statistics.hh"
51 #include "debug/RubyCacheTrace.hh"
52 #include "debug/RubySystem.hh"
57 #include "mem/simple_mem.hh"
58 #include "sim/eventq.hh"
59 #include "sim/simulate.hh"
60 #include "sim/system.hh"
61 
66 bool RubySystem::m_warmup_enabled = false;
67 // To look forward to allowing multiple RubySystem instances, track the number
68 // of RubySystems that need to be warmed up on checkpoint restore.
71 
73  : ClockedObject(p), m_access_backing_store(p.access_backing_store),
74  m_cache_recorder(NULL)
75 {
76  m_randomization = p.randomization;
77 
78  m_block_size_bytes = p.block_size_bytes;
81  m_memory_size_bits = p.memory_size_bits;
82 
83  // Resize to the size of different machine types
84  m_abstract_controls.resize(MachineType_NUM);
85 
86  // Collate the statistics before they are printed.
88  // Create the profiler
89  m_profiler = new Profiler(p, this);
90  m_phys_mem = p.phys_mem;
91 }
92 
93 void
95 {
96  m_networks.emplace_back(network_ptr);
97 }
98 
99 void
101 {
102  m_abs_cntrl_vec.push_back(cntrl);
103 
104  MachineID id = cntrl->getMachineID();
105  m_abstract_controls[id.getType()][id.getNum()] = cntrl;
106 }
107 
108 void
110 {
111  int network_id = -1;
112  for (int idx = 0; idx < m_networks.size(); ++idx) {
113  if (m_networks[idx].get() == network) {
114  network_id = idx;
115  }
116  }
117 
118  fatal_if(network_id < 0, "Could not add MachineID %s. Network not found",
119  MachineIDToString(mach_id).c_str());
120 
121  machineToNetwork.insert(std::make_pair(mach_id, network_id));
122 }
123 
124 // This registers all requestor IDs in the system for functional reads. This
125 // should be called in init() since requestor IDs are obtained in a SimObject's
126 // constructor and there are functional reads/writes between init() and
127 // startup().
128 void
130 {
131  // Create the map for RequestorID to network node. This is done in init()
132  // because all RequestorIDs must be obtained in the constructor and
133  // AbstractControllers are registered in their constructor. This is done
134  // in two steps: (1) Add all of the AbstractControllers. Since we don't
135  // have a mapping of RequestorID to MachineID this is the easiest way to
136  // filter out AbstractControllers from non-Ruby requestors. (2) Go through
137  // the system's list of RequestorIDs and add missing RequestorIDs to
138  // network 0 (the default).
139  for (auto& cntrl : m_abs_cntrl_vec) {
140  RequestorID id = cntrl->getRequestorId();
141  MachineID mach_id = cntrl->getMachineID();
142 
143  // These are setup in Network constructor and should exist
144  fatal_if(!machineToNetwork.count(mach_id),
145  "No machineID %s. Does not belong to a Ruby network?",
146  MachineIDToString(mach_id).c_str());
147 
148  auto network_id = machineToNetwork[mach_id];
149  requestorToNetwork.insert(std::make_pair(id, network_id));
150 
151  // Create helper vectors for each network to iterate over.
152  netCntrls[network_id].push_back(cntrl);
153  }
154 
155  // Default all other requestor IDs to network 0
156  for (auto id = 0; id < params().system->maxRequestors(); ++id) {
157  if (!requestorToNetwork.count(id)) {
158  requestorToNetwork.insert(std::make_pair(id, 0));
159  }
160  }
161 }
162 
164 {
165  delete m_profiler;
166 }
167 
168 void
169 RubySystem::makeCacheRecorder(uint8_t *uncompressed_trace,
170  uint64_t cache_trace_size,
171  uint64_t block_size_bytes)
172 {
173  std::vector<Sequencer*> sequencer_map;
174  Sequencer* sequencer_ptr = NULL;
175 
176  for (int cntrl = 0; cntrl < m_abs_cntrl_vec.size(); cntrl++) {
177  sequencer_map.push_back(m_abs_cntrl_vec[cntrl]->getCPUSequencer());
178  if (sequencer_ptr == NULL) {
179  sequencer_ptr = sequencer_map[cntrl];
180  }
181  }
182 
183  assert(sequencer_ptr != NULL);
184 
185  for (int cntrl = 0; cntrl < m_abs_cntrl_vec.size(); cntrl++) {
186  if (sequencer_map[cntrl] == NULL) {
187  sequencer_map[cntrl] = sequencer_ptr;
188  }
189  }
190 
191  // Remove the old CacheRecorder if it's still hanging about.
192  if (m_cache_recorder != NULL) {
193  delete m_cache_recorder;
194  }
195 
196  // Create the CacheRecorder and record the cache trace
197  m_cache_recorder = new CacheRecorder(uncompressed_trace, cache_trace_size,
198  sequencer_map, block_size_bytes);
199 }
200 
201 void
203 {
204  m_cooldown_enabled = true;
205 
206  // Make the trace so we know what to write back.
207  DPRINTF(RubyCacheTrace, "Recording Cache Trace\n");
209  for (int cntrl = 0; cntrl < m_abs_cntrl_vec.size(); cntrl++) {
210  m_abs_cntrl_vec[cntrl]->recordCacheTrace(cntrl, m_cache_recorder);
211  }
212  DPRINTF(RubyCacheTrace, "Cache Trace Complete\n");
213 
214  // save the current tick value
215  Tick curtick_original = curTick();
216  DPRINTF(RubyCacheTrace, "Recording current tick %ld\n", curtick_original);
217 
218  // Deschedule all prior events on the event queue, but record the tick they
219  // were scheduled at so they can be restored correctly later.
220  std::list<std::pair<Event*, Tick> > original_events;
221  while (!eventq->empty()) {
222  Event *curr_head = eventq->getHead();
223  if (curr_head->isAutoDelete()) {
224  DPRINTF(RubyCacheTrace, "Event %s auto-deletes when descheduled,"
225  " not recording\n", curr_head->name());
226  } else {
227  original_events.push_back(
228  std::make_pair(curr_head, curr_head->when()));
229  }
230  eventq->deschedule(curr_head);
231  }
232 
233  // Schedule an event to start cache cooldown
234  DPRINTF(RubyCacheTrace, "Starting cache flush\n");
236  simulate();
237  DPRINTF(RubyCacheTrace, "Cache flush complete\n");
238 
239  // Deschedule any events left on the event queue.
240  while (!eventq->empty()) {
242  }
243 
244  // Restore curTick
245  setCurTick(curtick_original);
246 
247  // Restore all events that were originally on the event queue. This is
248  // done after setting curTick back to its original value so that events do
249  // not seem to be scheduled in the past.
250  while (!original_events.empty()) {
251  std::pair<Event*, Tick> event = original_events.back();
252  eventq->schedule(event.first, event.second);
253  original_events.pop_back();
254  }
255 
256  // No longer flushing back to memory.
257  m_cooldown_enabled = false;
258 
259  // There are several issues with continuing simulation after calling
260  // memWriteback() at the moment, that stem from taking events off the
261  // queue, simulating again, and then putting them back on, whilst
262  // pretending that no time has passed. One is that some events will have
263  // been deleted, so can't be put back. Another is that any object
264  // recording the tick something happens may end up storing a tick in the
265  // future. A simple warning here alerts the user that things may not work
266  // as expected.
267  warn_once("Ruby memory writeback is experimental. Continuing simulation "
268  "afterwards may not always work as intended.");
269 
270  // Keep the cache recorder around so that we can dump the trace if a
271  // checkpoint is immediately taken.
272 }
273 
274 void
275 RubySystem::writeCompressedTrace(uint8_t *raw_data, std::string filename,
276  uint64_t uncompressed_trace_size)
277 {
278  // Create the checkpoint file for the memory
279  std::string thefile = CheckpointIn::dir() + "/" + filename.c_str();
280 
281  int fd = creat(thefile.c_str(), 0664);
282  if (fd < 0) {
283  perror("creat");
284  fatal("Can't open memory trace file '%s'\n", filename);
285  }
286 
287  gzFile compressedMemory = gzdopen(fd, "wb");
288  if (compressedMemory == NULL)
289  fatal("Insufficient memory to allocate compression state for %s\n",
290  filename);
291 
292  if (gzwrite(compressedMemory, raw_data, uncompressed_trace_size) !=
293  uncompressed_trace_size) {
294  fatal("Write failed on memory trace file '%s'\n", filename);
295  }
296 
297  if (gzclose(compressedMemory)) {
298  fatal("Close failed on memory trace file '%s'\n", filename);
299  }
300  delete[] raw_data;
301 }
302 
303 void
305 {
306  // Store the cache-block size, so we are able to restore on systems with a
307  // different cache-block size. CacheRecorder depends on the correct
308  // cache-block size upon unserializing.
309  uint64_t block_size_bytes = getBlockSizeBytes();
310  SERIALIZE_SCALAR(block_size_bytes);
311 
312  // Check that there's a valid trace to use. If not, then memory won't be
313  // up-to-date and the simulation will probably fail when restoring from the
314  // checkpoint.
315  if (m_cache_recorder == NULL) {
316  fatal("Call memWriteback() before serialize() to create ruby trace");
317  }
318 
319  // Aggregate the trace entries together into a single array
320  uint8_t *raw_data = new uint8_t[4096];
321  uint64_t cache_trace_size = m_cache_recorder->aggregateRecords(&raw_data,
322  4096);
323  std::string cache_trace_file = name() + ".cache.gz";
324  writeCompressedTrace(raw_data, cache_trace_file, cache_trace_size);
325 
326  SERIALIZE_SCALAR(cache_trace_file);
327  SERIALIZE_SCALAR(cache_trace_size);
328 }
329 
330 void
332 {
333  // Delete the cache recorder if it was created in memWriteback()
334  // to checkpoint the current cache state.
335  if (m_cache_recorder) {
336  delete m_cache_recorder;
337  m_cache_recorder = NULL;
338  }
339 }
340 
341 void
342 RubySystem::readCompressedTrace(std::string filename, uint8_t *&raw_data,
343  uint64_t &uncompressed_trace_size)
344 {
345  // Read the trace file
346  gzFile compressedTrace;
347 
348  // trace file
349  int fd = open(filename.c_str(), O_RDONLY);
350  if (fd < 0) {
351  perror("open");
352  fatal("Unable to open trace file %s", filename);
353  }
354 
355  compressedTrace = gzdopen(fd, "rb");
356  if (compressedTrace == NULL) {
357  fatal("Insufficient memory to allocate compression state for %s\n",
358  filename);
359  }
360 
361  raw_data = new uint8_t[uncompressed_trace_size];
362  if (gzread(compressedTrace, raw_data, uncompressed_trace_size) <
363  uncompressed_trace_size) {
364  fatal("Unable to read complete trace from file %s\n", filename);
365  }
366 
367  if (gzclose(compressedTrace)) {
368  fatal("Failed to close cache trace file '%s'\n", filename);
369  }
370 }
371 
372 void
374 {
375  uint8_t *uncompressed_trace = NULL;
376 
377  // This value should be set to the checkpoint-system's block-size.
378  // Optional, as checkpoints without it can be run if the
379  // checkpoint-system's block-size == current block-size.
380  uint64_t block_size_bytes = getBlockSizeBytes();
381  UNSERIALIZE_OPT_SCALAR(block_size_bytes);
382 
383  std::string cache_trace_file;
384  uint64_t cache_trace_size = 0;
385 
386  UNSERIALIZE_SCALAR(cache_trace_file);
387  UNSERIALIZE_SCALAR(cache_trace_size);
388  cache_trace_file = cp.getCptDir() + "/" + cache_trace_file;
389 
390  readCompressedTrace(cache_trace_file, uncompressed_trace,
391  cache_trace_size);
392  m_warmup_enabled = true;
394 
395  // Create the cache recorder that will hang around until startup.
396  makeCacheRecorder(uncompressed_trace, cache_trace_size, block_size_bytes);
397 }
398 
399 void
401 {
403 }
404 
405 void
407 {
408 
409  // Ruby restores state from a checkpoint by resetting the clock to 0 and
410  // playing the requests that can possibly re-generate the cache state.
411  // The clock value is set to the actual checkpointed value once all the
412  // requests have been executed.
413  //
414  // This way of restoring state is pretty finicky. For example, if a
415  // Ruby component reads time before the state has been restored, it would
416  // cache this value and hence its clock would not be reset to 0, when
417  // Ruby resets the global clock. This can potentially result in a
418  // deadlock.
419  //
420  // The solution is that no Ruby component should read time before the
421  // simulation starts. And then one also needs to hope that the time
422  // Ruby finishes restoring the state is less than the time when the
423  // state was checkpointed.
424 
425  if (m_warmup_enabled) {
426  DPRINTF(RubyCacheTrace, "Starting ruby cache warmup\n");
427  // save the current tick value
428  Tick curtick_original = curTick();
429  // save the event queue head
430  Event* eventq_head = eventq->replaceHead(NULL);
431  // set curTick to 0 and reset Ruby System's clock
432  setCurTick(0);
433  resetClock();
434 
435  // Schedule an event to start cache warmup
437  simulate();
438 
439  delete m_cache_recorder;
440  m_cache_recorder = NULL;
442  if (m_systems_to_warmup == 0) {
443  m_warmup_enabled = false;
444  }
445 
446  // Restore eventq head
447  eventq->replaceHead(eventq_head);
448  // Restore curTick and Ruby System's clock
449  setCurTick(curtick_original);
450  resetClock();
451  }
452 
453  resetStats();
454 }
455 
456 void
458 {
459  if (getWarmupEnabled()) {
461  } else if (getCooldownEnabled()) {
463  }
464 }
465 
466 void
468 {
470  for (auto& network : m_networks) {
471  network->resetStats();
472  }
473 }
474 
475 #ifndef PARTIAL_FUNC_READS
476 bool
478 {
479  Addr address(pkt->getAddr());
480  Addr line_address = makeLineAddress(address);
481 
482  AccessPermission access_perm = AccessPermission_NotPresent;
483 
484  DPRINTF(RubySystem, "Functional Read request for %#x\n", address);
485 
486  unsigned int num_ro = 0;
487  unsigned int num_rw = 0;
488  unsigned int num_busy = 0;
489  unsigned int num_maybe_stale = 0;
490  unsigned int num_backing_store = 0;
491  unsigned int num_invalid = 0;
492 
493  // Only send functional requests within the same network.
494  assert(requestorToNetwork.count(pkt->requestorId()));
495  int request_net_id = requestorToNetwork[pkt->requestorId()];
496  assert(netCntrls.count(request_net_id));
497 
498  AbstractController *ctrl_ro = nullptr;
499  AbstractController *ctrl_rw = nullptr;
500  AbstractController *ctrl_backing_store = nullptr;
501 
502  // In this loop we count the number of controllers that have the given
503  // address in read only, read write and busy states.
504  for (auto& cntrl : netCntrls[request_net_id]) {
505  access_perm = cntrl-> getAccessPermission(line_address);
506  if (access_perm == AccessPermission_Read_Only){
507  num_ro++;
508  if (ctrl_ro == nullptr) ctrl_ro = cntrl;
509  }
510  else if (access_perm == AccessPermission_Read_Write){
511  num_rw++;
512  if (ctrl_rw == nullptr) ctrl_rw = cntrl;
513  }
514  else if (access_perm == AccessPermission_Busy)
515  num_busy++;
516  else if (access_perm == AccessPermission_Maybe_Stale)
517  num_maybe_stale++;
518  else if (access_perm == AccessPermission_Backing_Store) {
519  // See RubySlicc_Exports.sm for details, but Backing_Store is meant
520  // to represent blocks in memory *for Broadcast/Snooping protocols*,
521  // where memory has no idea whether it has an exclusive copy of data
522  // or not.
523  num_backing_store++;
524  if (ctrl_backing_store == nullptr)
525  ctrl_backing_store = cntrl;
526  }
527  else if (access_perm == AccessPermission_Invalid ||
528  access_perm == AccessPermission_NotPresent)
529  num_invalid++;
530  }
531 
532  // This if case is meant to capture what happens in a Broadcast/Snoop
533  // protocol where the block does not exist in the cache hierarchy. You
534  // only want to read from the Backing_Store memory if there is no copy in
535  // the cache hierarchy, otherwise you want to try to read the RO or RW
536  // copies existing in the cache hierarchy (covered by the else statement).
537  // The reason is because the Backing_Store memory could easily be stale, if
538  // there are copies floating around the cache hierarchy, so you want to read
539  // it only if it's not in the cache hierarchy at all.
540  int num_controllers = netCntrls[request_net_id].size();
541  if (num_invalid == (num_controllers - 1) && num_backing_store == 1) {
542  DPRINTF(RubySystem, "only copy in Backing_Store memory, read from it\n");
543  ctrl_backing_store->functionalRead(line_address, pkt);
544  return true;
545  } else if (num_ro > 0 || num_rw >= 1) {
546  if (num_rw > 1) {
547  // We iterate over the vector of abstract controllers, and return
548  // the first copy found. If we have more than one cache with block
549  // in writable permission, the first one found would be returned.
550  warn("More than one Abstract Controller with RW permission for "
551  "addr: %#x on cacheline: %#x.", address, line_address);
552  }
553  // In Broadcast/Snoop protocols, this covers if you know the block
554  // exists somewhere in the caching hierarchy, then you want to read any
555  // valid RO or RW block. In directory protocols, same thing, you want
556  // to read any valid readable copy of the block.
557  DPRINTF(RubySystem, "num_maybe_stale=%d, num_busy = %d, num_ro = %d, "
558  "num_rw = %d\n",
559  num_maybe_stale, num_busy, num_ro, num_rw);
560  // Use the copy from the controller with read/write permission (if
561  // any), otherwise use get the first read only found
562  if (ctrl_rw) {
563  ctrl_rw->functionalRead(line_address, pkt);
564  } else {
565  assert(ctrl_ro);
566  ctrl_ro->functionalRead(line_address, pkt);
567  }
568  return true;
569  } else if ((num_busy + num_maybe_stale) > 0) {
570  // No controller has a valid copy of the block, but a transient or
571  // stale state indicates a valid copy should be in transit in the
572  // network or in a message buffer waiting to be handled
573  DPRINTF(RubySystem, "Controllers functionalRead lookup "
574  "(num_maybe_stale=%d, num_busy = %d)\n",
575  num_maybe_stale, num_busy);
576  for (auto& cntrl : netCntrls[request_net_id]) {
577  if (cntrl->functionalReadBuffers(pkt))
578  return true;
579  }
580  DPRINTF(RubySystem, "Network functionalRead lookup "
581  "(num_maybe_stale=%d, num_busy = %d)\n",
582  num_maybe_stale, num_busy);
583  for (auto& network : m_networks) {
584  if (network->functionalRead(pkt))
585  return true;
586  }
587  }
588 
589  return false;
590 }
591 #else
592 bool
594 {
595  Addr address(pkt->getAddr());
596  Addr line_address = makeLineAddress(address);
597 
598  DPRINTF(RubySystem, "Functional Read request for %#x\n", address);
599 
603  AbstractController *ctrl_rw = nullptr;
604  AbstractController *ctrl_bs = nullptr;
605 
606  // Build lists of controllers that have line
607  for (auto ctrl : m_abs_cntrl_vec) {
608  switch(ctrl->getAccessPermission(line_address)) {
609  case AccessPermission_Read_Only:
610  ctrl_ro.push_back(ctrl);
611  break;
612  case AccessPermission_Busy:
613  ctrl_busy.push_back(ctrl);
614  break;
615  case AccessPermission_Read_Write:
616  assert(ctrl_rw == nullptr);
617  ctrl_rw = ctrl;
618  break;
619  case AccessPermission_Backing_Store:
620  assert(ctrl_bs == nullptr);
621  ctrl_bs = ctrl;
622  break;
623  case AccessPermission_Backing_Store_Busy:
624  assert(ctrl_bs == nullptr);
625  ctrl_bs = ctrl;
626  ctrl_busy.push_back(ctrl);
627  break;
628  default:
629  ctrl_others.push_back(ctrl);
630  break;
631  }
632  }
633 
634  DPRINTF(RubySystem, "num_ro=%d, num_busy=%d , has_rw=%d, "
635  "backing_store=%d\n",
636  ctrl_ro.size(), ctrl_busy.size(),
637  ctrl_rw != nullptr, ctrl_bs != nullptr);
638 
639  // Issue functional reads to all controllers found in a stable state
640  // until we get a full copy of the line
641  WriteMask bytes;
642  if (ctrl_rw != nullptr) {
643  ctrl_rw->functionalRead(line_address, pkt, bytes);
644  // if a RW controllter has the full line that's all uptodate
645  if (bytes.isFull())
646  return true;
647  }
648 
649  // Get data from RO and BS
650  for (auto ctrl : ctrl_ro)
651  ctrl->functionalRead(line_address, pkt, bytes);
652 
653  ctrl_bs->functionalRead(line_address, pkt, bytes);
654 
655  // if there is any busy controller or bytes still not set, then a partial
656  // and/or dirty copy of the line might be in a message buffer or the
657  // network
658  if (!ctrl_busy.empty() || !bytes.isFull()) {
659  DPRINTF(RubySystem, "Reading from busy controllers and network\n");
660  for (auto ctrl : ctrl_busy) {
661  ctrl->functionalRead(line_address, pkt, bytes);
662  ctrl->functionalReadBuffers(pkt, bytes);
663  }
664  for (auto& network : m_networks) {
665  network->functionalRead(pkt, bytes);
666  }
667  for (auto ctrl : ctrl_others) {
668  ctrl->functionalRead(line_address, pkt, bytes);
669  ctrl->functionalReadBuffers(pkt, bytes);
670  }
671  }
672  // we either got the full line or couldn't find anything at this point
673  panic_if(!(bytes.isFull() || bytes.isEmpty()),
674  "Inconsistent state on functional read for %#x %s\n",
675  address, bytes);
676 
677  return bytes.isFull();
678 }
679 #endif
680 
681 // The function searches through all the buffers that exist in different
682 // cache, directory and memory controllers, and in the network components
683 // and writes the data portion of those that hold the address specified
684 // in the packet.
685 bool
687 {
688  Addr addr(pkt->getAddr());
689  Addr line_addr = makeLineAddress(addr);
690  AccessPermission access_perm = AccessPermission_NotPresent;
691 
692  DPRINTF(RubySystem, "Functional Write request for %#x\n", addr);
693 
694  M5_VAR_USED uint32_t num_functional_writes = 0;
695 
696  // Only send functional requests within the same network.
697  assert(requestorToNetwork.count(pkt->requestorId()));
698  int request_net_id = requestorToNetwork[pkt->requestorId()];
699  assert(netCntrls.count(request_net_id));
700 
701  for (auto& cntrl : netCntrls[request_net_id]) {
702  num_functional_writes += cntrl->functionalWriteBuffers(pkt);
703 
704  access_perm = cntrl->getAccessPermission(line_addr);
705  if (access_perm != AccessPermission_Invalid &&
706  access_perm != AccessPermission_NotPresent) {
707  num_functional_writes +=
708  cntrl->functionalWrite(line_addr, pkt);
709  }
710 
711  // Also updates requests pending in any sequencer associated
712  // with the controller
713  if (cntrl->getCPUSequencer()) {
714  num_functional_writes +=
715  cntrl->getCPUSequencer()->functionalWrite(pkt);
716  }
717  if (cntrl->getDMASequencer()) {
718  num_functional_writes +=
719  cntrl->getDMASequencer()->functionalWrite(pkt);
720  }
721  }
722 
723  for (auto& network : m_networks) {
724  num_functional_writes += network->functionalWrite(pkt);
725  }
726  DPRINTF(RubySystem, "Messages written = %u\n", num_functional_writes);
727 
728  return true;
729 }
fatal
#define fatal(...)
This implements a cprintf based fatal() function.
Definition: logging.hh:183
RubySystem::m_abstract_controls
std::vector< std::map< uint32_t, AbstractController * > > m_abstract_controls
Definition: RubySystem.hh:149
warn
#define warn(...)
Definition: logging.hh:239
CacheRecorder
Definition: CacheRecorder.hh:66
RubySystem::functionalRead
bool functionalRead(Packet *ptr)
Definition: RubySystem.cc:477
CacheRecorder::aggregateRecords
uint64_t aggregateRecords(uint8_t **data, uint64_t size)
Definition: CacheRecorder.cc:169
system.hh
RubySystem::getBlockSizeBytes
static uint32_t getBlockSizeBytes()
Definition: RubySystem.hh:61
RubySystem::registerAbstractController
void registerAbstractController(AbstractController *)
Definition: RubySystem.cc:100
UNSERIALIZE_SCALAR
#define UNSERIALIZE_SCALAR(scalar)
Definition: serialize.hh:591
Packet::getAddr
Addr getAddr() const
Definition: packet.hh:755
makeLineAddress
Addr makeLineAddress(Addr addr)
Definition: Address.cc:54
Sequencer
Definition: Sequencer.hh:80
RubySystem::m_phys_mem
SimpleMemory * m_phys_mem
Definition: RubySystem.hh:134
warn_once
#define warn_once(...)
Definition: logging.hh:243
RubySystem::m_start_cycle
Cycles m_start_cycle
Definition: RubySystem.hh:140
DMASequencer.hh
CacheRecorder::enqueueNextFetchRequest
void enqueueNextFetchRequest()
Function for fetching warming up the memory and the caches.
Definition: CacheRecorder.cc:103
EventQueue::replaceHead
Event * replaceHead(Event *s)
function for replacing the head of the event queue, so that a different set of events can run without...
Definition: eventq.cc:354
RubySystem::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: RubySystem.cc:373
RubySystem::writeCompressedTrace
static void writeCompressedTrace(uint8_t *raw_data, std::string file, uint64_t uncompressed_trace_size)
Definition: RubySystem.cc:275
RubySystem::requestorToNetwork
std::unordered_map< RequestorID, unsigned > requestorToNetwork
Definition: RubySystem.hh:143
CacheRecorder::enqueueNextFlushRequest
void enqueueNextFlushRequest()
Function for flushing the memory contents of the caches to the main memory.
Definition: CacheRecorder.cc:81
simulate.hh
Stats::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:319
ArmISA::fd
Bitfield< 14, 12 > fd
Definition: types.hh:159
RubySystem::m_block_size_bytes
static uint32_t m_block_size_bytes
Definition: RubySystem.hh:127
RubySystem::resetStats
void resetStats() override
Callback to reset stats.
Definition: RubySystem.cc:467
RubySystem::drainResume
void drainResume() override
Resume execution after a successful drain.
Definition: RubySystem.cc:331
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
EventQueue::getHead
Event * getHead() const
Definition: eventq.hh:855
RubySystem::registerMachineID
void registerMachineID(const MachineID &mach_id, Network *network)
Definition: RubySystem.cc:109
Packet::requestorId
RequestorID requestorId() const
Definition: packet.hh:741
RubySystem::m_cooldown_enabled
static bool m_cooldown_enabled
Definition: RubySystem.hh:133
std::vector< Sequencer * >
AbstractController
Definition: AbstractController.hh:76
AbstractController::functionalRead
virtual void functionalRead(const Addr &addr, PacketPtr)
Definition: AbstractController.hh:119
RubySystem::netCntrls
std::unordered_map< unsigned, std::vector< AbstractController * > > netCntrls
Definition: RubySystem.hh:144
RubySystem::m_networks
std::vector< std::unique_ptr< Network > > m_networks
Definition: RubySystem.hh:138
RubySystem::registerRequestorIDs
void registerRequestorIDs()
Definition: RubySystem.cc:129
Event::when
Tick when() const
Get the time that the event is scheduled.
Definition: eventq.hh:505
MachineID
Definition: MachineID.hh:50
RubySystem::m_profiler
Profiler * m_profiler
Definition: RubySystem.hh:147
RubySystem::registerNetwork
void registerNetwork(Network *)
Definition: RubySystem.cc:94
ClockedObject
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
Definition: clocked_object.hh:231
RubySystem::init
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: RubySystem.cc:400
WriteMask::isFull
bool isFull() const
Definition: WriteMask.hh:152
RubySystem::collateStats
void collateStats()
Definition: RubySystem.hh:82
RequestorID
uint16_t RequestorID
Definition: request.hh:89
RubySystem::~RubySystem
~RubySystem()
Definition: RubySystem.cc:163
cp
Definition: cprintf.cc:37
RubySystem::memWriteback
void memWriteback() override
Write back dirty buffers to memory using functional writes.
Definition: RubySystem.cc:202
ClockedObject::Params
ClockedObjectParams Params
Parameters of ClockedObject.
Definition: clocked_object.hh:237
Event
Definition: eventq.hh:248
Profiler
Definition: Profiler.hh:65
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:237
RubySystem::readCompressedTrace
static void readCompressedTrace(std::string filename, uint8_t *&raw_data, uint64_t &uncompressed_trace_size)
Definition: RubySystem.cc:342
RubySystem::m_abs_cntrl_vec
std::vector< AbstractController * > m_abs_cntrl_vec
Definition: RubySystem.hh:139
EventManager::setCurTick
void setCurTick(Tick newVal)
Definition: eventq.hh:1077
RubySystem
Definition: RubySystem.hh:52
MipsISA::event
Bitfield< 10, 5 > event
Definition: pra_constants.hh:297
statistics.hh
EventQueue::empty
bool empty() const
Returns true if no events are queued.
Definition: eventq.hh:895
RubySystem::makeCacheRecorder
void makeCacheRecorder(uint8_t *uncompressed_trace, uint64_t cache_trace_size, uint64_t block_size_bytes)
Definition: RubySystem.cc:169
RubySystem::functionalWrite
bool functionalWrite(Packet *ptr)
Definition: RubySystem.cc:686
Clocked::curCycle
Cycles curCycle() const
Determine the current cycle, corresponding to a tick aligned to a clock edge.
Definition: clocked_object.hh:192
UNSERIALIZE_OPT_SCALAR
#define UNSERIALIZE_OPT_SCALAR(scalar)
Definition: serialize.hh:598
RubySystem::machineToNetwork
std::unordered_map< MachineID, unsigned > machineToNetwork
Definition: RubySystem.hh:142
simulate
GlobalSimLoopExitEvent * simulate(Tick num_cycles)
Simulate for num_cycles additional cycles.
Definition: simulate.cc:80
WriteMask::isEmpty
bool isEmpty() const
Definition: WriteMask.hh:141
std::pair
STL pair class.
Definition: stl.hh:58
RubySystem.hh
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
Network
Definition: Network.hh:76
RubySystem::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: RubySystem.cc:304
RubySystem::getCooldownEnabled
static bool getCooldownEnabled()
Definition: RubySystem.hh:65
SERIALIZE_SCALAR
#define SERIALIZE_SCALAR(scalar)
Definition: serialize.hh:584
RubySystem::m_memory_size_bits
static uint32_t m_memory_size_bits
Definition: RubySystem.hh:129
RubySystem::processRubyEvent
void processRubyEvent()
Definition: RubySystem.cc:457
EventQueue::schedule
void schedule(Event *event, Tick when, bool global=false)
Schedule the given event on this queue.
Definition: eventq.hh:761
X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:80
SimObject::name
virtual const std::string name() const
Definition: sim_object.hh:182
floorLog2
std::enable_if_t< std::is_integral< T >::value, int > floorLog2(T x)
Definition: intmath.hh:63
Network.hh
panic_if
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:197
Event::isAutoDelete
bool isAutoDelete() const
The function returns true if the object is automatically deleted after the event is processed.
Definition: eventq.hh:498
RubySystem::m_randomization
static bool m_randomization
Definition: RubySystem.hh:126
RubySystem::startup
void startup() override
startup() is the final initialization call before simulation.
Definition: RubySystem.cc:406
Clocked::resetClock
void resetClock() const
Reset the object's clock using the current global tick value.
Definition: clocked_object.hh:134
Address.hh
RubySystem::getWarmupEnabled
static bool getWarmupEnabled()
Definition: RubySystem.hh:64
RubySystem::m_warmup_enabled
static bool m_warmup_enabled
Definition: RubySystem.hh:131
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
EventQueue::deschedule
void deschedule(Event *event)
Deschedule the specified event.
Definition: eventq.hh:794
EventManager::eventq
EventQueue * eventq
A pointer to this object's event queue.
Definition: eventq.hh:988
RubySystem::m_systems_to_warmup
static unsigned m_systems_to_warmup
Definition: RubySystem.hh:132
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:64
curTick
Tick curTick()
The universal simulation clock.
Definition: cur_tick.hh:43
CheckpointIn::dir
static std::string dir()
Get the current checkout directory name.
Definition: serialize.cc:262
SimObject::params
const Params & params() const
Definition: sim_object.hh:168
RubySystem::enqueueRubyEvent
void enqueueRubyEvent(Tick tick)
Definition: RubySystem.hh:101
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
std::list
STL list class.
Definition: stl.hh:51
intmath.hh
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:219
CheckpointIn
Definition: serialize.hh:68
RubySystem::m_block_size_bits
static uint32_t m_block_size_bits
Definition: RubySystem.hh:128
Event::name
virtual const std::string name() const
Definition: eventq.cc:82
MachineIDToString
std::string MachineIDToString(MachineID machine)
Definition: MachineID.hh:67
isPowerOf2
bool isPowerOf2(const T &n)
Definition: intmath.hh:102
WriteMask
Definition: WriteMask.hh:53
RubySystem::RubySystem
RubySystem(const Params &p)
Definition: RubySystem.cc:72
RubySystem::m_cache_recorder
CacheRecorder * m_cache_recorder
Definition: RubySystem.hh:148
ArmISA::id
Bitfield< 33 > id
Definition: miscregs_types.hh:247
AbstractController::getMachineID
MachineID getMachineID() const
Definition: AbstractController.hh:168
simple_mem.hh
eventq.hh
Sequencer.hh

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