SConscript revision 12222
16757SAli.Saidi@ARM.com# -*- mode:python -*- 26757SAli.Saidi@ARM.com 36757SAli.Saidi@ARM.com# Copyright (c) 2004-2005 The Regents of The University of Michigan 46757SAli.Saidi@ARM.com# All rights reserved. 56757SAli.Saidi@ARM.com# 67090SAli.Saidi@ARM.com# Redistribution and use in source and binary forms, with or without 77090SAli.Saidi@ARM.com# modification, are permitted provided that the following conditions are 87090SAli.Saidi@ARM.com# met: redistributions of source code must retain the above copyright 97090SAli.Saidi@ARM.com# notice, this list of conditions and the following disclaimer; 107090SAli.Saidi@ARM.com# redistributions in binary form must reproduce the above copyright 117090SAli.Saidi@ARM.com# notice, this list of conditions and the following disclaimer in the 127090SAli.Saidi@ARM.com# documentation and/or other materials provided with the distribution; 137090SAli.Saidi@ARM.com# neither the name of the copyright holders nor the names of its 147090SAli.Saidi@ARM.com# contributors may be used to endorse or promote products derived from 156757SAli.Saidi@ARM.com# this software without specific prior written permission. 166757SAli.Saidi@ARM.com# 176757SAli.Saidi@ARM.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 186757SAli.Saidi@ARM.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 196757SAli.Saidi@ARM.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 206757SAli.Saidi@ARM.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 216757SAli.Saidi@ARM.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 226757SAli.Saidi@ARM.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 236757SAli.Saidi@ARM.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 246757SAli.Saidi@ARM.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 256757SAli.Saidi@ARM.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 266757SAli.Saidi@ARM.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 276757SAli.Saidi@ARM.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 286757SAli.Saidi@ARM.com# 296757SAli.Saidi@ARM.com# Authors: Gabe Black 306757SAli.Saidi@ARM.com# Steve Reinhardt 316757SAli.Saidi@ARM.com 326757SAli.Saidi@ARM.comImport('*') 336757SAli.Saidi@ARM.com 346757SAli.Saidi@ARM.comif env['TARGET_ISA'] == 'sparc': 356757SAli.Saidi@ARM.com Source('asi.cc') 366757SAli.Saidi@ARM.com Source('decoder.cc') 376757SAli.Saidi@ARM.com Source('faults.cc') 386757SAli.Saidi@ARM.com Source('interrupts.cc') 396757SAli.Saidi@ARM.com Source('isa.cc') 406757SAli.Saidi@ARM.com Source('linux/linux.cc') 416757SAli.Saidi@ARM.com Source('linux/process.cc') 426757SAli.Saidi@ARM.com Source('linux/syscalls.cc') 437584SAli.Saidi@arm.com Source('nativetrace.cc') 446757SAli.Saidi@ARM.com Source('pagetable.cc') 457584SAli.Saidi@arm.com Source('process.cc') 467584SAli.Saidi@arm.com Source('remote_gdb.cc') 477584SAli.Saidi@arm.com Source('solaris/process.cc') 487584SAli.Saidi@arm.com Source('solaris/solaris.cc') 497584SAli.Saidi@arm.com Source('system.cc') 507584SAli.Saidi@arm.com Source('tlb.cc') 517584SAli.Saidi@arm.com Source('ua2005.cc') 527584SAli.Saidi@arm.com Source('utility.cc') 537584SAli.Saidi@arm.com Source('vtophys.cc') 547695SPrakash.Ramrakhyani@arm.com 55 SimObject('SparcInterrupts.py') 56 SimObject('SparcISA.py') 57 SimObject('SparcNativeTrace.py') 58 SimObject('SparcSystem.py') 59 SimObject('SparcTLB.py') 60 61 DebugFlag('Sparc', "Generic SPARC ISA stuff") 62 DebugFlag('RegisterWindows', "Register window manipulation") 63 64 ISADesc('isa/main.isa') 65