SConscript revision 2521
15612Sgblack@eecs.umich.edu# -*- mode:python -*- 25612Sgblack@eecs.umich.edu 35612Sgblack@eecs.umich.edu# Copyright (c) 2006 The Regents of The University of Michigan 45612Sgblack@eecs.umich.edu# All rights reserved. 55612Sgblack@eecs.umich.edu# 67087Snate@binkert.org# Redistribution and use in source and binary forms, with or without 77087Snate@binkert.org# modification, are permitted provided that the following conditions are 87087Snate@binkert.org# met: redistributions of source code must retain the above copyright 97087Snate@binkert.org# notice, this list of conditions and the following disclaimer; 107087Snate@binkert.org# redistributions in binary form must reproduce the above copyright 117087Snate@binkert.org# notice, this list of conditions and the following disclaimer in the 127087Snate@binkert.org# documentation and/or other materials provided with the distribution; 137087Snate@binkert.org# neither the name of the copyright holders nor the names of its 145612Sgblack@eecs.umich.edu# contributors may be used to endorse or promote products derived from 157087Snate@binkert.org# this software without specific prior written permission. 167087Snate@binkert.org# 177087Snate@binkert.org# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 187087Snate@binkert.org# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 197087Snate@binkert.org# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 207087Snate@binkert.org# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 217087Snate@binkert.org# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 227087Snate@binkert.org# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 235612Sgblack@eecs.umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 247087Snate@binkert.org# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 255612Sgblack@eecs.umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 265612Sgblack@eecs.umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 275612Sgblack@eecs.umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 285612Sgblack@eecs.umich.edu 295612Sgblack@eecs.umich.eduimport os 305612Sgblack@eecs.umich.eduimport os.path 315612Sgblack@eecs.umich.edu 325612Sgblack@eecs.umich.edu# Import build environment variable from SConstruct. 335612Sgblack@eecs.umich.eduImport('env') 345612Sgblack@eecs.umich.edu 355612Sgblack@eecs.umich.edu################################################################# 365612Sgblack@eecs.umich.edu# 375612Sgblack@eecs.umich.edu# Generate StaticInst execute() method signatures. 385612Sgblack@eecs.umich.edu# 395612Sgblack@eecs.umich.edu# There must be one signature for each CPU model compiled in. 405612Sgblack@eecs.umich.edu# Since the set of compiled-in models is flexible, we generate a 415612Sgblack@eecs.umich.edu# header containing the appropriate set of signatures on the fly. 425612Sgblack@eecs.umich.edu# 438768Sgblack@eecs.umich.edu################################################################# 448768Sgblack@eecs.umich.edu 458768Sgblack@eecs.umich.edu# CPU model-specific data is contained in cpu_models.py 468768Sgblack@eecs.umich.edu# Convert to SCons File node to get path handling 475612Sgblack@eecs.umich.edumodels_db = File('cpu_models.py') 488768Sgblack@eecs.umich.edu# slurp in contents of file 498768Sgblack@eecs.umich.eduexecfile(models_db.srcnode().abspath) 508768Sgblack@eecs.umich.edu 515625Sgblack@eecs.umich.edu# Template for execute() signature. 528768Sgblack@eecs.umich.eduexec_sig_template = ''' 538768Sgblack@eecs.umich.eduvirtual Fault execute(%s *xc, Trace::InstRecord *traceData) const = 0; 548768Sgblack@eecs.umich.edu''' 555627Sgblack@eecs.umich.edu 568768Sgblack@eecs.umich.edu# Generate header. 578768Sgblack@eecs.umich.edudef gen_cpu_exec_signatures(target, source, env): 588768Sgblack@eecs.umich.edu f = open(str(target[0]), 'w') 59 print >> f, ''' 60#ifndef __CPU_STATIC_INST_EXEC_SIGS_HH__ 61#define __CPU_STATIC_INST_EXEC_SIGS_HH__ 62''' 63 for cpu in env['CPU_MODELS']: 64 xc_type = CpuModel.dict[cpu].strings['CPU_exec_context'] 65 print >> f, exec_sig_template % xc_type 66 print >> f, ''' 67#endif // __CPU_STATIC_INST_EXEC_SIGS_HH__ 68''' 69 70# Generate string that gets printed when header is rebuilt 71def gen_sigs_string(target, source, env): 72 return "Generating static_inst_exec_sigs.hh: " \ 73 + ', '.join(env['CPU_MODELS']) 74 75# Add command to generate header to environment. 76env.Command('static_inst_exec_sigs.hh', models_db, 77 Action(gen_cpu_exec_signatures, gen_sigs_string, 78 varlist = ['CPU_MODELS'])) 79 80################################################################# 81# 82# Include CPU-model-specific files based on set of models 83# specified in CPU_MODELS build option. 84# 85################################################################# 86 87sources = [] 88 89if 'SimpleCPU' in env['CPU_MODELS']: 90 sources += Split('simple/cpu.cc') 91 92if 'FastCPU' in env['CPU_MODELS']: 93 sources += Split('fast/cpu.cc') 94 95if 'AlphaFullCPU' in env['CPU_MODELS']: 96 sources += Split(''' 97 o3/2bit_local_pred.cc 98 o3/alpha_dyn_inst.cc 99 o3/alpha_cpu.cc 100 o3/alpha_cpu_builder.cc 101 o3/bpred_unit.cc 102 o3/btb.cc 103 o3/commit.cc 104 o3/decode.cc 105 o3/fetch.cc 106 o3/free_list.cc 107 o3/cpu.cc 108 o3/iew.cc 109 o3/inst_queue.cc 110 o3/ldstq.cc 111 o3/mem_dep_unit.cc 112 o3/ras.cc 113 o3/rename.cc 114 o3/rename_map.cc 115 o3/rob.cc 116 o3/sat_counter.cc 117 o3/store_set.cc 118 o3/tournament_pred.cc 119 ''') 120 121# FullCPU sources are included from m5/SConscript since they're not 122# below this point in the file hierarchy. 123 124# Convert file names to SCons File objects. This takes care of the 125# path relative to the top of the directory tree. 126sources = [File(s) for s in sources] 127 128Return('sources') 129 130