SConscript revision 2761
12155SN/A# -*- mode:python -*-
22155SN/A
32155SN/A# Copyright (c) 2006 The Regents of The University of Michigan
42155SN/A# All rights reserved.
52155SN/A#
62155SN/A# Redistribution and use in source and binary forms, with or without
72155SN/A# modification, are permitted provided that the following conditions are
82155SN/A# met: redistributions of source code must retain the above copyright
92155SN/A# notice, this list of conditions and the following disclaimer;
102155SN/A# redistributions in binary form must reproduce the above copyright
112155SN/A# notice, this list of conditions and the following disclaimer in the
122155SN/A# documentation and/or other materials provided with the distribution;
132155SN/A# neither the name of the copyright holders nor the names of its
142155SN/A# contributors may be used to endorse or promote products derived from
152155SN/A# this software without specific prior written permission.
162155SN/A#
172155SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
182155SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
192155SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
202155SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
212155SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
222155SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
232155SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
242155SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
252155SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
262155SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
272155SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
282155SN/A#
292155SN/A# Authors: Steve Reinhardt
302155SN/A
312155SN/Aimport os
322155SN/Aimport os.path
332155SN/A
342155SN/A# Import build environment variable from SConstruct.
352178SN/AImport('env')
362178SN/A
372178SN/A#################################################################
382178SN/A#
392178SN/A# Generate StaticInst execute() method signatures.
402178SN/A#
412178SN/A# There must be one signature for each CPU model compiled in.
422178SN/A# Since the set of compiled-in models is flexible, we generate a
432178SN/A# header containing the appropriate set of signatures on the fly.
442178SN/A#
452178SN/A#################################################################
462178SN/A
472155SN/A# CPU model-specific data is contained in cpu_models.py
482178SN/A# Convert to SCons File node to get path handling
492155SN/Amodels_db = File('cpu_models.py')
502155SN/A# slurp in contents of file
512178SN/Aexecfile(models_db.srcnode().abspath)
522155SN/A
532155SN/A# Template for execute() signature.
542623SN/Aexec_sig_template = '''
552623SN/Avirtual Fault execute(%s *xc, Trace::InstRecord *traceData) const = 0;
562623SN/Avirtual Fault initiateAcc(%s *xc, Trace::InstRecord *traceData) const
572623SN/A{ panic("initiateAcc not defined!"); };
582623SN/Avirtual Fault completeAcc(Packet *pkt, %s *xc,
592155SN/A                          Trace::InstRecord *traceData) const
602155SN/A{ panic("completeAcc not defined!"); };
612292SN/A'''
622292SN/A
632292SN/Amem_ini_sig_template = '''
642292SN/Avirtual Fault initiateAcc(%s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); };
652292SN/A'''
662292SN/A
672292SN/Amem_comp_sig_template = '''
682292SN/Avirtual Fault completeAcc(uint8_t *data, %s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); return NoFault; };
692178SN/A'''
702155SN/A
712155SN/A# Generate header.  
722155SN/Adef gen_cpu_exec_signatures(target, source, env):
732155SN/A    f = open(str(target[0]), 'w')
742155SN/A    print >> f, '''
752155SN/A#ifndef __CPU_STATIC_INST_EXEC_SIGS_HH__
762155SN/A#define __CPU_STATIC_INST_EXEC_SIGS_HH__
772155SN/A'''
782623SN/A    for cpu in env['CPU_MODELS']:
792155SN/A        xc_type = CpuModel.dict[cpu].strings['CPU_exec_context']
802155SN/A        print >> f, exec_sig_template % (xc_type, xc_type, xc_type)
812155SN/A    print >> f, '''
822155SN/A#endif  // __CPU_STATIC_INST_EXEC_SIGS_HH__
832178SN/A'''
842178SN/A
852178SN/A# Generate string that gets printed when header is rebuilt
862178SN/Adef gen_sigs_string(target, source, env):
872178SN/A    return "Generating static_inst_exec_sigs.hh: " \
882178SN/A           + ', '.join(env['CPU_MODELS'])
892178SN/A
902178SN/A# Add command to generate header to environment.
912178SN/Aenv.Command('static_inst_exec_sigs.hh', models_db,
922178SN/A            Action(gen_cpu_exec_signatures, gen_sigs_string,
932178SN/A                   varlist = ['CPU_MODELS']))
942178SN/A
952178SN/A# List of suppported CPUs by the Checker.  Errors out if USE_CHECKER=True
962178SN/A# and one of these are not being used.
972178SN/ACheckerSupportedCPUList = ['AlphaO3CPU', 'OzoneCPU']
982178SN/A
992155SN/A#################################################################
1002155SN/A#
1012155SN/A# Include CPU-model-specific files based on set of models
1022623SN/A# specified in CPU_MODELS build option.
1032623SN/A#
1042623SN/A#################################################################
1052623SN/A
1062623SN/Asources = []
1072623SN/A
1082623SN/Aneed_simple_base = False
1092623SN/Aif 'AtomicSimpleCPU' in env['CPU_MODELS']:
1102623SN/A    need_simple_base = True
1112623SN/A    sources += Split('simple/atomic.cc')
1122623SN/A
1132155SN/Aif 'TimingSimpleCPU' in env['CPU_MODELS']:
1142155SN/A    need_simple_base = True
1152155SN/A    sources += Split('simple/timing.cc')
1162155SN/A
1172155SN/Aif need_simple_base:
1182155SN/A    sources += Split('simple/base.cc')
1192669Sktlim@umich.edu
1202155SN/Aif 'FastCPU' in env['CPU_MODELS']:
1212155SN/A    sources += Split('fast/cpu.cc')
1222155SN/A
1232155SN/Aif 'AlphaO3CPU' in env['CPU_MODELS']:
1242155SN/A    sources += Split('''
1252155SN/A        base_dyn_inst.cc
1262155SN/A        o3/2bit_local_pred.cc
1272155SN/A        o3/alpha_dyn_inst.cc
1282155SN/A        o3/alpha_cpu.cc
1292155SN/A        o3/alpha_cpu_builder.cc
1302292SN/A        o3/bpred_unit.cc
1312155SN/A        o3/btb.cc
1322155SN/A        o3/commit.cc
1332155SN/A        o3/decode.cc
1342292SN/A        o3/fetch.cc
1352292SN/A        o3/free_list.cc
1362155SN/A        o3/fu_pool.cc
1372155SN/A        o3/cpu.cc
1382155SN/A        o3/iew.cc
1392155SN/A        o3/inst_queue.cc
1402155SN/A        o3/lsq_unit.cc
1412292SN/A        o3/lsq.cc
1422155SN/A        o3/mem_dep_unit.cc
1432155SN/A        o3/ras.cc
1442155SN/A        o3/rename.cc
1452155SN/A        o3/rename_map.cc
1462292SN/A        o3/rob.cc
1472292SN/A        o3/scoreboard.cc
1482292SN/A        o3/store_set.cc
1492292SN/A        o3/tournament_pred.cc
1502292SN/A        ''')
1512292SN/A    if 'CheckerCPU' in env['CPU_MODELS']:
1522292SN/A        sources += Split('checker/o3_builder.cc')
1532292SN/A
1542292SN/Aif 'OzoneSimpleCPU' in env['CPU_MODELS']:
1552292SN/A    sources += Split('''
1562292SN/A        ozone/cpu.cc
1572292SN/A        ozone/cpu_builder.cc
1582292SN/A        ozone/dyn_inst.cc
1592292SN/A        ozone/front_end.cc
1602297SN/A        ozone/inorder_back_end.cc
1612297SN/A        ozone/inst_queue.cc
1622292SN/A        ozone/rename_table.cc
1632292SN/A        ''')
1642315SN/A    if 'CheckerCPU' in env['CPU_MODELS']:
1652315SN/A        sources += Split('checker/ozone_builder.cc')
1662315SN/A
1672315SN/Aif 'OzoneCPU' in env['CPU_MODELS']:
1682315SN/A    sources += Split('''
1692315SN/A        ozone/lsq_unit.cc
1702155SN/A        ozone/lw_back_end.cc
1712155SN/A        ozone/lw_lsq.cc
1722155SN/A        ''')
1732155SN/A
1742155SN/Aif 'CheckerCPU' in env['CPU_MODELS']:
1752155SN/A    sources += Split('checker/cpu.cc')
1762155SN/A    checker_supports = False
1772155SN/A    for i in CheckerSupportedCPUList:
1782155SN/A        if i in env['CPU_MODELS']:
179            checker_supports = True
180    if not checker_supports:
181        print "Checker only supports CPU models %s, please " \
182              "set USE_CHECKER=False or use one of those CPU models" \
183              % CheckerSupportedCPUList
184        Exit(1)
185
186
187# FullCPU sources are included from src/SConscript since they're not
188# below this point in the file hierarchy.
189
190# Convert file names to SCons File objects.  This takes care of the
191# path relative to the top of the directory tree.
192sources = [File(s) for s in sources]
193
194Return('sources')
195
196