SConscript revision 7585
12139SN/A# -*- mode:python -*-
22139SN/A
32139SN/A# Copyright (c) 2009 ARM Limited
42139SN/A# All rights reserved.
52139SN/A#
62139SN/A# The license below extends only to copyright in the software and shall
72139SN/A# not be construed as granting a license to any other intellectual
82139SN/A# property including but not limited to intellectual property relating
92139SN/A# to a hardware implementation of the functionality of the software
102139SN/A# licensed hereunder.  You may use the software subject to the license
112139SN/A# terms below provided that you ensure that this notice is replicated
122139SN/A# unmodified and in its entirety in all distributions of the software,
132139SN/A# modified or unmodified, in source code or in binary form.
142139SN/A#
152139SN/A# Copyright (c) 2007-2008 The Florida State University
162139SN/A# All rights reserved.
172139SN/A#
182139SN/A# Redistribution and use in source and binary forms, with or without
192139SN/A# modification, are permitted provided that the following conditions are
202139SN/A# met: redistributions of source code must retain the above copyright
212139SN/A# notice, this list of conditions and the following disclaimer;
222139SN/A# redistributions in binary form must reproduce the above copyright
232139SN/A# notice, this list of conditions and the following disclaimer in the
242139SN/A# documentation and/or other materials provided with the distribution;
252139SN/A# neither the name of the copyright holders nor the names of its
262139SN/A# contributors may be used to endorse or promote products derived from
272139SN/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
302139SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
314202Sbinkertn@umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
322139SN/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,
342152SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
352152SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
362139SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
372139SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
382139SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
392139SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
402139SN/A#
412152SN/A# Authors: Stephen Hines
422152SN/A#          Ali Saidi
432139SN/A
442139SN/AImport('*')
452139SN/A
464781Snate@binkert.orgif env['TARGET_ISA'] == 'arm':
474781Snate@binkert.org# Workaround for bug in SCons version > 0.97d20071212
484781Snate@binkert.org# Scons bug id: 2006 M5 Bug id: 308 
496313Sgblack@eecs.umich.edu    Dir('isa/formats')
504781Snate@binkert.org    Source('faults.cc')
514781Snate@binkert.org    Source('insts/macromem.cc')
523170Sstever@eecs.umich.edu    Source('insts/mem.cc')
535664Sgblack@eecs.umich.edu    Source('insts/misc.cc')
543806Ssaidi@eecs.umich.edu    Source('insts/pred_inst.cc')
556179Sksewell@umich.edu    Source('insts/static_inst.cc')
564781Snate@binkert.org    Source('insts/vfp.cc')
574781Snate@binkert.org    Source('isa.cc')
586329Sgblack@eecs.umich.edu    Source('miscregs.cc')
594781Snate@binkert.org    Source('predecoder.cc')
604781Snate@binkert.org    Source('nativetrace.cc')
614781Snate@binkert.org    Source('tlb.cc')
624781Snate@binkert.org    Source('vtophys.cc')
634781Snate@binkert.org    Source('utility.cc')
644781Snate@binkert.org
652139SN/A    SimObject('ArmNativeTrace.py')
662139SN/A    SimObject('ArmTLB.py')
673546Sgblack@eecs.umich.edu
684202Sbinkertn@umich.edu    TraceFlag('Arm')
692152SN/A    TraceFlag('TLBVerbose')
702152SN/A    TraceFlag('Faults', "Trace Exceptions, interrupts, svc/swi")
712152SN/A    TraceFlag('Predecoder', "Instructions returned by the predecoder")
722152SN/A    if env['FULL_SYSTEM']:
732152SN/A        Source('interrupts.cc')
742152SN/A        Source('stacktrace.cc')
752152SN/A        Source('system.cc')
762152SN/A        Source('linux/system.cc')
772152SN/A        Source('table_walker.cc')
782152SN/A        
792152SN/A        SimObject('ArmInterrupts.py')
802152SN/A        SimObject('ArmSystem.py')
812504SN/A    else:
822504SN/A        Source('process.cc')
832504SN/A        Source('linux/linux.cc')
842504SN/A        Source('linux/process.cc')
852152SN/A
862504SN/A    # Add in files generated by the ISA description.
872152SN/A    isa_desc_files = env.ISADesc('isa/main.isa')
882152SN/A    # Only non-header files need to be compiled.
892152SN/A    for f in isa_desc_files:
902152SN/A        if not f.path.endswith('.hh'):
912152SN/A            Source(f)
922152SN/A
936993Snate@binkert.org