diff options
Diffstat (limited to 'cpu/o3/fetch.hh')
-rw-r--r-- | cpu/o3/fetch.hh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpu/o3/fetch.hh b/cpu/o3/fetch.hh index 92a87ab54..0bde56ce9 100644 --- a/cpu/o3/fetch.hh +++ b/cpu/o3/fetch.hh @@ -358,6 +358,12 @@ class DefaultFetch /** The cache line being fetched. */ uint8_t *cacheData[Impl::MaxThreads]; + /** The PC of the cacheline that has been loaded. */ + Addr cacheDataPC[Impl::MaxThreads]; + + /** Whether or not the cache data is valid. */ + bool cacheDataValid[Impl::MaxThreads]; + /** Size of instructions. */ int instSize; |