51 #include "debug/RubyCacheTrace.hh"
52 #include "debug/RubySystem.hh"
74 m_cache_recorder(NULL)
112 for (
int idx = 0; idx <
m_networks.size(); ++idx) {
118 fatal_if(network_id < 0,
"Could not add MachineID %s. Network not found",
141 MachineID mach_id = cntrl->getMachineID();
145 "No machineID %s. Does not belong to a Ruby network?",
156 for (
auto id = 0;
id <
params().system->maxRequestors(); ++
id) {
170 uint64_t cache_trace_size,
171 uint64_t block_size_bytes)
178 if (sequencer_ptr == NULL) {
179 sequencer_ptr = sequencer_map[cntrl];
183 assert(sequencer_ptr != NULL);
186 if (sequencer_map[cntrl] == NULL) {
187 sequencer_map[cntrl] = sequencer_ptr;
198 sequencer_map, block_size_bytes);
207 DPRINTF(RubyCacheTrace,
"Recording Cache Trace\n");
212 DPRINTF(RubyCacheTrace,
"Cache Trace Complete\n");
216 DPRINTF(RubyCacheTrace,
"Recording current tick %ld\n", curtick_original);
224 DPRINTF(RubyCacheTrace,
"Event %s auto-deletes when descheduled,"
225 " not recording\n", curr_head->
name());
227 original_events.push_back(
228 std::make_pair(curr_head, curr_head->
when()));
234 DPRINTF(RubyCacheTrace,
"Starting cache flush\n");
237 DPRINTF(RubyCacheTrace,
"Cache flush complete\n");
250 while (!original_events.empty()) {
253 original_events.pop_back();
267 warn_once(
"Ruby memory writeback is experimental. Continuing simulation "
268 "afterwards may not always work as intended.");
276 uint64_t uncompressed_trace_size)
281 int fd = creat(thefile.c_str(), 0664);
284 fatal(
"Can't open memory trace file '%s'\n", filename);
287 gzFile compressedMemory = gzdopen(
fd,
"wb");
288 if (compressedMemory == NULL)
289 fatal(
"Insufficient memory to allocate compression state for %s\n",
292 if (gzwrite(compressedMemory, raw_data, uncompressed_trace_size) !=
293 uncompressed_trace_size) {
294 fatal(
"Write failed on memory trace file '%s'\n", filename);
297 if (gzclose(compressedMemory)) {
298 fatal(
"Close failed on memory trace file '%s'\n", filename);
316 fatal(
"Call memWriteback() before serialize() to create ruby trace");
320 uint8_t *raw_data =
new uint8_t[4096];
323 std::string cache_trace_file =
name() +
".cache.gz";
343 uint64_t &uncompressed_trace_size)
346 gzFile compressedTrace;
349 int fd = open(filename.c_str(), O_RDONLY);
352 fatal(
"Unable to open trace file %s", filename);
355 compressedTrace = gzdopen(
fd,
"rb");
356 if (compressedTrace == NULL) {
357 fatal(
"Insufficient memory to allocate compression state for %s\n",
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);
367 if (gzclose(compressedTrace)) {
368 fatal(
"Failed to close cache trace file '%s'\n", filename);
375 uint8_t *uncompressed_trace = NULL;
383 std::string cache_trace_file;
384 uint64_t cache_trace_size = 0;
388 cache_trace_file =
cp.getCptDir() +
"/" + cache_trace_file;
426 DPRINTF(RubyCacheTrace,
"Starting ruby cache warmup\n");
471 network->resetStats();
475 #ifndef PARTIAL_FUNC_READS
482 AccessPermission access_perm = AccessPermission_NotPresent;
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;
504 for (
auto& cntrl :
netCntrls[request_net_id]) {
505 access_perm = cntrl-> getAccessPermission(line_address);
506 if (access_perm == AccessPermission_Read_Only){
508 if (ctrl_ro ==
nullptr) ctrl_ro = cntrl;
510 else if (access_perm == AccessPermission_Read_Write){
512 if (ctrl_rw ==
nullptr) ctrl_rw = cntrl;
514 else if (access_perm == AccessPermission_Busy)
516 else if (access_perm == AccessPermission_Maybe_Stale)
518 else if (access_perm == AccessPermission_Backing_Store) {
524 if (ctrl_backing_store ==
nullptr)
525 ctrl_backing_store = cntrl;
527 else if (access_perm == AccessPermission_Invalid ||
528 access_perm == AccessPermission_NotPresent)
540 int num_controllers =
netCntrls[request_net_id].size();
541 if (num_invalid == (num_controllers - 1) && num_backing_store == 1) {
545 }
else if (num_ro > 0 || num_rw >= 1) {
550 warn(
"More than one Abstract Controller with RW permission for "
551 "addr: %#x on cacheline: %#x.", address, line_address);
559 num_maybe_stale, num_busy, num_ro, num_rw);
569 }
else if ((num_busy + num_maybe_stale) > 0) {
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))
581 "(num_maybe_stale=%d, num_busy = %d)\n",
582 num_maybe_stale, num_busy);
584 if (network->functionalRead(pkt))
608 switch(ctrl->getAccessPermission(line_address)) {
609 case AccessPermission_Read_Only:
610 ctrl_ro.push_back(ctrl);
612 case AccessPermission_Busy:
613 ctrl_busy.push_back(ctrl);
615 case AccessPermission_Read_Write:
616 assert(ctrl_rw ==
nullptr);
619 case AccessPermission_Backing_Store:
620 assert(ctrl_bs ==
nullptr);
623 case AccessPermission_Backing_Store_Busy:
624 assert(ctrl_bs ==
nullptr);
626 ctrl_busy.push_back(ctrl);
629 ctrl_others.push_back(ctrl);
635 "backing_store=%d\n",
636 ctrl_ro.size(), ctrl_busy.size(),
637 ctrl_rw !=
nullptr, ctrl_bs !=
nullptr);
642 if (ctrl_rw !=
nullptr) {
650 for (
auto ctrl : ctrl_ro)
651 ctrl->functionalRead(line_address, pkt, bytes);
658 if (!ctrl_busy.empty() || !bytes.
isFull()) {
660 for (
auto ctrl : ctrl_busy) {
661 ctrl->functionalRead(line_address, pkt, bytes);
662 ctrl->functionalReadBuffers(pkt, bytes);
665 network->functionalRead(pkt, bytes);
667 for (
auto ctrl : ctrl_others) {
668 ctrl->functionalRead(line_address, pkt, bytes);
669 ctrl->functionalReadBuffers(pkt, bytes);
674 "Inconsistent state on functional read for %#x %s\n",
690 AccessPermission access_perm = AccessPermission_NotPresent;
694 M5_VAR_USED uint32_t num_functional_writes = 0;
701 for (
auto& cntrl :
netCntrls[request_net_id]) {
702 num_functional_writes += cntrl->functionalWriteBuffers(pkt);
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);
713 if (cntrl->getCPUSequencer()) {
714 num_functional_writes +=
715 cntrl->getCPUSequencer()->functionalWrite(pkt);
717 if (cntrl->getDMASequencer()) {
718 num_functional_writes +=
719 cntrl->getDMASequencer()->functionalWrite(pkt);
724 num_functional_writes += network->functionalWrite(pkt);