SConscript revision 2292
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.eduimport os
302155SN/Aimport os.path
314202Sbinkertn@umich.edu
322155SN/A# Import build environment variable from SConstruct.
337768SAli.Saidi@ARM.comImport('env')
347768SAli.Saidi@ARM.com
357768SAli.Saidi@ARM.com#################################################################
362178SN/A#
372178SN/A# Generate StaticInst execute() method signatures.
382178SN/A#
392178SN/A# There must be one signature for each CPU model compiled in.
402178SN/A# Since the set of compiled-in models is flexible, we generate a
412178SN/A# header containing the appropriate set of signatures on the fly.
422178SN/A#
432178SN/A#################################################################
442178SN/A
452178SN/A# CPU model-specific data is contained in cpu_models.py
462178SN/A# Convert to SCons File node to get path handling
472155SN/Amodels_db = File('cpu_models.py')
485865Sksewell@umich.edu# slurp in contents of file
496181Sksewell@umich.eduexecfile(models_db.srcnode().abspath)
506181Sksewell@umich.edu
515865Sksewell@umich.edu# Template for execute() signature.
523918Ssaidi@eecs.umich.eduexec_sig_template = '''
535865Sksewell@umich.eduvirtual Fault execute(%s *xc, Trace::InstRecord *traceData) const = 0;
542623SN/A'''
553918Ssaidi@eecs.umich.edu
562155SN/Amem_ini_sig_template = '''
572155SN/Avirtual Fault initiateAcc(%s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); };
582292SN/A'''
596181Sksewell@umich.edu
606181Sksewell@umich.edumem_comp_sig_template = '''
613918Ssaidi@eecs.umich.eduvirtual Fault completeAcc(uint8_t *data, %s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); return NoFault; };
622292SN/A'''
632292SN/A
642292SN/A# Generate header.  
653918Ssaidi@eecs.umich.edudef gen_cpu_exec_signatures(target, source, env):
662292SN/A    f = open(str(target[0]), 'w')
672292SN/A    print >> f, '''
682766Sktlim@umich.edu#ifndef __CPU_STATIC_INST_EXEC_SIGS_HH__
692766Sktlim@umich.edu#define __CPU_STATIC_INST_EXEC_SIGS_HH__
702766Sktlim@umich.edu'''
712921Sktlim@umich.edu    for cpu in env['CPU_MODELS']:
722921Sktlim@umich.edu        xc_type = CpuModel.dict[cpu].strings['CPU_exec_context']
732766Sktlim@umich.edu        print >> f, exec_sig_template % xc_type
742766Sktlim@umich.edu        print >> f, mem_ini_sig_template % xc_type
755529Snate@binkert.org        print >> f, mem_comp_sig_template % xc_type
762766Sktlim@umich.edu    print >> f, '''
774762Snate@binkert.org#endif  // __CPU_STATIC_INST_EXEC_SIGS_HH__
782155SN/A'''
792155SN/A
802155SN/A# Generate string that gets printed when header is rebuilt
812155SN/Adef gen_sigs_string(target, source, env):
822155SN/A    return "Generating static_inst_exec_sigs.hh: " \
832155SN/A           + ', '.join(env['CPU_MODELS'])
842766Sktlim@umich.edu
852155SN/A# Add command to generate header to environment.
865865Sksewell@umich.eduenv.Command('static_inst_exec_sigs.hh', models_db,
872155SN/A            Action(gen_cpu_exec_signatures, gen_sigs_string,
882155SN/A                   varlist = ['CPU_MODELS']))
892155SN/A
902155SN/A#################################################################
912178SN/A#
922178SN/A# Include CPU-model-specific files based on set of models
937756SAli.Saidi@ARM.com# specified in CPU_MODELS build option.
942766Sktlim@umich.edu#
952178SN/A#################################################################
962178SN/A
976994Snate@binkert.orgsources = []
982178SN/A
992766Sktlim@umich.eduif 'SimpleCPU' in env['CPU_MODELS']:
1002766Sktlim@umich.edu    sources += Split('simple/cpu.cc')
1012766Sktlim@umich.edu
1022788Sktlim@umich.eduif 'FastCPU' in env['CPU_MODELS']:
1032178SN/A    sources += Split('fast/cpu.cc')
1042733Sktlim@umich.edu
1052733Sktlim@umich.eduif 'AlphaFullCPU' in env['CPU_MODELS']:
1062817Sksewell@umich.edu    sources += Split('''
1072733Sktlim@umich.edu        o3/2bit_local_pred.cc
1084486Sbinkertn@umich.edu        o3/alpha_dyn_inst.cc
1094486Sbinkertn@umich.edu        o3/alpha_cpu.cc
1104776Sgblack@eecs.umich.edu        o3/alpha_cpu_builder.cc
1114776Sgblack@eecs.umich.edu        o3/bpred_unit.cc
1126365Sgblack@eecs.umich.edu        o3/btb.cc
1134486Sbinkertn@umich.edu        o3/commit.cc
1144202Sbinkertn@umich.edu        o3/decode.cc
1154202Sbinkertn@umich.edu        o3/fetch.cc
1164202Sbinkertn@umich.edu        o3/free_list.cc
1174202Sbinkertn@umich.edu        o3/fu_pool.cc
1184202Sbinkertn@umich.edu        o3/cpu.cc
1194776Sgblack@eecs.umich.edu        o3/iew.cc
1206365Sgblack@eecs.umich.edu        o3/inst_queue.cc
1214202Sbinkertn@umich.edu        o3/lsq_unit.cc
1224202Sbinkertn@umich.edu        o3/lsq.cc
1234202Sbinkertn@umich.edu        o3/mem_dep_unit.cc
1244202Sbinkertn@umich.edu        o3/ras.cc
1255217Ssaidi@eecs.umich.edu        o3/rename.cc
1264202Sbinkertn@umich.edu        o3/rename_map.cc
1272155SN/A        o3/rob.cc
1284202Sbinkertn@umich.edu        o3/sat_counter.cc
1294486Sbinkertn@umich.edu        o3/scoreboard.cc
1304486Sbinkertn@umich.edu        o3/store_set.cc
1314202Sbinkertn@umich.edu        o3/tournament_pred.cc
1324202Sbinkertn@umich.edu        ''')
1332821Sktlim@umich.edu
1344776Sgblack@eecs.umich.eduif 'OzoneSimpleCPU' in env['CPU_MODELS']:
1354776Sgblack@eecs.umich.edu    sources += Split('''
1364776Sgblack@eecs.umich.edu        ozone/cpu.cc
1374776Sgblack@eecs.umich.edu        ozone/cpu_builder.cc
1382766Sktlim@umich.edu        ozone/dyn_inst.cc
1394202Sbinkertn@umich.edu        ozone/front_end.cc
1408335Snate@binkert.org        ozone/inorder_back_end.cc
1412733Sktlim@umich.edu        ozone/inst_queue.cc
1422733Sktlim@umich.edu        ozone/rename_table.cc
1432733Sktlim@umich.edu        ''')
1442733Sktlim@umich.edu
1452733Sktlim@umich.eduif 'OzoneCPU' in env['CPU_MODELS']:
1462874Sktlim@umich.edu    sources += Split('''
1472874Sktlim@umich.edu        ozone/back_end.cc
1482874Sktlim@umich.edu        ozone/lsq_unit.cc
1494202Sbinkertn@umich.edu        ''')
1502733Sktlim@umich.edu
1515192Ssaidi@eecs.umich.edu# FullCPU sources are included from m5/SConscript since they're not
1528335Snate@binkert.org# below this point in the file hierarchy.
1538335Snate@binkert.org
1548335Snate@binkert.org# Convert file names to SCons File objects.  This takes care of the
1558335Snate@binkert.org# path relative to the top of the directory tree.
1568335Snate@binkert.orgsources = [File(s) for s in sources]
1578335Snate@binkert.org
1588335Snate@binkert.orgReturn('sources')
1598335Snate@binkert.org
1608335Snate@binkert.org