2006-02-15 02:13:08 +01:00
|
|
|
# -*- mode:python -*-
|
|
|
|
|
|
|
|
# Copyright (c) 2004-2005 The Regents of The University of Michigan
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are
|
|
|
|
# met: redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer;
|
|
|
|
# redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution;
|
|
|
|
# neither the name of the copyright holders nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products derived from
|
|
|
|
# this software without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2006-06-01 01:26:56 +02:00
|
|
|
#
|
|
|
|
# Authors: Gabe Black
|
|
|
|
# Steve Reinhardt
|
2006-02-15 02:13:08 +01:00
|
|
|
|
2007-03-11 08:00:54 +01:00
|
|
|
Import('*')
|
2006-02-15 02:13:08 +01:00
|
|
|
|
2007-03-11 08:00:54 +01:00
|
|
|
if env['TARGET_ISA'] == 'sparc':
|
|
|
|
Source('asi.cc')
|
|
|
|
Source('faults.cc')
|
2011-10-09 09:15:50 +02:00
|
|
|
Source('interrupts.cc')
|
2009-07-09 08:02:20 +02:00
|
|
|
Source('isa.cc')
|
2011-10-31 10:58:24 +01:00
|
|
|
Source('linux/linux.cc')
|
|
|
|
Source('linux/process.cc')
|
|
|
|
Source('linux/syscalls.cc')
|
2009-07-20 08:54:56 +02:00
|
|
|
Source('nativetrace.cc')
|
2007-08-27 05:24:18 +02:00
|
|
|
Source('pagetable.cc')
|
2011-10-31 10:58:24 +01:00
|
|
|
Source('process.cc')
|
2007-03-11 08:00:54 +01:00
|
|
|
Source('remote_gdb.cc')
|
2011-10-31 10:58:24 +01:00
|
|
|
Source('solaris/process.cc')
|
|
|
|
Source('solaris/solaris.cc')
|
|
|
|
Source('system.cc')
|
2007-08-27 05:24:18 +02:00
|
|
|
Source('tlb.cc')
|
2011-10-10 08:48:27 +02:00
|
|
|
Source('ua2005.cc')
|
2007-08-01 22:59:14 +02:00
|
|
|
Source('utility.cc')
|
2011-10-16 14:06:39 +02:00
|
|
|
Source('vtophys.cc')
|
2006-02-15 02:13:08 +01:00
|
|
|
|
2011-10-09 09:15:50 +02:00
|
|
|
SimObject('SparcInterrupts.py')
|
2009-07-20 08:54:56 +02:00
|
|
|
SimObject('SparcNativeTrace.py')
|
2011-10-31 10:58:24 +01:00
|
|
|
SimObject('SparcSystem.py')
|
2007-08-27 05:24:18 +02:00
|
|
|
SimObject('SparcTLB.py')
|
2011-10-09 09:15:50 +02:00
|
|
|
|
2011-06-03 02:36:21 +02:00
|
|
|
DebugFlag('Sparc', "Generic SPARC ISA stuff")
|
|
|
|
DebugFlag('RegisterWindows', "Register window manipulation")
|
2007-08-27 05:24:18 +02:00
|
|
|
|
2007-03-11 08:00:54 +01:00
|
|
|
# Add in files generated by the ISA description.
|
|
|
|
isa_desc_files = env.ISADesc('isa/main.isa')
|
|
|
|
# Only non-header files need to be compiled.
|
|
|
|
for f in isa_desc_files:
|
|
|
|
if not f.path.endswith('.hh'):
|
|
|
|
Source(f)
|