SConscript revision 12605
12929Sktlim@umich.edu# -*- mode:python -*- 211504Sandreas.sandberg@arm.com 311504Sandreas.sandberg@arm.com# Copyright (c) 2009, 2012-2013 ARM Limited 411504Sandreas.sandberg@arm.com# All rights reserved. 511504Sandreas.sandberg@arm.com# 611504Sandreas.sandberg@arm.com# The license below extends only to copyright in the software and shall 711504Sandreas.sandberg@arm.com# not be construed as granting a license to any other intellectual 811504Sandreas.sandberg@arm.com# property including but not limited to intellectual property relating 911504Sandreas.sandberg@arm.com# to a hardware implementation of the functionality of the software 1011504Sandreas.sandberg@arm.com# licensed hereunder. You may use the software subject to the license 1111504Sandreas.sandberg@arm.com# terms below provided that you ensure that this notice is replicated 1211504Sandreas.sandberg@arm.com# unmodified and in its entirety in all distributions of the software, 1311504Sandreas.sandberg@arm.com# modified or unmodified, in source code or in binary form. 1411504Sandreas.sandberg@arm.com# 152932Sktlim@umich.edu# Copyright (c) 2007-2008 The Florida State University 162929Sktlim@umich.edu# All rights reserved. 172929Sktlim@umich.edu# 182929Sktlim@umich.edu# Redistribution and use in source and binary forms, with or without 192929Sktlim@umich.edu# modification, are permitted provided that the following conditions are 202929Sktlim@umich.edu# met: redistributions of source code must retain the above copyright 212929Sktlim@umich.edu# notice, this list of conditions and the following disclaimer; 222929Sktlim@umich.edu# redistributions in binary form must reproduce the above copyright 232929Sktlim@umich.edu# notice, this list of conditions and the following disclaimer in the 242929Sktlim@umich.edu# documentation and/or other materials provided with the distribution; 252929Sktlim@umich.edu# neither the name of the copyright holders nor the names of its 262929Sktlim@umich.edu# contributors may be used to endorse or promote products derived from 272929Sktlim@umich.edu# this software without specific prior written permission. 282929Sktlim@umich.edu# 292929Sktlim@umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 302929Sktlim@umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 312929Sktlim@umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 322929Sktlim@umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 332929Sktlim@umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 342929Sktlim@umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 352929Sktlim@umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 362929Sktlim@umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 372929Sktlim@umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 382929Sktlim@umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 392929Sktlim@umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 402932Sktlim@umich.edu# 412932Sktlim@umich.edu# Authors: Stephen Hines 422932Sktlim@umich.edu# Ali Saidi 4311504Sandreas.sandberg@arm.com 442929Sktlim@umich.eduImport('*') 452929Sktlim@umich.edu 4611504Sandreas.sandberg@arm.comif env['TARGET_ISA'] == 'arm': 4711504Sandreas.sandberg@arm.com# Workaround for bug in SCons version > 0.97d20071212 4811504Sandreas.sandberg@arm.com# Scons bug id: 2006 M5 Bug id: 308 4911504Sandreas.sandberg@arm.com Dir('isa/formats') 5011504Sandreas.sandberg@arm.com Source('decoder.cc') 5111504Sandreas.sandberg@arm.com Source('faults.cc') 5211504Sandreas.sandberg@arm.com Source('insts/branch64.cc') 532929Sktlim@umich.edu Source('insts/data64.cc') 542929Sktlim@umich.edu Source('insts/macromem.cc') 552929Sktlim@umich.edu Source('insts/mem.cc') 568947Sandreas.hansson@arm.com Source('insts/mem64.cc') 578947Sandreas.hansson@arm.com Source('insts/misc.cc') 588947Sandreas.hansson@arm.com Source('insts/misc64.cc') 592929Sktlim@umich.edu Source('insts/pred_inst.cc') 602929Sktlim@umich.edu Source('insts/pseudo.cc') 6111504Sandreas.sandberg@arm.com Source('insts/static_inst.cc') 6211504Sandreas.sandberg@arm.com Source('insts/vfp.cc') 6311504Sandreas.sandberg@arm.com Source('insts/fplib.cc') 6411504Sandreas.sandberg@arm.com Source('interrupts.cc') 6511504Sandreas.sandberg@arm.com Source('isa.cc') 6611504Sandreas.sandberg@arm.com Source('isa_device.cc') 6711504Sandreas.sandberg@arm.com Source('linux/linux.cc') 682929Sktlim@umich.edu Source('linux/process.cc') 6911504Sandreas.sandberg@arm.com Source('linux/system.cc') 7011504Sandreas.sandberg@arm.com Source('freebsd/freebsd.cc') 716007Ssteve.reinhardt@amd.com Source('freebsd/process.cc') 726007Ssteve.reinhardt@amd.com Source('freebsd/system.cc') 7311504Sandreas.sandberg@arm.com Source('miscregs.cc') 742929Sktlim@umich.edu Source('nativetrace.cc') 752929Sktlim@umich.edu Source('pmu.cc') 7611504Sandreas.sandberg@arm.com Source('process.cc') 776007Ssteve.reinhardt@amd.com Source('remote_gdb.cc') 786007Ssteve.reinhardt@amd.com Source('semihosting.cc') 799781Sandreas.hansson@arm.com Source('stacktrace.cc') 806007Ssteve.reinhardt@amd.com Source('system.cc') 8111504Sandreas.sandberg@arm.com Source('table_walker.cc') 822929Sktlim@umich.edu Source('stage2_mmu.cc') 832929Sktlim@umich.edu Source('stage2_lookup.cc') 8411504Sandreas.sandberg@arm.com Source('tlb.cc') 8511504Sandreas.sandberg@arm.com Source('tlbi_op.cc') 8611504Sandreas.sandberg@arm.com Source('utility.cc') 8711504Sandreas.sandberg@arm.com Source('vtophys.cc') 8811504Sandreas.sandberg@arm.com 896007Ssteve.reinhardt@amd.com SimObject('ArmInterrupts.py') 9011504Sandreas.sandberg@arm.com SimObject('ArmISA.py') 9111504Sandreas.sandberg@arm.com SimObject('ArmNativeTrace.py') 9211504Sandreas.sandberg@arm.com SimObject('ArmSemihosting.py') 9311504Sandreas.sandberg@arm.com SimObject('ArmSystem.py') 946007Ssteve.reinhardt@amd.com SimObject('ArmTLB.py') 9511504Sandreas.sandberg@arm.com SimObject('ArmPMU.py') 9611504Sandreas.sandberg@arm.com 9711504Sandreas.sandberg@arm.com DebugFlag('Arm') 986007Ssteve.reinhardt@amd.com DebugFlag('Semihosting') 992929Sktlim@umich.edu DebugFlag('Decoder', "Instructions returned by the predecoder") 1002929Sktlim@umich.edu DebugFlag('Faults', "Trace Exceptions, interrupts, svc/swi") 1016007Ssteve.reinhardt@amd.com DebugFlag('PMUVerbose', "Performance Monitor") 1026007Ssteve.reinhardt@amd.com DebugFlag('TLBVerbose') 1032929Sktlim@umich.edu 1042929Sktlim@umich.edu # Add files generated by the ISA description. 1056007Ssteve.reinhardt@amd.com ISADesc('isa/main.isa', decoder_splits=3, exec_splits=6) 1062929Sktlim@umich.edu