SConscript revision 2789
1955SN/A# -*- mode:python -*-
2955SN/A
31762SN/A# Copyright (c) 2006 The Regents of The University of Michigan
4955SN/A# All rights reserved.
5955SN/A#
6955SN/A# Redistribution and use in source and binary forms, with or without
7955SN/A# modification, are permitted provided that the following conditions are
8955SN/A# met: redistributions of source code must retain the above copyright
9955SN/A# notice, this list of conditions and the following disclaimer;
10955SN/A# redistributions in binary form must reproduce the above copyright
11955SN/A# notice, this list of conditions and the following disclaimer in the
12955SN/A# documentation and/or other materials provided with the distribution;
13955SN/A# neither the name of the copyright holders nor the names of its
14955SN/A# contributors may be used to endorse or promote products derived from
15955SN/A# this software without specific prior written permission.
16955SN/A#
17955SN/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.
282665Ssaidi@eecs.umich.edu#
292665Ssaidi@eecs.umich.edu# Authors: Steve Reinhardt
30955SN/A
31955SN/Aimport os
32955SN/Aimport os.path
333583Sbinkertn@umich.edu
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.
42955SN/A# Since the set of compiled-in models is flexible, we generate a
43955SN/A# header containing the appropriate set of signatures on the fly.
44955SN/A#
45955SN/A#################################################################
46955SN/A
47955SN/A# CPU model-specific data is contained in cpu_models.py
482023SN/A# Convert to SCons File node to get path handling
49955SN/Amodels_db = File('cpu_models.py')
503089Ssaidi@eecs.umich.edu# slurp in contents of file
51955SN/Aexecfile(models_db.srcnode().abspath)
52955SN/A
53955SN/A# Template for execute() signature.
54955SN/Aexec_sig_template = '''
55955SN/Avirtual Fault execute(%s *xc, Trace::InstRecord *traceData) const = 0;
56955SN/Avirtual Fault initiateAcc(%s *xc, Trace::InstRecord *traceData) const
57955SN/A{ panic("initiateAcc not defined!"); };
58955SN/Avirtual Fault completeAcc(Packet *pkt, %s *xc,
591031SN/A                          Trace::InstRecord *traceData) const
60955SN/A{ panic("completeAcc not defined!"); };
611388SN/A'''
62955SN/A
63955SN/Amem_ini_sig_template = '''
641296SN/Avirtual Fault initiateAcc(%s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); };
65955SN/A'''
66955SN/A
67955SN/Amem_comp_sig_template = '''
68955SN/Avirtual Fault completeAcc(uint8_t *data, %s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); return NoFault; };
69955SN/A'''
70955SN/A
71955SN/A# Generate a temporary CPU list, including the CheckerCPU if
72955SN/A# it's enabled.  This isn't used for anything else other than StaticInst
73955SN/A# headers.
74955SN/Atemp_cpu_list = env['CPU_MODELS']
75955SN/Aif env['USE_CHECKER']:
76955SN/A    temp_cpu_list.append('CheckerCPU')
773584Ssaidi@eecs.umich.edu
78955SN/A# Generate header.  
79955SN/Adef gen_cpu_exec_signatures(target, source, env):
80955SN/A    f = open(str(target[0]), 'w')
81955SN/A    print >> f, '''
82955SN/A#ifndef __CPU_STATIC_INST_EXEC_SIGS_HH__
83955SN/A#define __CPU_STATIC_INST_EXEC_SIGS_HH__
84955SN/A'''
852325SN/A    for cpu in temp_cpu_list:
861717SN/A        xc_type = CpuModel.dict[cpu].strings['CPU_exec_context']
872652Ssaidi@eecs.umich.edu        print >> f, exec_sig_template % (xc_type, xc_type, xc_type)
88955SN/A    print >> f, '''
892736Sktlim@umich.edu#endif  // __CPU_STATIC_INST_EXEC_SIGS_HH__
902410SN/A'''
91955SN/A
922290SN/A# Generate string that gets printed when header is rebuilt
93955SN/Adef gen_sigs_string(target, source, env):
942683Sktlim@umich.edu    return "Generating static_inst_exec_sigs.hh: " \
952683Sktlim@umich.edu           + ', '.join(temp_cpu_list)
962669Sktlim@umich.edu
972568SN/A# Add command to generate header to environment.
982568SN/Aenv.Command('static_inst_exec_sigs.hh', models_db,
993012Ssaidi@eecs.umich.edu            Action(gen_cpu_exec_signatures, gen_sigs_string,
1002462SN/A                   varlist = temp_cpu_list))
1012568SN/A
1022395SN/Aenv.Depends('static_inst_exec_sigs.hh', Value(env['USE_CHECKER']))
1032405SN/Aenv.Depends('static_inst_exec_sigs.hh', Value(env['CPU_MODELS']))
1042914Ssaidi@eecs.umich.edu
105955SN/A# List of suppported CPUs by the Checker.  Errors out if USE_CHECKER=True
1062811Srdreslin@umich.edu# and one of these are not being used.
1072811Srdreslin@umich.eduCheckerSupportedCPUList = ['AlphaO3CPU', 'OzoneCPU']
1082811Srdreslin@umich.edu
1092811Srdreslin@umich.edu#################################################################
1102811Srdreslin@umich.edu#
1113719Sstever@eecs.umich.edu# Include CPU-model-specific files based on set of models
1122811Srdreslin@umich.edu# specified in CPU_MODELS build option.
1132811Srdreslin@umich.edu#
1142811Srdreslin@umich.edu#################################################################
1152811Srdreslin@umich.edu
1162811Srdreslin@umich.edusources = []
1172811Srdreslin@umich.edu
1182811Srdreslin@umich.eduneed_simple_base = False
1192811Srdreslin@umich.eduif 'AtomicSimpleCPU' in env['CPU_MODELS']:
1202811Srdreslin@umich.edu    need_simple_base = True
1212814Srdreslin@umich.edu    sources += Split('simple/atomic.cc')
1222811Srdreslin@umich.edu
1232811Srdreslin@umich.eduif 'TimingSimpleCPU' in env['CPU_MODELS']:
1242811Srdreslin@umich.edu    need_simple_base = True
1252811Srdreslin@umich.edu    sources += Split('simple/timing.cc')
1262811Srdreslin@umich.edu
1272811Srdreslin@umich.eduif need_simple_base:
1282811Srdreslin@umich.edu    sources += Split('simple/base.cc')
1292813Srdreslin@umich.edu
1302813Srdreslin@umich.eduif 'FastCPU' in env['CPU_MODELS']:
1313868Sbinkertn@umich.edu    sources += Split('fast/cpu.cc')
1323645Sbinkertn@umich.edu
1333624Sbinkertn@umich.eduif 'AlphaO3CPU' in env['CPU_MODELS']:
1343871Sbinkertn@umich.edu    sources += Split('''
1353871Sbinkertn@umich.edu        o3/2bit_local_pred.cc
1363624Sbinkertn@umich.edu        o3/alpha_dyn_inst.cc
137955SN/A        o3/alpha_cpu.cc
138955SN/A        o3/alpha_cpu_builder.cc
139955SN/A        o3/base_dyn_inst.cc
1402090SN/A        o3/bpred_unit.cc
141955SN/A        o3/btb.cc
142955SN/A        o3/commit.cc
1431696SN/A        o3/decode.cc
144955SN/A        o3/fetch.cc
145955SN/A        o3/free_list.cc
146955SN/A        o3/fu_pool.cc
1471127SN/A        o3/cpu.cc
148955SN/A        o3/iew.cc
149955SN/A        o3/inst_queue.cc
1502379SN/A        o3/lsq_unit.cc
151955SN/A        o3/lsq.cc
152955SN/A        o3/mem_dep_unit.cc
153955SN/A        o3/ras.cc
1542422SN/A        o3/rename.cc
1552422SN/A        o3/rename_map.cc
1562422SN/A        o3/rob.cc
1572422SN/A        o3/scoreboard.cc
1582422SN/A        o3/store_set.cc
1592422SN/A        o3/tournament_pred.cc
1602422SN/A        ''')
1612397SN/A    if env['USE_CHECKER']:
1622397SN/A        sources += Split('o3/checker_builder.cc')
1632422SN/A
1642422SN/Aif 'OzoneSimpleCPU' in env['CPU_MODELS']:
165955SN/A    sources += Split('''
166955SN/A        ozone/cpu.cc
167955SN/A        ozone/cpu_builder.cc
168955SN/A        ozone/dyn_inst.cc
169955SN/A        ozone/front_end.cc
170955SN/A        ozone/inorder_back_end.cc
171955SN/A        ozone/inst_queue.cc
172955SN/A        ozone/rename_table.cc
1731078SN/A        ''')
174955SN/A
175955SN/Aif 'OzoneCPU' in env['CPU_MODELS']:
176955SN/A    sources += Split('''
177955SN/A        ozone/base_dyn_inst.cc
1781917SN/A        ozone/bpred_unit.cc
179955SN/A        ozone/lsq_unit.cc
180955SN/A        ozone/lw_back_end.cc
1811730SN/A        ozone/lw_lsq.cc
182955SN/A        ''')
1832521SN/A    if env['USE_CHECKER']:
1842521SN/A        sources += Split('ozone/checker_builder.cc')
1852507SN/A
1862507SN/Aif env['USE_CHECKER']:
1872989Ssaidi@eecs.umich.edu    sources += Split('checker/cpu.cc')
1883408Ssaidi@eecs.umich.edu    checker_supports = False
1892507SN/A    for i in CheckerSupportedCPUList:
1902507SN/A        if i in env['CPU_MODELS']:
1912507SN/A            checker_supports = True
192955SN/A    if not checker_supports:
193955SN/A        print "Checker only supports CPU models %s, please " \
194955SN/A              "set USE_CHECKER=False or use one of those CPU models" \
195955SN/A              % CheckerSupportedCPUList
196955SN/A        Exit(1)
197955SN/A
198955SN/A
199955SN/A# FullCPU sources are included from src/SConscript since they're not
2002520SN/A# below this point in the file hierarchy.
2012517SN/A
2022253SN/A# Convert file names to SCons File objects.  This takes care of the
2032253SN/A# path relative to the top of the directory tree.
2042253SN/Asources = [File(s) for s in sources]
2052253SN/A
2062553SN/AReturn('sources')
2072553SN/A
2082553SN/A