50#include "debug/Cache.hh"
51#include "debug/CacheComp.hh"
52#include "debug/CachePort.hh"
53#include "debug/CacheRepl.hh"
54#include "debug/CacheVerbose.hh"
55#include "debug/HWPrefetch.hh"
63#include "params/BaseCache.hh"
64#include "params/WriteAllocator.hh"
72 const std::string &_label)
75 queue(_cache, *this, true, _label),
76 blocked(false), mustSendRetry(false),
99 lookupLatency(
p.tag_latency),
100 dataLatency(
p.data_latency),
101 forwardLatency(
p.tag_latency),
102 fillLatency(
p.data_latency),
103 responseLatency(
p.response_latency),
104 sequentialAccess(
p.sequential_access),
105 numTarget(
p.tgts_per_mshr),
107 clusivity(
p.clusivity),
108 isReadOnly(
p.is_read_only),
109 replaceExpansions(
p.replace_expansions),
110 moveContractions(
p.move_contractions),
113 noTargetMSHR(
nullptr),
114 missCount(
p.max_miss_count),
115 addrRanges(
p.addr_ranges.begin(),
p.addr_ranges.end()),
132 prefetcher->setParentInfo(
system, getProbeManager(), getBlockSize());
135 "The tags of compressed cache %s must derive from CompressedTags",
138 "Compressed cache %s does not have a compression algorithm",
name());
140 compressor->setCache(
this);
152 DPRINTF(CachePort,
"Port is blocking new requests\n");
158 DPRINTF(CachePort,
"Port descheduled retry\n");
167 DPRINTF(CachePort,
"Port is accepting new requests\n");
171 cache.schedule(sendRetryEvent,
curTick() + 1);
178 DPRINTF(CachePort,
"Port is sending retry\n");
181 mustSendRetry =
false;
199 fatal(
"Cache ports on %s are not connected\n",
name());
207 if (if_name ==
"mem_side") {
209 }
else if (if_name ==
"cpu_side") {
220 if (
r.contains(
addr)) {
297 DPRINTF(
Cache,
"%s satisfied %s, no response needed\n", __func__,
310 Tick forward_time,
Tick request_time)
313 pkt && pkt->
isWrite() && !pkt->
req->isUncacheable()) {
395 pkt->
req->isCacheMaintenance());
429 bool satisfied =
false;
434 satisfied =
access(pkt, blk, lat, writebacks);
471 Tick next_pf_time = std::max(
499 "%s saw a non-zero packet delay\n",
name());
501 const bool is_error = pkt->
isError();
504 DPRINTF(
Cache,
"%s: Cache received %s with error\n", __func__,
514 assert(pkt->
req->isUncacheable());
533 if (pkt->
req->isUncacheable()) {
555 if (is_fill && !is_error) {
556 DPRINTF(
Cache,
"Block for addr %#llx being updated in Cache\n",
561 blk =
handleFill(pkt, blk, writebacks, allocate);
562 assert(blk !=
nullptr);
582 !pkt->
req->isCacheInvalidate()) {
615 Tick next_pf_time = std::max(
632 DPRINTF(CacheVerbose,
"%s: Leaving with %s\n", __func__, pkt->
print());
650 bool satisfied =
access(pkt, blk, lat, writebacks);
657 DPRINTF(CacheVerbose,
"%s: packet %s found block: %s\n",
660 writebacks.push_back(wb_pkt);
667 assert(writebacks.empty());
735 bool have_data = blk && blk->
isValid()
745 bool done = have_dirty ||
751 DPRINTF(CacheVerbose,
"%s: %s %s%s%s\n", __func__, pkt->
print(),
752 (blk && blk->
isValid()) ?
"valid " :
"",
753 have_data ?
"data " :
"", done ?
"done " :
"");
807 uint64_t overwrite_val;
809 uint64_t condition_val64;
810 uint32_t condition_val32;
815 assert(
sizeof(uint64_t) >= pkt->
getSize());
826 overwrite_mem =
true;
829 pkt->
writeData((uint8_t *)&overwrite_val);
832 if (pkt->
req->isCondSwap()) {
833 if (pkt->
getSize() ==
sizeof(uint64_t)) {
834 condition_val64 = pkt->
req->getExtraData();
835 overwrite_mem = !std::memcmp(&condition_val64, blk_data,
837 }
else if (pkt->
getSize() ==
sizeof(uint32_t)) {
838 condition_val32 = (uint32_t)pkt->
req->getExtraData();
839 overwrite_mem = !std::memcmp(&condition_val32, blk_data,
842 panic(
"Invalid size for conditional read/write\n");
846 std::memcpy(blk_data, &overwrite_val, pkt->
getSize());
872 if (conflict_mshr && conflict_mshr->
order < wq_entry->
order) {
874 return conflict_mshr;
881 }
else if (miss_mshr) {
897 return conflict_mshr;
907 assert(!miss_mshr && !wq_entry);
914 DPRINTF(HWPrefetch,
"Prefetch %#x has hit in cache, "
915 "dropped.\n", pf_addr);
920 DPRINTF(HWPrefetch,
"Prefetch %#x has hit in a MSHR, "
921 "dropped.\n", pf_addr);
926 DPRINTF(HWPrefetch,
"Prefetch %#x has hit in the "
927 "Write Buffer, dropped.\n", pf_addr);
952 bool replacement =
false;
953 for (
const auto& blk : evict_blks) {
954 if (blk->isValid()) {
975 for (
auto& blk : evict_blks) {
976 if (blk->isValid()) {
998 const auto comp_data =
1000 std::size_t compression_size = comp_data->getSizeBits();
1004 [[maybe_unused]]
const std::size_t prev_size =
1011 bool is_data_expansion =
false;
1012 bool is_data_contraction =
false;
1015 std::string op_name =
"";
1017 op_name =
"expansion";
1018 is_data_expansion =
true;
1021 op_name =
"contraction";
1022 is_data_contraction =
true;
1029 if (is_data_expansion || is_data_contraction) {
1031 bool victim_itself =
false;
1035 blk->
isSecure(), compression_size, evict_blks,
1045 if (blk == victim) {
1046 victim_itself =
true;
1047 auto it = std::find_if(evict_blks.begin(), evict_blks.end(),
1048 [&blk](
CacheBlk* evict_blk){ return evict_blk == blk; });
1049 evict_blks.erase(it);
1053 DPRINTF(CacheRepl,
"Data %s replacement victim: %s\n",
1054 op_name, victim->
print());
1060 for (
auto& sub_blk : superblock->
blks) {
1061 if (sub_blk->isValid() && (blk != sub_blk)) {
1062 evict_blks.push_back(sub_blk);
1072 DPRINTF(CacheComp,
"Data %s: [%s] from %d to %d bits\n",
1073 op_name, blk->
print(), prev_size, compression_size);
1085 if (is_data_expansion) {
1087 }
else if (is_data_contraction) {
1102 assert(blk && blk->
isValid());
1163 DPRINTF(CacheVerbose,
"%s for %s (write)\n", __func__, pkt->
print());
1164 }
else if (pkt->
isRead()) {
1188 DPRINTF(CacheVerbose,
"%s for %s (invalidation)\n", __func__,
1200 const Cycles lookup_lat)
const
1209 const Cycles lookup_lat)
const
1213 if (blk !=
nullptr) {
1227 if (when_ready >
tick &&
1249 "Should never see a write in a read-only cache %s\n",
1257 blk ?
"hit " + blk->
print() :
"miss");
1259 if (pkt->
req->isCacheMaintenance()) {
1332 DPRINTF(
Cache,
"Clean writeback %#llx to block with MSHR, "
1333 "dropping\n", pkt->
getAddr());
1343 const bool has_old_data = blk && blk->
isValid();
1415 const bool has_old_data = blk && blk->
isValid();
1503 pkt->
req->setExtraData(0);
1513 if (from_cache && blk && blk->
isValid() &&
1529 const bool has_old_data = blk && blk->
isValid();
1530 const std::string old_state = (debug::Cache && blk) ? blk->
print() :
"";
1551 is_secure ?
"s" :
"ns");
1561 assert(blk->
isSecure() == is_secure);
1594 "in read-only cache %s\n",
name());
1599 DPRINTF(
Cache,
"Block addr %#llx (%s) moving from %s to %s\n",
1600 addr, is_secure ?
"s" :
"ns", old_state, blk->
print());
1625 const bool is_secure = pkt->
isSecure();
1630 std::size_t blk_size_bits =
blkSize*8;
1641 pkt->
getConstPtr<uint64_t>(), compression_lat, decompression_lat);
1642 blk_size_bits = comp_data->getSizeBits();
1651 evict_blks, partition_id);
1658 DPRINTF(CacheRepl,
"Replacement victim: %s\n", victim->
print());
1703 writebacks.push_back(pkt);
1711 "Writeback from read-only cache");
1712 assert(blk && blk->
isValid() &&
1729 DPRINTF(
Cache,
"Create Writeback %s writable: %d, dirty: %d\n",
1771 req->setFlags(dest);
1834 RequestPtr request = std::make_shared<Request>(
1855 warn_once(
"Invalidating dirty cache lines. " \
1856 "Expect things to break.\n");
1873 nextReady = std::min(nextReady,
1902 DPRINTF(CacheVerbose,
"Delaying pkt %s %llu ticks to allow "
1903 "for write coalescing\n", tgt_pkt->
print(), delay);
1927 pkt =
new Packet(tgt_pkt,
false,
true);
1962 bool pending_modified_resp = !pkt->
hasSharers() &&
1971 DPRINTF(CacheVerbose,
"%s: packet %s found block: %s\n",
1976 writebacks.push_back(wb_pkt);
2014 warn(
"*** The cache still contains dirty data. ***\n");
2015 warn(
" Make sure to drain the system using the correct flags.\n");
2016 warn(
" This checkpoint will not restore correctly " \
2017 "and dirty data in the cache will be lost!\n");
2024 bool bad_checkpoint(dirty);
2031 bool bad_checkpoint;
2033 if (bad_checkpoint) {
2034 fatal(
"Restoring from checkpoints with dirty caches is not "
2035 "supported in the classic memory system. Please remove any "
2036 "caches or drain them properly before taking checkpoints.\n");
2042 const std::string &
name)
2044 ADD_STAT(hits, statistics::units::Count::get(),
2045 (
"number of " +
name +
" hits").c_str()),
2046 ADD_STAT(misses, statistics::units::Count::get(),
2047 (
"number of " +
name +
" misses").c_str()),
2049 (
"number of " +
name +
" hit ticks").c_str()),
2051 (
"number of " +
name +
" miss ticks").c_str()),
2052 ADD_STAT(accesses, statistics::units::Count::get(),
2053 (
"number of " +
name +
" accesses(hits+misses)").c_str()),
2054 ADD_STAT(missRate, statistics::units::Ratio::get(),
2055 (
"miss rate for " +
name +
" accesses").c_str()),
2056 ADD_STAT(avgMissLatency, statistics::units::Rate<
2057 statistics::units::
Tick, statistics::units::Count>::get(),
2058 (
"average " +
name +
" miss latency").c_str()),
2059 ADD_STAT(mshrHits, statistics::units::Count::get(),
2060 (
"number of " +
name +
" MSHR hits").c_str()),
2061 ADD_STAT(mshrMisses, statistics::units::Count::get(),
2062 (
"number of " +
name +
" MSHR misses").c_str()),
2063 ADD_STAT(mshrUncacheable, statistics::units::Count::get(),
2064 (
"number of " +
name +
" MSHR uncacheable").c_str()),
2065 ADD_STAT(mshrMissLatency, statistics::units::
Tick::get(),
2066 (
"number of " +
name +
" MSHR miss ticks").c_str()),
2067 ADD_STAT(mshrUncacheableLatency, statistics::units::
Tick::get(),
2068 (
"number of " +
name +
" MSHR uncacheable ticks").c_str()),
2069 ADD_STAT(mshrMissRate, statistics::units::Ratio::get(),
2070 (
"mshr miss rate for " +
name +
" accesses").c_str()),
2071 ADD_STAT(avgMshrMissLatency, statistics::units::Rate<
2072 statistics::units::
Tick, statistics::units::Count>::get(),
2073 (
"average " +
name +
" mshr miss latency").c_str()),
2074 ADD_STAT(avgMshrUncacheableLatency, statistics::units::Rate<
2075 statistics::units::
Tick, statistics::units::Count>::get(),
2076 (
"average " +
name +
" mshr uncacheable latency").c_str())
2083 using namespace statistics;
2090 .init(max_requestors)
2093 for (
int i = 0;
i < max_requestors;
i++) {
2099 .init(max_requestors)
2102 for (
int i = 0;
i < max_requestors;
i++) {
2108 .init(max_requestors)
2111 for (
int i = 0;
i < max_requestors;
i++) {
2117 .init(max_requestors)
2120 for (
int i = 0;
i < max_requestors;
i++) {
2126 accesses = hits + misses;
2127 for (
int i = 0;
i < max_requestors;
i++) {
2133 missRate = misses / accesses;
2134 for (
int i = 0;
i < max_requestors;
i++) {
2140 avgMissLatency = missLatency / misses;
2141 for (
int i = 0;
i < max_requestors;
i++) {
2148 .init(max_requestors)
2151 for (
int i = 0;
i < max_requestors;
i++) {
2157 .init(max_requestors)
2160 for (
int i = 0;
i < max_requestors;
i++) {
2166 .init(max_requestors)
2169 for (
int i = 0;
i < max_requestors;
i++) {
2175 .init(max_requestors)
2178 for (
int i = 0;
i < max_requestors;
i++) {
2183 mshrUncacheableLatency
2184 .init(max_requestors)
2187 for (
int i = 0;
i < max_requestors;
i++) {
2193 mshrMissRate = mshrMisses / accesses;
2195 for (
int i = 0;
i < max_requestors;
i++) {
2201 avgMshrMissLatency = mshrMissLatency / mshrMisses;
2202 for (
int i = 0;
i < max_requestors;
i++) {
2208 avgMshrUncacheableLatency = mshrUncacheableLatency / mshrUncacheable;
2209 for (
int i = 0;
i < max_requestors;
i++) {
2215 : statistics::
Group(&
c), cache(
c),
2217 ADD_STAT(demandHits, statistics::units::Count::get(),
2218 "number of demand (read+write) hits"),
2219 ADD_STAT(overallHits, statistics::units::Count::get(),
2220 "number of overall hits"),
2221 ADD_STAT(demandHitLatency, statistics::units::
Tick::get(),
2222 "number of demand (read+write) hit ticks"),
2223 ADD_STAT(overallHitLatency, statistics::units::
Tick::get(),
2224 "number of overall hit ticks"),
2225 ADD_STAT(demandMisses, statistics::units::Count::get(),
2226 "number of demand (read+write) misses"),
2227 ADD_STAT(overallMisses, statistics::units::Count::get(),
2228 "number of overall misses"),
2229 ADD_STAT(demandMissLatency, statistics::units::
Tick::get(),
2230 "number of demand (read+write) miss ticks"),
2231 ADD_STAT(overallMissLatency, statistics::units::
Tick::get(),
2232 "number of overall miss ticks"),
2233 ADD_STAT(demandAccesses, statistics::units::Count::get(),
2234 "number of demand (read+write) accesses"),
2235 ADD_STAT(overallAccesses, statistics::units::Count::get(),
2236 "number of overall (read+write) accesses"),
2237 ADD_STAT(demandMissRate, statistics::units::Ratio::get(),
2238 "miss rate for demand accesses"),
2239 ADD_STAT(overallMissRate, statistics::units::Ratio::get(),
2240 "miss rate for overall accesses"),
2241 ADD_STAT(demandAvgMissLatency, statistics::units::Rate<
2242 statistics::units::
Tick, statistics::units::Count>::get(),
2243 "average overall miss latency in ticks"),
2244 ADD_STAT(overallAvgMissLatency, statistics::units::Rate<
2245 statistics::units::
Tick, statistics::units::Count>::get(),
2246 "average overall miss latency"),
2247 ADD_STAT(blockedCycles, statistics::units::Cycle::get(),
2248 "number of cycles access was blocked"),
2249 ADD_STAT(blockedCauses, statistics::units::Count::get(),
2250 "number of times access was blocked"),
2251 ADD_STAT(avgBlocked, statistics::units::Rate<
2252 statistics::units::Cycle, statistics::units::Count>::get(),
2253 "average number of cycles each access was blocked"),
2254 ADD_STAT(writebacks, statistics::units::Count::get(),
2255 "number of writebacks"),
2256 ADD_STAT(demandMshrHits, statistics::units::Count::get(),
2257 "number of demand (read+write) MSHR hits"),
2258 ADD_STAT(overallMshrHits, statistics::units::Count::get(),
2259 "number of overall MSHR hits"),
2260 ADD_STAT(demandMshrMisses, statistics::units::Count::get(),
2261 "number of demand (read+write) MSHR misses"),
2262 ADD_STAT(overallMshrMisses, statistics::units::Count::get(),
2263 "number of overall MSHR misses"),
2264 ADD_STAT(overallMshrUncacheable, statistics::units::Count::get(),
2265 "number of overall MSHR uncacheable misses"),
2266 ADD_STAT(demandMshrMissLatency, statistics::units::
Tick::get(),
2267 "number of demand (read+write) MSHR miss ticks"),
2268 ADD_STAT(overallMshrMissLatency, statistics::units::
Tick::get(),
2269 "number of overall MSHR miss ticks"),
2270 ADD_STAT(overallMshrUncacheableLatency, statistics::units::
Tick::get(),
2271 "number of overall MSHR uncacheable ticks"),
2272 ADD_STAT(demandMshrMissRate, statistics::units::Ratio::get(),
2273 "mshr miss ratio for demand accesses"),
2274 ADD_STAT(overallMshrMissRate, statistics::units::Ratio::get(),
2275 "mshr miss ratio for overall accesses"),
2276 ADD_STAT(demandAvgMshrMissLatency, statistics::units::Rate<
2277 statistics::units::
Tick, statistics::units::Count>::get(),
2278 "average overall mshr miss latency"),
2279 ADD_STAT(overallAvgMshrMissLatency, statistics::units::Rate<
2280 statistics::units::
Tick, statistics::units::Count>::get(),
2281 "average overall mshr miss latency"),
2282 ADD_STAT(overallAvgMshrUncacheableLatency, statistics::units::Rate<
2283 statistics::units::
Tick, statistics::units::Count>::get(),
2284 "average overall mshr uncacheable latency"),
2285 ADD_STAT(replacements, statistics::units::Count::get(),
2286 "number of replacements"),
2287 ADD_STAT(dataExpansions, statistics::units::Count::get(),
2288 "number of data expansions"),
2289 ADD_STAT(dataContractions, statistics::units::Count::get(),
2290 "number of data contractions"),
2291 cmd(
MemCmd::NUM_MEM_CMDS)
2300 using namespace statistics;
2307 for (
auto &cs : cmd)
2308 cs->regStatsFromParent();
2313#define SUM_DEMAND(s) \
2314 (cmd[MemCmd::ReadReq]->s + cmd[MemCmd::WriteReq]->s + \
2315 cmd[MemCmd::WriteLineReq]->s + cmd[MemCmd::ReadExReq]->s + \
2316 cmd[MemCmd::ReadCleanReq]->s + cmd[MemCmd::ReadSharedReq]->s)
2319#define SUM_NON_DEMAND(s) \
2320 (cmd[MemCmd::SoftPFReq]->s + cmd[MemCmd::HardPFReq]->s + \
2321 cmd[MemCmd::SoftPFExReq]->s)
2325 for (
int i = 0;
i < max_requestors;
i++) {
2331 for (
int i = 0;
i < max_requestors;
i++) {
2337 for (
int i = 0;
i < max_requestors;
i++) {
2343 for (
int i = 0;
i < max_requestors;
i++) {
2349 for (
int i = 0;
i < max_requestors;
i++) {
2354 overallMissLatency = demandMissLatency +
SUM_NON_DEMAND(missLatency);
2355 for (
int i = 0;
i < max_requestors;
i++) {
2361 for (
int i = 0;
i < max_requestors;
i++) {
2365 overallHitLatency = demandHitLatency +
SUM_NON_DEMAND(hitLatency);
2366 for (
int i = 0;
i < max_requestors;
i++) {
2371 demandAccesses = demandHits + demandMisses;
2372 for (
int i = 0;
i < max_requestors;
i++) {
2377 overallAccesses = overallHits + overallMisses;
2378 for (
int i = 0;
i < max_requestors;
i++) {
2383 demandMissRate = demandMisses / demandAccesses;
2384 for (
int i = 0;
i < max_requestors;
i++) {
2389 overallMissRate = overallMisses / overallAccesses;
2390 for (
int i = 0;
i < max_requestors;
i++) {
2395 demandAvgMissLatency = demandMissLatency / demandMisses;
2396 for (
int i = 0;
i < max_requestors;
i++) {
2401 overallAvgMissLatency = overallMissLatency / overallMisses;
2402 for (
int i = 0;
i < max_requestors;
i++) {
2423 avgBlocked = blockedCycles / blockedCauses;
2426 .init(max_requestors)
2429 for (
int i = 0;
i < max_requestors;
i++) {
2435 for (
int i = 0;
i < max_requestors;
i++) {
2441 for (
int i = 0;
i < max_requestors;
i++) {
2447 for (
int i = 0;
i < max_requestors;
i++) {
2452 overallMshrMisses = demandMshrMisses +
SUM_NON_DEMAND(mshrMisses);
2453 for (
int i = 0;
i < max_requestors;
i++) {
2458 demandMshrMissLatency =
SUM_DEMAND(mshrMissLatency);
2459 for (
int i = 0;
i < max_requestors;
i++) {
2464 overallMshrMissLatency =
2466 for (
int i = 0;
i < max_requestors;
i++) {
2471 overallMshrUncacheable =
2473 for (
int i = 0;
i < max_requestors;
i++) {
2479 overallMshrUncacheableLatency =
2482 for (
int i = 0;
i < max_requestors;
i++) {
2487 demandMshrMissRate = demandMshrMisses / demandAccesses;
2488 for (
int i = 0;
i < max_requestors;
i++) {
2493 overallMshrMissRate = overallMshrMisses / overallAccesses;
2494 for (
int i = 0;
i < max_requestors;
i++) {
2499 demandAvgMshrMissLatency = demandMshrMissLatency / demandMshrMisses;
2500 for (
int i = 0;
i < max_requestors;
i++) {
2505 overallAvgMshrMissLatency = overallMshrMissLatency / overallMshrMisses;
2506 for (
int i = 0;
i < max_requestors;
i++) {
2511 overallAvgMshrUncacheableLatency =
2512 overallMshrUncacheableLatency / overallMshrUncacheable;
2513 for (
int i = 0;
i < max_requestors;
i++) {
2514 overallAvgMshrUncacheableLatency.subname(
i,
2545 assert(!cache.system->bypassCaches());
2550 cache.recvTimingSnoopResp(pkt);
2561 }
else if (
blocked || mustSendRetry) {
2563 mustSendRetry =
true;
2566 mustSendRetry =
false;
2575 if (cache.system->bypassCaches()) {
2578 [[maybe_unused]]
bool success = cache.memSidePort.sendTimingReq(pkt);
2581 }
else if (tryTiming(pkt)) {
2582 cache.recvTimingReq(pkt);
2591 if (cache.system->bypassCaches()) {
2593 return cache.memSidePort.sendAtomic(pkt);
2595 return cache.recvAtomic(pkt);
2602 if (cache.system->bypassCaches()) {
2605 cache.memSidePort.sendFunctional(pkt);
2610 cache.functionalAccess(pkt,
true);
2616 return cache.getAddrRanges();
2622 const std::string &_label)
2635 cache->recvTimingResp(pkt);
2644 assert(!cache->system->bypassCaches());
2647 cache->recvTimingSnoopReq(pkt);
2654 assert(!cache->system->bypassCaches());
2656 return cache->recvAtomicSnoop(pkt);
2663 assert(!cache->system->bypassCaches());
2668 cache->functionalAccess(pkt,
false);
2675 assert(!waitingOnRetry);
2680 assert(deferredPacketReadyTime() ==
MaxTick);
2683 QueueEntry* entry = cache.getNextQueueEntry();
2702 if (!waitingOnRetry) {
2703 schedSendEvent(cache.nextQueueReadyTime());
2709 const std::string &_label)
2711 _reqQueue(*_cache, *this, _snoopRespQueue, _label),
2712 _snoopRespQueue(*_cache, *this, true, _label), cache(_cache)
2721 if (nextAddr == write_addr) {
2722 delayCtr[blk_addr] = delayThreshold;
2724 if (
mode != WriteMode::NO_ALLOCATE) {
2725 byteCount += write_size;
2728 if (
mode == WriteMode::ALLOCATE &&
2729 byteCount > coalesceLimit) {
2730 mode = WriteMode::COALESCE;
2732 }
else if (
mode == WriteMode::COALESCE &&
2733 byteCount > noAllocateLimit) {
2736 mode = WriteMode::NO_ALLOCATE;
2743 byteCount = write_size;
2744 mode = WriteMode::ALLOCATE;
2745 resetDelay(blk_addr);
2747 nextAddr = write_addr + write_size;
virtual void sendDeferredPacket()
Override the normal sendDeferredPacket and do not only consider the transmit list (used for responses...
A cache request port is used for the memory-side port of the cache, and in addition to the basic timi...
A cache response port is used for the CPU-side port of the cache, and it is basically a simple timing...
CacheResponsePort(const std::string &_name, BaseCache &_cache, const std::string &_label)
void clearBlocked()
Return to normal operation and accept new requests.
EventFunctionWrapper sendRetryEvent
void setBlocked()
Do not accept any new requests.
virtual bool recvTimingSnoopResp(PacketPtr pkt) override
Receive a timing snoop response from the peer.
virtual Tick recvAtomic(PacketPtr pkt) override
Receive an atomic request packet from the peer.
CpuSidePort(const std::string &_name, BaseCache &_cache, const std::string &_label)
virtual bool recvTimingReq(PacketPtr pkt) override
Receive a timing request from the peer.
virtual bool tryTiming(PacketPtr pkt) override
Availability request from the peer.
virtual void recvFunctional(PacketPtr pkt) override
Receive a functional request packet from the peer.
virtual AddrRangeList getAddrRanges() const override
Get a list of the non-overlapping address ranges the owner is responsible for.
virtual Tick recvAtomicSnoop(PacketPtr pkt)
Receive an atomic snoop request packet from our peer.
virtual void recvFunctionalSnoop(PacketPtr pkt)
Receive a functional snoop request packet from the peer.
virtual bool recvTimingResp(PacketPtr pkt)
Receive a timing response from the peer.
virtual void recvTimingSnoopReq(PacketPtr pkt)
Receive a timing snoop request from the peer.
MemSidePort(const std::string &_name, BaseCache *_cache, const std::string &_label)
virtual void serviceMSHRTargets(MSHR *mshr, const PacketPtr pkt, CacheBlk *blk)=0
Service non-deferred MSHR targets using the received response.
virtual void functionalAccess(PacketPtr pkt, bool from_cpu_side)
Performs the access specified by the request.
const bool isReadOnly
Is this cache read only, for example the instruction cache, or table-walker cache.
virtual void recvTimingReq(PacketPtr pkt)
Performs the access specified by the request.
gem5::BaseCache::CacheAccessorImpl accessor
virtual void doWritebacks(PacketList &writebacks, Tick forward_time)=0
Insert writebacks into the write buffer.
const Cycles fillLatency
The latency to fill a cache block.
const Cycles dataLatency
The latency of data access of a cache.
void invalidateVisitor(CacheBlk &blk)
Cache block visitor that invalidates all blocks in the cache.
virtual Cycles handleAtomicReqMiss(PacketPtr pkt, CacheBlk *&blk, PacketList &writebacks)=0
Handle a request in atomic mode that missed in this cache.
virtual void doWritebacksAtomic(PacketList &writebacks)=0
Send writebacks down the memory hierarchy in atomic mode.
void updateBlockData(CacheBlk *blk, const PacketPtr cpkt, bool has_old_data)
Update the data contents of a block.
PacketPtr tempBlockWriteback
Writebacks from the tempBlock, resulting on the response path in atomic mode, must happen after the c...
MSHR * allocateMissBuffer(PacketPtr pkt, Tick time, bool sched_send=true)
bool isDirty() const
Determine if there are any dirty blocks in the cache.
void invalidateBlock(CacheBlk *blk)
Invalidate a cache block.
MSHR * noTargetMSHR
Pointer to the MSHR that has no targets.
const bool writebackClean
Determine if clean lines should be written back or not.
bool sendWriteQueuePacket(WriteQueueEntry *wq_entry)
Similar to sendMSHR, but for a write-queue entry instead.
bool inRange(Addr addr) const
Determine if an address is in the ranges covered by this cache.
virtual void handleTimingReqMiss(PacketPtr pkt, CacheBlk *blk, Tick forward_time, Tick request_time)=0
bool allocOnFill(MemCmd cmd) const
Determine whether we should allocate on a fill or not.
bool forwardSnoops
Do we forward snoops from mem side port through to cpu side port?
uint64_t order
Increasing order number assigned to each incoming request.
void incHitCount(PacketPtr pkt)
virtual void satisfyRequest(PacketPtr pkt, CacheBlk *blk, bool deferred_response=false, bool pending_downgrade=false)
Perform any necessary updates to the block and perform any data exchange between the packet and the b...
virtual void memWriteback() override
Write back dirty blocks in the cache using functional accesses.
bool updateCompressionData(CacheBlk *&blk, const uint64_t *data, PacketList &writebacks)
When a block is overwriten, its compression information must be updated, and it may need to be recomp...
bool isBlocked() const
Returns true if the cache is blocked for accesses.
gem5::BaseCache::CacheStats stats
const Cycles lookupLatency
The latency of tag lookup of a cache.
Cycles calculateAccessLatency(const CacheBlk *blk, const uint32_t delay, const Cycles lookup_lat) const
Calculate access latency in ticks given a tag lookup latency, and whether access was a hit or miss.
Tick nextQueueReadyTime() const
Find next request ready time from among possible sources.
void regProbePoints() override
Registers probes.
virtual void memInvalidate() override
Invalidates all blocks in the cache.
MSHRQueue mshrQueue
Miss status registers.
virtual PacketPtr createMissPacket(PacketPtr cpu_pkt, CacheBlk *blk, bool needs_writable, bool is_whole_line_write) const =0
Create an appropriate downstream bus request packet.
ProbePointArg< CacheAccessProbeArg > * ppFill
To probe when a cache fill occurs.
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
QueueEntry * getNextQueueEntry()
Return the next queue entry to service, either a pending miss from the MSHR queue,...
void handleUncacheableWriteResp(PacketPtr pkt)
Handling the special case of uncacheable write responses to make recvTimingResp less cluttered.
const unsigned blkSize
Block size of this cache.
void writebackTempBlockAtomic()
Send the outstanding tempBlock writeback.
const Cycles forwardLatency
This is the forward latency of the cache.
compression::Base * compressor
Compression method being used.
const Cycles responseLatency
The latency of sending reponse to its upper level cache/core on a linefill.
PacketPtr writecleanBlk(CacheBlk *blk, Request::Flags dest, PacketId id)
Create a writeclean request for the given block.
void schedMemSideSendEvent(Tick time)
Schedule a send event for the memory-side port.
virtual void handleTimingReqHit(PacketPtr pkt, CacheBlk *blk, Tick request_time)
virtual Tick recvAtomic(PacketPtr pkt)
Performs the access specified by the request.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
void cmpAndSwap(CacheBlk *blk, PacketPtr pkt)
Handle doing the Compare and Swap function for SPARC.
virtual void recvTimingResp(PacketPtr pkt)
Handles a response (cache line fill/write ack) from the bus.
virtual bool access(PacketPtr pkt, CacheBlk *&blk, Cycles &lat, PacketList &writebacks)
Does all the processing necessary to perform the provided request.
void setBlocked(BlockedCause cause)
Marks the access path of the cache as blocked for the given cause.
BaseCache(const BaseCacheParams &p, unsigned blk_size)
Addr regenerateBlkAddr(CacheBlk *blk)
Regenerate block address using tags.
std::unique_ptr< Packet > pendingDelete
Upstream caches need this packet until true is returned, so hold it for deletion until a subsequent c...
CacheBlk * allocateBlock(const PacketPtr pkt, PacketList &writebacks)
Allocate a new block and perform any necessary writebacks.
ProbePointArg< CacheDataUpdateProbeArg > * ppDataUpdate
To probe when the contents of a block are updated.
prefetch::Base * prefetcher
Prefetcher.
uint8_t blocked
Bit vector of the blocking reasons for the access path.
TempCacheBlk * tempBlock
Temporary cache block for occasional transitory use.
const AddrRangeList addrRanges
The address range to which the cache responds on the CPU side.
ProbePointArg< CacheAccessProbeArg > * ppHit
To probe when a cache hit occurs.
const int numTarget
The number of targets for each MSHR.
const bool moveContractions
Similar to data expansions, after a block improves its compression, it may need to be moved elsewhere...
WriteAllocator *const writeAllocator
The writeAllocator drive optimizations for streaming writes.
void markInService(MSHR *mshr, bool pending_modified_resp)
Mark a request as in service (sent downstream in the memory system), effectively making this MSHR the...
void allocateWriteBuffer(PacketPtr pkt, Tick time)
Cycles calculateTagOnlyLatency(const uint32_t delay, const Cycles lookup_lat) const
Calculate latency of accesses that only touch the tag array.
CacheBlk * handleFill(PacketPtr pkt, CacheBlk *blk, PacketList &writebacks, bool allocate)
Handle a fill operation caused by a received packet.
void incMissCount(PacketPtr pkt)
WriteQueue writeBuffer
Write/writeback buffer.
const bool replaceExpansions
when a data expansion of a compressed block happens it will not be able to co-allocate where it is at...
void serialize(CheckpointOut &cp) const override
Serialize the state of the caches.
bool coalesce() const
Checks if the cache is coalescing writes.
const bool sequentialAccess
Whether tags and data are accessed sequentially.
bool handleEvictions(std::vector< CacheBlk * > &evict_blks, PacketList &writebacks)
Try to evict the given blocks.
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
PacketPtr writebackBlk(CacheBlk *blk)
Create a writeback request for the given block.
void clearBlocked(BlockedCause cause)
Marks the cache as unblocked for the given cause.
virtual PacketPtr evictBlock(CacheBlk *blk)=0
Evict a cache block.
void writebackVisitor(CacheBlk &blk)
Cache block visitor that writes back dirty cache blocks using functional writes.
EventFunctionWrapper writebackTempBlockAtomicEvent
An event to writeback the tempBlock after recvAtomic finishes.
BaseTags * tags
Tag and data Storage.
const enums::Clusivity clusivity
Clusivity with respect to the upstream cache, determining if we fill into both this cache and the cac...
ProbePointArg< CacheAccessProbeArg > * ppMiss
To probe when a cache miss occurs.
virtual bool sendMSHRQueuePacket(MSHR *mshr)
Take an MSHR, turn it into a suitable downstream packet, and send it out.
void maintainClusivity(bool from_cache, CacheBlk *blk)
Maintain the clusivity of this cache by potentially invalidating a block.
System * system
System we are currently operating in.
partitioning_policy::PartitionManager * partitionManager
Partitioning manager.
Information provided to probes on a cache event.
Simple class to provide virtual print() method on cache blocks without allocating a vtable pointer fo...
void setWhenReady(const Tick tick)
Set tick at which block's data will be available for access.
@ ReadableBit
Read permission.
@ WritableBit
write permission
@ DirtyBit
dirty (modified)
uint32_t getSrcRequestorId() const
Get the requestor id associated to this block.
Tick getWhenReady() const
Get tick at which block's data will be available for access.
void clearPrefetched()
Clear the prefetching bit.
uint64_t getPartitionId() const
Getter for _partitionId.
std::string print() const override
Pretty-print tag, set and way, and interpret state bits to readable form including mapping to a MOESI...
bool isSet(unsigned bits) const
Checks the given coherence bits are set.
bool checkWrite(PacketPtr pkt)
Handle interaction of load-locked operations and stores.
void clearCoherenceBits(unsigned bits)
Clear the corresponding coherence bits.
uint32_t getTaskId() const
Get the task id associated to this block.
void trackLoadLocked(PacketPtr pkt)
Track the fact that a local locked was issued to the block.
bool wasPrefetched() const
Check if this block was the result of a hardware prefetch, yet to be touched.
uint8_t * data
Contains a copy of the data in this block for easy access.
void setCoherenceBits(unsigned bits)
Sets the corresponding coherence bits.
virtual bool isValid() const
Checks if the entry is valid.
A coherent cache that can be arranged in flexible topologies.
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
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...
Tick cyclesToTicks(Cycles c) const
Cycles ticksToCycles(Tick t) const
A superblock is composed of sub-blocks, and each sub-block has information regarding its superblock a...
std::size_t getSizeBits() const
void setSizeBits(const std::size_t size)
Set size, in bits, of this compressed block's data.
void setDecompressionLatency(const Cycles lat)
Set number of cycles needed to decompress this block.
OverwriteType
When an overwrite happens, the data size may change an not fit in its current container any longer.
@ DATA_EXPANSION
New data contents are considered larger than previous contents.
@ DATA_CONTRACTION
New data contents are considered smaller than previous contents.
OverwriteType checkExpansionContraction(const std::size_t size) const
Determines if changing the size of the block will cause a data expansion (new size is bigger) or cont...
Cycles is a wrapper class for representing cycle counts, i.e.
void delay(MSHR *mshr, Tick delay_ticks)
Adds a delay to the provided MSHR and moves MSHRs that will be ready earlier than this entry to the t...
void deallocate(MSHR *mshr) override
Deallocate a MSHR and its targets.
bool canPrefetch() const
Returns true if sufficient mshrs for prefetch.
void markPending(MSHR *mshr)
Mark an in service entry as pending, used to resend a request.
void markInService(MSHR *mshr, bool pending_modified_resp)
Mark the given MSHR as in service.
Miss Status and handling Register.
bool wasWholeLineWrite
Track if we sent this as a whole line write or not.
bool isPendingModified() const
void promoteReadable()
Promotes deferred targets that do not require writable.
int getNumTargets() const
Returns the current number of allocated targets.
QueueEntry::Target * getTarget() override
Returns a reference to the first target.
bool needsWritable() const
The pending* and post* flags are only valid if inService is true.
bool isForward
True if the entry is just a simple forward from an upper level.
bool hasLockedRMWReadTarget()
Determine if there are any LockedRMWReads in the Targets list.
bool promoteDeferredTargets()
bool isWholeLineWrite() const
Check if this MSHR contains only compatible writes, and if they span the entire cache line.
void allocateTarget(PacketPtr target, Tick when, Counter order, bool alloc_on_fill)
Add a request to the list of targets.
void promoteWritable()
Promotes deferred targets that do not require writable.
virtual std::string name() const
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
void writeDataToBlock(uint8_t *blk_data, int blkSize) const
Copy data from the packet to the provided block pointer, which is aligned to the given block size.
void pushLabel(const std::string &lbl)
Push label for PrintReq (safe to call unconditionally).
void setWriteThrough()
A writeback/writeclean cmd gets propagated further downstream by the receiver when the flag is set.
void makeTimingResponse()
bool needsWritable() const
void print(std::ostream &o, int verbosity=0, const std::string &prefix="") const
bool isCleanEviction() const
Is this packet a clean eviction, including both actual clean evict packets, but also clean writebacks...
bool needsResponse() const
void dataStatic(T *p)
Set the data pointer to the following value that should not be freed.
SenderState * senderState
This packet's sender state.
uint32_t payloadDelay
The extra pipelining delay from seeing the packet until the end of payload is transmitted by the comp...
void makeResponse()
Take a request packet and modify it in place to be suitable for returning as a response to that reque...
uint32_t headerDelay
The extra delay from seeing the packet until the header is transmitted.
Addr getOffset(unsigned int blk_size) const
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...
SenderState * popSenderState()
Pop the top of the state stack and return a pointer to it.
bool writeThrough() const
void setData(const uint8_t *p)
Copy data into the packet from the provided pointer.
void setDataFromBlock(const uint8_t *blk_data, int blkSize)
Copy data into the packet from the provided block pointer, which is aligned to the given block size.
bool trySatisfyFunctional(PacketPtr other)
Check a functional request against a memory value stored in another packet (i.e.
Addr getBlockAddr(unsigned int blk_size) const
RequestPtr req
A pointer to the original request.
AtomicOpFunctor * getAtomicOp() const
Accessor function to atomic op.
void setCacheResponding()
Snoop flags.
void popLabel()
Pop label for PrintReq (safe to call unconditionally).
bool isExpressSnoop() const
const T * getConstPtr() const
void setHasSharers()
On fills, the hasSharers flag is used by the caches in combination with the cacheResponding flag,...
bool cacheResponding() const
void makeAtomicResponse()
void setSatisfied()
Set when a request hits in a cache and the cache is not going to respond.
MemCmd cmd
The command field of the packet.
bool isInvalidate() const
void writeData(uint8_t *p) const
Copy data from the packet to the memory at the provided pointer.
void allocate()
Allocate memory for the packet.
Ports are used to interface objects to each other.
bool isConnected() const
Is this port currently connected to a peer?
ProbePointArg generates a point for the class of Arg.
A queue entry is holding packets that will be serviced as soon as resources are available.
const Tick recvTime
Time when request was received (for stats)
PacketPtr pkt
Pending request packet.
A queue entry base class, to be used by both the MSHRs and write-queue entries.
virtual bool sendPacket(BaseCache &cache)=0
Send this queue entry as a downstream packet, with the exact behaviour depending on the specific entr...
virtual Target * getTarget()=0
Returns a pointer to the first target.
Addr blkAddr
Block aligned address.
Counter order
Order number assigned to disambiguate writes and misses.
bool inService
True if the entry has been sent downstream.
bool isSecure
True if the entry targets the secure memory space.
Entry * findMatch(Addr blk_addr, bool is_secure, bool ignore_uncacheable=true) const
Find the first entry that matches the provided address.
Entry * findPending(const QueueEntry *entry) const
Find any pending requests that overlap the given request of a different queue.
bool trySatisfyFunctional(PacketPtr pkt)
Tick nextReadyTime() const
Entry * getNext() const
Returns the WriteQueueEntry at the head of the readyList.
bool trySatisfyFunctional(PacketPtr pkt)
Check the list of buffered packets against the supplied functional request.
A queued port is a port that has an infinite queue for outgoing packets and thus decouples the module...
bool trySatisfyFunctional(PacketPtr pkt)
Check the list of buffered packets against the supplied functional request.
void schedTimingResp(PacketPtr pkt, Tick when)
Schedule the sending of a timing response.
bool sendTimingReq(PacketPtr pkt)
Attempt to send a timing request to the responder port by calling its corresponding receive function.
void sendFunctional(PacketPtr pkt) const
Send a functional request packet, where the data is instantly updated everywhere in the memory system...
@ SECURE
The request targets the secure memory space.
@ funcRequestorId
This requestor id is used for functional requests that don't come from a particular device.
@ wbRequestorId
This requestor id is used for writeback requests by the caches.
void sendFunctionalSnoop(PacketPtr pkt) const
Send a functional snoop request packet, where the data is instantly updated everywhere in the memory ...
bool isSnooping() const
Find out if the peer request port is snooping or not.
void sendRangeChange() const
Called by the owner to send a range change.
std::vector< SectorSubBlk * > blks
List of blocks associated to this sector.
SectorBlk * getSectorBlock() const
Get sector block associated to this block.
A basic compression superblock.
std::string getRequestorName(RequestorID requestor_id)
Get the name of an object for a given request id.
RequestorID maxRequestors()
Get the number of requestors registered in the system.
bool isSecure() const
Check if this block holds data from the secure memory space.
Special instance of CacheBlk for use with tempBlk that deals with its block address regeneration.
void insert(const Addr addr, const bool is_secure) override
Insert the block by assigning it a tag and marking it valid.
Addr getAddr() const
Get block's address.
void invalidate() override
Invalidate the block and clear all state.
bool coalesce() const
Should writes be coalesced? This is true if the mode is set to NO_ALLOCATE.
bool delay(Addr blk_addr)
Access whether we need to delay the current write.
void reset()
Reset the write allocator state, meaning that it allocates for writes and has not recorded any inform...
bool allocate() const
Should writes allocate?
void updateMode(Addr write_addr, unsigned write_size, Addr blk_addr)
Update the write mode based on the current write packet.
void resetDelay(Addr blk_addr)
Clear delay counter for the input block.
int getNumTargets() const
Returns the current number of allocated targets.
Target * getTarget() override
Returns a reference to the first target.
Cycles getDecompressionLatency(const CacheBlk *blk)
Get the decompression latency if the block is compressed.
static void setSizeBits(CacheBlk *blk, const std::size_t size_bits)
Set the size of the compressed block, in bits.
static void setDecompressionLatency(CacheBlk *blk, const Cycles lat)
Set the decompression latency of compressed block.
virtual std::unique_ptr< CompressionData > compress(const std::vector< Chunk > &chunks, Cycles &comp_lat, Cycles &decomp_lat)=0
Apply the compression process to the cache line.
virtual uint64_t readPacketPartitionID(PacketPtr pkt) const
PartitionManager interface to retrieve PartitionID from a packet; This base implementation returns ze...
void incrDemandMhsrMisses()
virtual PacketPtr getPacket()=0
virtual Tick nextPrefetchReadyTime() const =0
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
static const Priority Delayed_Writeback_Pri
For some reason "delayed" inter-cluster writebacks are scheduled before regular writebacks (which hav...
void deschedule(Event &event)
bool scheduled() const
Determine if the current event is scheduled.
void schedule(Event &event, Tick when)
#define panic(...)
This implements a cprintf based panic() function.
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
#define gem5_assert(cond,...)
The assert macro will function like a normal assert, but will use panic instead of straight abort().
#define fatal(...)
This implements a cprintf based fatal() function.
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
ProbeManager * getProbeManager()
Get the probe manager for this object.
virtual Port & getPort(const std::string &if_name, PortID idx=InvalidPortID)
Get a port with a given name and index.
virtual void regStats()
Callback to set stat parameters.
#define warn_if(cond,...)
Conditional warning macro that checks the supplied condition and only prints a warning if the conditi...
#define SUM_NON_DEMAND(s)
Declares a basic cache interface BaseCache.
Definition of a basic cache compressor.
Miss and writeback queue declarations.
Miss Status and Handling Register (MSHR) declaration.
const FlagsType nonan
Don't print if this is NAN.
const FlagsType nozero
Don't print if this is zero.
const FlagsType total
Print the total.
Copyright (c) 2024 - Pranith Kumar Copyright (c) 2020 Inria All rights reserved.
std::shared_ptr< Request > RequestPtr
Tick curTick()
The universal simulation clock.
std::ostream CheckpointOut
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
uint64_t Tick
Tick count type.
#define UNSERIALIZE_SCALAR(scalar)
#define SERIALIZE_SCALAR(scalar)
void regStatsFromParent()
Callback to register stats from parent CacheStats::regStats().
statistics::Vector mshrUncacheableLatency
Total tick latency of each MSHR miss, per command and thread.
statistics::Vector mshrHits
Number of misses that hit in the MSHRs per command and thread.
CacheCmdStats(BaseCache &c, const std::string &name)
statistics::Vector mshrMisses
Number of misses that miss in the MSHRs, per command and thread.
statistics::Vector mshrMissLatency
Total tick latency of each MSHR miss, per command and thread.
statistics::Scalar replacements
Number of replacements of valid blocks.
statistics::Scalar dataContractions
Number of data contractions (blocks that had their compression factor improved).
void regStats() override
Callback to set stat parameters.
statistics::Scalar dataExpansions
Number of data expansions.
std::vector< std::unique_ptr< CacheCmdStats > > cmd
Per-command statistics.
statistics::Vector writebacks
Number of blocks written back per thread.
CacheCmdStats & cmdStats(const PacketPtr p)
A data contents update is composed of the updated block's address, the old contents,...
bool hwPrefetched
Set if the update is from a prefetch or evicting a prefetched block that was never used.
std::vector< uint64_t > newData
The new data contents.
std::vector< uint64_t > oldData
The stale data contents.
Copyright (c) 2018 Inria All rights reserved.
const std::string & name()