SConscript revision 8615
12817Sksewell@umich.edu# -*- mode:python -*-
22817Sksewell@umich.edu
32817Sksewell@umich.edu# Copyright (c) 2006 The Regents of The University of Michigan
42817Sksewell@umich.edu# All rights reserved.
52817Sksewell@umich.edu#
62817Sksewell@umich.edu# Redistribution and use in source and binary forms, with or without
72817Sksewell@umich.edu# modification, are permitted provided that the following conditions are
82817Sksewell@umich.edu# met: redistributions of source code must retain the above copyright
92817Sksewell@umich.edu# notice, this list of conditions and the following disclaimer;
102817Sksewell@umich.edu# redistributions in binary form must reproduce the above copyright
112817Sksewell@umich.edu# notice, this list of conditions and the following disclaimer in the
122817Sksewell@umich.edu# documentation and/or other materials provided with the distribution;
132817Sksewell@umich.edu# neither the name of the copyright holders nor the names of its
142817Sksewell@umich.edu# contributors may be used to endorse or promote products derived from
152817Sksewell@umich.edu# this software without specific prior written permission.
162817Sksewell@umich.edu#
172817Sksewell@umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
182817Sksewell@umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
192817Sksewell@umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
202817Sksewell@umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
212817Sksewell@umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
222817Sksewell@umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
232817Sksewell@umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
242817Sksewell@umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
252817Sksewell@umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
262817Sksewell@umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
272817Sksewell@umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
282817Sksewell@umich.edu#
294202Sbinkertn@umich.edu# Authors: Nathan Binkert
302817Sksewell@umich.edu
312817Sksewell@umich.eduImport('*')
322817Sksewell@umich.edu
334202Sbinkertn@umich.eduSimObject('Bridge.py')
342817Sksewell@umich.eduSimObject('Bus.py')
355192Ssaidi@eecs.umich.eduSimObject('MemObject.py')
365192Ssaidi@eecs.umich.edu
375192Ssaidi@eecs.umich.eduSource('bridge.cc')
385192Ssaidi@eecs.umich.eduSource('bus.cc')
395192Ssaidi@eecs.umich.eduSource('mem_object.cc')
404202Sbinkertn@umich.eduSource('packet.cc')
414486Sbinkertn@umich.eduSource('port.cc')
424486Sbinkertn@umich.eduSource('tport.cc')
434486Sbinkertn@umich.eduSource('mport.cc')
444486Sbinkertn@umich.edu
454202Sbinkertn@umich.eduif env['TARGET_ISA'] != 'no':
464202Sbinkertn@umich.edu    SimObject('PhysicalMemory.py')
474202Sbinkertn@umich.edu    Source('dram.cc')
484202Sbinkertn@umich.edu    Source('physical.cc')
495597Sgblack@eecs.umich.edu
504202Sbinkertn@umich.eduif env['FULL_SYSTEM']:
515597Sgblack@eecs.umich.edu    Source('vport.cc')
524202Sbinkertn@umich.eduelif env['TARGET_ISA'] != 'no':
534202Sbinkertn@umich.edu    Source('page_table.cc')
544202Sbinkertn@umich.edu    Source('translating_port.cc')
554202Sbinkertn@umich.edu
564202Sbinkertn@umich.eduDebugFlag('Bus')
574202Sbinkertn@umich.eduDebugFlag('BusAddrRanges')
584202Sbinkertn@umich.eduDebugFlag('BusBridge')
594202Sbinkertn@umich.eduDebugFlag('LLSC')
604202Sbinkertn@umich.eduDebugFlag('MMU')
614202Sbinkertn@umich.eduDebugFlag('MemoryAccess')
624202Sbinkertn@umich.edu
634202Sbinkertn@umich.eduDebugFlag('ProtocolTrace')
644202Sbinkertn@umich.eduDebugFlag('RubyCache')
655597Sgblack@eecs.umich.eduDebugFlag('RubyDma')
662817Sksewell@umich.eduDebugFlag('RubyGenerated')
675192Ssaidi@eecs.umich.eduDebugFlag('RubyMemory')
685192Ssaidi@eecs.umich.eduDebugFlag('RubyNetwork')
695192Ssaidi@eecs.umich.eduDebugFlag('RubyPort')
705192Ssaidi@eecs.umich.eduDebugFlag('RubyQueue')
715192Ssaidi@eecs.umich.eduDebugFlag('RubySequencer')
725192Ssaidi@eecs.umich.eduDebugFlag('RubySlicc')
735192Ssaidi@eecs.umich.eduDebugFlag('RubyStorebuffer')
745192Ssaidi@eecs.umich.eduDebugFlag('RubyTester')
755192Ssaidi@eecs.umich.edu
765192Ssaidi@eecs.umich.eduCompoundFlag('Ruby', [ 'RubyQueue', 'RubyNetwork', 'RubyTester',
775192Ssaidi@eecs.umich.edu    'RubyGenerated', 'RubySlicc', 'RubyStorebuffer', 'RubyCache',
785192Ssaidi@eecs.umich.edu    'RubyMemory', 'RubyDma', 'RubyPort', 'RubySequencer'])
795192Ssaidi@eecs.umich.edu