SConscript revision 11424:e07fd01651f3
1955SN/A# -*- mode:python -*- 2955SN/A 37816Ssteve.reinhardt@amd.com# Copyright (c) 2006 The Regents of The University of Michigan 45871Snate@binkert.org# All rights reserved. 51762SN/A# 6955SN/A# Redistribution and use in source and binary forms, with or without 7955SN/A# modification, are permitted provided that the following conditions are 8955SN/A# met: redistributions of source code must retain the above copyright 9955SN/A# notice, this list of conditions and the following disclaimer; 10955SN/A# redistributions in binary form must reproduce the above copyright 11955SN/A# notice, this list of conditions and the following disclaimer in the 12955SN/A# documentation and/or other materials provided with the distribution; 13955SN/A# neither the name of the copyright holders nor the names of its 14955SN/A# contributors may be used to endorse or promote products derived from 15955SN/A# this software without specific prior written permission. 16955SN/A# 17955SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 18955SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 19955SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20955SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 21955SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22955SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23955SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24955SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25955SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26955SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27955SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28955SN/A# 29955SN/A# Authors: Nathan Binkert 302665Ssaidi@eecs.umich.edu 312665Ssaidi@eecs.umich.eduImport('*') 325863Snate@binkert.org 33955SN/ASimObject('ClockedObject.py') 34955SN/ASimObject('TickedObject.py') 35955SN/ASimObject('Root.py') 36955SN/ASimObject('ClockDomain.py') 37955SN/ASimObject('VoltageDomain.py') 388878Ssteve.reinhardt@amd.comSimObject('System.py') 392632Sstever@eecs.umich.eduSimObject('DVFSHandler.py') 408878Ssteve.reinhardt@amd.comSimObject('SubSystem.py') 412632Sstever@eecs.umich.edu 42955SN/ASource('arguments.cc') 438878Ssteve.reinhardt@amd.comSource('async.cc') 442632Sstever@eecs.umich.eduSource('backtrace_%s.cc' % env['BACKTRACE_IMPL']) 452761Sstever@eecs.umich.eduSource('core.cc') 462632Sstever@eecs.umich.eduSource('tags.cc') 472632Sstever@eecs.umich.eduSource('cxx_config.cc') 482632Sstever@eecs.umich.eduSource('cxx_manager.cc') 492761Sstever@eecs.umich.eduSource('cxx_config_ini.cc') 502761Sstever@eecs.umich.eduSource('debug.cc') 512761Sstever@eecs.umich.eduSource('py_interact.cc', skip_no_python=True) 528878Ssteve.reinhardt@amd.comSource('eventq.cc') 538878Ssteve.reinhardt@amd.comSource('global_event.cc') 542761Sstever@eecs.umich.eduSource('init.cc', skip_no_python=True) 552761Sstever@eecs.umich.eduSource('init_signals.cc') 562761Sstever@eecs.umich.eduSource('main.cc', main=True, skip_lib=True) 572761Sstever@eecs.umich.eduSource('root.cc') 582761Sstever@eecs.umich.eduSource('serialize.cc') 598878Ssteve.reinhardt@amd.comSource('drain.cc') 608878Ssteve.reinhardt@amd.comSource('sim_events.cc') 612632Sstever@eecs.umich.eduSource('sim_object.cc') 622632Sstever@eecs.umich.eduSource('sub_system.cc') 638878Ssteve.reinhardt@amd.comSource('ticked_object.cc') 648878Ssteve.reinhardt@amd.comSource('simulate.cc') 652632Sstever@eecs.umich.eduSource('stat_control.cc') 66955SN/ASource('stat_register.cc', skip_no_python=True) 67955SN/ASource('clock_domain.cc') 68955SN/ASource('voltage_domain.cc') 695863Snate@binkert.orgSource('linear_solver.cc') 705863Snate@binkert.orgSource('system.cc') 715863Snate@binkert.orgSource('dvfs_handler.cc') 725863Snate@binkert.orgSource('clocked_object.cc') 735863Snate@binkert.orgSource('mathexpr.cc') 745863Snate@binkert.org 755863Snate@binkert.orgif env['TARGET_ISA'] != 'null': 765863Snate@binkert.org SimObject('InstTracer.py') 775863Snate@binkert.org SimObject('Process.py') 785863Snate@binkert.org Source('faults.cc') 795863Snate@binkert.org Source('process.cc') 808878Ssteve.reinhardt@amd.com Source('fd_entry.cc') 815863Snate@binkert.org Source('pseudo_inst.cc') 825863Snate@binkert.org Source('syscall_emul.cc') 835863Snate@binkert.org 845863Snate@binkert.orgDebugFlag('Checkpoint') 855863Snate@binkert.orgDebugFlag('Config') 865863Snate@binkert.orgDebugFlag('CxxConfig') 875863Snate@binkert.orgDebugFlag('Drain') 885863Snate@binkert.orgDebugFlag('Event') 895863Snate@binkert.orgDebugFlag('Fault') 905863Snate@binkert.orgDebugFlag('Flow') 915863Snate@binkert.orgDebugFlag('IPI') 925863Snate@binkert.orgDebugFlag('IPR') 935863Snate@binkert.orgDebugFlag('Interrupt') 945863Snate@binkert.orgDebugFlag('Loader') 955863Snate@binkert.orgDebugFlag('PseudoInst') 968878Ssteve.reinhardt@amd.comDebugFlag('Stack') 975863Snate@binkert.orgDebugFlag('SyscallBase') 985863Snate@binkert.orgDebugFlag('SyscallVerbose') 995863Snate@binkert.orgDebugFlag('TimeSync') 1006654Snate@binkert.orgDebugFlag('Thread') 101955SN/ADebugFlag('Timer') 1025396Ssaidi@eecs.umich.eduDebugFlag('VtoPhys') 1035863Snate@binkert.orgDebugFlag('WorkItems') 1045863Snate@binkert.orgDebugFlag('ClockDomain') 1054202Sbinkertn@umich.eduDebugFlag('VoltageDomain') 1065863Snate@binkert.orgDebugFlag('DVFS') 1075863Snate@binkert.org 1085863Snate@binkert.orgCompoundFlag('SyscallAll', [ 'SyscallBase', 'SyscallVerbose']) 1095863Snate@binkert.org