mem: Split the hit_latency into tag_latency and data_latency
Review Request #3502 - Created June 15, 2016 and submitted - Latest diff uploaded
| Information | |
|---|---|
| Sophiane SENNI | |
| gem5 | |
| default | |
| Reviewers | |
| Default | |
Changeset 11688:1a792798e845
---------------------------
mem: Split the hit_latency into tag_latency and data_latencyIf the cache access mode is parallel, i.e. "sequential_access" parameter
is set to "False", tags and data are accessed in parallel. Therefore,
the hit_latency is the maximum latency between tag_latency and
data_latency. On the other hand, if the cache access mode is
sequential, i.e. "sequential_access" parameter is set to "True",
tags and data are accessed sequentially. Therefore, the hit_latency
is the sum of tag_latency plus data_latency.
Tested using --Debug-flags=Cache
