SConscript revision 10996
12SN/A# -*- mode:python -*-
22188SN/A
32SN/A# Copyright (c) 2006 The Regents of The University of Michigan
42SN/A# All rights reserved.
52SN/A#
62SN/A# Redistribution and use in source and binary forms, with or without
72SN/A# modification, are permitted provided that the following conditions are
82SN/A# met: redistributions of source code must retain the above copyright
92SN/A# notice, this list of conditions and the following disclaimer;
102SN/A# redistributions in binary form must reproduce the above copyright
112SN/A# notice, this list of conditions and the following disclaimer in the
122SN/A# documentation and/or other materials provided with the distribution;
132SN/A# neither the name of the copyright holders nor the names of its
142SN/A# contributors may be used to endorse or promote products derived from
152SN/A# this software without specific prior written permission.
162SN/A#
172SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
182SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
192SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
202SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
212SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
222SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
232SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
242SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
252SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
262SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
272665SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
282665SN/A#
292665SN/A# Authors: Nathan Binkert
302665SN/A
312665SN/AImport('*')
322SN/A
332SN/ASimObject('ClockedObject.py')
342SN/ASimObject('TickedObject.py')
352SN/ASimObject('Root.py')
362465SN/ASimObject('ClockDomain.py')
371717SN/ASimObject('VoltageDomain.py')
382683Sktlim@umich.eduSimObject('System.py')
392680SN/ASimObject('DVFSHandler.py')
402SN/ASimObject('SubSystem.py')
411858SN/A
421917SN/ASource('arguments.cc')
431070SN/ASource('async.cc')
441917SN/ASource('core.cc')
452188SN/ASource('cxx_config.cc')
461917SN/ASource('cxx_manager.cc')
472290SN/ASource('cxx_config_ini.cc')
481070SN/ASource('debug.cc')
491070SN/ASource('py_interact.cc', skip_no_python=True)
501917SN/ASource('eventq.cc')
512170SN/ASource('global_event.cc')
522SN/ASource('init.cc', skip_no_python=True)
53360SN/ASource('init_signals.cc')
542519SN/ASource('main.cc', main=True, skip_lib=True)
552420SN/ASource('root.cc')
562SN/ASource('serialize.cc')
572SN/ASource('drain.cc')
582SN/ASource('sim_events.cc')
592SN/ASource('sim_object.cc')
602SN/ASource('sub_system.cc')
611858SN/ASource('ticked_object.cc')
622683Sktlim@umich.eduSource('simulate.cc')
632683Sktlim@umich.eduSource('stat_control.cc')
642683Sktlim@umich.eduSource('stat_register.cc', skip_no_python=True)
652683Sktlim@umich.eduSource('clock_domain.cc')
662683Sktlim@umich.eduSource('voltage_domain.cc')
672521SN/ASource('system.cc')
682SN/ASource('dvfs_handler.cc')
692683Sktlim@umich.edu
702190SN/Aif env['TARGET_ISA'] != 'null':
712680SN/A    SimObject('InstTracer.py')
722290SN/A    SimObject('Process.py')
732526SN/A    Source('faults.cc')
741917SN/A    Source('process.cc')
751917SN/A    Source('fd_entry.cc')
761982SN/A    Source('pseudo_inst.cc')
771917SN/A    Source('syscall_emul.cc')
782683Sktlim@umich.edu
792683Sktlim@umich.eduDebugFlag('Checkpoint')
801917SN/ADebugFlag('Config')
811917SN/ADebugFlag('CxxConfig')
821917SN/ADebugFlag('Drain')
831917SN/ADebugFlag('Event')
841917SN/ADebugFlag('Fault')
851917SN/ADebugFlag('Flow')
861917SN/ADebugFlag('IPI')
871917SN/ADebugFlag('IPR')
882521SN/ADebugFlag('Interrupt')
892341SN/ADebugFlag('Loader')
902341SN/ADebugFlag('PseudoInst')
912341SN/ADebugFlag('Stack')
922341SN/ADebugFlag('SyscallVerbose')
932341SN/ADebugFlag('TimeSync')
942521SN/ADebugFlag('Thread')
952640SN/ADebugFlag('Timer')
962683Sktlim@umich.eduDebugFlag('VtoPhys')
972521SN/ADebugFlag('WorkItems')
982521SN/ADebugFlag('ClockDomain')
992521SN/ADebugFlag('VoltageDomain')
1002521SN/ADebugFlag('DVFS')
1012640SN/A