SConscript revision 6313
12023SN/A# -*- mode:python -*-
22023SN/A
32023SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan
42023SN/A# All rights reserved.
52023SN/A#
62023SN/A# Redistribution and use in source and binary forms, with or without
72023SN/A# modification, are permitted provided that the following conditions are
82023SN/A# met: redistributions of source code must retain the above copyright
92023SN/A# notice, this list of conditions and the following disclaimer;
102023SN/A# redistributions in binary form must reproduce the above copyright
112023SN/A# notice, this list of conditions and the following disclaimer in the
122023SN/A# documentation and/or other materials provided with the distribution;
132023SN/A# neither the name of the copyright holders nor the names of its
142023SN/A# contributors may be used to endorse or promote products derived from
152023SN/A# this software without specific prior written permission.
162023SN/A#
172023SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
182023SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
192023SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
202023SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
212023SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
222023SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
232023SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
242023SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
252023SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
262023SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
272023SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
282665Ssaidi@eecs.umich.edu#
292665Ssaidi@eecs.umich.edu# Authors: Gabe Black
302665Ssaidi@eecs.umich.edu#          Steve Reinhardt
312023SN/A
324202Sbinkertn@umich.eduImport('*')
332023SN/A
344202Sbinkertn@umich.eduif env['TARGET_ISA'] == 'alpha':
354997Sgblack@eecs.umich.edu    Source('ev5.cc')
364202Sbinkertn@umich.edu    Source('faults.cc')
374202Sbinkertn@umich.edu    Source('floatregfile.cc')
384202Sbinkertn@umich.edu    Source('intregfile.cc')
394997Sgblack@eecs.umich.edu    Source('ipr.cc')
406313Sgblack@eecs.umich.edu    Source('isa.cc')
414202Sbinkertn@umich.edu    Source('miscregfile.cc')
424997Sgblack@eecs.umich.edu    Source('pagetable.cc')
434202Sbinkertn@umich.edu    Source('regfile.cc')
444202Sbinkertn@umich.edu    Source('remote_gdb.cc')
454997Sgblack@eecs.umich.edu    Source('tlb.cc')
464826Ssaidi@eecs.umich.edu    Source('utility.cc')
472023SN/A
484997Sgblack@eecs.umich.edu    SimObject('AlphaTLB.py')
494997Sgblack@eecs.umich.edu
504202Sbinkertn@umich.edu    if env['FULL_SYSTEM']:
515647Sgblack@eecs.umich.edu        SimObject('AlphaInterrupts.py')
524486Sbinkertn@umich.edu        SimObject('AlphaSystem.py')
534486Sbinkertn@umich.edu
544202Sbinkertn@umich.edu        Source('idle_event.cc')
555647Sgblack@eecs.umich.edu        Source('interrupts.cc')
564202Sbinkertn@umich.edu        Source('kernel_stats.cc')
574202Sbinkertn@umich.edu        Source('osfpal.cc')
584202Sbinkertn@umich.edu        Source('stacktrace.cc')
594202Sbinkertn@umich.edu        Source('system.cc')
604202Sbinkertn@umich.edu        Source('vtophys.cc')
612023SN/A
624202Sbinkertn@umich.edu        Source('freebsd/system.cc')
634202Sbinkertn@umich.edu        Source('linux/system.cc')
644202Sbinkertn@umich.edu        Source('tru64/system.cc')
652023SN/A
664202Sbinkertn@umich.edu    else:
674202Sbinkertn@umich.edu        Source('process.cc')
682023SN/A
694202Sbinkertn@umich.edu        Source('linux/linux.cc')
704202Sbinkertn@umich.edu        Source('linux/process.cc')
712023SN/A
724202Sbinkertn@umich.edu        Source('tru64/tru64.cc')
734202Sbinkertn@umich.edu        Source('tru64/process.cc')
742023SN/A
754202Sbinkertn@umich.edu    # Add in files generated by the ISA description.
764202Sbinkertn@umich.edu    isa_desc_files = env.ISADesc('isa/main.isa')
774202Sbinkertn@umich.edu    # Only non-header files need to be compiled.
784202Sbinkertn@umich.edu    for f in isa_desc_files:
794202Sbinkertn@umich.edu        if not f.path.endswith('.hh'):
804202Sbinkertn@umich.edu            Source(f)
81