SConscript revision 2929
13534Sgblack@eecs.umich.edu# -*- mode:python -*-
23534Sgblack@eecs.umich.edu
33534Sgblack@eecs.umich.edu# Copyright (c) 2006 The Regents of The University of Michigan
43534Sgblack@eecs.umich.edu# All rights reserved.
53534Sgblack@eecs.umich.edu#
63534Sgblack@eecs.umich.edu# Redistribution and use in source and binary forms, with or without
73534Sgblack@eecs.umich.edu# modification, are permitted provided that the following conditions are
83534Sgblack@eecs.umich.edu# met: redistributions of source code must retain the above copyright
93534Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer;
103534Sgblack@eecs.umich.edu# redistributions in binary form must reproduce the above copyright
113534Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer in the
123534Sgblack@eecs.umich.edu# documentation and/or other materials provided with the distribution;
133534Sgblack@eecs.umich.edu# neither the name of the copyright holders nor the names of its
143534Sgblack@eecs.umich.edu# contributors may be used to endorse or promote products derived from
153534Sgblack@eecs.umich.edu# this software without specific prior written permission.
163534Sgblack@eecs.umich.edu#
173534Sgblack@eecs.umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
183534Sgblack@eecs.umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
193534Sgblack@eecs.umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
203534Sgblack@eecs.umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
213534Sgblack@eecs.umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
223534Sgblack@eecs.umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
233534Sgblack@eecs.umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
243534Sgblack@eecs.umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
253534Sgblack@eecs.umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
263534Sgblack@eecs.umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
273534Sgblack@eecs.umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
283534Sgblack@eecs.umich.edu#
293534Sgblack@eecs.umich.edu# Authors: Steve Reinhardt
303534Sgblack@eecs.umich.edu
313534Sgblack@eecs.umich.eduimport os
324202Sbinkertn@umich.eduimport os.path
333534Sgblack@eecs.umich.edu
344202Sbinkertn@umich.edu# Import build environment variable from SConstruct.
354486Sbinkertn@umich.eduImport('env')
365794Ssaidi@eecs.umich.edu
374486Sbinkertn@umich.edu#################################################################
384486Sbinkertn@umich.edu#
394486Sbinkertn@umich.edu# Generate StaticInst execute() method signatures.
404486Sbinkertn@umich.edu#
414486Sbinkertn@umich.edu# There must be one signature for each CPU model compiled in.
424486Sbinkertn@umich.edu# Since the set of compiled-in models is flexible, we generate a
434486Sbinkertn@umich.edu# header containing the appropriate set of signatures on the fly.
445478Snate@binkert.org#
454486Sbinkertn@umich.edu#################################################################
464486Sbinkertn@umich.edu
474202Sbinkertn@umich.edu# CPU model-specific data is contained in cpu_models.py
485794Ssaidi@eecs.umich.edu# Convert to SCons File node to get path handling
494202Sbinkertn@umich.edumodels_db = File('cpu_models.py')
504202Sbinkertn@umich.edu# slurp in contents of file
515485Snate@binkert.orgexecfile(models_db.srcnode().abspath)
524202Sbinkertn@umich.edu
534202Sbinkertn@umich.edu# Template for execute() signature.
544202Sbinkertn@umich.eduexec_sig_template = '''
554202Sbinkertn@umich.eduvirtual Fault execute(%s *xc, Trace::InstRecord *traceData) const = 0;
564762Snate@binkert.orgvirtual Fault initiateAcc(%s *xc, Trace::InstRecord *traceData) const
574218Ssaidi@eecs.umich.edu{ panic("initiateAcc not defined!"); };
584202Sbinkertn@umich.eduvirtual Fault completeAcc(Packet *pkt, %s *xc,
594202Sbinkertn@umich.edu                          Trace::InstRecord *traceData) const
605443Sgblack@eecs.umich.edu{ panic("completeAcc not defined!"); };
614202Sbinkertn@umich.edu'''
624202Sbinkertn@umich.edu
635392Sgblack@eecs.umich.edumem_ini_sig_template = '''
644202Sbinkertn@umich.eduvirtual Fault initiateAcc(%s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); };
654202Sbinkertn@umich.edu'''
664202Sbinkertn@umich.edu
674202Sbinkertn@umich.edumem_comp_sig_template = '''
684202Sbinkertn@umich.eduvirtual Fault completeAcc(uint8_t *data, %s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); return NoFault; };
694202Sbinkertn@umich.edu'''
704762Snate@binkert.org
715478Snate@binkert.org# Generate a temporary CPU list, including the CheckerCPU if
724202Sbinkertn@umich.edu# it's enabled.  This isn't used for anything else other than StaticInst
734202Sbinkertn@umich.edu# headers.
745192Ssaidi@eecs.umich.edutemp_cpu_list = env['CPU_MODELS'][:]
755192Ssaidi@eecs.umich.edu
765192Ssaidi@eecs.umich.eduif env['USE_CHECKER']:
775192Ssaidi@eecs.umich.edu    temp_cpu_list.append('CheckerCPU')
785794Ssaidi@eecs.umich.edu
795192Ssaidi@eecs.umich.edu# Generate header.  
805192Ssaidi@eecs.umich.edudef gen_cpu_exec_signatures(target, source, env):
815192Ssaidi@eecs.umich.edu    f = open(str(target[0]), 'w')
825192Ssaidi@eecs.umich.edu    print >> f, '''
835192Ssaidi@eecs.umich.edu#ifndef __CPU_STATIC_INST_EXEC_SIGS_HH__
845192Ssaidi@eecs.umich.edu#define __CPU_STATIC_INST_EXEC_SIGS_HH__
855192Ssaidi@eecs.umich.edu'''
865192Ssaidi@eecs.umich.edu    for cpu in temp_cpu_list:
875192Ssaidi@eecs.umich.edu        xc_type = CpuModel.dict[cpu].strings['CPU_exec_context']
885192Ssaidi@eecs.umich.edu        print >> f, exec_sig_template % (xc_type, xc_type, xc_type)
895192Ssaidi@eecs.umich.edu    print >> f, '''
905443Sgblack@eecs.umich.edu#endif  // __CPU_STATIC_INST_EXEC_SIGS_HH__
915192Ssaidi@eecs.umich.edu'''
925392Sgblack@eecs.umich.edu
935192Ssaidi@eecs.umich.edu# Generate string that gets printed when header is rebuilt
945192Ssaidi@eecs.umich.edudef gen_sigs_string(target, source, env):
955192Ssaidi@eecs.umich.edu    return "Generating static_inst_exec_sigs.hh: " \
965192Ssaidi@eecs.umich.edu           + ', '.join(temp_cpu_list)
975478Snate@binkert.org
985478Snate@binkert.org# Add command to generate header to environment.
995192Ssaidi@eecs.umich.eduenv.Command('static_inst_exec_sigs.hh', models_db,
1005192Ssaidi@eecs.umich.edu            Action(gen_cpu_exec_signatures, gen_sigs_string,
1015192Ssaidi@eecs.umich.edu                   varlist = temp_cpu_list))
1025192Ssaidi@eecs.umich.edu
1035192Ssaidi@eecs.umich.eduenv.Depends('static_inst_exec_sigs.hh', Value(env['USE_CHECKER']))
1045763Ssaidi@eecs.umich.eduenv.Depends('static_inst_exec_sigs.hh', Value(env['CPU_MODELS']))
1055192Ssaidi@eecs.umich.edu
1065192Ssaidi@eecs.umich.edu# List of suppported CPUs by the Checker.  Errors out if USE_CHECKER=True
1075192Ssaidi@eecs.umich.edu# and one of these are not being used.
1085192Ssaidi@eecs.umich.eduCheckerSupportedCPUList = ['O3CPU', 'OzoneCPU']
109
110#################################################################
111#
112# Include CPU-model-specific files based on set of models
113# specified in CPU_MODELS build option.
114#
115#################################################################
116
117# Keep a list of CPU models that support SMT
118env['SMT_CPU_MODELS'] = []
119
120sources = []
121
122need_simple_base = False
123if 'AtomicSimpleCPU' in env['CPU_MODELS']:
124    need_simple_base = True
125    sources += Split('simple/atomic.cc')
126
127if 'TimingSimpleCPU' in env['CPU_MODELS']:
128    need_simple_base = True
129    sources += Split('simple/timing.cc')
130
131if need_simple_base:
132    sources += Split('simple/base.cc')
133
134if 'FastCPU' in env['CPU_MODELS']:
135    sources += Split('fast/cpu.cc')
136
137need_bp_unit = False
138if 'O3CPU' in env['CPU_MODELS']:
139    need_bp_unit = True
140    sources += SConscript('o3/SConscript', exports = 'env')
141    sources += Split('''
142        o3/base_dyn_inst.cc
143        o3/bpred_unit.cc
144        o3/commit.cc
145        o3/decode.cc
146        o3/fetch.cc
147        o3/free_list.cc
148        o3/fu_pool.cc
149        o3/cpu.cc
150        o3/iew.cc
151        o3/inst_queue.cc
152        o3/lsq_unit.cc
153        o3/lsq.cc
154        o3/mem_dep_unit.cc
155        o3/rename.cc
156        o3/rename_map.cc
157        o3/rob.cc
158        o3/scoreboard.cc
159        o3/store_set.cc
160        ''')
161    if env['USE_CHECKER']:
162        sources += Split('o3/checker_builder.cc')
163    env['SMT_CPU_MODELS'].append('O3CPU')
164
165if 'OzoneCPU' in env['CPU_MODELS']:
166    need_bp_unit = True
167    sources += Split('''
168        ozone/base_dyn_inst.cc
169        ozone/bpred_unit.cc
170        ozone/cpu.cc
171        ozone/cpu_builder.cc
172        ozone/dyn_inst.cc
173        ozone/front_end.cc
174        ozone/lw_back_end.cc
175        ozone/lw_lsq.cc
176        ozone/rename_table.cc
177        ''')
178    if env['USE_CHECKER']:
179        sources += Split('ozone/checker_builder.cc')
180
181if need_bp_unit:
182    sources += Split('''
183        o3/2bit_local_pred.cc
184        o3/btb.cc
185        o3/ras.cc
186        o3/tournament_pred.cc
187        ''')
188
189if env['USE_CHECKER']:
190    sources += Split('checker/cpu.cc')
191    checker_supports = False
192    for i in CheckerSupportedCPUList:
193        if i in env['CPU_MODELS']:
194            checker_supports = True
195    if not checker_supports:
196        print "Checker only supports CPU models",
197        for i in CheckerSupportedCPUList:
198            print i,
199        print ", please set USE_CHECKER=False or use one of those CPU models"              
200        Exit(1)
201
202
203# FullCPU sources are included from src/SConscript since they're not
204# below this point in the file hierarchy.
205
206# Convert file names to SCons File objects.  This takes care of the
207# path relative to the top of the directory tree.
208sources = [File(s) for s in sources]
209
210Return('sources')
211
212