SConscript revision 13939
14479Sbinkertn@umich.edu# -*- mode:python -*-
24479Sbinkertn@umich.edu
34479Sbinkertn@umich.edu# Copyright (c) 2006 The Regents of The University of Michigan
44479Sbinkertn@umich.edu# All rights reserved.
54479Sbinkertn@umich.edu#
64479Sbinkertn@umich.edu# Redistribution and use in source and binary forms, with or without
74479Sbinkertn@umich.edu# modification, are permitted provided that the following conditions are
84479Sbinkertn@umich.edu# met: redistributions of source code must retain the above copyright
94479Sbinkertn@umich.edu# notice, this list of conditions and the following disclaimer;
104479Sbinkertn@umich.edu# redistributions in binary form must reproduce the above copyright
114479Sbinkertn@umich.edu# notice, this list of conditions and the following disclaimer in the
124479Sbinkertn@umich.edu# documentation and/or other materials provided with the distribution;
134479Sbinkertn@umich.edu# neither the name of the copyright holders nor the names of its
144479Sbinkertn@umich.edu# contributors may be used to endorse or promote products derived from
154479Sbinkertn@umich.edu# this software without specific prior written permission.
164479Sbinkertn@umich.edu#
174479Sbinkertn@umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
184479Sbinkertn@umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
194479Sbinkertn@umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
204479Sbinkertn@umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
214479Sbinkertn@umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
224479Sbinkertn@umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
234479Sbinkertn@umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
244479Sbinkertn@umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
254479Sbinkertn@umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
264479Sbinkertn@umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
274479Sbinkertn@umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
284479Sbinkertn@umich.edu#
294479Sbinkertn@umich.edu# Authors: Nathan Binkert
304479Sbinkertn@umich.edu
314479Sbinkertn@umich.eduImport('*')
324479Sbinkertn@umich.edu
334479Sbinkertn@umich.eduSimObject('Cache.py')
344479Sbinkertn@umich.edu
354479Sbinkertn@umich.eduSource('base.cc')
364479Sbinkertn@umich.eduSource('cache.cc')
374479Sbinkertn@umich.eduSource('cache_blk.cc')
384479Sbinkertn@umich.eduSource('mshr.cc')
394479Sbinkertn@umich.eduSource('mshr_queue.cc')
404479Sbinkertn@umich.eduSource('noncoherent_cache.cc')
414479Sbinkertn@umich.eduSource('write_queue.cc')
424479Sbinkertn@umich.eduSource('write_queue_entry.cc')
434479Sbinkertn@umich.edu
444479Sbinkertn@umich.eduDebugFlag('Cache')
454479Sbinkertn@umich.eduDebugFlag('CacheComp')
464479Sbinkertn@umich.eduDebugFlag('CachePort')
474479Sbinkertn@umich.eduDebugFlag('CacheRepl')
484479Sbinkertn@umich.eduDebugFlag('CacheTags')
494479Sbinkertn@umich.eduDebugFlag('CacheVerbose')
504479Sbinkertn@umich.eduDebugFlag('HWPrefetch')
514479Sbinkertn@umich.edu
524479Sbinkertn@umich.edu# CacheTags is so outrageously verbose, printing the cache's entire tag
534479Sbinkertn@umich.edu# array on each timing access, that you should probably have to ask for
544479Sbinkertn@umich.edu# it explicitly even above and beyond CacheAll.
554479Sbinkertn@umich.eduCompoundFlag('CacheAll', ['Cache', 'CacheComp', 'CachePort', 'CacheRepl',
564479Sbinkertn@umich.edu                          'CacheVerbose', 'HWPrefetch'])
574479Sbinkertn@umich.edu
584479Sbinkertn@umich.edu