SConscript revision 11755:81db27b8869a
15390SN/A# -*- mode:python -*-
25390SN/A
35390SN/A# Copyright (c) 2012 Mark D. Hill and David A. Wood
45390SN/A# All rights reserved.
55390SN/A#
65390SN/A# Redistribution and use in source and binary forms, with or without
75390SN/A# modification, are permitted provided that the following conditions are
85390SN/A# met: redistributions of source code must retain the above copyright
95390SN/A# notice, this list of conditions and the following disclaimer;
105390SN/A# redistributions in binary form must reproduce the above copyright
115390SN/A# notice, this list of conditions and the following disclaimer in the
125390SN/A# documentation and/or other materials provided with the distribution;
135390SN/A# neither the name of the copyright holders nor the names of its
145390SN/A# contributors may be used to endorse or promote products derived from
155390SN/A# this software without specific prior written permission.
165390SN/A#
175390SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
185390SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
195390SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
205390SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
215390SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
225390SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
235390SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
245390SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
255390SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
265390SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
275390SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
285390SN/A#
295390SN/A# Authors: Nilay Vaish
305390SN/A
315631Sgblack@eecs.umich.eduImport('*')
325657Sgblack@eecs.umich.edu
335630Sgblack@eecs.umich.eduif env['PROTOCOL'] == 'None':
345390SN/A    Return()
355657Sgblack@eecs.umich.edu
365657Sgblack@eecs.umich.eduSimObject('RubyCache.py')
375657Sgblack@eecs.umich.eduSimObject('DirectoryMemory.py')
385657Sgblack@eecs.umich.eduSimObject('LRUReplacementPolicy.py')
395657Sgblack@eecs.umich.eduSimObject('PseudoLRUReplacementPolicy.py')
405657Sgblack@eecs.umich.eduSimObject('ReplacementPolicy.py')
415657Sgblack@eecs.umich.eduSimObject('RubyPrefetcher.py')
425657Sgblack@eecs.umich.eduSimObject('WireBuffer.py')
435657Sgblack@eecs.umich.edu
445657Sgblack@eecs.umich.eduSource('AbstractReplacementPolicy.cc')
455657Sgblack@eecs.umich.eduSource('DirectoryMemory.cc')
465657Sgblack@eecs.umich.eduSource('CacheMemory.cc')
475657Sgblack@eecs.umich.eduSource('LRUPolicy.cc')
485657Sgblack@eecs.umich.eduSource('PseudoLRUPolicy.cc')
495657Sgblack@eecs.umich.eduSource('WireBuffer.cc')
505657Sgblack@eecs.umich.eduSource('PersistentTable.cc')
515657Sgblack@eecs.umich.eduSource('Prefetcher.cc')
525657Sgblack@eecs.umich.eduSource('TimerTable.cc')
535657Sgblack@eecs.umich.eduSource('BankedArray.cc')
545390SN/A