SConscript revision 5337
12381SN/A# -*- mode:python -*-
22381SN/A
32381SN/A# Copyright (c) 2006 The Regents of The University of Michigan
42381SN/A# All rights reserved.
52381SN/A#
62381SN/A# Redistribution and use in source and binary forms, with or without
72381SN/A# modification, are permitted provided that the following conditions are
82381SN/A# met: redistributions of source code must retain the above copyright
92381SN/A# notice, this list of conditions and the following disclaimer;
102381SN/A# redistributions in binary form must reproduce the above copyright
112381SN/A# notice, this list of conditions and the following disclaimer in the
122381SN/A# documentation and/or other materials provided with the distribution;
132381SN/A# neither the name of the copyright holders nor the names of its
142381SN/A# contributors may be used to endorse or promote products derived from
152381SN/A# this software without specific prior written permission.
162381SN/A#
172381SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
182381SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
192381SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
202381SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
212381SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
222381SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
232381SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
242381SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
252381SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
262381SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
272665Ssaidi@eecs.umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
282665Ssaidi@eecs.umich.edu#
292381SN/A# Authors: Nathan Binkert
302381SN/A
312381SN/AImport('*')
322381SN/A
332982Sstever@eecs.umich.eduSimObject('Root.py')
342381SN/ASimObject('System.py')
352381SN/ASimObject('InstTracer.py')
362381SN/A
372381SN/ASource('async.cc')
382381SN/ASource('core.cc')
392381SN/ASource('debug.cc')
402381SN/ASource('eventq.cc')
412381SN/ASource('faults.cc')
422381SN/ASource('main.cc')
432381SN/ASource('root.cc')
442381SN/ASource('serialize.cc')
452381SN/ASource('sim_events.cc')
462439SN/ASource('sim_object.cc')
472381SN/ASource('simulate.cc')
482381SN/ASource('startup.cc')
492381SN/ASource('stat_control.cc')
502381SN/ASource('system.cc')
512407SN/A
522407SN/Aif env['FULL_SYSTEM']:
532407SN/A    Source('arguments.cc')
542407SN/A    Source('pseudo_inst.cc')
552407SN/Aelse:
562407SN/A    Source('tlb.cc')
572407SN/A    SimObject('Process.py')
582407SN/A
592521SN/A    Source('process.cc')
602407SN/A    Source('syscall_emul.cc')
612381SN/A
622381SN/ATraceFlag('Config')
632381SN/ATraceFlag('Event')
642381SN/ATraceFlag('Fault')
652381SN/ATraceFlag('Flow')
662381SN/ATraceFlag('IPI')
672381SN/ATraceFlag('IPR')
682381SN/ATraceFlag('Interrupt')
692381SN/ATraceFlag('Loader')
702381SN/ATraceFlag('Stack')
712381SN/ATraceFlag('SyscallVerbose')
722381SN/ATraceFlag('TLB')
732381SN/ATraceFlag('Thread')
742640Sstever@eecs.umich.eduTraceFlag('Timer')
752640Sstever@eecs.umich.eduTraceFlag('VtoPhys')
762640Sstever@eecs.umich.edu