Go to the documentation of this file.
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"
62 #include "params/BaseCache.hh"
63 #include "params/WriteAllocator.hh"
71 const std::string &_label)
74 queue(_cache, *
this,
true, _label),
75 blocked(
false), mustSendRetry(
false),
76 sendRetryEvent([
this]{ processSendRetry(); },
_name)
96 lookupLatency(
p.tag_latency),
97 dataLatency(
p.data_latency),
98 forwardLatency(
p.tag_latency),
99 fillLatency(
p.data_latency),
100 responseLatency(
p.response_latency),
101 sequentialAccess(
p.sequential_access),
102 numTarget(
p.tgts_per_mshr),
104 clusivity(
p.clusivity),
105 isReadOnly(
p.is_read_only),
106 replaceExpansions(
p.replace_expansions),
107 moveContractions(
p.move_contractions),
110 noTargetMSHR(
nullptr),
111 missCount(
p.max_miss_count),
112 addrRanges(
p.addr_ranges.begin(),
p.addr_ranges.end()),
129 prefetcher->setCache(
this);
132 "The tags of compressed cache %s must derive from CompressedTags",
135 "Compressed cache %s does not have a compression algorithm",
name());
137 compressor->setCache(
this);
149 DPRINTF(CachePort,
"Port is blocking new requests\n");
155 DPRINTF(CachePort,
"Port descheduled retry\n");
164 DPRINTF(CachePort,
"Port is accepting new requests\n");
168 cache.schedule(sendRetryEvent,
curTick() + 1);
175 DPRINTF(CachePort,
"Port is sending retry\n");
178 mustSendRetry =
false;
196 fatal(
"Cache ports on %s are not connected\n",
name());
204 if (if_name ==
"mem_side") {
206 }
else if (if_name ==
"cpu_side") {
217 if (
r.contains(
addr)) {
294 DPRINTF(
Cache,
"%s satisfied %s, no response needed\n", __func__,
307 Tick forward_time,
Tick request_time)
310 pkt && pkt->
isWrite() && !pkt->
req->isUncacheable()) {
392 pkt->
req->isCacheMaintenance());
426 bool satisfied =
false;
431 satisfied =
access(pkt, blk, lat, writebacks);
468 Tick next_pf_time = std::max(
496 "%s saw a non-zero packet delay\n",
name());
498 const bool is_error = pkt->
isError();
501 DPRINTF(
Cache,
"%s: Cache received %s with error\n", __func__,
511 assert(pkt->
req->isUncacheable());
530 if (pkt->
req->isUncacheable()) {
552 if (is_fill && !is_error) {
553 DPRINTF(
Cache,
"Block for addr %#llx being updated in Cache\n",
558 blk =
handleFill(pkt, blk, writebacks, allocate);
559 assert(blk !=
nullptr);
579 !pkt->
req->isCacheInvalidate()) {
612 Tick next_pf_time = std::max(
629 DPRINTF(CacheVerbose,
"%s: Leaving with %s\n", __func__, pkt->
print());
647 bool satisfied =
access(pkt, blk, lat, writebacks);
654 DPRINTF(CacheVerbose,
"%s: packet %s found block: %s\n",
657 writebacks.push_back(wb_pkt);
664 assert(writebacks.empty());
732 bool have_data = blk && blk->
isValid()
742 bool done = have_dirty ||
748 DPRINTF(CacheVerbose,
"%s: %s %s%s%s\n", __func__, pkt->
print(),
749 (blk && blk->
isValid()) ?
"valid " :
"",
750 have_data ?
"data " :
"", done ?
"done " :
"");
801 uint64_t overwrite_val;
803 uint64_t condition_val64;
804 uint32_t condition_val32;
809 assert(
sizeof(uint64_t) >= pkt->
getSize());
818 overwrite_mem =
true;
821 pkt->
writeData((uint8_t *)&overwrite_val);
824 if (pkt->
req->isCondSwap()) {
825 if (pkt->
getSize() ==
sizeof(uint64_t)) {
826 condition_val64 = pkt->
req->getExtraData();
827 overwrite_mem = !std::memcmp(&condition_val64, blk_data,
829 }
else if (pkt->
getSize() ==
sizeof(uint32_t)) {
830 condition_val32 = (uint32_t)pkt->
req->getExtraData();
831 overwrite_mem = !std::memcmp(&condition_val32, blk_data,
834 panic(
"Invalid size for conditional read/write\n");
838 std::memcpy(blk_data, &overwrite_val, pkt->
getSize());
864 if (conflict_mshr && conflict_mshr->
order < wq_entry->
order) {
866 return conflict_mshr;
873 }
else if (miss_mshr) {
889 return conflict_mshr;
899 assert(!miss_mshr && !wq_entry);
906 DPRINTF(HWPrefetch,
"Prefetch %#x has hit in cache, "
907 "dropped.\n", pf_addr);
912 DPRINTF(HWPrefetch,
"Prefetch %#x has hit in a MSHR, "
913 "dropped.\n", pf_addr);
918 DPRINTF(HWPrefetch,
"Prefetch %#x has hit in the "
919 "Write Buffer, dropped.\n", pf_addr);
944 bool replacement =
false;
945 for (
const auto& blk : evict_blks) {
946 if (blk->isValid()) {
967 for (
auto& blk : evict_blks) {
968 if (blk->isValid()) {
990 const auto comp_data =
992 std::size_t compression_size = comp_data->getSizeBits();
996 [[maybe_unused]]
const std::size_t prev_size =
1003 bool is_data_expansion =
false;
1004 bool is_data_contraction =
false;
1007 std::string op_name =
"";
1009 op_name =
"expansion";
1010 is_data_expansion =
true;
1013 op_name =
"contraction";
1014 is_data_contraction =
true;
1021 if (is_data_expansion || is_data_contraction) {
1023 bool victim_itself =
false;
1027 blk->
isSecure(), compression_size, evict_blks);
1036 if (blk == victim) {
1037 victim_itself =
true;
1038 auto it = std::find_if(evict_blks.begin(), evict_blks.end(),
1039 [&blk](
CacheBlk* evict_blk){ return evict_blk == blk; });
1040 evict_blks.erase(it);
1044 DPRINTF(CacheRepl,
"Data %s replacement victim: %s\n",
1045 op_name, victim->
print());
1051 for (
auto& sub_blk : superblock->
blks) {
1052 if (sub_blk->isValid() && (blk != sub_blk)) {
1053 evict_blks.push_back(sub_blk);
1063 DPRINTF(CacheComp,
"Data %s: [%s] from %d to %d bits\n",
1064 op_name, blk->
print(), prev_size, compression_size);
1076 if (is_data_expansion) {
1078 }
else if (is_data_contraction) {
1093 assert(blk && blk->
isValid());
1151 DPRINTF(CacheVerbose,
"%s for %s (write)\n", __func__, pkt->
print());
1152 }
else if (pkt->
isRead()) {
1176 DPRINTF(CacheVerbose,
"%s for %s (invalidation)\n", __func__,
1188 const Cycles lookup_lat)
const
1197 const Cycles lookup_lat)
const
1201 if (blk !=
nullptr) {
1215 if (when_ready >
tick &&
1237 "Should never see a write in a read-only cache %s\n",
1245 blk ?
"hit " + blk->
print() :
"miss");
1247 if (pkt->
req->isCacheMaintenance()) {
1320 DPRINTF(
Cache,
"Clean writeback %#llx to block with MSHR, "
1321 "dropping\n", pkt->
getAddr());
1331 const bool has_old_data = blk && blk->
isValid();
1403 const bool has_old_data = blk && blk->
isValid();
1491 pkt->
req->setExtraData(0);
1501 if (from_cache && blk && blk->
isValid() &&
1517 const bool has_old_data = blk && blk->
isValid();
1518 const std::string old_state = (debug::Cache && blk) ? blk->
print() :
"";
1539 is_secure ?
"s" :
"ns");
1549 assert(blk->
isSecure() == is_secure);
1582 "in read-only cache %s\n",
name());
1587 DPRINTF(
Cache,
"Block addr %#llx (%s) moving from %s to %s\n",
1588 addr, is_secure ?
"s" :
"ns", old_state, blk->
print());
1613 const bool is_secure = pkt->
isSecure();
1618 std::size_t blk_size_bits =
blkSize*8;
1629 pkt->
getConstPtr<uint64_t>(), compression_lat, decompression_lat);
1630 blk_size_bits = comp_data->getSizeBits();
1643 DPRINTF(CacheRepl,
"Replacement victim: %s\n", victim->
print());
1688 writebacks.push_back(pkt);
1696 "Writeback from read-only cache");
1697 assert(blk && blk->
isValid() &&
1714 DPRINTF(
Cache,
"Create Writeback %s writable: %d, dirty: %d\n",
1756 req->setFlags(dest);
1819 RequestPtr request = std::make_shared<Request>(
1840 warn_once(
"Invalidating dirty cache lines. " \
1841 "Expect things to break.\n");
1858 nextReady = std::min(nextReady,
1887 DPRINTF(CacheVerbose,
"Delaying pkt %s %llu ticks to allow "
1888 "for write coalescing\n", tgt_pkt->
print(), delay);
1912 pkt =
new Packet(tgt_pkt,
false,
true);
1947 bool pending_modified_resp = !pkt->
hasSharers() &&
1956 DPRINTF(CacheVerbose,
"%s: packet %s found block: %s\n",
1961 writebacks.push_back(wb_pkt);
1999 warn(
"*** The cache still contains dirty data. ***\n");
2000 warn(
" Make sure to drain the system using the correct flags.\n");
2001 warn(
" This checkpoint will not restore correctly " \
2002 "and dirty data in the cache will be lost!\n");
2009 bool bad_checkpoint(dirty);
2016 bool bad_checkpoint;
2018 if (bad_checkpoint) {
2019 fatal(
"Restoring from checkpoints with dirty caches is not "
2020 "supported in the classic memory system. Please remove any "
2021 "caches or drain them properly before taking checkpoints.\n");
2027 const std::string &
name)
2030 (
"number of " +
name +
" hits").c_str()),
2032 (
"number of " +
name +
" misses").c_str()),
2034 (
"number of " +
name +
" hit ticks").c_str()),
2036 (
"number of " +
name +
" miss ticks").c_str()),
2038 (
"number of " +
name +
" accesses(hits+misses)").c_str()),
2039 ADD_STAT(missRate, statistics::units::Ratio::get(),
2040 (
"miss rate for " +
name +
" accesses").c_str()),
2041 ADD_STAT(avgMissLatency, statistics::units::Rate<
2042 statistics::units::
Tick, statistics::units::
Count>::get(),
2043 (
"average " +
name +
" miss latency").c_str()),
2045 (
"number of " +
name +
" MSHR hits").c_str()),
2047 (
"number of " +
name +
" MSHR misses").c_str()),
2049 (
"number of " +
name +
" MSHR uncacheable").c_str()),
2050 ADD_STAT(mshrMissLatency, statistics::units::
Tick::get(),
2051 (
"number of " +
name +
" MSHR miss ticks").c_str()),
2052 ADD_STAT(mshrUncacheableLatency, statistics::units::
Tick::get(),
2053 (
"number of " +
name +
" MSHR uncacheable ticks").c_str()),
2054 ADD_STAT(mshrMissRate, statistics::units::Ratio::get(),
2055 (
"mshr miss rate for " +
name +
" accesses").c_str()),
2056 ADD_STAT(avgMshrMissLatency, statistics::units::Rate<
2057 statistics::units::
Tick, statistics::units::
Count>::get(),
2058 (
"average " +
name +
" mshr miss latency").c_str()),
2059 ADD_STAT(avgMshrUncacheableLatency, statistics::units::Rate<
2060 statistics::units::
Tick, statistics::units::
Count>::get(),
2061 (
"average " +
name +
" mshr uncacheable latency").c_str())
2068 using namespace statistics;
2075 .init(max_requestors)
2078 for (
int i = 0;
i < max_requestors;
i++) {
2084 .init(max_requestors)
2087 for (
int i = 0;
i < max_requestors;
i++) {
2093 .init(max_requestors)
2096 for (
int i = 0;
i < max_requestors;
i++) {
2102 .init(max_requestors)
2105 for (
int i = 0;
i < max_requestors;
i++) {
2111 accesses = hits + misses;
2112 for (
int i = 0;
i < max_requestors;
i++) {
2118 missRate = misses / accesses;
2119 for (
int i = 0;
i < max_requestors;
i++) {
2125 avgMissLatency = missLatency / misses;
2126 for (
int i = 0;
i < max_requestors;
i++) {
2133 .init(max_requestors)
2136 for (
int i = 0;
i < max_requestors;
i++) {
2142 .init(max_requestors)
2145 for (
int i = 0;
i < max_requestors;
i++) {
2151 .init(max_requestors)
2154 for (
int i = 0;
i < max_requestors;
i++) {
2160 .init(max_requestors)
2163 for (
int i = 0;
i < max_requestors;
i++) {
2168 mshrUncacheableLatency
2169 .init(max_requestors)
2172 for (
int i = 0;
i < max_requestors;
i++) {
2178 mshrMissRate = mshrMisses / accesses;
2180 for (
int i = 0;
i < max_requestors;
i++) {
2186 avgMshrMissLatency = mshrMissLatency / mshrMisses;
2187 for (
int i = 0;
i < max_requestors;
i++) {
2193 avgMshrUncacheableLatency = mshrUncacheableLatency / mshrUncacheable;
2194 for (
int i = 0;
i < max_requestors;
i++) {
2200 : statistics::
Group(&
c), cache(
c),
2203 "number of demand (read+write) hits"),
2205 "number of overall hits"),
2206 ADD_STAT(demandHitLatency, statistics::units::
Tick::get(),
2207 "number of demand (read+write) hit ticks"),
2208 ADD_STAT(overallHitLatency, statistics::units::
Tick::get(),
2209 "number of overall hit ticks"),
2211 "number of demand (read+write) misses"),
2213 "number of overall misses"),
2214 ADD_STAT(demandMissLatency, statistics::units::
Tick::get(),
2215 "number of demand (read+write) miss ticks"),
2216 ADD_STAT(overallMissLatency, statistics::units::
Tick::get(),
2217 "number of overall miss ticks"),
2219 "number of demand (read+write) accesses"),
2221 "number of overall (read+write) accesses"),
2222 ADD_STAT(demandMissRate, statistics::units::Ratio::get(),
2223 "miss rate for demand accesses"),
2224 ADD_STAT(overallMissRate, statistics::units::Ratio::get(),
2225 "miss rate for overall accesses"),
2226 ADD_STAT(demandAvgMissLatency, statistics::units::Rate<
2227 statistics::units::
Tick, statistics::units::
Count>::get(),
2228 "average overall miss latency in ticks"),
2229 ADD_STAT(overallAvgMissLatency, statistics::units::Rate<
2230 statistics::units::
Tick, statistics::units::
Count>::get(),
2231 "average overall miss latency"),
2232 ADD_STAT(blockedCycles, statistics::units::Cycle::get(),
2233 "number of cycles access was blocked"),
2235 "number of times access was blocked"),
2236 ADD_STAT(avgBlocked, statistics::units::Rate<
2237 statistics::units::Cycle, statistics::units::
Count>::get(),
2238 "average number of cycles each access was blocked"),
2240 "number of writebacks"),
2242 "number of demand (read+write) MSHR hits"),
2244 "number of overall MSHR hits"),
2246 "number of demand (read+write) MSHR misses"),
2247 ADD_STAT(overallMshrMisses, statistics::units::
Count::get(),
2248 "number of overall MSHR misses"),
2249 ADD_STAT(overallMshrUncacheable, statistics::units::
Count::get(),
2250 "number of overall MSHR uncacheable misses"),
2251 ADD_STAT(demandMshrMissLatency, statistics::units::
Tick::get(),
2252 "number of demand (read+write) MSHR miss ticks"),
2253 ADD_STAT(overallMshrMissLatency, statistics::units::
Tick::get(),
2254 "number of overall MSHR miss ticks"),
2255 ADD_STAT(overallMshrUncacheableLatency, statistics::units::
Tick::get(),
2256 "number of overall MSHR uncacheable ticks"),
2257 ADD_STAT(demandMshrMissRate, statistics::units::Ratio::get(),
2258 "mshr miss ratio for demand accesses"),
2259 ADD_STAT(overallMshrMissRate, statistics::units::Ratio::get(),
2260 "mshr miss ratio for overall accesses"),
2261 ADD_STAT(demandAvgMshrMissLatency, statistics::units::Rate<
2262 statistics::units::
Tick, statistics::units::
Count>::get(),
2263 "average overall mshr miss latency"),
2264 ADD_STAT(overallAvgMshrMissLatency, statistics::units::Rate<
2265 statistics::units::
Tick, statistics::units::
Count>::get(),
2266 "average overall mshr miss latency"),
2267 ADD_STAT(overallAvgMshrUncacheableLatency, statistics::units::Rate<
2268 statistics::units::
Tick, statistics::units::
Count>::get(),
2269 "average overall mshr uncacheable latency"),
2271 "number of replacements"),
2273 "number of data expansions"),
2275 "number of data contractions"),
2276 cmd(
MemCmd::NUM_MEM_CMDS)
2285 using namespace statistics;
2292 for (
auto &cs : cmd)
2293 cs->regStatsFromParent();
2298 #define SUM_DEMAND(s) \
2299 (cmd[MemCmd::ReadReq]->s + cmd[MemCmd::WriteReq]->s + \
2300 cmd[MemCmd::WriteLineReq]->s + cmd[MemCmd::ReadExReq]->s + \
2301 cmd[MemCmd::ReadCleanReq]->s + cmd[MemCmd::ReadSharedReq]->s)
2304 #define SUM_NON_DEMAND(s) \
2305 (cmd[MemCmd::SoftPFReq]->s + cmd[MemCmd::HardPFReq]->s + \
2306 cmd[MemCmd::SoftPFExReq]->s)
2310 for (
int i = 0;
i < max_requestors;
i++) {
2316 for (
int i = 0;
i < max_requestors;
i++) {
2322 for (
int i = 0;
i < max_requestors;
i++) {
2328 for (
int i = 0;
i < max_requestors;
i++) {
2334 for (
int i = 0;
i < max_requestors;
i++) {
2339 overallMissLatency = demandMissLatency +
SUM_NON_DEMAND(missLatency);
2340 for (
int i = 0;
i < max_requestors;
i++) {
2346 for (
int i = 0;
i < max_requestors;
i++) {
2350 overallHitLatency = demandHitLatency +
SUM_NON_DEMAND(hitLatency);
2351 for (
int i = 0;
i < max_requestors;
i++) {
2356 demandAccesses = demandHits + demandMisses;
2357 for (
int i = 0;
i < max_requestors;
i++) {
2362 overallAccesses = overallHits + overallMisses;
2363 for (
int i = 0;
i < max_requestors;
i++) {
2368 demandMissRate = demandMisses / demandAccesses;
2369 for (
int i = 0;
i < max_requestors;
i++) {
2374 overallMissRate = overallMisses / overallAccesses;
2375 for (
int i = 0;
i < max_requestors;
i++) {
2380 demandAvgMissLatency = demandMissLatency / demandMisses;
2381 for (
int i = 0;
i < max_requestors;
i++) {
2386 overallAvgMissLatency = overallMissLatency / overallMisses;
2387 for (
int i = 0;
i < max_requestors;
i++) {
2408 avgBlocked = blockedCycles / blockedCauses;
2411 .init(max_requestors)
2414 for (
int i = 0;
i < max_requestors;
i++) {
2420 for (
int i = 0;
i < max_requestors;
i++) {
2426 for (
int i = 0;
i < max_requestors;
i++) {
2432 for (
int i = 0;
i < max_requestors;
i++) {
2437 overallMshrMisses = demandMshrMisses +
SUM_NON_DEMAND(mshrMisses);
2438 for (
int i = 0;
i < max_requestors;
i++) {
2443 demandMshrMissLatency =
SUM_DEMAND(mshrMissLatency);
2444 for (
int i = 0;
i < max_requestors;
i++) {
2449 overallMshrMissLatency =
2451 for (
int i = 0;
i < max_requestors;
i++) {
2456 overallMshrUncacheable =
2458 for (
int i = 0;
i < max_requestors;
i++) {
2464 overallMshrUncacheableLatency =
2467 for (
int i = 0;
i < max_requestors;
i++) {
2472 demandMshrMissRate = demandMshrMisses / demandAccesses;
2473 for (
int i = 0;
i < max_requestors;
i++) {
2478 overallMshrMissRate = overallMshrMisses / overallAccesses;
2479 for (
int i = 0;
i < max_requestors;
i++) {
2484 demandAvgMshrMissLatency = demandMshrMissLatency / demandMshrMisses;
2485 for (
int i = 0;
i < max_requestors;
i++) {
2490 overallAvgMshrMissLatency = overallMshrMissLatency / overallMshrMisses;
2491 for (
int i = 0;
i < max_requestors;
i++) {
2496 overallAvgMshrUncacheableLatency =
2497 overallMshrUncacheableLatency / overallMshrUncacheable;
2498 for (
int i = 0;
i < max_requestors;
i++) {
2499 overallAvgMshrUncacheableLatency.subname(
i,
2526 assert(!cache.system->bypassCaches());
2531 cache.recvTimingSnoopResp(pkt);
2542 }
else if (
blocked || mustSendRetry) {
2544 mustSendRetry =
true;
2547 mustSendRetry =
false;
2556 if (cache.system->bypassCaches()) {
2559 [[maybe_unused]]
bool success = cache.memSidePort.sendTimingReq(pkt);
2562 }
else if (tryTiming(pkt)) {
2563 cache.recvTimingReq(pkt);
2572 if (cache.system->bypassCaches()) {
2574 return cache.memSidePort.sendAtomic(pkt);
2576 return cache.recvAtomic(pkt);
2583 if (cache.system->bypassCaches()) {
2586 cache.memSidePort.sendFunctional(pkt);
2591 cache.functionalAccess(pkt,
true);
2597 return cache.getAddrRanges();
2603 const std::string &_label)
2616 cache->recvTimingResp(pkt);
2625 assert(!cache->system->bypassCaches());
2628 cache->recvTimingSnoopReq(pkt);
2635 assert(!cache->system->bypassCaches());
2637 return cache->recvAtomicSnoop(pkt);
2644 assert(!cache->system->bypassCaches());
2649 cache->functionalAccess(pkt,
false);
2656 assert(!waitingOnRetry);
2661 assert(deferredPacketReadyTime() ==
MaxTick);
2664 QueueEntry* entry = cache.getNextQueueEntry();
2683 if (!waitingOnRetry) {
2684 schedSendEvent(cache.nextQueueReadyTime());
2690 const std::string &_label)
2692 _reqQueue(*_cache, *this, _snoopRespQueue, _label),
2693 _snoopRespQueue(*_cache, *this, true, _label), cache(_cache)
2702 if (nextAddr == write_addr) {
2703 delayCtr[blk_addr] = delayThreshold;
2705 if (
mode != WriteMode::NO_ALLOCATE) {
2706 byteCount += write_size;
2709 if (
mode == WriteMode::ALLOCATE &&
2710 byteCount > coalesceLimit) {
2711 mode = WriteMode::COALESCE;
2713 }
else if (
mode == WriteMode::COALESCE &&
2714 byteCount > noAllocateLimit) {
2717 mode = WriteMode::NO_ALLOCATE;
2724 byteCount = write_size;
2725 mode = WriteMode::ALLOCATE;
2726 resetDelay(blk_addr);
2728 nextAddr = write_addr + write_size;
Addr getBlockAddr(unsigned int blk_size) const
virtual void memWriteback() override
Write back dirty blocks in the cache using functional accesses.
Tick curTick()
The universal simulation clock.
#define fatal(...)
This implements a cprintf based fatal() function.
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
@ funcRequestorId
This requestor id is used for functional requests that don't come from a particular device.
Miss Status and handling Register.
virtual Port & getPort(const std::string &if_name, PortID idx=InvalidPortID)
Get a port with a given name and index.
MemSidePort(const std::string &_name, BaseCache *_cache, const std::string &_label)
void incMissCount(PacketPtr pkt)
bool sendTimingReq(PacketPtr pkt)
Attempt to send a timing request to the responder port by calling its corresponding receive function.
virtual void handleTimingReqMiss(PacketPtr pkt, CacheBlk *blk, Tick forward_time, Tick request_time)=0
void regStatsFromParent()
Callback to register stats from parent CacheStats::regStats().
void reset()
Reset the write allocator state, meaning that it allocates for writes and has not recorded any inform...
void invalidateBlock(CacheBlk *blk)
Invalidate a cache block.
std::vector< uint64_t > oldData
The stale data contents.
Addr getOffset(unsigned int blk_size) const
statistics::Scalar replacements
Number of replacements of valid blocks.
void sendFunctionalSnoop(PacketPtr pkt) const
Send a functional snoop request packet, where the data is instantly updated everywhere in the memory ...
void clearPrefetched()
Clear the prefetching bit.
void cmpAndSwap(CacheBlk *blk, PacketPtr pkt)
Handle doing the Compare and Swap function for SPARC.
ProbePointArg< DataUpdate > * ppDataUpdate
To probe when the contents of a block are updated.
#define UNSERIALIZE_SCALAR(scalar)
A cache request port is used for the memory-side port of the cache, and in addition to the basic timi...
virtual bool access(PacketPtr pkt, CacheBlk *&blk, Cycles &lat, PacketList &writebacks)
Does all the processing necessary to perform the provided request.
bool forwardSnoops
Do we forward snoops from mem side port through to cpu side port?
bool isCleanEviction() const
Is this packet a clean eviction, including both actual clean evict packets, but also clean writebacks...
statistics::Vector mshrHits
Number of misses that hit in the MSHRs per command and thread.
void invalidate() override
Invalidate the block and clear all state.
WriteQueue writeBuffer
Write/writeback buffer.
void setData(const uint8_t *p)
Copy data into the packet from the provided pointer.
const bool moveContractions
Similar to data expansions, after a block improves its compression, it may need to be moved elsewhere...
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...
virtual void recvTimingResp(PacketPtr pkt)
Handles a response (cache line fill/write ack) from the bus.
RequestPtr req
A pointer to the original request.
bool isForward
True if the entry is just a simple forward from an upper level.
virtual void recvFunctionalSnoop(PacketPtr pkt)
Receive a functional snoop request packet from the peer.
bool coalesce() const
Checks if the cache is coalescing writes.
Cycles getDecompressionLatency(const CacheBlk *blk)
Get the decompression latency if the block is compressed.
void setSizeBits(const std::size_t size)
Set size, in bits, of this compressed block's data.
static const Priority Delayed_Writeback_Pri
For some reason "delayed" inter-cluster writebacks are scheduled before regular writebacks (which hav...
bool canPrefetch() const
Returns true if sufficient mshrs for prefetch.
#define SUM_NON_DEMAND(s)
bool writeThrough() const
const FlagsType nozero
Don't print if this is zero.
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
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 setCacheResponding()
Snoop flags.
bool promoteDeferredTargets()
void promoteWritable()
Promotes deferred targets that do not require writable.
bool cacheResponding() const
Target * getTarget() override
Returns a reference to the first target.
Special instance of CacheBlk for use with tempBlk that deals with its block address regeneration.
void clearCoherenceBits(unsigned bits)
Clear the corresponding coherence bits.
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 setWriteThrough()
A writeback/writeclean cmd gets propagated further downstream by the receiver when the flag is set.
void clearBlocked(BlockedCause cause)
Marks the cache as unblocked for the given cause.
const Cycles dataLatency
The latency of data access of a cache.
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...
statistics::Vector mshrMisses
Number of misses that miss in the MSHRs, per command and thread.
std::size_t getSizeBits() const
const bool replaceExpansions
when a data expansion of a compressed block happens it will not be able to co-allocate where it is at...
uint8_t blocked
Bit vector of the blocking reasons for the access path.
A queue entry is holding packets that will be serviced as soon as resources are available.
void schedule(Event &event, Tick when)
void updateMode(Addr write_addr, unsigned write_size, Addr blk_addr)
Update the write mode based on the current write packet.
const FlagsType nonan
Don't print if this is NAN.
bool checkWrite(PacketPtr pkt)
Handle interaction of load-locked operations and stores.
const bool sequentialAccess
Whether tags and data are accessed sequentially.
BaseCache(const BaseCacheParams &p, unsigned blk_size)
void updateBlockData(CacheBlk *blk, const PacketPtr cpkt, bool has_old_data)
Update the data contents of a block.
void makeAtomicResponse()
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.
void markInService(MSHR *mshr, bool pending_modified_resp)
Mark the given MSHR as in service.
std::unique_ptr< Packet > pendingDelete
Upstream caches need this packet until true is returned, so hold it for deletion until a subsequent c...
A cache response port is used for the CPU-side port of the cache, and it is basically a simple timing...
@ WritableBit
write permission
uint32_t headerDelay
The extra delay from seeing the packet until the header is transmitted.
SectorBlk * getSectorBlock() const
Get sector block associated to this block.
void setSatisfied()
Set when a request hits in a cache and the cache is not going to respond.
Addr blkAddr
Block aligned address.
std::vector< SectorSubBlk * > blks
List of blocks associated to this sector.
Counter order
Order number assigned to disambiguate writes and misses.
@ DATA_EXPANSION
New data contents are considered larger than previous contents.
TempCacheBlk * tempBlock
Temporary cache block for occasional transitory use.
virtual Cycles handleAtomicReqMiss(PacketPtr pkt, CacheBlk *&blk, PacketList &writebacks)=0
Handle a request in atomic mode that missed in this cache.
PacketPtr pkt
Pending request packet.
bool sendWriteQueuePacket(WriteQueueEntry *wq_entry)
Similar to sendMSHR, but for a write-queue entry instead.
statistics::Vector mshrMissLatency
Total tick latency of each MSHR miss, per command and thread.
virtual bool recvTimingReq(PacketPtr pkt) override
Receive a timing request from the peer.
void setBlocked()
Do not accept any new requests.
bool isBlocked() const
Returns true if the cache is blocked for accesses.
Cycles is a wrapper class for representing cycle counts, i.e.
WriteAllocator *const writeAllocator
The writeAllocator drive optimizations for streaming writes.
Addr getAddr() const
Get block's address.
bool inRange(Addr addr) const
Determine if an address is in the ranges covered by this cache.
std::vector< uint64_t > newData
The new data contents.
AtomicOpFunctor * getAtomicOp() const
Accessor function to atomic op.
EventFunctionWrapper writebackTempBlockAtomicEvent
An event to writeback the tempBlock after recvAtomic finishes.
uint32_t payloadDelay
The extra pipelining delay from seeing the packet until the end of payload is transmitted by the comp...
CpuSidePort(const std::string &_name, BaseCache &_cache, const std::string &_label)
void dataStatic(T *p)
Set the data pointer to the following value that should not be freed.
A data contents update is composed of the updated block's address, the old contents,...
const Tick recvTime
Time when request was received (for stats)
uint64_t order
Increasing order number assigned to each incoming request.
uint32_t getTaskId() const
Get the task id associated to this block.
void serialize(CheckpointOut &cp) const override
Serialize the state of the caches.
ProbePointArg< PacketPtr > * ppMiss
To probe when a cache miss occurs.
RequestorID maxRequestors()
Get the number of requestors registered in the system.
void sendFunctional(PacketPtr pkt) const
Send a functional request packet, where the data is instantly updated everywhere in the memory system...
void setWhenReady(const Tick tick)
Set tick at which block's data will be available for access.
prefetch::Base * prefetcher
Prefetcher.
BaseTags * tags
Tag and data Storage.
bool allocate() const
Should writes allocate?
void regStats() override
Callback to set stat parameters.
bool needsWritable() const
ProbePointArg< PacketPtr > * ppFill
To probe when a cache fill occurs.
Tick nextReadyTime() const
void allocateTarget(PacketPtr target, Tick when, Counter order, bool alloc_on_fill)
Add a request to the list of targets.
std::vector< std::unique_ptr< CacheCmdStats > > cmd
Per-command statistics.
void allocateWriteBuffer(PacketPtr pkt, Tick time)
virtual std::string name() const
bool needsWritable() const
The pending* and post* flags are only valid if inService is true.
virtual bool recvTimingResp(PacketPtr pkt)
Receive a timing response from the peer.
void print(std::ostream &o, int verbosity=0, const std::string &prefix="") const
gem5::BaseCache::CacheStats stats
A basic compression superblock.
Tick cyclesToTicks(Cycles c) const
CacheResponsePort(const std::string &_name, BaseCache &_cache, const std::string &_label)
A queued port is a port that has an infinite queue for outgoing packets and thus decouples the module...
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Cycles calculateTagOnlyLatency(const uint32_t delay, const Cycles lookup_lat) const
Calculate latency of accesses that only touch the tag array.
virtual bool sendMSHRQueuePacket(MSHR *mshr)
Take an MSHR, turn it into a suitable downstream packet, and send it out.
bool isPendingModified() const
@ wbRequestorId
This requestor id is used for writeback requests by the caches.
PacketPtr writecleanBlk(CacheBlk *blk, Request::Flags dest, PacketId id)
Create a writeclean request for the given block.
ProbePointArg< PacketInfo > Packet
Packet probe point.
const unsigned blkSize
Block size of this cache.
uint64_t Tick
Tick count type.
Entry * getNext() const
Returns the WriteQueueEntry at the head of the readyList.
Addr regenerateBlkAddr(CacheBlk *blk)
Regenerate block address using tags.
bool isSnooping() const
Find out if the peer request port is snooping or not.
ProbePointArg< PacketPtr > * ppHit
To probe when a cache hit occurs.
bool isSecure
True if the entry targets the secure memory space.
void clearBlocked()
Return to normal operation and accept new requests.
virtual Tick recvAtomic(PacketPtr pkt)
Performs the access specified by the request.
std::string getRequestorName(RequestorID requestor_id)
Get the name of an object for a given request id.
virtual bool recvTimingSnoopResp(PacketPtr pkt) override
Receive a timing snoop response from the peer.
std::shared_ptr< Request > RequestPtr
const T * getConstPtr() const
void setCoherenceBits(unsigned bits)
Sets the corresponding coherence bits.
statistics::Vector writebacks
Number of blocks written back per thread.
static void setSizeBits(CacheBlk *blk, const std::size_t size_bits)
Set the size of the compressed block, in bits.
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
std::string print() const override
Pretty-print tag, set and way, and interpret state bits to readable form including mapping to a MOESI...
Entry * findMatch(Addr blk_addr, bool is_secure, bool ignore_uncacheable=true) const
Find the first entry that matches the provided address.
bool isConnected() const
Is this port currently connected to a peer?
statistics::Scalar dataExpansions
Number of data expansions.
bool isWholeLineWrite() const
Check if this MSHR contains only compatible writes, and if they span the entire cache line.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
bool allocOnFill(MemCmd cmd) const
Determine whether we should allocate on a fill or not.
void incHitCount(PacketPtr pkt)
bool trySatisfyFunctional(PacketPtr pkt)
void pushLabel(const std::string &lbl)
Push label for PrintReq (safe to call unconditionally).
MemCmd cmd
The command field of the packet.
void popLabel()
Pop label for PrintReq (safe to call unconditionally).
virtual void recvFunctional(PacketPtr pkt) override
Receive a functional request packet from the peer.
bool needsResponse() const
void writeData(uint8_t *p) const
Copy data from the packet to the memory at the provided pointer.
bool wasWholeLineWrite
Track if we sent this as a whole line write or not.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
SenderState * senderState
This packet's sender state.
virtual void doWritebacksAtomic(PacketList &writebacks)=0
Send writebacks down the memory hierarchy in atomic mode.
const std::string & name()
#define SERIALIZE_SCALAR(scalar)
PacketPtr tempBlockWriteback
Writebacks from the tempBlock, resulting on the response path in atomic mode, must happen after the c...
@ DirtyBit
dirty (modified)
virtual void regStats()
Callback to set stat parameters.
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...
virtual void recvTimingReq(PacketPtr pkt)
Performs the access specified by the request.
void sendRangeChange() const
Called by the owner to send a range change.
void markPending(MSHR *mshr)
Mark an in service entry as pending, used to resend a request.
virtual void recvTimingSnoopReq(PacketPtr pkt)
Receive a timing snoop request from the peer.
void deschedule(Event &event)
virtual Tick nextPrefetchReadyTime() const =0
SenderState * popSenderState()
Pop the top of the state stack and return a pointer to it.
A coherent cache that can be arranged in flexible topologies.
virtual Tick recvAtomicSnoop(PacketPtr pkt)
Receive an atomic snoop request packet from our peer.
void schedMemSideSendEvent(Tick time)
Schedule a send event for the memory-side port.
ProbePointArg generates a point for the class of Arg.
uint8_t * data
Contains a copy of the data in this block for easy access.
void maintainClusivity(bool from_cache, CacheBlk *blk)
Maintain the clusivity of this cache by potentially invalidating a block.
Tick getWhenReady() const
Get tick at which block's data will be available for access.
void deallocate(MSHR *mshr) override
Deallocate a MSHR and its targets.
const bool isReadOnly
Is this cache read only, for example the instruction cache, or table-walker cache.
virtual void sendDeferredPacket()
Override the normal sendDeferredPacket and do not only consider the transmit list (used for responses...
void setHasSharers()
On fills, the hasSharers flag is used by the caches in combination with the cacheResponding flag,...
MSHR * noTargetMSHR
Pointer to the MSHR that has no targets.
ProbeManager * getProbeManager()
Get the probe manager for this object.
const enums::Clusivity clusivity
Clusivity with respect to the upstream cache, determining if we fill into both this cache and the cac...
#define warn_if(cond,...)
Conditional warning macro that checks the supplied condition and only prints a warning if the conditi...
Copyright (c) 2018 Inria All rights reserved.
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
virtual void memInvalidate() override
Invalidates all blocks in the cache.
CacheCmdStats(BaseCache &c, const std::string &name)
void makeTimingResponse()
void regProbePoints() override
Registers probes.
void allocate()
Allocate memory for the packet.
Ports are used to interface objects to each other.
bool isDirty() const
Determine if there are any dirty blocks in the cache.
CacheCmdStats & cmdStats(const PacketPtr p)
A superblock is composed of sub-blocks, and each sub-block has information regarding its superblock a...
CacheBlk * allocateBlock(const PacketPtr pkt, PacketList &writebacks)
Allocate a new block and perform any necessary writebacks.
statistics::Scalar dataContractions
Number of data contractions (blocks that had their compression factor improved).
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.
int getNumTargets() const
Returns the current number of allocated targets.
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.
const Cycles fillLatency
The latency to fill a cache block.
void makeResponse()
Take a request packet and modify it in place to be suitable for returning as a response to that reque...
virtual void handleTimingReqHit(PacketPtr pkt, CacheBlk *blk, Tick request_time)
virtual PacketPtr evictBlock(CacheBlk *blk)=0
Evict a cache block.
const AddrRangeList addrRanges
The address range to which the cache responds on the CPU side.
System * system
System we are currently operating in.
bool delay(Addr blk_addr)
Access whether we need to delay the current write.
MSHRQueue mshrQueue
Miss status registers.
bool wasPrefetched() const
Check if this block was the result of a hardware prefetch, yet to be touched.
@ SECURE
The request targets the secure memory space.
void handleUncacheableWriteResp(PacketPtr pkt)
Handling the special case of uncacheable write responses to make recvTimingResp less cluttered.
const bool writebackClean
Determine if clean lines should be written back or not.
bool trySatisfyFunctional(PacketPtr pkt)
Check the list of buffered packets against the supplied functional request.
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...
void trackLoadLocked(PacketPtr pkt)
Track the fact that a local locked was issued to the block.
bool isSecure() const
Check if this block holds data from the secure memory space.
bool isSet(unsigned bits) const
Checks the given coherence bits are set.
void promoteReadable()
Promotes deferred targets that do not require writable.
statistics::Vector mshrUncacheableLatency
Total tick latency of each MSHR miss, per command and thread.
A queue entry base class, to be used by both the MSHRs and write-queue entries.
void insert(const Addr addr, const bool is_secure) override
Insert the block by assigning it a tag and marking it valid.
void invalidateVisitor(CacheBlk &blk)
Cache block visitor that invalidates all blocks in the cache.
void writebackTempBlockAtomic()
Send the outstanding tempBlock writeback.
QueueEntry * getNextQueueEntry()
Return the next queue entry to service, either a pending miss from the MSHR queue,...
bool trySatisfyFunctional(PacketPtr other)
Check a functional request against a memory value stored in another packet (i.e.
bool trySatisfyFunctional(PacketPtr pkt)
Check the list of buffered packets against the supplied functional request.
virtual void serviceMSHRTargets(MSHR *mshr, const PacketPtr pkt, CacheBlk *blk)=0
Service non-deferred MSHR targets using the received response.
const Cycles lookupLatency
The latency of tag lookup of a cache.
int getNumTargets() const
Returns the current number of allocated targets.
void incrDemandMhsrMisses()
std::ostream CheckpointOut
MSHR * allocateMissBuffer(PacketPtr pkt, Tick time, bool sched_send=true)
bool coalesce() const
Should writes be coalesced? This is true if the mode is set to NO_ALLOCATE.
Simple class to provide virtual print() method on cache blocks without allocating a vtable pointer fo...
@ DATA_CONTRACTION
New data contents are considered smaller than previous contents.
bool isExpressSnoop() const
virtual void doWritebacks(PacketList &writebacks, Tick forward_time)=0
Insert writebacks into the write buffer.
void setBlocked(BlockedCause cause)
Marks the access path of the cache as blocked for the given cause.
bool hasLockedRMWReadTarget()
Determine if there are any LockedRMWReads in the Targets list.
#define gem5_assert(cond,...)
The assert macro will function like a normal assert, but will use panic instead of straight abort().
Cycles ticksToCycles(Tick t) const
void writebackVisitor(CacheBlk &blk)
Cache block visitor that writes back dirty cache blocks using functional writes.
const int numTarget
The number of targets for each MSHR.
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.
OverwriteType
When an overwrite happens, the data size may change an not fit in its current container any longer.
void setDecompressionLatency(const Cycles lat)
Set number of cycles needed to decompress this block.
void schedTimingResp(PacketPtr pkt, Tick when)
Schedule the sending of a timing response.
static void setDecompressionLatency(CacheBlk *blk, const Cycles lat)
Set the decompression latency of compressed block.
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
virtual void functionalAccess(PacketPtr pkt, bool from_cpu_side)
Performs the access specified by the request.
virtual PacketPtr getPacket()=0
EventFunctionWrapper sendRetryEvent
bool handleEvictions(std::vector< CacheBlk * > &evict_blks, PacketList &writebacks)
Try to evict the given blocks.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
virtual bool sendPacket(BaseCache &cache)=0
Send this queue entry as a downstream packet, with the exact behaviour depending on the specific entr...
const FlagsType total
Print the total.
const Cycles forwardLatency
This is the forward latency of the cache.
Tick nextQueueReadyTime() const
Find next request ready time from among possible sources.
QueueEntry::Target * getTarget() override
Returns a reference to the first target.
virtual AddrRangeList getAddrRanges() const override
Get a list of the non-overlapping address ranges the owner is responsible for.
bool inService
True if the entry has been sent downstream.
virtual Tick recvAtomic(PacketPtr pkt) override
Receive an atomic request packet from the peer.
CacheBlk * handleFill(PacketPtr pkt, CacheBlk *blk, PacketList &writebacks, bool allocate)
Handle a fill operation caused by a received packet.
Entry * findPending(const QueueEntry *entry) const
Find any pending requests that overlap the given request of a different queue.
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.
virtual Target * getTarget()=0
Returns a pointer to the first target.
bool scheduled() const
Determine if the current event is scheduled.
PacketPtr writebackBlk(CacheBlk *blk)
Create a writeback request for the given block.
virtual bool tryTiming(PacketPtr pkt) override
Availability request from the peer.
virtual bool isValid() const
Checks if the entry is valid.
void resetDelay(Addr blk_addr)
Clear delay counter for the input block.
bool isInvalidate() const
#define panic(...)
This implements a cprintf based panic() function.
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...
@ ReadableBit
Read permission.
const Cycles responseLatency
The latency of sending reponse to its upper level cache/core on a linefill.
compression::Base * compressor
Compression method being used.
Generated on Sun Jul 30 2023 01:56:52 for gem5 by doxygen 1.8.17