SConscript revision 12312
15389Sgblack@eecs.umich.edu# -*- mode:python -*-
25446Sgblack@eecs.umich.edu
35389Sgblack@eecs.umich.edu# Copyright (c) 2012 Mark D. Hill and David A. Wood
45389Sgblack@eecs.umich.edu# All rights reserved.
55389Sgblack@eecs.umich.edu#
65389Sgblack@eecs.umich.edu# Redistribution and use in source and binary forms, with or without
75389Sgblack@eecs.umich.edu# modification, are permitted provided that the following conditions are
85389Sgblack@eecs.umich.edu# met: redistributions of source code must retain the above copyright
95389Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer;
105389Sgblack@eecs.umich.edu# redistributions in binary form must reproduce the above copyright
115389Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer in the
125389Sgblack@eecs.umich.edu# documentation and/or other materials provided with the distribution;
135389Sgblack@eecs.umich.edu# neither the name of the copyright holders nor the names of its
145389Sgblack@eecs.umich.edu# contributors may be used to endorse or promote products derived from
155389Sgblack@eecs.umich.edu# this software without specific prior written permission.
165389Sgblack@eecs.umich.edu#
175389Sgblack@eecs.umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
185389Sgblack@eecs.umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
195389Sgblack@eecs.umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
205389Sgblack@eecs.umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
215389Sgblack@eecs.umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
225389Sgblack@eecs.umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
235389Sgblack@eecs.umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
245389Sgblack@eecs.umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
255389Sgblack@eecs.umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
265389Sgblack@eecs.umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
275389Sgblack@eecs.umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
285389Sgblack@eecs.umich.edu#
295389Sgblack@eecs.umich.edu# Authors: Nilay Vaish
305389Sgblack@eecs.umich.edu
315389Sgblack@eecs.umich.eduImport('*')
325389Sgblack@eecs.umich.edu
335389Sgblack@eecs.umich.eduif env['PROTOCOL'] == 'None':
345389Sgblack@eecs.umich.edu    Return()
355389Sgblack@eecs.umich.edu
365389Sgblack@eecs.umich.eduSimObject('RubyCache.py')
375389Sgblack@eecs.umich.eduSimObject('DirectoryMemory.py')
385389Sgblack@eecs.umich.eduSimObject('LRUReplacementPolicy.py')
395389Sgblack@eecs.umich.eduSimObject('PseudoLRUReplacementPolicy.py')
405389Sgblack@eecs.umich.eduSimObject('ReplacementPolicy.py')
415478Snate@binkert.orgSimObject('RubyPrefetcher.py')
425636Sgblack@eecs.umich.eduSimObject('WireBuffer.py')
435389Sgblack@eecs.umich.edu
445637Sgblack@eecs.umich.eduSource('AbstractReplacementPolicy.cc')
455389Sgblack@eecs.umich.eduSource('DirectoryMemory.cc')
465389Sgblack@eecs.umich.eduSource('CacheMemory.cc')
475389Sgblack@eecs.umich.eduSource('LRUPolicy.cc')
485389Sgblack@eecs.umich.eduSource('PseudoLRUPolicy.cc')
495389Sgblack@eecs.umich.eduSource('WireBuffer.cc')
505389Sgblack@eecs.umich.eduSource('PersistentTable.cc')
515389Sgblack@eecs.umich.eduSource('Prefetcher.cc')
525389Sgblack@eecs.umich.eduSource('TimerTable.cc')
535446Sgblack@eecs.umich.eduSource('BankedArray.cc')
545389Sgblack@eecs.umich.edu