SConscript revision 10281
12567SN/A# -*- mode:python -*-
27650SAli.Saidi@ARM.com
37650SAli.Saidi@ARM.com# Copyright (c) 2004-2005 The Regents of The University of Michigan
47650SAli.Saidi@ARM.com# All rights reserved.
57650SAli.Saidi@ARM.com#
67650SAli.Saidi@ARM.com# Redistribution and use in source and binary forms, with or without
77650SAli.Saidi@ARM.com# modification, are permitted provided that the following conditions are
87650SAli.Saidi@ARM.com# met: redistributions of source code must retain the above copyright
97650SAli.Saidi@ARM.com# notice, this list of conditions and the following disclaimer;
107650SAli.Saidi@ARM.com# redistributions in binary form must reproduce the above copyright
117650SAli.Saidi@ARM.com# notice, this list of conditions and the following disclaimer in the
127650SAli.Saidi@ARM.com# documentation and/or other materials provided with the distribution;
137650SAli.Saidi@ARM.com# neither the name of the copyright holders nor the names of its
142567SN/A# contributors may be used to endorse or promote products derived from
152567SN/A# this software without specific prior written permission.
162567SN/A#
172567SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
182567SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
192567SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
202567SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
212567SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
222567SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
232567SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
242567SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
252567SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
262567SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
272567SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
282567SN/A#
292567SN/A# Authors: Gabe Black
302567SN/A#          Steve Reinhardt
312567SN/A
322567SN/AImport('*')
332567SN/A
342567SN/Aif env['TARGET_ISA'] == 'alpha':
352567SN/A    Source('decoder.cc')
362567SN/A    Source('ev5.cc')
372567SN/A    Source('faults.cc')
382567SN/A    Source('freebsd/system.cc')
392665SN/A    Source('idle_event.cc')
402665SN/A    Source('interrupts.cc')
412567SN/A    Source('ipr.cc')
422567SN/A    Source('isa.cc')
436757SAli.Saidi@ARM.com    Source('kernel_stats.cc')
446757SAli.Saidi@ARM.com    Source('linux/linux.cc')
452567SN/A    Source('linux/process.cc')
462567SN/A    Source('linux/system.cc')
472567SN/A    Source('osfpal.cc')
482567SN/A    Source('pagetable.cc')
498229Snate@binkert.org    Source('process.cc')
506757SAli.Saidi@ARM.com    Source('regredir.cc')
512567SN/A    Source('remote_gdb.cc')
522567SN/A    Source('stacktrace.cc')
532567SN/A    Source('system.cc')
546757SAli.Saidi@ARM.com    Source('tlb.cc')
552567SN/A    Source('tru64/process.cc')
568285SPrakash.Ramrakhyani@arm.com    Source('tru64/system.cc')
577650SAli.Saidi@ARM.com    Source('tru64/tru64.cc')
587650SAli.Saidi@ARM.com    Source('utility.cc')
597650SAli.Saidi@ARM.com    Source('vtophys.cc')
607650SAli.Saidi@ARM.com
617650SAli.Saidi@ARM.com    SimObject('AlphaInterrupts.py')
627650SAli.Saidi@ARM.com    SimObject('AlphaISA.py')
638286SAli.Saidi@ARM.com    SimObject('AlphaSystem.py')
648286SAli.Saidi@ARM.com    SimObject('AlphaTLB.py')
658286SAli.Saidi@ARM.com
668286SAli.Saidi@ARM.com    # Add in files generated by the ISA description.
678286SAli.Saidi@ARM.com    env.ISADesc('isa/main.isa')
682567SN/A