SConscript revision 2736
12155SN/A# -*- mode:python -*-
22155SN/A
32155SN/A# Copyright (c) 2006 The Regents of The University of Michigan
42155SN/A# All rights reserved.
52155SN/A#
62155SN/A# Redistribution and use in source and binary forms, with or without
72155SN/A# modification, are permitted provided that the following conditions are
82155SN/A# met: redistributions of source code must retain the above copyright
92155SN/A# notice, this list of conditions and the following disclaimer;
102155SN/A# redistributions in binary form must reproduce the above copyright
112155SN/A# notice, this list of conditions and the following disclaimer in the
122155SN/A# documentation and/or other materials provided with the distribution;
132155SN/A# neither the name of the copyright holders nor the names of its
142155SN/A# contributors may be used to endorse or promote products derived from
152155SN/A# this software without specific prior written permission.
162155SN/A#
172155SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
182155SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
192155SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
202155SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
212155SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
222155SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
232155SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
242155SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
252155SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
262155SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
272155SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
282665Ssaidi@eecs.umich.edu#
292665Ssaidi@eecs.umich.edu# Authors: Steve Reinhardt
302155SN/A
314202Sbinkertn@umich.eduimport os
322155SN/Aimport os.path
337768SAli.Saidi@ARM.com
347768SAli.Saidi@ARM.com# Import build environment variable from SConstruct.
357768SAli.Saidi@ARM.comImport('env')
362178SN/A
372178SN/A#################################################################
382178SN/A#
392178SN/A# Generate StaticInst execute() method signatures.
402178SN/A#
412178SN/A# There must be one signature for each CPU model compiled in.
422178SN/A# Since the set of compiled-in models is flexible, we generate a
432178SN/A# header containing the appropriate set of signatures on the fly.
442178SN/A#
452178SN/A#################################################################
462178SN/A
472155SN/A# CPU model-specific data is contained in cpu_models.py
485865Sksewell@umich.edu# Convert to SCons File node to get path handling
496181Sksewell@umich.edumodels_db = File('cpu_models.py')
506181Sksewell@umich.edu# slurp in contents of file
515865Sksewell@umich.eduexecfile(models_db.srcnode().abspath)
523918Ssaidi@eecs.umich.edu
535865Sksewell@umich.edu# Template for execute() signature.
542623SN/Aexec_sig_template = '''
553918Ssaidi@eecs.umich.eduvirtual Fault execute(%s *xc, Trace::InstRecord *traceData) const = 0;
562155SN/Avirtual Fault initiateAcc(%s *xc, Trace::InstRecord *traceData) const
572155SN/A{ panic("initiateAcc not defined!"); };
582292SN/Avirtual Fault completeAcc(Packet *pkt, %s *xc,
596181Sksewell@umich.edu                          Trace::InstRecord *traceData) const
606181Sksewell@umich.edu{ panic("completeAcc not defined!"); };
613918Ssaidi@eecs.umich.edu'''
622292SN/A
632292SN/Amem_ini_sig_template = '''
642292SN/Avirtual Fault initiateAcc(%s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); };
653918Ssaidi@eecs.umich.edu'''
662292SN/A
672292SN/Amem_comp_sig_template = '''
682766Sktlim@umich.eduvirtual Fault completeAcc(uint8_t *data, %s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); return NoFault; };
692766Sktlim@umich.edu'''
702766Sktlim@umich.edu
712921Sktlim@umich.edu# Generate header.  
722921Sktlim@umich.edudef gen_cpu_exec_signatures(target, source, env):
732766Sktlim@umich.edu    f = open(str(target[0]), 'w')
742766Sktlim@umich.edu    print >> f, '''
755529Snate@binkert.org#ifndef __CPU_STATIC_INST_EXEC_SIGS_HH__
762766Sktlim@umich.edu#define __CPU_STATIC_INST_EXEC_SIGS_HH__
774762Snate@binkert.org'''
782155SN/A    for cpu in env['CPU_MODELS']:
792155SN/A        xc_type = CpuModel.dict[cpu].strings['CPU_exec_context']
802155SN/A        print >> f, exec_sig_template % (xc_type, xc_type, xc_type)
812155SN/A    print >> f, '''
822155SN/A#endif  // __CPU_STATIC_INST_EXEC_SIGS_HH__
832155SN/A'''
842766Sktlim@umich.edu
852155SN/A# Generate string that gets printed when header is rebuilt
865865Sksewell@umich.edudef gen_sigs_string(target, source, env):
872155SN/A    return "Generating static_inst_exec_sigs.hh: " \
882155SN/A           + ', '.join(env['CPU_MODELS'])
892155SN/A
902155SN/A# Add command to generate header to environment.
912178SN/Aenv.Command('static_inst_exec_sigs.hh', models_db,
922178SN/A            Action(gen_cpu_exec_signatures, gen_sigs_string,
937756SAli.Saidi@ARM.com                   varlist = ['CPU_MODELS']))
942766Sktlim@umich.edu
952178SN/A# List of suppported CPUs by the Checker.  Errors out if USE_CHECKER=True
962178SN/A# and one of these are not being used.
976994Snate@binkert.orgCheckerSupportedCPUList = ['AlphaO3CPU', 'OzoneCPU']
982178SN/A
992766Sktlim@umich.edu#################################################################
1002766Sktlim@umich.edu#
1012766Sktlim@umich.edu# Include CPU-model-specific files based on set of models
1022788Sktlim@umich.edu# specified in CPU_MODELS build option.
1032178SN/A#
1042733Sktlim@umich.edu#################################################################
1052733Sktlim@umich.edu
1062817Sksewell@umich.edusources = []
1072733Sktlim@umich.edu
1084486Sbinkertn@umich.eduneed_simple_base = False
1094486Sbinkertn@umich.eduif 'AtomicSimpleCPU' in env['CPU_MODELS']:
1104776Sgblack@eecs.umich.edu    need_simple_base = True
1114776Sgblack@eecs.umich.edu    sources += Split('simple/atomic.cc')
1126365Sgblack@eecs.umich.edu
1134486Sbinkertn@umich.eduif 'TimingSimpleCPU' in env['CPU_MODELS']:
1144202Sbinkertn@umich.edu    need_simple_base = True
1154202Sbinkertn@umich.edu    sources += Split('simple/timing.cc')
1164202Sbinkertn@umich.edu
1178541Sgblack@eecs.umich.eduif need_simple_base:
1184202Sbinkertn@umich.edu    sources += Split('simple/base.cc')
1194202Sbinkertn@umich.edu
1204776Sgblack@eecs.umich.eduif 'FastCPU' in env['CPU_MODELS']:
1216365Sgblack@eecs.umich.edu    sources += Split('fast/cpu.cc')
1224202Sbinkertn@umich.edu
1234202Sbinkertn@umich.eduif 'AlphaO3CPU' in env['CPU_MODELS']:
1244202Sbinkertn@umich.edu    sources += Split('''
1254202Sbinkertn@umich.edu        base_dyn_inst.cc
1265217Ssaidi@eecs.umich.edu        o3/2bit_local_pred.cc
1274202Sbinkertn@umich.edu        o3/alpha_dyn_inst.cc
1282155SN/A        o3/alpha_cpu.cc
1294202Sbinkertn@umich.edu        o3/alpha_cpu_builder.cc
1304486Sbinkertn@umich.edu        o3/bpred_unit.cc
1314486Sbinkertn@umich.edu        o3/btb.cc
1324202Sbinkertn@umich.edu        o3/commit.cc
1334202Sbinkertn@umich.edu        o3/decode.cc
1342821Sktlim@umich.edu        o3/fetch.cc
1354776Sgblack@eecs.umich.edu        o3/free_list.cc
1364776Sgblack@eecs.umich.edu        o3/fu_pool.cc
1374776Sgblack@eecs.umich.edu        o3/cpu.cc
1384776Sgblack@eecs.umich.edu        o3/iew.cc
1392766Sktlim@umich.edu        o3/inst_queue.cc
1404202Sbinkertn@umich.edu        o3/lsq_unit.cc
1418335Snate@binkert.org        o3/lsq.cc
1422733Sktlim@umich.edu        o3/mem_dep_unit.cc
1432733Sktlim@umich.edu        o3/ras.cc
1442733Sktlim@umich.edu        o3/rename.cc
1452733Sktlim@umich.edu        o3/rename_map.cc
1462733Sktlim@umich.edu        o3/rob.cc
1472874Sktlim@umich.edu        o3/scoreboard.cc
1482874Sktlim@umich.edu        o3/store_set.cc
1492874Sktlim@umich.edu        o3/tournament_pred.cc
1504202Sbinkertn@umich.edu        ''')
1512733Sktlim@umich.edu    if 'CheckerCPU' in env['CPU_MODELS']:
1525192Ssaidi@eecs.umich.edu        sources += Split('checker/o3_builder.cc')
1538335Snate@binkert.org
1548335Snate@binkert.orgif 'OzoneSimpleCPU' in env['CPU_MODELS']:
1558335Snate@binkert.org    sources += Split('''
1568335Snate@binkert.org        ozone/cpu.cc
1578335Snate@binkert.org        ozone/cpu_builder.cc
1588335Snate@binkert.org        ozone/dyn_inst.cc
1598335Snate@binkert.org        ozone/front_end.cc
1608335Snate@binkert.org        ozone/inorder_back_end.cc
1618335Snate@binkert.org        ozone/inst_queue.cc
1628335Snate@binkert.org        ozone/rename_table.cc
1638335Snate@binkert.org        ''')
1648335Snate@binkert.org    if 'CheckerCPU' in env['CPU_MODELS']:
1658335Snate@binkert.org        sources += Split('checker/ozone_builder.cc')
1668335Snate@binkert.org
1678335Snate@binkert.orgif 'OzoneCPU' in env['CPU_MODELS']:
1688335Snate@binkert.org    sources += Split('''
1698335Snate@binkert.org        ozone/lsq_unit.cc
1708335Snate@binkert.org        ozone/lw_back_end.cc
1718335Snate@binkert.org        ozone/lw_lsq.cc
1728335Snate@binkert.org        ''')
1738335Snate@binkert.org
1748335Snate@binkert.orgif 'CheckerCPU' in env['CPU_MODELS']:
1758335Snate@binkert.org    sources += Split('checker/cpu.cc')
1768335Snate@binkert.org    checker_supports = False
1778471SGiacomo.Gabrielli@arm.com    for i in CheckerSupportedCPUList:
1788335Snate@binkert.org        if i in env['CPU_MODELS']:
1798335Snate@binkert.org            checker_supports = True
1805192Ssaidi@eecs.umich.edu    if not checker_supports:
1818232Snate@binkert.org        print "Checker only supports CPU models %s, please " \
1828232Snate@binkert.org              "set USE_CHECKER=False or use one of those CPU models" \
1838232Snate@binkert.org              % CheckerSupportedCPUList
1848300Schander.sudanthi@arm.com        Exit(1)
1858300Schander.sudanthi@arm.com
1865192Ssaidi@eecs.umich.edu
1878300Schander.sudanthi@arm.com# FullCPU sources are included from m5/SConscript since they're not
1888300Schander.sudanthi@arm.com# below this point in the file hierarchy.
1896036Sksewell@umich.edu
1908300Schander.sudanthi@arm.com# Convert file names to SCons File objects.  This takes care of the
1918300Schander.sudanthi@arm.com# path relative to the top of the directory tree.
192sources = [File(s) for s in sources]
193
194Return('sources')
195
196