From 7e00772bda1a1c74fe659c56fea803642302c1da Mon Sep 17 00:00:00 2001 From: David Hashe Date: Mon, 20 Jul 2015 09:15:18 -0500 Subject: ruby: speed up function used for cache walks This patch adds a few helpful functions that allow .sm files to directly invalidate all cache blocks using a trigger queue rather than rely on each individual cache block to be invalidated via requests from the mandatory queue. --- src/mem/ruby/structures/CacheMemory.hh | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/mem/ruby/structures/CacheMemory.hh') diff --git a/src/mem/ruby/structures/CacheMemory.hh b/src/mem/ruby/structures/CacheMemory.hh index a777538b2..82bb65776 100644 --- a/src/mem/ruby/structures/CacheMemory.hh +++ b/src/mem/ruby/structures/CacheMemory.hh @@ -1,5 +1,6 @@ /* * Copyright (c) 1999-2012 Mark D. Hill and David A. Wood + * Copyright (c) 2013 Advanced Micro Devices, Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -131,6 +132,10 @@ class CacheMemory : public SimObject Stats::Scalar numTagArrayStalls; Stats::Scalar numDataArrayStalls; + int getCacheSize() const { return m_cache_size; } + int getNumBlocks() const { return m_cache_num_sets * m_cache_assoc; } + Address getAddressAtIdx(int idx) const; + private: // convert a Address to its location in the cache int64 addressToCacheSet(const Address& address) const; -- cgit v1.2.3