SConscript revision 13579
16757SAli.Saidi@ARM.com# -*- mode:python -*- 26757SAli.Saidi@ARM.com 310037SARM gem5 Developers# Copyright (c) 2009, 2012-2013, 2018 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') 506757SAli.Saidi@ARM.com Source('decoder.cc') 518282SAli.Saidi@ARM.com Source('faults.cc') 527584SAli.Saidi@arm.com Source('insts/branch.cc') 537584SAli.Saidi@arm.com Source('insts/branch64.cc') 549525SAndreas.Sandberg@ARM.com Source('insts/data64.cc') 5510801Srene.dejong@arm.com Source('insts/macromem.cc') 5610037SARM gem5 Developers Source('insts/mem.cc') 579525SAndreas.Sandberg@ARM.com Source('insts/mem64.cc') 5810749Smatt.evans@arm.com Source('insts/misc.cc') 597584SAli.Saidi@arm.com Source('insts/misc64.cc') 607753SWilliam.Wang@arm.com Source('insts/pred_inst.cc') 619646SChris.Emmons@arm.com Source('insts/pseudo.cc') 627754SWilliam.Wang@arm.com Source('insts/static_inst.cc') 637584SAli.Saidi@arm.com Source('insts/vfp.cc') 6410916Sandreas.sandberg@arm.com Source('insts/fplib.cc') 6511296Sandreas.sandberg@arm.com Source('insts/crypto.cc') 667584SAli.Saidi@arm.com Source('interrupts.cc') 677584SAli.Saidi@arm.com Source('isa.cc') 688869SAli.Saidi@ARM.com Source('isa_device.cc') 698512Sgeoffrey.blake@arm.com Source('linux/linux.cc') 7010037SARM gem5 Developers Source('linux/process.cc') 7110802Srene.dejong@arm.com Source('linux/system.cc') 7210396Sakash.bagdia@arm.com Source('freebsd/freebsd.cc') 737584SAli.Saidi@arm.com Source('freebsd/process.cc') 748335Snate@binkert.org Source('freebsd/system.cc') 7510801Srene.dejong@arm.com Source('miscregs.cc') 769646SChris.Emmons@arm.com Source('nativetrace.cc') 778335Snate@binkert.org Source('pmu.cc') 7810749Smatt.evans@arm.com Source('process.cc') 798335Snate@binkert.org Source('remote_gdb.cc') 808335Snate@binkert.org Source('semihosting.cc') 819958Smatt.evans@arm.com Source('stacktrace.cc') 8210396Sakash.bagdia@arm.com Source('system.cc') 8310802Srene.dejong@arm.com Source('table_walker.cc') 8410037SARM gem5 Developers Source('stage2_mmu.cc') 8510916Sandreas.sandberg@arm.com Source('stage2_lookup.cc') 86 Source('tlb.cc') 87 Source('tlbi_op.cc') 88 Source('utility.cc') 89 Source('vtophys.cc') 90 91 SimObject('ArmInterrupts.py') 92 SimObject('ArmISA.py') 93 SimObject('ArmNativeTrace.py') 94 SimObject('ArmSemihosting.py') 95 SimObject('ArmSystem.py') 96 SimObject('ArmTLB.py') 97 SimObject('ArmPMU.py') 98 99 DebugFlag('Arm') 100 DebugFlag('Semihosting') 101 DebugFlag('Decoder', "Instructions returned by the predecoder") 102 DebugFlag('Faults', "Trace Exceptions, interrupts, svc/swi") 103 DebugFlag('PMUVerbose', "Performance Monitor") 104 DebugFlag('TLBVerbose') 105 106 # Add files generated by the ISA description. 107 ISADesc('isa/main.isa', decoder_splits=3, exec_splits=6) 108 109 GdbXml('arm/arm-with-neon.xml', 'gdb_xml_arm_target') 110 GdbXml('arm/arm-core.xml', 'gdb_xml_arm_core') 111 GdbXml('arm/arm-vfpv3.xml', 'gdb_xml_arm_vfpv3') 112 GdbXml('aarch64.xml', 'gdb_xml_aarch64_target') 113 GdbXml('aarch64-core.xml', 'gdb_xml_aarch64_core') 114 GdbXml('aarch64-fpu.xml', 'gdb_xml_aarch64_fpu') 115