SConscript revision 3806
12139SN/A# -*- mode:python -*- 22139SN/A 32139SN/A# Copyright (c) 2006 The Regents of The University of Michigan 42139SN/A# All rights reserved. 52139SN/A# 62139SN/A# Redistribution and use in source and binary forms, with or without 72139SN/A# modification, are permitted provided that the following conditions are 82139SN/A# met: redistributions of source code must retain the above copyright 92139SN/A# notice, this list of conditions and the following disclaimer; 102139SN/A# redistributions in binary form must reproduce the above copyright 112139SN/A# notice, this list of conditions and the following disclaimer in the 122139SN/A# documentation and/or other materials provided with the distribution; 132139SN/A# neither the name of the copyright holders nor the names of its 142139SN/A# contributors may be used to endorse or promote products derived from 152139SN/A# this software without specific prior written permission. 162139SN/A# 172139SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 182139SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 192139SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 202139SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 212139SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 222139SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 232139SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 242139SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 252139SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 262139SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 272139SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 282665Ssaidi@eecs.umich.edu# 292665Ssaidi@eecs.umich.edu# Authors: Steve Reinhardt 302139SN/A 314202Sbinkertn@umich.eduimport os 322139SN/Aimport os.path 334202Sbinkertn@umich.edu 342152SN/A# Import build environment variable from SConstruct. 352152SN/AImport('env') 362139SN/A 372139SN/A################################################################# 382139SN/A# 392139SN/A# Generate StaticInst execute() method signatures. 402139SN/A# 412152SN/A# There must be one signature for each CPU model compiled in. 422152SN/A# Since the set of compiled-in models is flexible, we generate a 432139SN/A# header containing the appropriate set of signatures on the fly. 442139SN/A# 452139SN/A################################################################# 462984Sgblack@eecs.umich.edu 472439SN/A# CPU model-specific data is contained in cpu_models.py 483520Sgblack@eecs.umich.edu# Convert to SCons File node to get path handling 492139SN/Amodels_db = File('cpu_models.py') 503565Sgblack@eecs.umich.edu# slurp in contents of file 513170Sstever@eecs.umich.eduexecfile(models_db.srcnode().abspath) 523806Ssaidi@eecs.umich.edu 532439SN/A# Template for execute() signature. 544182Sgblack@eecs.umich.eduexec_sig_template = ''' 552460SN/Avirtual Fault execute(%s *xc, Trace::InstRecord *traceData) const = 0; 563536Sgblack@eecs.umich.eduvirtual Fault initiateAcc(%s *xc, Trace::InstRecord *traceData) const 572439SN/A{ panic("initiateAcc not defined!"); }; 582972Sgblack@eecs.umich.eduvirtual Fault completeAcc(Packet *pkt, %s *xc, 592171SN/A Trace::InstRecord *traceData) const 602439SN/A{ panic("completeAcc not defined!"); }; 612439SN/A''' 622170SN/A 632139SN/Amem_ini_sig_template = ''' 642139SN/Avirtual Fault initiateAcc(%s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); }; 653546Sgblack@eecs.umich.edu''' 664202Sbinkertn@umich.edu 672152SN/Amem_comp_sig_template = ''' 682152SN/Avirtual Fault completeAcc(uint8_t *data, %s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); return NoFault; }; 692152SN/A''' 702152SN/A 712152SN/A# Generate a temporary CPU list, including the CheckerCPU if 722152SN/A# it's enabled. This isn't used for anything else other than StaticInst 732152SN/A# headers. 742152SN/Atemp_cpu_list = env['CPU_MODELS'][:] 752152SN/A 762152SN/Aif env['USE_CHECKER']: 772152SN/A temp_cpu_list.append('CheckerCPU') 782152SN/A 792504SN/A# Generate header. 802504SN/Adef gen_cpu_exec_signatures(target, source, env): 812504SN/A f = open(str(target[0]), 'w') 822504SN/A print >> f, ''' 832152SN/A#ifndef __CPU_STATIC_INST_EXEC_SIGS_HH__ 842504SN/A#define __CPU_STATIC_INST_EXEC_SIGS_HH__ 852152SN/A''' 862152SN/A for cpu in temp_cpu_list: 872152SN/A xc_type = CpuModel.dict[cpu].strings['CPU_exec_context'] 882152SN/A print >> f, exec_sig_template % (xc_type, xc_type, xc_type) 892152SN/A print >> f, ''' 902152SN/A#endif // __CPU_STATIC_INST_EXEC_SIGS_HH__ 912152SN/A''' 922152SN/A 932632Sstever@eecs.umich.edu# Generate string that gets printed when header is rebuilt 942155SN/Adef gen_sigs_string(target, source, env): 952155SN/A return "Generating static_inst_exec_sigs.hh: " \ 962155SN/A + ', '.join(temp_cpu_list) 972155SN/A 982155SN/A# Add command to generate header to environment. 992155SN/Aenv.Command('static_inst_exec_sigs.hh', models_db, 1004202Sbinkertn@umich.edu Action(gen_cpu_exec_signatures, gen_sigs_string, 1012155SN/A varlist = temp_cpu_list)) 1022155SN/A 1032155SN/Aenv.Depends('static_inst_exec_sigs.hh', Value(env['USE_CHECKER'])) 1042152SN/Aenv.Depends('static_inst_exec_sigs.hh', Value(env['CPU_MODELS'])) 1052766Sktlim@umich.edu 1062766Sktlim@umich.edu# List of suppported CPUs by the Checker. Errors out if USE_CHECKER=True 1072766Sktlim@umich.edu# and one of these are not being used. 1082766Sktlim@umich.eduCheckerSupportedCPUList = ['O3CPU', 'OzoneCPU'] 1092766Sktlim@umich.edu 1102152SN/A################################################################# 1112152SN/A# 1122152SN/A# Include CPU-model-specific files based on set of models 1132155SN/A# specified in CPU_MODELS build option. 1142152SN/A# 1152152SN/A################################################################# 1162718Sstever@eecs.umich.edu 1172921Sktlim@umich.edu# Keep a list of CPU models that support SMT 1182921Sktlim@umich.eduenv['SMT_CPU_MODELS'] = [] 1192921Sktlim@umich.edu 1202921Sktlim@umich.edusources = [] 1212921Sktlim@umich.edu 1222921Sktlim@umich.eduneed_simple_base = False 1232921Sktlim@umich.eduif 'AtomicSimpleCPU' in env['CPU_MODELS']: 1242921Sktlim@umich.edu need_simple_base = True 1252921Sktlim@umich.edu sources += Split('simple/atomic.cc') 1262152SN/A 1272152SN/Aif 'TimingSimpleCPU' in env['CPU_MODELS']: 128 need_simple_base = True 129 sources += Split('simple/timing.cc') 130 131if need_simple_base: 132 sources += Split('simple/base.cc') 133 134if 'FastCPU' in env['CPU_MODELS']: 135 sources += Split('fast/cpu.cc') 136 137need_bp_unit = False 138if 'O3CPU' in env['CPU_MODELS']: 139 need_bp_unit = True 140 sources += SConscript('o3/SConscript', exports = 'env') 141 sources += Split(''' 142 o3/base_dyn_inst.cc 143 o3/bpred_unit.cc 144 o3/commit.cc 145 o3/decode.cc 146 o3/fetch.cc 147 o3/free_list.cc 148 o3/fu_pool.cc 149 o3/cpu.cc 150 o3/iew.cc 151 o3/inst_queue.cc 152 o3/lsq_unit.cc 153 o3/lsq.cc 154 o3/mem_dep_unit.cc 155 o3/rename.cc 156 o3/rename_map.cc 157 o3/rob.cc 158 o3/scoreboard.cc 159 o3/store_set.cc 160 ''') 161 sources += Split('memtest/memtest.cc') 162 if env['USE_CHECKER']: 163 sources += Split('o3/checker_builder.cc') 164 else: 165 env['SMT_CPU_MODELS'].append('O3CPU') # Checker doesn't support SMT right now 166 167if 'OzoneCPU' in env['CPU_MODELS']: 168 need_bp_unit = True 169 sources += Split(''' 170 ozone/base_dyn_inst.cc 171 ozone/bpred_unit.cc 172 ozone/cpu.cc 173 ozone/cpu_builder.cc 174 ozone/dyn_inst.cc 175 ozone/front_end.cc 176 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