summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel R. Carvalho <odanrc@yahoo.com.br>2018-12-04 13:23:18 +0100
committerDaniel Carvalho <odanrc@yahoo.com.br>2019-03-07 13:07:09 +0000
commit97281129c9b24ce51d4c9ad2f5bba4b15c375e14 (patch)
treeccb4137833e783b988a562fc1fdab8dc2c36154a /src
parent6c00d57cce58973094e9cacd1bf3431a3407e866 (diff)
downloadgem5-97281129c9b24ce51d4c9ad2f5bba4b15c375e14.tar.xz
mem-cache: Use header delay on latency calculation
Previously the bus delay was being ignored for the access latency calculation, and then applied on top of the access latency. This patch fixes the order, as first the packet must arrive before the access starts. Change-Id: I6d55299a911d54625c147814dd423bfc63ef1b65 Signed-off-by: Daniel R. Carvalho <odanrc@yahoo.com.br> Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/14876 Reviewed-by: Nikos Nikoleris <nikos.nikoleris@arm.com> Maintainer: Nikos Nikoleris <nikos.nikoleris@arm.com>
Diffstat (limited to 'src')
-rw-r--r--src/mem/cache/base.cc32
-rw-r--r--src/mem/cache/base.hh3
2 files changed, 22 insertions, 13 deletions
diff --git a/src/mem/cache/base.cc b/src/mem/cache/base.cc
index 0949e498c..d4e93c0ef 100644
--- a/src/mem/cache/base.cc
+++ b/src/mem/cache/base.cc
@@ -365,7 +365,7 @@ BaseCache::recvTimingReq(PacketPtr pkt)
// The latency charged is just the value set by the access() function.
// In case of a hit we are neglecting response latency.
// In case of a miss we are neglecting forward latency.
- Tick request_time = clockEdge(lat) + pkt->headerDelay;
+ Tick request_time = clockEdge(lat);
// Here we reset the timing of the packet.
pkt->headerDelay = pkt->payloadDelay = 0;
@@ -889,27 +889,33 @@ BaseCache::satisfyRequest(PacketPtr pkt, CacheBlk *blk, bool, bool)
//
/////////////////////////////////////////////////////
Cycles
-BaseCache::calculateAccessLatency(const CacheBlk* blk,
+BaseCache::calculateAccessLatency(const CacheBlk* blk, const uint32_t delay,
const Cycles lookup_lat) const
{
- Cycles lat(lookup_lat);
+ Cycles lat(0);
if (blk != nullptr) {
- // First access tags, then data
+ // As soon as the access arrives, for sequential accesses first access
+ // tags, then the data entry. In the case of parallel accesses the
+ // latency is dictated by the slowest of tag and data latencies.
if (sequentialAccess) {
- lat += dataLatency;
- // Latency is dictated by the slowest of tag and data latencies
+ lat = ticksToCycles(delay) + lookup_lat + dataLatency;
} else {
- lat = std::max(lookup_lat, dataLatency);
+ lat = ticksToCycles(delay) + std::max(lookup_lat, dataLatency);
}
// Check if the block to be accessed is available. If not, apply the
// access latency on top of when the block is ready to be accessed.
+ const Tick tick = curTick() + delay;
const Tick when_ready = blk->getWhenReady();
- if (when_ready > curTick() &&
- ticksToCycles(when_ready - curTick()) > lat) {
- lat += ticksToCycles(when_ready - curTick());
+ if (when_ready > tick &&
+ ticksToCycles(when_ready - tick) > lat) {
+ lat += ticksToCycles(when_ready - tick);
}
+ } else {
+ // In case of a miss, apply lookup latency on top of the metadata
+ // delay, as the access can only start when it arrives.
+ lat = ticksToCycles(delay) + lookup_lat;
}
return lat;
@@ -930,8 +936,10 @@ BaseCache::access(PacketPtr pkt, CacheBlk *&blk, Cycles &lat,
Cycles tag_latency(0);
blk = tags->accessBlock(pkt->getAddr(), pkt->isSecure(), tag_latency);
- // Calculate access latency
- lat = calculateAccessLatency(blk, tag_latency);
+ // Calculate access latency on top of when the packet arrives. This
+ // takes into account the bus delay.
+ lat = calculateAccessLatency(blk, pkt->headerDelay,
+ tag_latency);
DPRINTF(Cache, "%s for %s %s\n", __func__, pkt->print(),
blk ? "hit " + blk->print() : "miss");
diff --git a/src/mem/cache/base.hh b/src/mem/cache/base.hh
index 11372418a..7bf741144 100644
--- a/src/mem/cache/base.hh
+++ b/src/mem/cache/base.hh
@@ -426,10 +426,11 @@ class BaseCache : public MemObject
* whether access was a hit or miss.
*
* @param blk The cache block that was accessed.
+ * @param delay The delay until the packet's metadata is present.
* @param lookup_lat Latency of the respective tag lookup.
* @return The number of ticks that pass due to a block access.
*/
- Cycles calculateAccessLatency(const CacheBlk* blk,
+ Cycles calculateAccessLatency(const CacheBlk* blk, const uint32_t delay,
const Cycles lookup_lat) const;
/**