SConscript revision 5597
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 sys
322817Sksewell@umich.edu
334202Sbinkertn@umich.eduImport('*')
342817Sksewell@umich.edu
355192Ssaidi@eecs.umich.eduif 'O3CPU' in env['CPU_MODELS'] or 'OzoneCPU' in env['CPU_MODELS']:
365192Ssaidi@eecs.umich.edu    Source('2bit_local_pred.cc')
375192Ssaidi@eecs.umich.edu    Source('btb.cc')
385192Ssaidi@eecs.umich.edu    Source('ras.cc')
395192Ssaidi@eecs.umich.edu    Source('tournament_pred.cc')
405192Ssaidi@eecs.umich.edu
415192Ssaidi@eecs.umich.edu    TraceFlag('CommitRate')
425192Ssaidi@eecs.umich.edu    TraceFlag('IEW')
435192Ssaidi@eecs.umich.edu    TraceFlag('IQ')
445192Ssaidi@eecs.umich.edu
454202Sbinkertn@umich.eduif 'O3CPU' in env['CPU_MODELS']:
464486Sbinkertn@umich.edu    SimObject('FUPool.py')
474486Sbinkertn@umich.edu    SimObject('FuncUnitConfig.py')
484486Sbinkertn@umich.edu    SimObject('O3CPU.py')
494486Sbinkertn@umich.edu
504202Sbinkertn@umich.edu    Source('base_dyn_inst.cc')
514202Sbinkertn@umich.edu    Source('bpred_unit.cc')
524202Sbinkertn@umich.edu    Source('commit.cc')
534202Sbinkertn@umich.edu    Source('cpu.cc')
545597Sgblack@eecs.umich.edu    Source('cpu_builder.cc')
554202Sbinkertn@umich.edu    Source('decode.cc')
565597Sgblack@eecs.umich.edu    Source('dyn_inst.cc')
574202Sbinkertn@umich.edu    Source('fetch.cc')
584202Sbinkertn@umich.edu    Source('free_list.cc')
594202Sbinkertn@umich.edu    Source('fu_pool.cc')
604202Sbinkertn@umich.edu    Source('iew.cc')
614202Sbinkertn@umich.edu    Source('inst_queue.cc')
624202Sbinkertn@umich.edu    Source('lsq.cc')
634202Sbinkertn@umich.edu    Source('lsq_unit.cc')
644202Sbinkertn@umich.edu    Source('mem_dep_unit.cc')
654202Sbinkertn@umich.edu    Source('rename.cc')
664202Sbinkertn@umich.edu    Source('rename_map.cc')
674202Sbinkertn@umich.edu    Source('rob.cc')
684202Sbinkertn@umich.edu    Source('scoreboard.cc')
694202Sbinkertn@umich.edu    Source('store_set.cc')
705597Sgblack@eecs.umich.edu    Source('thread_context.cc')
712817Sksewell@umich.edu
725192Ssaidi@eecs.umich.edu    TraceFlag('FreeList')
735192Ssaidi@eecs.umich.edu    TraceFlag('LSQ')
745192Ssaidi@eecs.umich.edu    TraceFlag('LSQUnit')
755192Ssaidi@eecs.umich.edu    TraceFlag('MemDepUnit')
765192Ssaidi@eecs.umich.edu    TraceFlag('O3CPU')
775192Ssaidi@eecs.umich.edu    TraceFlag('ROB')
785192Ssaidi@eecs.umich.edu    TraceFlag('Rename')
795192Ssaidi@eecs.umich.edu    TraceFlag('Scoreboard')
805192Ssaidi@eecs.umich.edu    TraceFlag('StoreSet')
815192Ssaidi@eecs.umich.edu    TraceFlag('Writeback')
825192Ssaidi@eecs.umich.edu
835192Ssaidi@eecs.umich.edu    CompoundFlag('O3CPUAll', [ 'Fetch', 'Decode', 'Rename', 'IEW', 'Commit',
845192Ssaidi@eecs.umich.edu        'IQ', 'ROB', 'FreeList', 'LSQ', 'LSQUnit', 'StoreSet', 'MemDepUnit',
855192Ssaidi@eecs.umich.edu        'DynInst', 'O3CPU', 'Activity', 'Scoreboard', 'Writeback' ])
865192Ssaidi@eecs.umich.edu
874202Sbinkertn@umich.edu    if env['USE_CHECKER']:
884497Sbinkertn@umich.edu        SimObject('O3Checker.py')
894202Sbinkertn@umich.edu        Source('checker_builder.cc')
90