SConscript revision 2733
14202Sbinkertn@umich.edu# -*- mode:python -*-
24202Sbinkertn@umich.edu
34202Sbinkertn@umich.edu# Copyright (c) 2006 The Regents of The University of Michigan
44202Sbinkertn@umich.edu# All rights reserved.
54202Sbinkertn@umich.edu#
64202Sbinkertn@umich.edu# Redistribution and use in source and binary forms, with or without
74202Sbinkertn@umich.edu# modification, are permitted provided that the following conditions are
84202Sbinkertn@umich.edu# met: redistributions of source code must retain the above copyright
94202Sbinkertn@umich.edu# notice, this list of conditions and the following disclaimer;
104202Sbinkertn@umich.edu# redistributions in binary form must reproduce the above copyright
114202Sbinkertn@umich.edu# notice, this list of conditions and the following disclaimer in the
124202Sbinkertn@umich.edu# documentation and/or other materials provided with the distribution;
134202Sbinkertn@umich.edu# neither the name of the copyright holders nor the names of its
144202Sbinkertn@umich.edu# contributors may be used to endorse or promote products derived from
154202Sbinkertn@umich.edu# this software without specific prior written permission.
164202Sbinkertn@umich.edu#
174202Sbinkertn@umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
184202Sbinkertn@umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
194202Sbinkertn@umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
204202Sbinkertn@umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
214202Sbinkertn@umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
224202Sbinkertn@umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
234202Sbinkertn@umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
244202Sbinkertn@umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
254202Sbinkertn@umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
264202Sbinkertn@umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
274202Sbinkertn@umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
284202Sbinkertn@umich.edu#
294202Sbinkertn@umich.edu# Authors: Steve Reinhardt
304202Sbinkertn@umich.edu
314202Sbinkertn@umich.eduimport os
324202Sbinkertn@umich.eduimport os.path
334486Sbinkertn@umich.edu
344486Sbinkertn@umich.edu# Import build environment variable from SConstruct.
354776Sgblack@eecs.umich.eduImport('env')
364486Sbinkertn@umich.edu
374202Sbinkertn@umich.edu#################################################################
384202Sbinkertn@umich.edu#
394202Sbinkertn@umich.edu# Generate StaticInst execute() method signatures.
404202Sbinkertn@umich.edu#
414202Sbinkertn@umich.edu# There must be one signature for each CPU model compiled in.
424202Sbinkertn@umich.edu# Since the set of compiled-in models is flexible, we generate a
434202Sbinkertn@umich.edu# header containing the appropriate set of signatures on the fly.
444202Sbinkertn@umich.edu#
454202Sbinkertn@umich.edu#################################################################
464202Sbinkertn@umich.edu
474202Sbinkertn@umich.edu# CPU model-specific data is contained in cpu_models.py
484202Sbinkertn@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
514202Sbinkertn@umich.eduexecfile(models_db.srcnode().abspath)
524202Sbinkertn@umich.edu
534826Ssaidi@eecs.umich.edu# Template for execute() signature.
544202Sbinkertn@umich.eduexec_sig_template = '''
554202Sbinkertn@umich.eduvirtual Fault execute(%s *xc, Trace::InstRecord *traceData) const = 0;
565016Sgblack@eecs.umich.eduvirtual Fault initiateAcc(%s *xc, Trace::InstRecord *traceData) const
574486Sbinkertn@umich.edu{ panic("initiateAcc not defined!"); };
584486Sbinkertn@umich.eduvirtual Fault completeAcc(Packet *pkt, %s *xc,
594202Sbinkertn@umich.edu                          Trace::InstRecord *traceData) const
604202Sbinkertn@umich.edu{ panic("completeAcc not defined!"); };
615192Ssaidi@eecs.umich.edu'''
625192Ssaidi@eecs.umich.edu
635192Ssaidi@eecs.umich.edumem_ini_sig_template = '''
645192Ssaidi@eecs.umich.eduvirtual Fault initiateAcc(%s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); };
655192Ssaidi@eecs.umich.edu'''
665192Ssaidi@eecs.umich.edu
675192Ssaidi@eecs.umich.edumem_comp_sig_template = '''
685192Ssaidi@eecs.umich.eduvirtual Fault completeAcc(uint8_t *data, %s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); return NoFault; };
695192Ssaidi@eecs.umich.edu'''
705192Ssaidi@eecs.umich.edu
715192Ssaidi@eecs.umich.edu# Generate header.  
725192Ssaidi@eecs.umich.edudef gen_cpu_exec_signatures(target, source, env):
735192Ssaidi@eecs.umich.edu    f = open(str(target[0]), 'w')
745192Ssaidi@eecs.umich.edu    print >> f, '''
755192Ssaidi@eecs.umich.edu#ifndef __CPU_STATIC_INST_EXEC_SIGS_HH__
76#define __CPU_STATIC_INST_EXEC_SIGS_HH__
77'''
78    for cpu in env['CPU_MODELS']:
79        xc_type = CpuModel.dict[cpu].strings['CPU_exec_context']
80        print >> f, exec_sig_template % (xc_type, xc_type, xc_type)
81    print >> f, '''
82#endif  // __CPU_STATIC_INST_EXEC_SIGS_HH__
83'''
84
85# Generate string that gets printed when header is rebuilt
86def gen_sigs_string(target, source, env):
87    return "Generating static_inst_exec_sigs.hh: " \
88           + ', '.join(env['CPU_MODELS'])
89
90# Add command to generate header to environment.
91env.Command('static_inst_exec_sigs.hh', models_db,
92            Action(gen_cpu_exec_signatures, gen_sigs_string,
93                   varlist = ['CPU_MODELS']))
94
95# List of suppported CPUs by the Checker.  Errors out if USE_CHECKER=True
96# and one of these are not being used.
97CheckerSupportedCPUList = ['AlphaO3CPU', 'OzoneCPU']
98
99#################################################################
100#
101# Include CPU-model-specific files based on set of models
102# specified in CPU_MODELS build option.
103#
104#################################################################
105
106sources = []
107
108need_simple_base = False
109if 'AtomicSimpleCPU' in env['CPU_MODELS']:
110    need_simple_base = True
111    sources += Split('simple/atomic.cc')
112
113if 'TimingSimpleCPU' in env['CPU_MODELS']:
114    need_simple_base = True
115    sources += Split('simple/timing.cc')
116
117if need_simple_base:
118    sources += Split('simple/base.cc')
119
120if 'FastCPU' in env['CPU_MODELS']:
121    sources += Split('fast/cpu.cc')
122
123if 'AlphaO3CPU' in env['CPU_MODELS']:
124    sources += Split('''
125        base_dyn_inst.cc
126        o3/2bit_local_pred.cc
127        o3/alpha_dyn_inst.cc
128        o3/alpha_cpu.cc
129        o3/alpha_cpu_builder.cc
130        o3/bpred_unit.cc
131        o3/btb.cc
132        o3/commit.cc
133        o3/decode.cc
134        o3/fetch.cc
135        o3/free_list.cc
136        o3/fu_pool.cc
137        o3/cpu.cc
138        o3/iew.cc
139        o3/inst_queue.cc
140        o3/lsq_unit.cc
141        o3/lsq.cc
142        o3/mem_dep_unit.cc
143        o3/ras.cc
144        o3/rename.cc
145        o3/rename_map.cc
146        o3/rob.cc
147        o3/scoreboard.cc
148        o3/store_set.cc
149        o3/tournament_pred.cc
150        ''')
151    if 'CheckerCPU' in env['CPU_MODELS']:
152        sources += Split('checker/o3_builder.cc')
153
154if 'OzoneSimpleCPU' in env['CPU_MODELS']:
155    sources += Split('''
156        ozone/cpu.cc
157        ozone/cpu_builder.cc
158        ozone/dyn_inst.cc
159        ozone/front_end.cc
160        ozone/inorder_back_end.cc
161        ozone/inst_queue.cc
162        ozone/rename_table.cc
163        ''')
164    if 'CheckerCPU' in env['CPU_MODELS']:
165        sources += Split('checker/ozone_builder.cc')
166
167if 'OzoneCPU' in env['CPU_MODELS']:
168    sources += Split('''
169        ozone/lsq_unit.cc
170        ozone/lw_back_end.cc
171        ozone/lw_lsq.cc
172        ''')
173
174if 'CheckerCPU' in env['CPU_MODELS']:
175    sources += Split('checker/cpu.cc')
176    checker_supports = False
177    for i in CheckerSupportedCPUList:
178        if i in env['CPU_MODELS']:
179            checker_supports = True
180    if not checker_supports:
181        print "Checker only supports CPU models %s, please " \
182              "set USE_CHECKER=False or use one of those CPU models" \
183              % CheckerSupportedCPUList
184        Exit(1)
185
186
187# FullCPU sources are included from m5/SConscript since they're not
188# below this point in the file hierarchy.
189
190# Convert file names to SCons File objects.  This takes care of the
191# path relative to the top of the directory tree.
192sources = [File(s) for s in sources]
193
194Return('sources')
195
196