SConscript revision 2874
19850Sandreas.hansson@arm.com# -*- mode:python -*- 29850Sandreas.hansson@arm.com 39850Sandreas.hansson@arm.com# Copyright (c) 2006 The Regents of The University of Michigan 49850Sandreas.hansson@arm.com# All rights reserved. 59850Sandreas.hansson@arm.com# 69850Sandreas.hansson@arm.com# Redistribution and use in source and binary forms, with or without 79850Sandreas.hansson@arm.com# modification, are permitted provided that the following conditions are 89850Sandreas.hansson@arm.com# met: redistributions of source code must retain the above copyright 99850Sandreas.hansson@arm.com# notice, this list of conditions and the following disclaimer; 109850Sandreas.hansson@arm.com# redistributions in binary form must reproduce the above copyright 119850Sandreas.hansson@arm.com# notice, this list of conditions and the following disclaimer in the 129850Sandreas.hansson@arm.com# documentation and/or other materials provided with the distribution; 139850Sandreas.hansson@arm.com# neither the name of the copyright holders nor the names of its 149850Sandreas.hansson@arm.com# contributors may be used to endorse or promote products derived from 159850Sandreas.hansson@arm.com# this software without specific prior written permission. 169850Sandreas.hansson@arm.com# 179850Sandreas.hansson@arm.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 189850Sandreas.hansson@arm.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 199850Sandreas.hansson@arm.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 209850Sandreas.hansson@arm.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 219850Sandreas.hansson@arm.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 229850Sandreas.hansson@arm.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 239850Sandreas.hansson@arm.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 249850Sandreas.hansson@arm.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 259850Sandreas.hansson@arm.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 269850Sandreas.hansson@arm.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 279850Sandreas.hansson@arm.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 289850Sandreas.hansson@arm.com# 299850Sandreas.hansson@arm.com# Authors: Steve Reinhardt 309850Sandreas.hansson@arm.com 319850Sandreas.hansson@arm.comimport os 329850Sandreas.hansson@arm.comimport os.path 339850Sandreas.hansson@arm.com 349850Sandreas.hansson@arm.com# Import build environment variable from SConstruct. 359850Sandreas.hansson@arm.comImport('env') 369850Sandreas.hansson@arm.com 379850Sandreas.hansson@arm.com################################################################# 389850Sandreas.hansson@arm.com# 399850Sandreas.hansson@arm.com# Generate StaticInst execute() method signatures. 409850Sandreas.hansson@arm.com# 419850Sandreas.hansson@arm.com# There must be one signature for each CPU model compiled in. 429850Sandreas.hansson@arm.com# Since the set of compiled-in models is flexible, we generate a 439850Sandreas.hansson@arm.com# header containing the appropriate set of signatures on the fly. 449850Sandreas.hansson@arm.com# 459850Sandreas.hansson@arm.com################################################################# 469850Sandreas.hansson@arm.com 479850Sandreas.hansson@arm.com# CPU model-specific data is contained in cpu_models.py 489850Sandreas.hansson@arm.com# Convert to SCons File node to get path handling 499850Sandreas.hansson@arm.commodels_db = File('cpu_models.py') 509850Sandreas.hansson@arm.com# slurp in contents of file 519850Sandreas.hansson@arm.comexecfile(models_db.srcnode().abspath) 529850Sandreas.hansson@arm.com 539850Sandreas.hansson@arm.com# Template for execute() signature. 549850Sandreas.hansson@arm.comexec_sig_template = ''' 559850Sandreas.hansson@arm.comvirtual Fault execute(%s *xc, Trace::InstRecord *traceData) const = 0; 569850Sandreas.hansson@arm.comvirtual Fault initiateAcc(%s *xc, Trace::InstRecord *traceData) const 57{ panic("initiateAcc not defined!"); }; 58virtual Fault completeAcc(Packet *pkt, %s *xc, 59 Trace::InstRecord *traceData) const 60{ panic("completeAcc not defined!"); }; 61''' 62 63mem_ini_sig_template = ''' 64virtual Fault initiateAcc(%s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); }; 65''' 66 67mem_comp_sig_template = ''' 68virtual Fault completeAcc(uint8_t *data, %s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); return NoFault; }; 69''' 70 71# Generate a temporary CPU list, including the CheckerCPU if 72# it's enabled. This isn't used for anything else other than StaticInst 73# headers. 74temp_cpu_list = env['CPU_MODELS'] 75if env['USE_CHECKER']: 76 temp_cpu_list.append('CheckerCPU') 77 78# Generate header. 79def gen_cpu_exec_signatures(target, source, env): 80 f = open(str(target[0]), 'w') 81 print >> f, ''' 82#ifndef __CPU_STATIC_INST_EXEC_SIGS_HH__ 83#define __CPU_STATIC_INST_EXEC_SIGS_HH__ 84''' 85 for cpu in temp_cpu_list: 86 xc_type = CpuModel.dict[cpu].strings['CPU_exec_context'] 87 print >> f, exec_sig_template % (xc_type, xc_type, xc_type) 88 print >> f, ''' 89#endif // __CPU_STATIC_INST_EXEC_SIGS_HH__ 90''' 91 92# Generate string that gets printed when header is rebuilt 93def gen_sigs_string(target, source, env): 94 return "Generating static_inst_exec_sigs.hh: " \ 95 + ', '.join(temp_cpu_list) 96 97# Add command to generate header to environment. 98env.Command('static_inst_exec_sigs.hh', models_db, 99 Action(gen_cpu_exec_signatures, gen_sigs_string, 100 varlist = temp_cpu_list)) 101 102env.Depends('static_inst_exec_sigs.hh', Value(env['USE_CHECKER'])) 103env.Depends('static_inst_exec_sigs.hh', Value(env['CPU_MODELS'])) 104 105# List of suppported CPUs by the Checker. Errors out if USE_CHECKER=True 106# and one of these are not being used. 107CheckerSupportedCPUList = ['O3CPU', 'OzoneCPU'] 108 109################################################################# 110# 111# Include CPU-model-specific files based on set of models 112# specified in CPU_MODELS build option. 113# 114################################################################# 115 116sources = [] 117 118need_simple_base = False 119if 'AtomicSimpleCPU' in env['CPU_MODELS']: 120 need_simple_base = True 121 sources += Split('simple/atomic.cc') 122 123if 'TimingSimpleCPU' in env['CPU_MODELS']: 124 need_simple_base = True 125 sources += Split('simple/timing.cc') 126 127if need_simple_base: 128 sources += Split('simple/base.cc') 129 130if 'FastCPU' in env['CPU_MODELS']: 131 sources += Split('fast/cpu.cc') 132 133need_bp_unit = False 134if 'O3CPU' in env['CPU_MODELS']: 135 need_bp_unit = True 136 sources += SConscript('o3/SConscript', exports = 'env') 137 sources += Split(''' 138 o3/base_dyn_inst.cc 139 o3/bpred_unit.cc 140 o3/commit.cc 141 o3/decode.cc 142 o3/fetch.cc 143 o3/free_list.cc 144 o3/fu_pool.cc 145 o3/cpu.cc 146 o3/iew.cc 147 o3/inst_queue.cc 148 o3/lsq_unit.cc 149 o3/lsq.cc 150 o3/mem_dep_unit.cc 151 o3/rename.cc 152 o3/rename_map.cc 153 o3/rob.cc 154 o3/scoreboard.cc 155 o3/store_set.cc 156 ''') 157 if env['USE_CHECKER']: 158 sources += Split('o3/checker_builder.cc') 159 160if 'OzoneCPU' in env['CPU_MODELS']: 161 need_bp_unit = True 162 sources += Split(''' 163 ozone/base_dyn_inst.cc 164 ozone/bpred_unit.cc 165 ozone/cpu.cc 166 ozone/cpu_builder.cc 167 ozone/dyn_inst.cc 168 ozone/front_end.cc 169 ozone/lw_back_end.cc 170 ozone/lw_lsq.cc 171 ozone/rename_table.cc 172 ''') 173 if env['USE_CHECKER']: 174 sources += Split('ozone/checker_builder.cc') 175 176if need_bp_unit: 177 sources += Split(''' 178 o3/2bit_local_pred.cc 179 o3/btb.cc 180 o3/ras.cc 181 o3/tournament_pred.cc 182 ''') 183 184if env['USE_CHECKER']: 185 sources += Split('checker/cpu.cc') 186 checker_supports = False 187 for i in CheckerSupportedCPUList: 188 if i in env['CPU_MODELS']: 189 checker_supports = True 190 if not checker_supports: 191 print "Checker only supports CPU models", 192 for i in CheckerSupportedCPUList: 193 print i, 194 print ", please set USE_CHECKER=False or use one of those CPU models" 195 Exit(1) 196 197 198# FullCPU sources are included from src/SConscript since they're not 199# below this point in the file hierarchy. 200 201# Convert file names to SCons File objects. This takes care of the 202# path relative to the top of the directory tree. 203sources = [File(s) for s in sources] 204 205Return('sources') 206 207