SConscript revision 5604
12139SN/A# -*- mode:python -*- 22139SN/A 32139SN/A# Copyright (c) 2006 The Regents of The University of Michigan 42139SN/A# All rights reserved. 52139SN/A# 62139SN/A# Redistribution and use in source and binary forms, with or without 72139SN/A# modification, are permitted provided that the following conditions are 82139SN/A# met: redistributions of source code must retain the above copyright 92139SN/A# notice, this list of conditions and the following disclaimer; 102139SN/A# redistributions in binary form must reproduce the above copyright 112139SN/A# notice, this list of conditions and the following disclaimer in the 122139SN/A# documentation and/or other materials provided with the distribution; 132139SN/A# neither the name of the copyright holders nor the names of its 142139SN/A# contributors may be used to endorse or promote products derived from 152139SN/A# this software without specific prior written permission. 162139SN/A# 172139SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 182139SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 192139SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 202139SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 212139SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 222139SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 232139SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 242139SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 252139SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 262139SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 272139SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 282665Ssaidi@eecs.umich.edu# 292665Ssaidi@eecs.umich.edu# Authors: Nathan Binkert 302139SN/A 314202Sbinkertn@umich.eduImport('*') 328961Sgblack@eecs.umich.edu 3310196SCurtis.Dunham@arm.comSimObject('Root.py') 342139SN/ASimObject('System.py') 354202Sbinkertn@umich.eduSimObject('InstTracer.py') 362152SN/A 372152SN/ASource('async.cc') 382139SN/ASource('compile_info.cc') 392139SN/ASource('core.cc') 402139SN/ASource('debug.cc') 412139SN/ASource('eventq.cc') 422139SN/ASource('faults.cc') 432152SN/ASource('init.cc') 442152SN/ABinSource('main.cc') 452139SN/ASource('root.cc') 462139SN/ASource('serialize.cc') 472139SN/ASource('sim_events.cc') 489020Sgblack@eecs.umich.eduSource('sim_object.cc') 494781Snate@binkert.orgSource('simulate.cc') 507799Sgblack@eecs.umich.eduSource('startup.cc') 514781Snate@binkert.orgSource('stat_control.cc') 524781Snate@binkert.orgSource('system.cc') 533170Sstever@eecs.umich.edu 545664Sgblack@eecs.umich.eduif env['FULL_SYSTEM']: 558105Sgblack@eecs.umich.edu Source('arguments.cc') 566179Sksewell@umich.edu Source('pseudo_inst.cc') 574781Snate@binkert.orgelse: 586329Sgblack@eecs.umich.edu Source('tlb.cc') 594781Snate@binkert.org SimObject('Process.py') 604781Snate@binkert.org 614781Snate@binkert.org Source('process.cc') 624781Snate@binkert.org Source('syscall_emul.cc') 634781Snate@binkert.org 644781Snate@binkert.orgTraceFlag('Config') 652139SN/ATraceFlag('Event') 662139SN/ATraceFlag('Fault') 673546Sgblack@eecs.umich.eduTraceFlag('Flow') 684202Sbinkertn@umich.eduTraceFlag('IPI') 692152SN/ATraceFlag('IPR') 702152SN/ATraceFlag('Interrupt') 712152SN/ATraceFlag('Loader') 722152SN/ATraceFlag('Stack') 732152SN/ATraceFlag('SyscallVerbose') 742152SN/ATraceFlag('TLB') 752152SN/ATraceFlag('Thread') 762152SN/ATraceFlag('Timer') 772152SN/ATraceFlag('VtoPhys') 782152SN/A