SConscript revision 7404
12086SN/A# -*- mode:python -*- 22086SN/A 32086SN/A# Copyright (c) 2009 ARM Limited 42086SN/A# All rights reserved. 52086SN/A# 62086SN/A# The license below extends only to copyright in the software and shall 72086SN/A# not be construed as granting a license to any other intellectual 82086SN/A# property including but not limited to intellectual property relating 92086SN/A# to a hardware implementation of the functionality of the software 102086SN/A# licensed hereunder. You may use the software subject to the license 112086SN/A# terms below provided that you ensure that this notice is replicated 122086SN/A# unmodified and in its entirety in all distributions of the software, 132086SN/A# modified or unmodified, in source code or in binary form. 142086SN/A# 152086SN/A# Copyright (c) 2007-2008 The Florida State University 162086SN/A# All rights reserved. 172086SN/A# 182086SN/A# Redistribution and use in source and binary forms, with or without 192086SN/A# modification, are permitted provided that the following conditions are 202086SN/A# met: redistributions of source code must retain the above copyright 212086SN/A# notice, this list of conditions and the following disclaimer; 222086SN/A# redistributions in binary form must reproduce the above copyright 232086SN/A# notice, this list of conditions and the following disclaimer in the 242086SN/A# documentation and/or other materials provided with the distribution; 252086SN/A# neither the name of the copyright holders nor the names of its 262086SN/A# contributors may be used to endorse or promote products derived from 272086SN/A# this software without specific prior written permission. 282665Ssaidi@eecs.umich.edu# 292665Ssaidi@eecs.umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 302665Ssaidi@eecs.umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 312686Sksewell@umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 322086SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 334202Sbinkertn@umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 342086SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 354202Sbinkertn@umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 364202Sbinkertn@umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 374202Sbinkertn@umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 384661Sksewell@umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 394202Sbinkertn@umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 404661Sksewell@umich.edu# 412086SN/A# Authors: Stephen Hines 424202Sbinkertn@umich.edu# Ali Saidi 434202Sbinkertn@umich.edu 444202Sbinkertn@umich.eduImport('*') 454202Sbinkertn@umich.edu 464202Sbinkertn@umich.eduif env['TARGET_ISA'] == 'arm': 472086SN/A# Workaround for bug in SCons version > 0.97d20071212 484202Sbinkertn@umich.edu# Scons bug id: 2006 M5 Bug id: 308 494202Sbinkertn@umich.edu Dir('isa/formats') 502086SN/A Source('faults.cc') 514202Sbinkertn@umich.edu Source('insts/branch.cc') 524202Sbinkertn@umich.edu Source('insts/macromem.cc') 534202Sbinkertn@umich.edu Source('insts/mem.cc') 544202Sbinkertn@umich.edu Source('insts/misc.cc') 554202Sbinkertn@umich.edu Source('insts/pred_inst.cc') 564202Sbinkertn@umich.edu Source('insts/static_inst.cc') 57 Source('insts/vfp.cc') 58 Source('miscregs.cc') 59 Source('nativetrace.cc') 60 Source('tlb.cc') 61 Source('vtophys.cc') 62 Source('utility.cc') 63 64 SimObject('ArmNativeTrace.py') 65 SimObject('ArmTLB.py') 66 67 TraceFlag('Arm') 68 TraceFlag('TLBVerbose') 69 TraceFlag('Faults', "Trace Exceptions, interrupts, svc/swi") 70 TraceFlag('Predecoder', "Instructions returned by the predecoder") 71 if env['FULL_SYSTEM']: 72 Source('interrupts.cc') 73 Source('stacktrace.cc') 74 Source('system.cc') 75 Source('table_walker.cc') 76 77 SimObject('ArmInterrupts.py') 78 SimObject('ArmSystem.py') 79 else: 80 Source('process.cc') 81 Source('linux/linux.cc') 82 Source('linux/process.cc') 83 84 # Add in files generated by the ISA description. 85 isa_desc_files = env.ISADesc('isa/main.isa') 86 # Only non-header files need to be compiled. 87 for f in isa_desc_files: 88 if not f.path.endswith('.hh'): 89 Source(f) 90 91