SConscript revision 12109
12139SN/A# Copyright (c) 2016 ARM Limited 22139SN/A# All rights reserved. 32139SN/A# 42139SN/A# The license below extends only to copyright in the software and shall 52139SN/A# not be construed as granting a license to any other intellectual 62139SN/A# property including but not limited to intellectual property relating 72139SN/A# to a hardware implementation of the functionality of the software 82139SN/A# licensed hereunder. You may use the software subject to the license 92139SN/A# terms below provided that you ensure that this notice is replicated 102139SN/A# unmodified and in its entirety in all distributions of the software, 112139SN/A# modified or unmodified, in source code or in binary form. 122139SN/A# 132139SN/A# Copyright (c) 2012 Google 142139SN/A# All rights reserved. 152139SN/A# 162139SN/A# Redistribution and use in source and binary forms, with or without 172139SN/A# modification, are permitted provided that the following conditions are 182139SN/A# met: redistributions of source code must retain the above copyright 192139SN/A# notice, this list of conditions and the following disclaimer; 202139SN/A# redistributions in binary form must reproduce the above copyright 212139SN/A# notice, this list of conditions and the following disclaimer in the 222139SN/A# documentation and/or other materials provided with the distribution; 232139SN/A# neither the name of the copyright holders nor the names of its 242139SN/A# contributors may be used to endorse or promote products derived from 252139SN/A# this software without specific prior written permission. 262139SN/A# 272139SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 282665Ssaidi@eecs.umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 292665Ssaidi@eecs.umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 302139SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 314202Sbinkertn@umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 322139SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 334202Sbinkertn@umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 342152SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 352152SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 362139SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 372139SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 382139SN/A# 392139SN/A# Authors: Gabe Black 402139SN/A 412152SN/AImport('*') 422152SN/A 432139SN/Aif env['TARGET_ISA'] == 'null': 442139SN/A Return() 452139SN/A 464781Snate@binkert.orgSource('decode_cache.cc') 474781Snate@binkert.orgSource('mmapped_ipr.cc') 487799Sgblack@eecs.umich.eduSource('tlb.cc') 494781Snate@binkert.org 504781Snate@binkert.orgSimObject('BaseTLB.py') 513170Sstever@eecs.umich.eduSimObject('ISACommon.py') 525664Sgblack@eecs.umich.edu 533806Ssaidi@eecs.umich.eduDebugFlag('TLB') 546179Sksewell@umich.eduSource('pseudo_inst.cc') 554781Snate@binkert.org