SConscript revision 7100
16019Shines@cs.fsu.edu# -*- mode:python -*- 26019Shines@cs.fsu.edu 310037SARM gem5 Developers# Copyright (c) 2009 ARM Limited 47100Sgblack@eecs.umich.edu# All rights reserved. 57100Sgblack@eecs.umich.edu# 67100Sgblack@eecs.umich.edu# The license below extends only to copyright in the software and shall 77100Sgblack@eecs.umich.edu# not be construed as granting a license to any other intellectual 87100Sgblack@eecs.umich.edu# property including but not limited to intellectual property relating 97100Sgblack@eecs.umich.edu# to a hardware implementation of the functionality of the software 107100Sgblack@eecs.umich.edu# licensed hereunder. You may use the software subject to the license 117100Sgblack@eecs.umich.edu# terms below provided that you ensure that this notice is replicated 127100Sgblack@eecs.umich.edu# unmodified and in its entirety in all distributions of the software, 137100Sgblack@eecs.umich.edu# modified or unmodified, in source code or in binary form. 147100Sgblack@eecs.umich.edu# 156019Shines@cs.fsu.edu# Copyright (c) 2007-2008 The Florida State University 166019Shines@cs.fsu.edu# All rights reserved. 176019Shines@cs.fsu.edu# 186019Shines@cs.fsu.edu# Redistribution and use in source and binary forms, with or without 196019Shines@cs.fsu.edu# modification, are permitted provided that the following conditions are 206019Shines@cs.fsu.edu# met: redistributions of source code must retain the above copyright 216019Shines@cs.fsu.edu# notice, this list of conditions and the following disclaimer; 226019Shines@cs.fsu.edu# redistributions in binary form must reproduce the above copyright 236019Shines@cs.fsu.edu# notice, this list of conditions and the following disclaimer in the 246019Shines@cs.fsu.edu# documentation and/or other materials provided with the distribution; 256019Shines@cs.fsu.edu# neither the name of the copyright holders nor the names of its 266019Shines@cs.fsu.edu# contributors may be used to endorse or promote products derived from 276019Shines@cs.fsu.edu# this software without specific prior written permission. 286019Shines@cs.fsu.edu# 296019Shines@cs.fsu.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 306019Shines@cs.fsu.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 316019Shines@cs.fsu.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 326019Shines@cs.fsu.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 336019Shines@cs.fsu.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 346019Shines@cs.fsu.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 356019Shines@cs.fsu.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 366019Shines@cs.fsu.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 376019Shines@cs.fsu.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 386019Shines@cs.fsu.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 396019Shines@cs.fsu.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 406019Shines@cs.fsu.edu# 416019Shines@cs.fsu.edu# Authors: Stephen Hines 426757SAli.Saidi@ARM.com# Ali Saidi 436019Shines@cs.fsu.edu 446019Shines@cs.fsu.eduImport('*') 456019Shines@cs.fsu.edu 466019Shines@cs.fsu.eduif env['TARGET_ISA'] == 'arm': 476019Shines@cs.fsu.edu# Workaround for bug in SCons version > 0.97d20071212 486019Shines@cs.fsu.edu# Scons bug id: 2006 M5 Bug id: 308 496019Shines@cs.fsu.edu Dir('isa/formats') 509022Sgblack@eecs.umich.edu Source('faults.cc') 516019Shines@cs.fsu.edu Source('insts/branch.cc') 5210037SARM gem5 Developers Source('insts/mem.cc') 5310037SARM gem5 Developers Source('insts/pred_inst.cc') 547170Sgblack@eecs.umich.edu Source('insts/static_inst.cc') 556253Sgblack@eecs.umich.edu Source('nativetrace.cc') 5610037SARM gem5 Developers Source('pagetable.cc') 577202Sgblack@eecs.umich.edu Source('tlb.cc') 5810037SARM gem5 Developers Source('vtophys.cc') 596253Sgblack@eecs.umich.edu Source('utility.cc') 606253Sgblack@eecs.umich.edu 617396Sgblack@eecs.umich.edu SimObject('ArmNativeTrace.py') 6210037SARM gem5 Developers SimObject('ArmTLB.py') 638745Sgblack@eecs.umich.edu 647405SAli.Saidi@ARM.com TraceFlag('Arm') 658782Sgblack@eecs.umich.edu TraceFlag('Faults', "Trace Exceptions, interrupts, svc/swi") 668782Sgblack@eecs.umich.edu TraceFlag('Predecoder', "Instructions returned by the predecoder") 678782Sgblack@eecs.umich.edu if env['FULL_SYSTEM']: 687259Sgblack@eecs.umich.edu Source('interrupts.cc') 698757Sgblack@eecs.umich.edu Source('stacktrace.cc') 708782Sgblack@eecs.umich.edu Source('system.cc') 718757Sgblack@eecs.umich.edu 728777Sgblack@eecs.umich.edu SimObject('ArmInterrupts.py') 738782Sgblack@eecs.umich.edu SimObject('ArmSystem.py') 748756Sgblack@eecs.umich.edu else: 7510037SARM gem5 Developers Source('process.cc') 7610037SARM gem5 Developers Source('linux/linux.cc') 776019Shines@cs.fsu.edu Source('linux/process.cc') 786757SAli.Saidi@ARM.com 798757Sgblack@eecs.umich.edu # Add in files generated by the ISA description. 806019Shines@cs.fsu.edu isa_desc_files = env.ISADesc('isa/main.isa') 818745Sgblack@eecs.umich.edu # Only non-header files need to be compiled. 829384SAndreas.Sandberg@arm.com for f in isa_desc_files: 836397Sgblack@eecs.umich.edu if not f.path.endswith('.hh'): 848782Sgblack@eecs.umich.edu Source(f) 856019Shines@cs.fsu.edu 866397Sgblack@eecs.umich.edu