Tags.py (12752:6a0e3eb1cc5d) Tags.py (12964:0315ef861b8a)
1# Copyright (c) 2012-2013 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 82 unchanged lines hidden (view full) ---

91
92class FALRU(BaseTags):
93 type = 'FALRU'
94 cxx_class = 'FALRU'
95 cxx_header = "mem/cache/tags/fa_lru.hh"
96
97 min_tracked_cache_size = Param.MemorySize("128kB", "Minimum cache size for"
98 " which we track statistics")
1# Copyright (c) 2012-2013 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 82 unchanged lines hidden (view full) ---

91
92class FALRU(BaseTags):
93 type = 'FALRU'
94 cxx_class = 'FALRU'
95 cxx_header = "mem/cache/tags/fa_lru.hh"
96
97 min_tracked_cache_size = Param.MemorySize("128kB", "Minimum cache size for"
98 " which we track statistics")
99class SkewedAssoc(BaseSetAssoc):
100 type = 'SkewedAssoc'
101 cxx_header = "mem/cache/tags/skewed_assoc.hh"