SConscript revision 3806
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. 282665Ssaidi@eecs.umich.edu# 292665Ssaidi@eecs.umich.edu# Authors: Steve Reinhardt 302155SN/A 314202Sbinkertn@umich.eduimport os 322155SN/Aimport os.path 332178SN/A 342178SN/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. 442155SN/A# 455865Sksewell@umich.edu################################################################# 466181Sksewell@umich.edu 476181Sksewell@umich.edu# CPU model-specific data is contained in cpu_models.py 485865Sksewell@umich.edu# Convert to SCons File node to get path handling 493918Ssaidi@eecs.umich.edumodels_db = File('cpu_models.py') 505865Sksewell@umich.edu# slurp in contents of file 512623SN/Aexecfile(models_db.srcnode().abspath) 523918Ssaidi@eecs.umich.edu 532155SN/A# Template for execute() signature. 542155SN/Aexec_sig_template = ''' 552292SN/Avirtual Fault execute(%s *xc, Trace::InstRecord *traceData) const = 0; 566181Sksewell@umich.eduvirtual Fault initiateAcc(%s *xc, Trace::InstRecord *traceData) const 576181Sksewell@umich.edu{ panic("initiateAcc not defined!"); }; 583918Ssaidi@eecs.umich.eduvirtual Fault completeAcc(Packet *pkt, %s *xc, 592292SN/A Trace::InstRecord *traceData) const 602292SN/A{ panic("completeAcc not defined!"); }; 612292SN/A''' 623918Ssaidi@eecs.umich.edu 632292SN/Amem_ini_sig_template = ''' 642292SN/Avirtual Fault initiateAcc(%s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); }; 652766Sktlim@umich.edu''' 662766Sktlim@umich.edu 672766Sktlim@umich.edumem_comp_sig_template = ''' 682921Sktlim@umich.eduvirtual Fault completeAcc(uint8_t *data, %s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); return NoFault; }; 692921Sktlim@umich.edu''' 702766Sktlim@umich.edu 712766Sktlim@umich.edu# Generate a temporary CPU list, including the CheckerCPU if 725529Snate@binkert.org# it's enabled. This isn't used for anything else other than StaticInst 732766Sktlim@umich.edu# headers. 744762Snate@binkert.orgtemp_cpu_list = env['CPU_MODELS'][:] 752155SN/A 762155SN/Aif env['USE_CHECKER']: 772155SN/A temp_cpu_list.append('CheckerCPU') 782155SN/A 792155SN/A# Generate header. 802155SN/Adef gen_cpu_exec_signatures(target, source, env): 812766Sktlim@umich.edu f = open(str(target[0]), 'w') 822155SN/A print >> f, ''' 835865Sksewell@umich.edu#ifndef __CPU_STATIC_INST_EXEC_SIGS_HH__ 842155SN/A#define __CPU_STATIC_INST_EXEC_SIGS_HH__ 852155SN/A''' 862155SN/A for cpu in temp_cpu_list: 872155SN/A xc_type = CpuModel.dict[cpu].strings['CPU_exec_context'] 882178SN/A print >> f, exec_sig_template % (xc_type, xc_type, xc_type) 892178SN/A print >> f, ''' 902178SN/A#endif // __CPU_STATIC_INST_EXEC_SIGS_HH__ 912766Sktlim@umich.edu''' 922178SN/A 932178SN/A# Generate string that gets printed when header is rebuilt 946994Snate@binkert.orgdef gen_sigs_string(target, source, env): 952178SN/A return "Generating static_inst_exec_sigs.hh: " \ 962766Sktlim@umich.edu + ', '.join(temp_cpu_list) 972766Sktlim@umich.edu 982766Sktlim@umich.edu# Add command to generate header to environment. 992788Sktlim@umich.eduenv.Command('static_inst_exec_sigs.hh', models_db, 1002178SN/A Action(gen_cpu_exec_signatures, gen_sigs_string, 1012733Sktlim@umich.edu varlist = temp_cpu_list)) 1022733Sktlim@umich.edu 1032817Sksewell@umich.eduenv.Depends('static_inst_exec_sigs.hh', Value(env['USE_CHECKER'])) 1042733Sktlim@umich.eduenv.Depends('static_inst_exec_sigs.hh', Value(env['CPU_MODELS'])) 1054486Sbinkertn@umich.edu 1064486Sbinkertn@umich.edu# List of suppported CPUs by the Checker. Errors out if USE_CHECKER=True 1074776Sgblack@eecs.umich.edu# and one of these are not being used. 1084776Sgblack@eecs.umich.eduCheckerSupportedCPUList = ['O3CPU', 'OzoneCPU'] 1096365Sgblack@eecs.umich.edu 1104486Sbinkertn@umich.edu################################################################# 1114202Sbinkertn@umich.edu# 1124202Sbinkertn@umich.edu# Include CPU-model-specific files based on set of models 1134202Sbinkertn@umich.edu# specified in CPU_MODELS build option. 1144202Sbinkertn@umich.edu# 1154202Sbinkertn@umich.edu################################################################# 1164776Sgblack@eecs.umich.edu 1176365Sgblack@eecs.umich.edu# Keep a list of CPU models that support SMT 1184202Sbinkertn@umich.eduenv['SMT_CPU_MODELS'] = [] 1194202Sbinkertn@umich.edu 1204202Sbinkertn@umich.edusources = [] 1214202Sbinkertn@umich.edu 1225217Ssaidi@eecs.umich.eduneed_simple_base = False 1234202Sbinkertn@umich.eduif 'AtomicSimpleCPU' in env['CPU_MODELS']: 1242155SN/A need_simple_base = True 1254202Sbinkertn@umich.edu sources += Split('simple/atomic.cc') 1264486Sbinkertn@umich.edu 1274486Sbinkertn@umich.eduif 'TimingSimpleCPU' in env['CPU_MODELS']: 1284202Sbinkertn@umich.edu need_simple_base = True 1294202Sbinkertn@umich.edu sources += Split('simple/timing.cc') 1302821Sktlim@umich.edu 1314776Sgblack@eecs.umich.eduif need_simple_base: 1324776Sgblack@eecs.umich.edu sources += Split('simple/base.cc') 1334776Sgblack@eecs.umich.edu 1344776Sgblack@eecs.umich.eduif 'FastCPU' in env['CPU_MODELS']: 1352766Sktlim@umich.edu sources += Split('fast/cpu.cc') 1364202Sbinkertn@umich.edu 1375192Ssaidi@eecs.umich.eduneed_bp_unit = False 1382733Sktlim@umich.eduif 'O3CPU' in env['CPU_MODELS']: 1392733Sktlim@umich.edu need_bp_unit = True 1402733Sktlim@umich.edu sources += SConscript('o3/SConscript', exports = 'env') 1412733Sktlim@umich.edu sources += Split(''' 1422733Sktlim@umich.edu o3/base_dyn_inst.cc 1432874Sktlim@umich.edu o3/bpred_unit.cc 1442874Sktlim@umich.edu o3/commit.cc 1452874Sktlim@umich.edu o3/decode.cc 1464202Sbinkertn@umich.edu o3/fetch.cc 1472733Sktlim@umich.edu o3/free_list.cc 1485192Ssaidi@eecs.umich.edu o3/fu_pool.cc 1495192Ssaidi@eecs.umich.edu o3/cpu.cc 1505192Ssaidi@eecs.umich.edu o3/iew.cc 1515217Ssaidi@eecs.umich.edu o3/inst_queue.cc 1525192Ssaidi@eecs.umich.edu o3/lsq_unit.cc 1535192Ssaidi@eecs.umich.edu o3/lsq.cc 1545192Ssaidi@eecs.umich.edu o3/mem_dep_unit.cc 1555192Ssaidi@eecs.umich.edu o3/rename.cc 1565192Ssaidi@eecs.umich.edu o3/rename_map.cc 1576667Ssteve.reinhardt@amd.com o3/rob.cc 1585192Ssaidi@eecs.umich.edu o3/scoreboard.cc 1595192Ssaidi@eecs.umich.edu o3/store_set.cc 1605192Ssaidi@eecs.umich.edu ''') 1615192Ssaidi@eecs.umich.edu sources += Split('memtest/memtest.cc') 1625192Ssaidi@eecs.umich.edu if env['USE_CHECKER']: 1635192Ssaidi@eecs.umich.edu sources += Split('o3/checker_builder.cc') 1645192Ssaidi@eecs.umich.edu else: 1655192Ssaidi@eecs.umich.edu env['SMT_CPU_MODELS'].append('O3CPU') # Checker doesn't support SMT right now 1665784Sgblack@eecs.umich.edu 1675784Sgblack@eecs.umich.eduif 'OzoneCPU' in env['CPU_MODELS']: 1685192Ssaidi@eecs.umich.edu need_bp_unit = True 1695192Ssaidi@eecs.umich.edu sources += Split(''' 1705192Ssaidi@eecs.umich.edu ozone/base_dyn_inst.cc 1715192Ssaidi@eecs.umich.edu ozone/bpred_unit.cc 1725192Ssaidi@eecs.umich.edu ozone/cpu.cc 1735192Ssaidi@eecs.umich.edu ozone/cpu_builder.cc 1746667Ssteve.reinhardt@amd.com ozone/dyn_inst.cc 1756036Sksewell@umich.edu ozone/front_end.cc 1766667Ssteve.reinhardt@amd.com ozone/lw_back_end.cc 177 ozone/lw_lsq.cc 178 ozone/rename_table.cc 179 ''') 180 if env['USE_CHECKER']: 181 sources += Split('ozone/checker_builder.cc') 182 183if need_bp_unit: 184 sources += Split(''' 185 o3/2bit_local_pred.cc 186 o3/btb.cc 187 o3/ras.cc 188 o3/tournament_pred.cc 189 ''') 190 191if env['USE_CHECKER']: 192 sources += Split('checker/cpu.cc') 193 checker_supports = False 194 for i in CheckerSupportedCPUList: 195 if i in env['CPU_MODELS']: 196 checker_supports = True 197 if not checker_supports: 198 print "Checker only supports CPU models", 199 for i in CheckerSupportedCPUList: 200 print i, 201 print ", please set USE_CHECKER=False or use one of those CPU models" 202 Exit(1) 203 204 205# FullCPU sources are included from src/SConscript since they're not 206# below this point in the file hierarchy. 207 208# Convert file names to SCons File objects. This takes care of the 209# path relative to the top of the directory tree. 210sources = [File(s) for s in sources] 211 212Return('sources') 213 214