SConscript revision 2781:b689ee340f27
1955SN/A# -*- mode:python -*- 2955SN/A 311408Sandreas.sandberg@arm.com# Copyright (c) 2006 The Regents of The University of Michigan 49812Sandreas.hansson@arm.com# All rights reserved. 59812Sandreas.hansson@arm.com# 69812Sandreas.hansson@arm.com# Redistribution and use in source and binary forms, with or without 79812Sandreas.hansson@arm.com# modification, are permitted provided that the following conditions are 89812Sandreas.hansson@arm.com# met: redistributions of source code must retain the above copyright 99812Sandreas.hansson@arm.com# notice, this list of conditions and the following disclaimer; 109812Sandreas.hansson@arm.com# redistributions in binary form must reproduce the above copyright 119812Sandreas.hansson@arm.com# notice, this list of conditions and the following disclaimer in the 129812Sandreas.hansson@arm.com# documentation and/or other materials provided with the distribution; 139812Sandreas.hansson@arm.com# neither the name of the copyright holders nor the names of its 149812Sandreas.hansson@arm.com# contributors may be used to endorse or promote products derived from 157816Ssteve.reinhardt@amd.com# this software without specific prior written permission. 165871Snate@binkert.org# 171762SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 18955SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 19955SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20955SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 21955SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22955SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23955SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24955SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25955SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26955SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27955SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28955SN/A# 29955SN/A# Authors: Steve Reinhardt 30955SN/A 31955SN/Aimport os 32955SN/Aimport os.path 33955SN/A 34955SN/A# Import build environment variable from SConstruct. 35955SN/AImport('env') 36955SN/A 37955SN/A################################################################# 38955SN/A# 39955SN/A# Generate StaticInst execute() method signatures. 40955SN/A# 41955SN/A# There must be one signature for each CPU model compiled in. 422665Ssaidi@eecs.umich.edu# Since the set of compiled-in models is flexible, we generate a 432665Ssaidi@eecs.umich.edu# header containing the appropriate set of signatures on the fly. 445863Snate@binkert.org# 45955SN/A################################################################# 46955SN/A 47955SN/A# CPU model-specific data is contained in cpu_models.py 48955SN/A# Convert to SCons File node to get path handling 49955SN/Amodels_db = File('cpu_models.py') 508878Ssteve.reinhardt@amd.com# slurp in contents of file 512632Sstever@eecs.umich.eduexecfile(models_db.srcnode().abspath) 528878Ssteve.reinhardt@amd.com 532632Sstever@eecs.umich.edu# Template for execute() signature. 54955SN/Aexec_sig_template = ''' 558878Ssteve.reinhardt@amd.comvirtual Fault execute(%s *xc, Trace::InstRecord *traceData) const = 0; 562632Sstever@eecs.umich.eduvirtual Fault initiateAcc(%s *xc, Trace::InstRecord *traceData) const 572761Sstever@eecs.umich.edu{ panic("initiateAcc not defined!"); }; 582632Sstever@eecs.umich.eduvirtual Fault completeAcc(Packet *pkt, %s *xc, 592632Sstever@eecs.umich.edu Trace::InstRecord *traceData) const 602632Sstever@eecs.umich.edu{ panic("completeAcc not defined!"); }; 612761Sstever@eecs.umich.edu''' 622761Sstever@eecs.umich.edu 632761Sstever@eecs.umich.edumem_ini_sig_template = ''' 648878Ssteve.reinhardt@amd.comvirtual Fault initiateAcc(%s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); }; 658878Ssteve.reinhardt@amd.com''' 662761Sstever@eecs.umich.edu 672761Sstever@eecs.umich.edumem_comp_sig_template = ''' 682761Sstever@eecs.umich.eduvirtual Fault completeAcc(uint8_t *data, %s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); return NoFault; }; 692761Sstever@eecs.umich.edu''' 702761Sstever@eecs.umich.edu 718878Ssteve.reinhardt@amd.com# Generate a temporary CPU list, including the CheckerCPU if 728878Ssteve.reinhardt@amd.com# it's enabled. This isn't used for anything else other than StaticInst 732632Sstever@eecs.umich.edu# headers. 742632Sstever@eecs.umich.edutemp_cpu_list = env['CPU_MODELS'] 758878Ssteve.reinhardt@amd.comif env['USE_CHECKER']: 768878Ssteve.reinhardt@amd.com temp_cpu_list.append('CheckerCPU') 772632Sstever@eecs.umich.edu 78955SN/A# Generate header. 79955SN/Adef gen_cpu_exec_signatures(target, source, env): 80955SN/A f = open(str(target[0]), 'w') 815863Snate@binkert.org print >> f, ''' 825863Snate@binkert.org#ifndef __CPU_STATIC_INST_EXEC_SIGS_HH__ 835863Snate@binkert.org#define __CPU_STATIC_INST_EXEC_SIGS_HH__ 845863Snate@binkert.org''' 855863Snate@binkert.org for cpu in temp_cpu_list: 865863Snate@binkert.org xc_type = CpuModel.dict[cpu].strings['CPU_exec_context'] 875863Snate@binkert.org print >> f, exec_sig_template % (xc_type, xc_type, xc_type) 885863Snate@binkert.org print >> f, ''' 895863Snate@binkert.org#endif // __CPU_STATIC_INST_EXEC_SIGS_HH__ 905863Snate@binkert.org''' 915863Snate@binkert.org 928878Ssteve.reinhardt@amd.com# Generate string that gets printed when header is rebuilt 935863Snate@binkert.orgdef gen_sigs_string(target, source, env): 945863Snate@binkert.org return "Generating static_inst_exec_sigs.hh: " \ 955863Snate@binkert.org + ', '.join(temp_cpu_list) 969812Sandreas.hansson@arm.com 979812Sandreas.hansson@arm.com# Add command to generate header to environment. 985863Snate@binkert.orgenv.Command('static_inst_exec_sigs.hh', models_db, 999812Sandreas.hansson@arm.com Action(gen_cpu_exec_signatures, gen_sigs_string, 1005863Snate@binkert.org varlist = temp_cpu_list)) 1015863Snate@binkert.org 1025863Snate@binkert.orgenv.Depends('static_inst_exec_sigs.hh', Value(env['USE_CHECKER'])) 1039812Sandreas.hansson@arm.com 1049812Sandreas.hansson@arm.com# List of suppported CPUs by the Checker. Errors out if USE_CHECKER=True 1055863Snate@binkert.org# and one of these are not being used. 1065863Snate@binkert.orgCheckerSupportedCPUList = ['AlphaO3CPU', 'OzoneCPU'] 1078878Ssteve.reinhardt@amd.com 1085863Snate@binkert.org################################################################# 1095863Snate@binkert.org# 1105863Snate@binkert.org# Include CPU-model-specific files based on set of models 1116654Snate@binkert.org# specified in CPU_MODELS build option. 11210196SCurtis.Dunham@arm.com# 113955SN/A################################################################# 1145396Ssaidi@eecs.umich.edu 11511401Sandreas.sandberg@arm.comsources = [] 1165863Snate@binkert.org 1175863Snate@binkert.orgneed_simple_base = False 1184202Sbinkertn@umich.eduif 'AtomicSimpleCPU' in env['CPU_MODELS']: 1195863Snate@binkert.org need_simple_base = True 1205863Snate@binkert.org sources += Split('simple/atomic.cc') 1215863Snate@binkert.org 1225863Snate@binkert.orgif 'TimingSimpleCPU' in env['CPU_MODELS']: 123955SN/A need_simple_base = True 1246654Snate@binkert.org sources += Split('simple/timing.cc') 1255273Sstever@gmail.com 1265871Snate@binkert.orgif need_simple_base: 1275273Sstever@gmail.com sources += Split('simple/base.cc') 1286655Snate@binkert.org 1298878Ssteve.reinhardt@amd.comif 'FastCPU' in env['CPU_MODELS']: 1306655Snate@binkert.org sources += Split('fast/cpu.cc') 1316655Snate@binkert.org 1329219Spower.jg@gmail.comif 'AlphaO3CPU' in env['CPU_MODELS']: 1336655Snate@binkert.org sources += Split(''' 1345871Snate@binkert.org o3/2bit_local_pred.cc 1356654Snate@binkert.org o3/alpha_dyn_inst.cc 1368947Sandreas.hansson@arm.com o3/alpha_cpu.cc 1375396Ssaidi@eecs.umich.edu o3/alpha_cpu_builder.cc 1388120Sgblack@eecs.umich.edu o3/base_dyn_inst.cc 1398120Sgblack@eecs.umich.edu o3/bpred_unit.cc 1408120Sgblack@eecs.umich.edu o3/btb.cc 1418120Sgblack@eecs.umich.edu o3/commit.cc 1428120Sgblack@eecs.umich.edu o3/decode.cc 1438120Sgblack@eecs.umich.edu o3/fetch.cc 1448120Sgblack@eecs.umich.edu o3/free_list.cc 1458120Sgblack@eecs.umich.edu o3/fu_pool.cc 1468879Ssteve.reinhardt@amd.com o3/cpu.cc 1478879Ssteve.reinhardt@amd.com o3/iew.cc 1488879Ssteve.reinhardt@amd.com o3/inst_queue.cc 1498879Ssteve.reinhardt@amd.com o3/lsq_unit.cc 1508879Ssteve.reinhardt@amd.com o3/lsq.cc 1518879Ssteve.reinhardt@amd.com o3/mem_dep_unit.cc 1528879Ssteve.reinhardt@amd.com o3/ras.cc 1538879Ssteve.reinhardt@amd.com o3/rename.cc 1548879Ssteve.reinhardt@amd.com o3/rename_map.cc 1558879Ssteve.reinhardt@amd.com o3/rob.cc 1568879Ssteve.reinhardt@amd.com o3/scoreboard.cc 1578879Ssteve.reinhardt@amd.com o3/store_set.cc 1588879Ssteve.reinhardt@amd.com o3/tournament_pred.cc 1598120Sgblack@eecs.umich.edu ''') 1608120Sgblack@eecs.umich.edu if env['USE_CHECKER']: 1618120Sgblack@eecs.umich.edu sources += Split('o3/checker_builder.cc') 1628120Sgblack@eecs.umich.edu 1638120Sgblack@eecs.umich.eduif 'OzoneSimpleCPU' in env['CPU_MODELS']: 1648120Sgblack@eecs.umich.edu sources += Split(''' 1658120Sgblack@eecs.umich.edu ozone/cpu.cc 1668120Sgblack@eecs.umich.edu ozone/cpu_builder.cc 1678120Sgblack@eecs.umich.edu ozone/dyn_inst.cc 1688120Sgblack@eecs.umich.edu ozone/front_end.cc 1698120Sgblack@eecs.umich.edu ozone/inorder_back_end.cc 1708120Sgblack@eecs.umich.edu ozone/inst_queue.cc 1718120Sgblack@eecs.umich.edu ozone/rename_table.cc 1728120Sgblack@eecs.umich.edu ''') 1738879Ssteve.reinhardt@amd.com 1748879Ssteve.reinhardt@amd.comif 'OzoneCPU' in env['CPU_MODELS']: 1758879Ssteve.reinhardt@amd.com sources += Split(''' 1768879Ssteve.reinhardt@amd.com ozone/base_dyn_inst.cc 17710458Sandreas.hansson@arm.com ozone/bpred_unit.cc 17810458Sandreas.hansson@arm.com ozone/lsq_unit.cc 17910458Sandreas.hansson@arm.com ozone/lw_back_end.cc 1808879Ssteve.reinhardt@amd.com ozone/lw_lsq.cc 1818879Ssteve.reinhardt@amd.com ''') 1828879Ssteve.reinhardt@amd.com if env['USE_CHECKER']: 1838879Ssteve.reinhardt@amd.com sources += Split('ozone/checker_builder.cc') 1849227Sandreas.hansson@arm.com 1859227Sandreas.hansson@arm.comif env['USE_CHECKER']: 1868879Ssteve.reinhardt@amd.com checker_supports = False 1878879Ssteve.reinhardt@amd.com for i in CheckerSupportedCPUList: 1888879Ssteve.reinhardt@amd.com if i in env['CPU_MODELS']: 1898879Ssteve.reinhardt@amd.com checker_supports = True 19010453SAndrew.Bardsley@arm.com if not checker_supports: 19110453SAndrew.Bardsley@arm.com print "Checker only supports CPU models %s, please " \ 19210453SAndrew.Bardsley@arm.com "set USE_CHECKER=False or use one of those CPU models" \ 19310456SCurtis.Dunham@arm.com % CheckerSupportedCPUList 19410456SCurtis.Dunham@arm.com Exit(1) 19510456SCurtis.Dunham@arm.com 19610457Sandreas.hansson@arm.com 19710457Sandreas.hansson@arm.com# FullCPU sources are included from src/SConscript since they're not 19811342Sandreas.hansson@arm.com# below this point in the file hierarchy. 19911342Sandreas.hansson@arm.com 2008120Sgblack@eecs.umich.edu# Convert file names to SCons File objects. This takes care of the 2018947Sandreas.hansson@arm.com# path relative to the top of the directory tree. 2027816Ssteve.reinhardt@amd.comsources = [File(s) for s in sources] 2035871Snate@binkert.org 2045871Snate@binkert.orgReturn('sources') 2056121Snate@binkert.org 2065871Snate@binkert.org