SConscript revision 12726
17949SAli.Saidi@ARM.com# -*- mode:python -*-
27949SAli.Saidi@ARM.com
37949SAli.Saidi@ARM.com# Copyright (c) 2006 The Regents of The University of Michigan
47949SAli.Saidi@ARM.com# All rights reserved.
57949SAli.Saidi@ARM.com#
67949SAli.Saidi@ARM.com# Redistribution and use in source and binary forms, with or without
77949SAli.Saidi@ARM.com# modification, are permitted provided that the following conditions are
87949SAli.Saidi@ARM.com# met: redistributions of source code must retain the above copyright
97949SAli.Saidi@ARM.com# notice, this list of conditions and the following disclaimer;
107949SAli.Saidi@ARM.com# redistributions in binary form must reproduce the above copyright
117949SAli.Saidi@ARM.com# notice, this list of conditions and the following disclaimer in the
127949SAli.Saidi@ARM.com# documentation and/or other materials provided with the distribution;
137949SAli.Saidi@ARM.com# neither the name of the copyright holders nor the names of its
147949SAli.Saidi@ARM.com# contributors may be used to endorse or promote products derived from
157949SAli.Saidi@ARM.com# this software without specific prior written permission.
167949SAli.Saidi@ARM.com#
177949SAli.Saidi@ARM.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
187949SAli.Saidi@ARM.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
197949SAli.Saidi@ARM.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
207949SAli.Saidi@ARM.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
217949SAli.Saidi@ARM.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
227949SAli.Saidi@ARM.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
237949SAli.Saidi@ARM.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
247949SAli.Saidi@ARM.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
257949SAli.Saidi@ARM.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
267949SAli.Saidi@ARM.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
277949SAli.Saidi@ARM.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
287949SAli.Saidi@ARM.com#
297949SAli.Saidi@ARM.com# Authors: Nathan Binkert
307949SAli.Saidi@ARM.com
317949SAli.Saidi@ARM.comImport('*')
327949SAli.Saidi@ARM.com
337949SAli.Saidi@ARM.comSimObject('Cache.py')
347949SAli.Saidi@ARM.com
357949SAli.Saidi@ARM.comSource('base.cc')
367949SAli.Saidi@ARM.comSource('blk.cc')
377949SAli.Saidi@ARM.comSource('cache.cc')
387949SAli.Saidi@ARM.comSource('mshr.cc')
397949SAli.Saidi@ARM.comSource('mshr_queue.cc')
407949SAli.Saidi@ARM.comSource('noncoherent_cache.cc')
417949SAli.Saidi@ARM.comSource('write_queue.cc')
427949SAli.Saidi@ARM.comSource('write_queue_entry.cc')
437949SAli.Saidi@ARM.com
448739Sgblack@eecs.umich.eduDebugFlag('Cache')
458739Sgblack@eecs.umich.eduDebugFlag('CachePort')
468739Sgblack@eecs.umich.eduDebugFlag('CacheRepl')
47DebugFlag('CacheTags')
48DebugFlag('CacheVerbose')
49DebugFlag('HWPrefetch')
50
51# CacheTags is so outrageously verbose, printing the cache's entire tag
52# array on each timing access, that you should probably have to ask for
53# it explicitly even above and beyond CacheAll.
54CompoundFlag('CacheAll', ['Cache', 'CachePort', 'CacheRepl', 'CacheVerbose',
55                          'HWPrefetch'])
56
57