SConscript revision 12685:dcf85db6ec5c
13021SN/A# -*- mode:python -*- 23021SN/A 39285Sandreas.hansson@arm.com# Copyright (c) 2018 Inria 49285Sandreas.hansson@arm.com# All rights reserved. 59285Sandreas.hansson@arm.com# 68540SN/A# Redistribution and use in source and binary forms, with or without 79838Sandreas.hansson@arm.com# modification, are permitted provided that the following conditions are 89838Sandreas.hansson@arm.com# met: redistributions of source code must retain the above copyright 99838Sandreas.hansson@arm.com# notice, this list of conditions and the following disclaimer; 109838Sandreas.hansson@arm.com# redistributions in binary form must reproduce the above copyright 119838Sandreas.hansson@arm.com# notice, this list of conditions and the following disclaimer in the 129150SAli.Saidi@ARM.com# documentation and/or other materials provided with the distribution; 139150SAli.Saidi@ARM.com# neither the name of the copyright holders nor the names of its 149055Ssaidi@eecs.umich.edu# contributors may be used to endorse or promote products derived from 159055Ssaidi@eecs.umich.edu# this software without specific prior written permission. 169055Ssaidi@eecs.umich.edu# 179055Ssaidi@eecs.umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 189055Ssaidi@eecs.umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 199055Ssaidi@eecs.umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 209055Ssaidi@eecs.umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 219055Ssaidi@eecs.umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 229285Sandreas.hansson@arm.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 239285Sandreas.hansson@arm.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 249285Sandreas.hansson@arm.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 259285Sandreas.hansson@arm.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 269285Sandreas.hansson@arm.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 279285Sandreas.hansson@arm.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 289285Sandreas.hansson@arm.com# 299285Sandreas.hansson@arm.com# Authors: Daniel Carvalho 309729Sandreas.hansson@arm.com 319729Sandreas.hansson@arm.comImport('*') 329729Sandreas.hansson@arm.com 339729Sandreas.hansson@arm.comSimObject('ReplacementPolicies.py') 349729Sandreas.hansson@arm.com 359838Sandreas.hansson@arm.comSource('bip_rp.cc') 369838Sandreas.hansson@arm.comSource('brrip_rp.cc') 379838Sandreas.hansson@arm.comSource('fifo_rp.cc') 389838Sandreas.hansson@arm.comSource('lfu_rp.cc') 399729Sandreas.hansson@arm.comSource('lru_rp.cc') 409729Sandreas.hansson@arm.comSource('mru_rp.cc') 419729Sandreas.hansson@arm.comSource('random_rp.cc') 429729Sandreas.hansson@arm.comSource('second_chance_rp.cc') 439729Sandreas.hansson@arm.com