SConscript revision 6036
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.edu# Authors: Steve Reinhardt 302155SN/A 312155SN/AImport('*') 322155SN/A 332155SN/A################################################################# 342155SN/A# 352155SN/A# Generate StaticInst execute() method signatures. 362155SN/A# 372178SN/A# There must be one signature for each CPU model compiled in. 382178SN/A# Since the set of compiled-in models is flexible, we generate a 392178SN/A# header containing the appropriate set of signatures on the fly. 402178SN/A# 412178SN/A################################################################# 422178SN/A 432178SN/A# CPU model-specific data is contained in cpu_models.py 442178SN/A# Convert to SCons File node to get path handling 452178SN/Amodels_db = File('cpu_models.py') 462178SN/A# slurp in contents of file 472178SN/Aexecfile(models_db.srcnode().abspath) 482178SN/A 492155SN/A# Template for execute() signature. 502178SN/Aexec_sig_template = ''' 512155SN/Avirtual Fault execute(%(type)s *xc, Trace::InstRecord *traceData) const = 0; 522155SN/Avirtual Fault initiateAcc(%(type)s *xc, Trace::InstRecord *traceData) const 532178SN/A{ panic("initiateAcc not defined!"); M5_DUMMY_RETURN }; 542155SN/Avirtual Fault completeAcc(Packet *pkt, %(type)s *xc, 552155SN/A Trace::InstRecord *traceData) const 562623SN/A{ panic("completeAcc not defined!"); M5_DUMMY_RETURN }; 573918Ssaidi@eecs.umich.eduvirtual int memAccSize(%(type)s *xc) 582623SN/A{ panic("memAccSize not defined!"); M5_DUMMY_RETURN }; 592623SN/A''' 603918Ssaidi@eecs.umich.edu 612155SN/Amem_ini_sig_template = ''' 622155SN/Avirtual Fault initiateAcc(%s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); M5_DUMMY_RETURN }; 632292SN/A''' 643918Ssaidi@eecs.umich.edu 652292SN/Amem_comp_sig_template = ''' 662292SN/Avirtual Fault completeAcc(uint8_t *data, %s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); return NoFault; M5_DUMMY_RETURN }; 672292SN/A''' 683918Ssaidi@eecs.umich.edu 692292SN/A# Generate a temporary CPU list, including the CheckerCPU if 702292SN/A# it's enabled. This isn't used for anything else other than StaticInst 712766Sktlim@umich.edu# headers. 722766Sktlim@umich.edutemp_cpu_list = env['CPU_MODELS'][:] 732766Sktlim@umich.edu 742921Sktlim@umich.eduif env['USE_CHECKER']: 752921Sktlim@umich.edu temp_cpu_list.append('CheckerCPU') 762766Sktlim@umich.edu SimObject('CheckerCPU.py') 772766Sktlim@umich.edu 782766Sktlim@umich.edu# Generate header. 792178SN/Adef gen_cpu_exec_signatures(target, source, env): 802155SN/A f = open(str(target[0]), 'w') 812155SN/A print >> f, ''' 822155SN/A#ifndef __CPU_STATIC_INST_EXEC_SIGS_HH__ 832155SN/A#define __CPU_STATIC_INST_EXEC_SIGS_HH__ 842155SN/A''' 852155SN/A for cpu in temp_cpu_list: 862766Sktlim@umich.edu xc_type = CpuModel.dict[cpu].strings['CPU_exec_context'] 872155SN/A print >> f, exec_sig_template % { 'type' : xc_type } 882623SN/A print >> f, ''' 892155SN/A#endif // __CPU_STATIC_INST_EXEC_SIGS_HH__ 902155SN/A''' 912155SN/A 922155SN/A# Generate string that gets printed when header is rebuilt 932178SN/Adef gen_sigs_string(target, source, env): 942178SN/A return "Generating static_inst_exec_sigs.hh: " \ 952178SN/A + ', '.join(temp_cpu_list) 962766Sktlim@umich.edu 972178SN/A# Add command to generate header to environment. 982178SN/Aenv.Command('static_inst_exec_sigs.hh', models_db, 992178SN/A Action(gen_cpu_exec_signatures, gen_sigs_string, 1002178SN/A varlist = temp_cpu_list)) 1012766Sktlim@umich.edu 1022766Sktlim@umich.eduenv.Depends('static_inst_exec_sigs.hh', Value(env['USE_CHECKER'])) 1032766Sktlim@umich.eduenv.Depends('static_inst_exec_sigs.hh', Value(env['CPU_MODELS'])) 1042788Sktlim@umich.edu 1052178SN/A# List of suppported CPUs by the Checker. Errors out if USE_CHECKER=True 1062733Sktlim@umich.edu# and one of these are not being used. 1072733Sktlim@umich.eduCheckerSupportedCPUList = ['O3CPU', 'OzoneCPU'] 1082817Sksewell@umich.edu 1092733Sktlim@umich.eduSimObject('BaseCPU.py') 1102178SN/ASimObject('FuncUnit.py') 1112178SN/ASimObject('ExeTracer.py') 1122178SN/ASimObject('IntelTrace.py') 1132178SN/A 1142178SN/ASource('activity.cc') 1152178SN/ASource('base.cc') 1162155SN/ASource('cpuevent.cc') 1172929Sktlim@umich.eduSource('exetrace.cc') 1182929Sktlim@umich.eduSource('func_unit.cc') 1192929Sktlim@umich.eduSource('inteltrace.cc') 1202155SN/ASource('pc_event.cc') 1212155SN/ASource('quiesce_event.cc') 1222623SN/ASource('static_inst.cc') 1232623SN/ASource('simple_thread.cc') 1242623SN/ASource('thread_context.cc') 1252623SN/ASource('thread_state.cc') 1262623SN/A 1272623SN/Aif env['FULL_SYSTEM']: 1282623SN/A SimObject('IntrControl.py') 1292623SN/A 1302623SN/A Source('intr_control.cc') 1312623SN/A Source('profile.cc') 1322623SN/A 1332155SN/A if env['TARGET_ISA'] == 'sparc': 1342155SN/A SimObject('LegionTrace.py') 1352155SN/A Source('legiontrace.cc') 1362155SN/A 1372821Sktlim@umich.eduif env['TARGET_ISA'] == 'x86': 1382817Sksewell@umich.edu SimObject('NativeTrace.py') 1392821Sktlim@umich.edu Source('nativetrace.cc') 1402817Sksewell@umich.edu 1412155SN/Aif env['USE_CHECKER']: 1422765Sktlim@umich.edu Source('checker/cpu.cc') 1432155SN/A TraceFlag('Checker') 1442155SN/A checker_supports = False 1452155SN/A for i in CheckerSupportedCPUList: 1462155SN/A if i in env['CPU_MODELS']: 1472155SN/A checker_supports = True 1482292SN/A if not checker_supports: 1492155SN/A print "Checker only supports CPU models", 1502155SN/A for i in CheckerSupportedCPUList: 1512155SN/A print i, 1522292SN/A print ", please set USE_CHECKER=False or use one of those CPU models" 1532292SN/A Exit(1) 1542155SN/A 1552155SN/ATraceFlag('Activity') 1562155SN/ATraceFlag('Commit') 1572155SN/ATraceFlag('Context') 1582292SN/ATraceFlag('Decode') 1592155SN/ATraceFlag('DynInst') 1602155SN/ATraceFlag('ExecEnable') 1613187Srdreslin@umich.eduTraceFlag('ExecCPSeq') 1622766Sktlim@umich.eduTraceFlag('ExecEffAddr') 1632765Sktlim@umich.eduTraceFlag('ExecFetchSeq') 1642932Sktlim@umich.eduTraceFlag('ExecOpClass') 1652932Sktlim@umich.eduTraceFlag('ExecRegDelta') 1662155SN/ATraceFlag('ExecResult') 1672792Sktlim@umich.eduTraceFlag('ExecSpeculative') 1682821Sktlim@umich.eduTraceFlag('ExecSymbol') 1692292SN/ATraceFlag('ExecThread') 1702792Sktlim@umich.eduTraceFlag('ExecTicks') 1712792Sktlim@umich.eduTraceFlag('ExecMicro') 1722292SN/ATraceFlag('ExecMacro') 1732292SN/ATraceFlag('Fetch') 1742292SN/ATraceFlag('IntrControl') 1752292SN/ATraceFlag('PCEvent') 1762297SN/ATraceFlag('Quiesce') 1772297SN/A 1782792Sktlim@umich.eduCompoundFlag('Exec', [ 'ExecEnable', 'ExecTicks', 'ExecOpClass', 'ExecThread', 1792292SN/A 'ExecEffAddr', 'ExecResult', 'ExecSymbol', 'ExecMicro' ]) 1802766Sktlim@umich.eduCompoundFlag('ExecNoTicks', [ 'ExecEnable', 'ExecOpClass', 'ExecThread', 1812765Sktlim@umich.edu 'ExecEffAddr', 'ExecResult', 'ExecMicro' ]) 1822292SN/A