SConscript revision 8831:6c08a877af8f
17159Sgblack@eecs.umich.edu# -*- mode:python -*- 27159Sgblack@eecs.umich.edu 37159Sgblack@eecs.umich.edu# Copyright (c) 2006 The Regents of The University of Michigan 47159Sgblack@eecs.umich.edu# All rights reserved. 57159Sgblack@eecs.umich.edu# 67159Sgblack@eecs.umich.edu# Redistribution and use in source and binary forms, with or without 77159Sgblack@eecs.umich.edu# modification, are permitted provided that the following conditions are 87159Sgblack@eecs.umich.edu# met: redistributions of source code must retain the above copyright 97159Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer; 107159Sgblack@eecs.umich.edu# redistributions in binary form must reproduce the above copyright 117159Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer in the 127159Sgblack@eecs.umich.edu# documentation and/or other materials provided with the distribution; 137159Sgblack@eecs.umich.edu# neither the name of the copyright holders nor the names of its 147159Sgblack@eecs.umich.edu# contributors may be used to endorse or promote products derived from 157159Sgblack@eecs.umich.edu# this software without specific prior written permission. 167159Sgblack@eecs.umich.edu# 177159Sgblack@eecs.umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 187159Sgblack@eecs.umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 197159Sgblack@eecs.umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 207159Sgblack@eecs.umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 217159Sgblack@eecs.umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 227159Sgblack@eecs.umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 237159Sgblack@eecs.umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 247159Sgblack@eecs.umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 257159Sgblack@eecs.umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 267159Sgblack@eecs.umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 277159Sgblack@eecs.umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 287159Sgblack@eecs.umich.edu# 297159Sgblack@eecs.umich.edu# Authors: Nathan Binkert 307159Sgblack@eecs.umich.edu 317159Sgblack@eecs.umich.eduImport('*') 327159Sgblack@eecs.umich.edu 337159Sgblack@eecs.umich.eduif env['TARGET_ISA'] == 'no': 347159Sgblack@eecs.umich.edu Return() 357159Sgblack@eecs.umich.eduSimObject('Prefetcher.py') 367159Sgblack@eecs.umich.edu 377159Sgblack@eecs.umich.eduSource('base.cc') 387159Sgblack@eecs.umich.eduSource('ghb.cc') 397159Sgblack@eecs.umich.eduSource('stride.cc') 407159Sgblack@eecs.umich.eduSource('tagged.cc') 417159Sgblack@eecs.umich.edu 427159Sgblack@eecs.umich.edu