SConscript revision 2292
112837Sgabeblack@google.com# -*- mode:python -*- 212837Sgabeblack@google.com 312837Sgabeblack@google.com# Copyright (c) 2006 The Regents of The University of Michigan 412837Sgabeblack@google.com# All rights reserved. 512837Sgabeblack@google.com# 612837Sgabeblack@google.com# Redistribution and use in source and binary forms, with or without 712837Sgabeblack@google.com# modification, are permitted provided that the following conditions are 812837Sgabeblack@google.com# met: redistributions of source code must retain the above copyright 912837Sgabeblack@google.com# notice, this list of conditions and the following disclaimer; 1012837Sgabeblack@google.com# redistributions in binary form must reproduce the above copyright 1112837Sgabeblack@google.com# notice, this list of conditions and the following disclaimer in the 1212837Sgabeblack@google.com# documentation and/or other materials provided with the distribution; 1312837Sgabeblack@google.com# neither the name of the copyright holders nor the names of its 1412837Sgabeblack@google.com# contributors may be used to endorse or promote products derived from 1512837Sgabeblack@google.com# this software without specific prior written permission. 1612837Sgabeblack@google.com# 1712837Sgabeblack@google.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 1812837Sgabeblack@google.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 1912837Sgabeblack@google.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 2012837Sgabeblack@google.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 2112837Sgabeblack@google.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 2212837Sgabeblack@google.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 2312837Sgabeblack@google.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 2412837Sgabeblack@google.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 2512837Sgabeblack@google.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 2612837Sgabeblack@google.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 2712837Sgabeblack@google.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 2812837Sgabeblack@google.com 2912837Sgabeblack@google.comimport os 3012837Sgabeblack@google.comimport os.path 3112837Sgabeblack@google.com 3212837Sgabeblack@google.com# Import build environment variable from SConstruct. 3312954Sgabeblack@google.comImport('env') 3412955Sgabeblack@google.com 3512837Sgabeblack@google.com################################################################# 3612863Sgabeblack@google.com# 3712950Sgabeblack@google.com# Generate StaticInst execute() method signatures. 3813207Sgabeblack@google.com# 3912952Sgabeblack@google.com# There must be one signature for each CPU model compiled in. 4012953Sgabeblack@google.com# Since the set of compiled-in models is flexible, we generate a 4113038Sgabeblack@google.com# header containing the appropriate set of signatures on the fly. 4212953Sgabeblack@google.com# 4313072Sgabeblack@google.com################################################################# 4413206Sgabeblack@google.com 4512837Sgabeblack@google.com# CPU model-specific data is contained in cpu_models.py 4612837Sgabeblack@google.com# Convert to SCons File node to get path handling 4712837Sgabeblack@google.commodels_db = File('cpu_models.py') 4812837Sgabeblack@google.com# slurp in contents of file 4912837Sgabeblack@google.comexecfile(models_db.srcnode().abspath) 5012943Sgabeblack@google.com 5112837Sgabeblack@google.com# Template for execute() signature. 5212837Sgabeblack@google.comexec_sig_template = ''' 5312837Sgabeblack@google.comvirtual Fault execute(%s *xc, Trace::InstRecord *traceData) const = 0; 5412837Sgabeblack@google.com''' 5512837Sgabeblack@google.com 5612838Sgabeblack@google.commem_ini_sig_template = ''' 5712837Sgabeblack@google.comvirtual Fault initiateAcc(%s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); }; 5812837Sgabeblack@google.com''' 5912940Sgabeblack@google.com 6012839Sgabeblack@google.commem_comp_sig_template = ''' 6112837Sgabeblack@google.comvirtual Fault completeAcc(uint8_t *data, %s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); return NoFault; }; 62''' 63 64# Generate header. 65def gen_cpu_exec_signatures(target, source, env): 66 f = open(str(target[0]), 'w') 67 print >> f, ''' 68#ifndef __CPU_STATIC_INST_EXEC_SIGS_HH__ 69#define __CPU_STATIC_INST_EXEC_SIGS_HH__ 70''' 71 for cpu in env['CPU_MODELS']: 72 xc_type = CpuModel.dict[cpu].strings['CPU_exec_context'] 73 print >> f, exec_sig_template % xc_type 74 print >> f, mem_ini_sig_template % xc_type 75 print >> f, mem_comp_sig_template % xc_type 76 print >> f, ''' 77#endif // __CPU_STATIC_INST_EXEC_SIGS_HH__ 78''' 79 80# Generate string that gets printed when header is rebuilt 81def gen_sigs_string(target, source, env): 82 return "Generating static_inst_exec_sigs.hh: " \ 83 + ', '.join(env['CPU_MODELS']) 84 85# Add command to generate header to environment. 86env.Command('static_inst_exec_sigs.hh', models_db, 87 Action(gen_cpu_exec_signatures, gen_sigs_string, 88 varlist = ['CPU_MODELS'])) 89 90################################################################# 91# 92# Include CPU-model-specific files based on set of models 93# specified in CPU_MODELS build option. 94# 95################################################################# 96 97sources = [] 98 99if 'SimpleCPU' in env['CPU_MODELS']: 100 sources += Split('simple/cpu.cc') 101 102if 'FastCPU' in env['CPU_MODELS']: 103 sources += Split('fast/cpu.cc') 104 105if 'AlphaFullCPU' in env['CPU_MODELS']: 106 sources += Split(''' 107 o3/2bit_local_pred.cc 108 o3/alpha_dyn_inst.cc 109 o3/alpha_cpu.cc 110 o3/alpha_cpu_builder.cc 111 o3/bpred_unit.cc 112 o3/btb.cc 113 o3/commit.cc 114 o3/decode.cc 115 o3/fetch.cc 116 o3/free_list.cc 117 o3/fu_pool.cc 118 o3/cpu.cc 119 o3/iew.cc 120 o3/inst_queue.cc 121 o3/lsq_unit.cc 122 o3/lsq.cc 123 o3/mem_dep_unit.cc 124 o3/ras.cc 125 o3/rename.cc 126 o3/rename_map.cc 127 o3/rob.cc 128 o3/sat_counter.cc 129 o3/scoreboard.cc 130 o3/store_set.cc 131 o3/tournament_pred.cc 132 ''') 133 134if 'OzoneSimpleCPU' in env['CPU_MODELS']: 135 sources += Split(''' 136 ozone/cpu.cc 137 ozone/cpu_builder.cc 138 ozone/dyn_inst.cc 139 ozone/front_end.cc 140 ozone/inorder_back_end.cc 141 ozone/inst_queue.cc 142 ozone/rename_table.cc 143 ''') 144 145if 'OzoneCPU' in env['CPU_MODELS']: 146 sources += Split(''' 147 ozone/back_end.cc 148 ozone/lsq_unit.cc 149 ''') 150 151# FullCPU sources are included from m5/SConscript since they're not 152# below this point in the file hierarchy. 153 154# Convert file names to SCons File objects. This takes care of the 155# path relative to the top of the directory tree. 156sources = [File(s) for s in sources] 157 158Return('sources') 159 160