SConscript revision 10037
16757SAli.Saidi@ARM.com# -*- mode:python -*- 26757SAli.Saidi@ARM.com 310037SARM gem5 Developers# Copyright (c) 2009, 2012-2013 ARM Limited 46757SAli.Saidi@ARM.com# All rights reserved. 56757SAli.Saidi@ARM.com# 67090SAli.Saidi@ARM.com# The license below extends only to copyright in the software and shall 77090SAli.Saidi@ARM.com# not be construed as granting a license to any other intellectual 87090SAli.Saidi@ARM.com# property including but not limited to intellectual property relating 97090SAli.Saidi@ARM.com# to a hardware implementation of the functionality of the software 107090SAli.Saidi@ARM.com# licensed hereunder. You may use the software subject to the license 117090SAli.Saidi@ARM.com# terms below provided that you ensure that this notice is replicated 127090SAli.Saidi@ARM.com# unmodified and in its entirety in all distributions of the software, 137090SAli.Saidi@ARM.com# modified or unmodified, in source code or in binary form. 147090SAli.Saidi@ARM.com# 156757SAli.Saidi@ARM.com# Copyright (c) 2007-2008 The Florida State University 166757SAli.Saidi@ARM.com# All rights reserved. 176757SAli.Saidi@ARM.com# 186757SAli.Saidi@ARM.com# Redistribution and use in source and binary forms, with or without 196757SAli.Saidi@ARM.com# modification, are permitted provided that the following conditions are 206757SAli.Saidi@ARM.com# met: redistributions of source code must retain the above copyright 216757SAli.Saidi@ARM.com# notice, this list of conditions and the following disclaimer; 226757SAli.Saidi@ARM.com# redistributions in binary form must reproduce the above copyright 236757SAli.Saidi@ARM.com# notice, this list of conditions and the following disclaimer in the 246757SAli.Saidi@ARM.com# documentation and/or other materials provided with the distribution; 256757SAli.Saidi@ARM.com# neither the name of the copyright holders nor the names of its 266757SAli.Saidi@ARM.com# contributors may be used to endorse or promote products derived from 276757SAli.Saidi@ARM.com# this software without specific prior written permission. 286757SAli.Saidi@ARM.com# 296757SAli.Saidi@ARM.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 306757SAli.Saidi@ARM.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 316757SAli.Saidi@ARM.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 326757SAli.Saidi@ARM.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 336757SAli.Saidi@ARM.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 346757SAli.Saidi@ARM.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 356757SAli.Saidi@ARM.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 366757SAli.Saidi@ARM.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 376757SAli.Saidi@ARM.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 386757SAli.Saidi@ARM.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 396757SAli.Saidi@ARM.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 406757SAli.Saidi@ARM.com# 416757SAli.Saidi@ARM.com# Authors: Stephen Hines 428739Sgblack@eecs.umich.edu# Ali Saidi 4310801Srene.dejong@arm.com 4410801Srene.dejong@arm.comImport('*') 459525SAndreas.Sandberg@ARM.com 467584SAli.Saidi@arm.comif env['TARGET_ISA'] == 'arm': 4710802Srene.dejong@arm.com# Workaround for bug in SCons version > 0.97d20071212 4810396Sakash.bagdia@arm.com# Scons bug id: 2006 M5 Bug id: 308 4910916Sandreas.sandberg@arm.com Dir('isa/formats') 5012740Sandreas.sandberg@arm.com Source('decoder.cc') 516757SAli.Saidi@ARM.com Source('faults.cc') 528282SAli.Saidi@ARM.com Source('insts/branch64.cc') 537584SAli.Saidi@arm.com Source('insts/data64.cc') 547584SAli.Saidi@arm.com Source('insts/macromem.cc') 559525SAndreas.Sandberg@ARM.com Source('insts/mem.cc') 5610801Srene.dejong@arm.com Source('insts/mem64.cc') 5710037SARM gem5 Developers Source('insts/misc.cc') 5813014Sciro.santilli@arm.com Source('insts/misc64.cc') 5910749Smatt.evans@arm.com Source('insts/pred_inst.cc') 607584SAli.Saidi@arm.com Source('insts/static_inst.cc') 617753SWilliam.Wang@arm.com Source('insts/vfp.cc') 629646SChris.Emmons@arm.com Source('insts/fplib.cc') 637754SWilliam.Wang@arm.com Source('interrupts.cc') 647584SAli.Saidi@arm.com Source('isa.cc') 6510916Sandreas.sandberg@arm.com Source('linux/linux.cc') 6611296Sandreas.sandberg@arm.com Source('linux/process.cc') 677584SAli.Saidi@arm.com Source('linux/system.cc') 687584SAli.Saidi@arm.com Source('miscregs.cc') 698869SAli.Saidi@ARM.com Source('nativetrace.cc') 708512Sgeoffrey.blake@arm.com Source('process.cc') 7112077Sgedare@rtems.org Source('remote_gdb.cc') 7210037SARM gem5 Developers Source('stacktrace.cc') 7312740Sandreas.sandberg@arm.com Source('system.cc') 7410802Srene.dejong@arm.com Source('table_walker.cc') 7510396Sakash.bagdia@arm.com Source('stage2_mmu.cc') 767584SAli.Saidi@arm.com Source('stage2_lookup.cc') 778335Snate@binkert.org Source('tlb.cc') 7810801Srene.dejong@arm.com Source('utility.cc') 799646SChris.Emmons@arm.com Source('vtophys.cc') 808335Snate@binkert.org 8110749Smatt.evans@arm.com SimObject('ArmInterrupts.py') 828335Snate@binkert.org SimObject('ArmISA.py') 838335Snate@binkert.org SimObject('ArmNativeTrace.py') 849958Smatt.evans@arm.com SimObject('ArmSystem.py') 8510396Sakash.bagdia@arm.com SimObject('ArmTLB.py') 8610802Srene.dejong@arm.com 8710037SARM gem5 Developers DebugFlag('Arm') 8810916Sandreas.sandberg@arm.com DebugFlag('Decoder', "Instructions returned by the predecoder") 89 DebugFlag('Faults', "Trace Exceptions, interrupts, svc/swi") 90 DebugFlag('TLBVerbose') 91 92 # Add in files generated by the ISA description. 93 isa_desc_files = env.ISADesc('isa/main.isa') 94 # Only non-header files need to be compiled. 95 for f in isa_desc_files: 96 if not f.path.endswith('.hh'): 97 Source(f) 98 99