mem-cache: Privatize extractSet
authorDaniel R. Carvalho <odanrc@yahoo.com.br>
Tue, 17 Apr 2018 13:46:14 +0000 (15:46 +0200)
committerDaniel Carvalho <odanrc@yahoo.com.br>
Fri, 1 Jun 2018 11:21:46 +0000 (11:21 +0000)
Only BaseSetAssoc uses extractSet(). Besides, skewed caches need
the way information to know which set an address is located at.

Change-Id: Id222e907dc550d053018561bb2683cfc415471ec
Reviewed-on: https://gem5-review.googlesource.com/9962
Reviewed-by: Nikos Nikoleris <nikos.nikoleris@arm.com>
Maintainer: Nikos Nikoleris <nikos.nikoleris@arm.com>

src/mem/cache/tags/base.hh
src/mem/cache/tags/base_set_assoc.hh
src/mem/cache/tags/fa_lru.hh

index 90469cd8e0835e6f42af7da1bd06f5598691bf03..358ad1003d0e2f88316b08257779b6d49f81077c 100644 (file)
@@ -288,9 +288,6 @@ class BaseTags : public ClockedObject
      */
     virtual Addr regenerateBlkAddr(const CacheBlk* blk) const = 0;
 
-    virtual int extractSet(Addr addr) const = 0;
-
-
     /**
      * Visit each block in the tags and apply a visitor
      *
index 33b2d39c40309ed1d19485c20dcb8958e2b04065..830af6f3d706c0631bf54cbdc2bffcceeb05375f 100644 (file)
@@ -278,16 +278,6 @@ class BaseSetAssoc : public BaseTags
         return (addr >> tagShift);
     }
 
-    /**
-     * Calculate the set index from the address.
-     * @param addr The address to get the set from.
-     * @return The set index of the address.
-     */
-    int extractSet(Addr addr) const override
-    {
-        return ((addr >> setShift) & setMask);
-    }
-
     /**
      * Regenerate the block address from the tag and set.
      *
@@ -313,6 +303,18 @@ class BaseSetAssoc : public BaseTags
         }
         return false;
     }
+
+  private:
+    /**
+     * Calculate the set index from the address.
+     *
+     * @param addr The address to get the set from.
+     * @return The set index of the address.
+     */
+    int extractSet(Addr addr) const
+    {
+        return ((addr >> setShift) & setMask);
+    }
 };
 
 #endif //__MEM_CACHE_TAGS_BASE_SET_ASSOC_HH__
index e063a6ca1aa731a2417e84f2093661e3fc78e653..dbb39b7d10a81471ac52d30a23532105aafa55b3 100644 (file)
@@ -220,16 +220,6 @@ class FALRU : public BaseTags
         return blkAlign(addr);
     }
 
-    /**
-     * Return the set of an address. Only one set in a fully associative cache.
-     * @param addr The address to get the set from.
-     * @return 0.
-     */
-    int extractSet(Addr addr) const override
-    {
-        return 0;
-    }
-
     /**
      * Regenerate the block address from the tag.
      *