SConscript revision 2178
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.
332178SN/AImport('env')
342178SN/A
352178SN/A#################################################################
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
452155SN/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')
482155SN/A# slurp in contents of file
492178SN/Aexecfile(models_db.srcnode().abspath)
502155SN/A
515865Sksewell@umich.edu# Template for execute() signature.
526181Sksewell@umich.eduexec_sig_template = '''
536181Sksewell@umich.eduvirtual Fault execute(%s *xc, Trace::InstRecord *traceData) const = 0;
545865Sksewell@umich.edu'''
553918Ssaidi@eecs.umich.edu
565865Sksewell@umich.edu# Generate header.  
572623SN/Adef gen_cpu_exec_signatures(target, source, env):
583918Ssaidi@eecs.umich.edu    f = open(str(target[0]), 'w')
595865Sksewell@umich.edu    print >> f, '''
605865Sksewell@umich.edu#ifndef __CPU_STATIC_INST_EXEC_SIGS_HH__
612155SN/A#define __CPU_STATIC_INST_EXEC_SIGS_HH__
622155SN/A'''
632292SN/A    for cpu in env['CPU_MODELS']:
646181Sksewell@umich.edu        xc_type = CpuModel.dict[cpu].strings['CPU_exec_context']
656181Sksewell@umich.edu        print >> f, exec_sig_template % xc_type
663918Ssaidi@eecs.umich.edu    print >> f, '''
672292SN/A#endif  // __CPU_STATIC_INST_EXEC_SIGS_HH__
682292SN/A'''
692292SN/A
703918Ssaidi@eecs.umich.edu# Generate string that gets printed when header is rebuilt
712292SN/Adef gen_sigs_string(target, source, env):
722292SN/A    return "Generating static_inst_exec_sigs.hh: " \
732766Sktlim@umich.edu           + ', '.join(env['CPU_MODELS'])
742766Sktlim@umich.edu
752766Sktlim@umich.edu# Add command to generate header to environment.
762921Sktlim@umich.eduenv.Command('static_inst_exec_sigs.hh', models_db,
772921Sktlim@umich.edu            Action(gen_cpu_exec_signatures, gen_sigs_string,
782766Sktlim@umich.edu                   varlist = ['CPU_MODELS']))
792766Sktlim@umich.edu
805529Snate@binkert.org#################################################################
812766Sktlim@umich.edu#
824762Snate@binkert.org# Include CPU-model-specific files based on set of models
832155SN/A# specified in CPU_MODELS build option.
842155SN/A#
852155SN/A#################################################################
862155SN/A
872155SN/Asources = []
882155SN/A
892766Sktlim@umich.eduif 'SimpleCPU' in env['CPU_MODELS']:
902155SN/A    sources += Split('simple/cpu.cc')
915865Sksewell@umich.edu
922155SN/Aif 'FastCPU' in env['CPU_MODELS']:
932155SN/A    sources += Split('fast/cpu.cc')
942155SN/A
952155SN/Aif 'AlphaFullCPU' in env['CPU_MODELS']:
962178SN/A    sources += Split('''
972178SN/A        o3/2bit_local_pred.cc
982178SN/A        o3/alpha_dyn_inst.cc
992766Sktlim@umich.edu        o3/alpha_cpu.cc
1002178SN/A        o3/alpha_cpu_builder.cc
1012178SN/A        o3/bpred_unit.cc
1022178SN/A        o3/btb.cc
1032178SN/A        o3/commit.cc
1042766Sktlim@umich.edu        o3/decode.cc
1052766Sktlim@umich.edu        o3/fetch.cc
1062766Sktlim@umich.edu        o3/free_list.cc
1072788Sktlim@umich.edu        o3/cpu.cc
1082178SN/A        o3/iew.cc
1092733Sktlim@umich.edu        o3/inst_queue.cc
1102733Sktlim@umich.edu        o3/ldstq.cc
1112817Sksewell@umich.edu        o3/mem_dep_unit.cc
1122733Sktlim@umich.edu        o3/ras.cc
1134486Sbinkertn@umich.edu        o3/rename.cc
1144486Sbinkertn@umich.edu        o3/rename_map.cc
1154776Sgblack@eecs.umich.edu        o3/rob.cc
1164776Sgblack@eecs.umich.edu        o3/sat_counter.cc
1174486Sbinkertn@umich.edu        o3/store_set.cc
1184202Sbinkertn@umich.edu        o3/tournament_pred.cc
1194202Sbinkertn@umich.edu        ''')
1204202Sbinkertn@umich.edu
1214202Sbinkertn@umich.edu# FullCPU sources are included from m5/SConscript since they're not
1224202Sbinkertn@umich.edu# below this point in the file hierarchy.
1234776Sgblack@eecs.umich.edu
1244202Sbinkertn@umich.edu# Convert file names to SCons File objects.  This takes care of the
1254202Sbinkertn@umich.edu# path relative to the top of the directory tree.
1264202Sbinkertn@umich.edusources = [File(s) for s in sources]
1274202Sbinkertn@umich.edu
1285217Ssaidi@eecs.umich.eduReturn('sources')
1294202Sbinkertn@umich.edu
1302155SN/A