SConscript revision 8761
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 
494781Snate@binkert.org    Dir('isa/formats')
504781Snate@binkert.org    Source('faults.cc')
513170Sstever@eecs.umich.edu    Source('insts/macromem.cc')
523806Ssaidi@eecs.umich.edu    Source('insts/mem.cc')
534781Snate@binkert.org    Source('insts/misc.cc')
544781Snate@binkert.org    Source('insts/pred_inst.cc')
554781Snate@binkert.org    Source('insts/static_inst.cc')
564781Snate@binkert.org    Source('insts/vfp.cc')
574781Snate@binkert.org    Source('interrupts.cc')
584781Snate@binkert.org    Source('isa.cc')
594781Snate@binkert.org    Source('miscregs.cc')
604781Snate@binkert.org    Source('nativetrace.cc')
614781Snate@binkert.org    Source('predecoder.cc')
624781Snate@binkert.org    Source('remote_gdb.cc')
632139SN/A    Source('table_walker.cc')
642139SN/A    Source('tlb.cc')
653546Sgblack@eecs.umich.edu    Source('utility.cc')
664202Sbinkertn@umich.edu    Source('vtophys.cc')
672152SN/A
682152SN/A    SimObject('ArmInterrupts.py')
692152SN/A    SimObject('ArmNativeTrace.py')
702152SN/A    SimObject('ArmTLB.py')
712152SN/A
722152SN/A    DebugFlag('Arm')
732152SN/A    DebugFlag('TLBVerbose')
742152SN/A    DebugFlag('Faults', "Trace Exceptions, interrupts, svc/swi")
752152SN/A    DebugFlag('Predecoder', "Instructions returned by the predecoder")
762152SN/A    if env['FULL_SYSTEM']:
772152SN/A        Source('stacktrace.cc')
782152SN/A        Source('system.cc')
792504SN/A        Source('linux/system.cc')
802504SN/A        
812504SN/A        SimObject('ArmSystem.py')
822504SN/A    else:
832152SN/A        Source('process.cc')
842504SN/A        Source('linux/linux.cc')
852152SN/A        Source('linux/process.cc')
862152SN/A
872152SN/A    # Add in files generated by the ISA description.
882152SN/A    isa_desc_files = env.ISADesc('isa/main.isa')
892152SN/A    # Only non-header files need to be compiled.
902152SN/A    for f in isa_desc_files:
912152SN/A        if not f.path.endswith('.hh'):
922152SN/A            Source(f)
932632Sstever@eecs.umich.edu
942155SN/A