SConscript revision 8869
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 314202Sbinkertn@umich.eduImport('*') 322155SN/A 339850Sandreas.hansson@arm.comif env['TARGET_ISA'] == 'no': 349850Sandreas.hansson@arm.com Return() 359850Sandreas.hansson@arm.com 367768SAli.Saidi@ARM.com################################################################# 377768SAli.Saidi@ARM.com# 382178SN/A# Generate StaticInst execute() method signatures. 392178SN/A# 402178SN/A# There must be one signature for each CPU model compiled in. 412178SN/A# Since the set of compiled-in models is flexible, we generate a 422178SN/A# header containing the appropriate set of signatures on the fly. 432178SN/A# 442178SN/A################################################################# 452178SN/A 462178SN/A# Template for execute() signature. 472178SN/Aexec_sig_template = ''' 482178SN/Avirtual Fault execute(%(type)s *xc, Trace::InstRecord *traceData) const = 0; 492155SN/Avirtual Fault eaComp(%(type)s *xc, Trace::InstRecord *traceData) const 505865Sksewell@umich.edu{ panic("eaComp not defined!"); M5_DUMMY_RETURN }; 516181Sksewell@umich.eduvirtual Fault initiateAcc(%(type)s *xc, Trace::InstRecord *traceData) const 526181Sksewell@umich.edu{ panic("initiateAcc not defined!"); M5_DUMMY_RETURN }; 535865Sksewell@umich.eduvirtual Fault completeAcc(Packet *pkt, %(type)s *xc, 543918Ssaidi@eecs.umich.edu Trace::InstRecord *traceData) const 555865Sksewell@umich.edu{ panic("completeAcc not defined!"); M5_DUMMY_RETURN }; 562623SN/A''' 573918Ssaidi@eecs.umich.edu 582155SN/Amem_ini_sig_template = ''' 592155SN/Avirtual Fault eaComp(%(type)s *xc, Trace::InstRecord *traceData) const 602292SN/A{ panic("eaComp not defined!"); M5_DUMMY_RETURN }; 616181Sksewell@umich.eduvirtual Fault initiateAcc(%s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); M5_DUMMY_RETURN }; 626181Sksewell@umich.edu''' 633918Ssaidi@eecs.umich.edu 642292SN/Amem_comp_sig_template = ''' 652292SN/Avirtual Fault completeAcc(uint8_t *data, %s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); return NoFault; M5_DUMMY_RETURN }; 662292SN/A''' 673918Ssaidi@eecs.umich.edu 682292SN/A# Generate a temporary CPU list, including the CheckerCPU if 692292SN/A# it's enabled. This isn't used for anything else other than StaticInst 702766Sktlim@umich.edu# headers. 712766Sktlim@umich.edutemp_cpu_list = env['CPU_MODELS'][:] 722766Sktlim@umich.edu 732921Sktlim@umich.eduif env['USE_CHECKER']: 748887Sgeoffrey.blake@arm.com temp_cpu_list.append('CheckerCPU') 758887Sgeoffrey.blake@arm.com SimObject('CheckerCPU.py') 762766Sktlim@umich.edu 774762Snate@binkert.org# Generate header. 782155SN/Adef gen_cpu_exec_signatures(target, source, env): 792155SN/A f = open(str(target[0]), 'w') 802155SN/A print >> f, ''' 812155SN/A#ifndef __CPU_STATIC_INST_EXEC_SIGS_HH__ 822155SN/A#define __CPU_STATIC_INST_EXEC_SIGS_HH__ 832155SN/A''' 842766Sktlim@umich.edu for cpu in temp_cpu_list: 852155SN/A xc_type = CpuModel.dict[cpu].strings['CPU_exec_context'] 865865Sksewell@umich.edu print >> f, exec_sig_template % { 'type' : xc_type } 872155SN/A print >> f, ''' 882155SN/A#endif // __CPU_STATIC_INST_EXEC_SIGS_HH__ 892155SN/A''' 902155SN/A 912178SN/A# Generate string that gets printed when header is rebuilt 922178SN/Adef gen_sigs_string(target, source, env): 937756SAli.Saidi@ARM.com return " [GENERATE] static_inst_exec_sigs.hh: " \ 942766Sktlim@umich.edu + ', '.join(temp_cpu_list) 952178SN/A 962178SN/A# Add command to generate header to environment. 976994Snate@binkert.orgenv.Command('static_inst_exec_sigs.hh', (), 982178SN/A Action(gen_cpu_exec_signatures, gen_sigs_string, 992766Sktlim@umich.edu varlist = temp_cpu_list)) 1002766Sktlim@umich.edu 1012788Sktlim@umich.eduenv.Depends('static_inst_exec_sigs.hh', Value(env['USE_CHECKER'])) 1022178SN/Aenv.Depends('static_inst_exec_sigs.hh', Value(env['CPU_MODELS'])) 1034486Sbinkertn@umich.edu 1044486Sbinkertn@umich.edu# List of suppported CPUs by the Checker. Errors out if USE_CHECKER=True 1054776Sgblack@eecs.umich.edu# and one of these are not being used. 1064776Sgblack@eecs.umich.eduCheckerSupportedCPUList = ['O3CPU', 'OzoneCPU'] 1078739Sgblack@eecs.umich.edu 1086365Sgblack@eecs.umich.eduSimObject('BaseCPU.py') 1094486Sbinkertn@umich.eduSimObject('FuncUnit.py') 1104202Sbinkertn@umich.eduSimObject('ExeTracer.py') 1114202Sbinkertn@umich.eduSimObject('IntelTrace.py') 1124202Sbinkertn@umich.eduSimObject('IntrControl.py') 1134202Sbinkertn@umich.eduSimObject('NativeTrace.py') 1144202Sbinkertn@umich.edu 1154776Sgblack@eecs.umich.eduSource('activity.cc') 1168739Sgblack@eecs.umich.eduSource('base.cc') 1176365Sgblack@eecs.umich.eduSource('cpuevent.cc') 1184202Sbinkertn@umich.eduSource('decode.cc') 1198777Sgblack@eecs.umich.eduSource('exetrace.cc') 1204202Sbinkertn@umich.eduSource('func_unit.cc') 1219913Ssteve.reinhardt@amd.comSource('inteltrace.cc') 1224202Sbinkertn@umich.eduSource('intr_control.cc') 1234202Sbinkertn@umich.eduSource('nativetrace.cc') 1245217Ssaidi@eecs.umich.eduSource('pc_event.cc') 1254202Sbinkertn@umich.eduSource('profile.cc') 1262155SN/ASource('quiesce_event.cc') 1278793Sgblack@eecs.umich.eduSource('static_inst.cc') 1288793Sgblack@eecs.umich.eduSource('simple_thread.cc') 1298793Sgblack@eecs.umich.eduSource('thread_context.cc') 1304776Sgblack@eecs.umich.eduSource('thread_state.cc') 1318887Sgeoffrey.blake@arm.com 1328887Sgeoffrey.blake@arm.comif env['TARGET_ISA'] == 'sparc': 1339340SAndreas.Sandberg@arm.com SimObject('LegionTrace.py') 1348887Sgeoffrey.blake@arm.com Source('legiontrace.cc') 1355192Ssaidi@eecs.umich.edu 1368335Snate@binkert.orgif env['USE_CHECKER']: 1378335Snate@binkert.org SimObject('DummyChecker.py') 1388335Snate@binkert.org Source('checker/cpu.cc') 1398335Snate@binkert.org Source('dummy_checker_builder.cc') 1408335Snate@binkert.org DebugFlag('Checker') 1419534SAndreas.Sandberg@ARM.com checker_supports = False 1429534SAndreas.Sandberg@ARM.com for i in CheckerSupportedCPUList: 1439534SAndreas.Sandberg@ARM.com if i in env['CPU_MODELS']: 1448335Snate@binkert.org checker_supports = True 1459534SAndreas.Sandberg@ARM.com if not checker_supports: 1469534SAndreas.Sandberg@ARM.com print "Checker only supports CPU models", 1478335Snate@binkert.org for i in CheckerSupportedCPUList: 1489534SAndreas.Sandberg@ARM.com print i, 1499534SAndreas.Sandberg@ARM.com print ", please set USE_CHECKER=False or use one of those CPU models" 1509534SAndreas.Sandberg@ARM.com Exit(1) 1519534SAndreas.Sandberg@ARM.com 1529534SAndreas.Sandberg@ARM.comDebugFlag('Activity') 1539534SAndreas.Sandberg@ARM.comDebugFlag('Commit') 1549534SAndreas.Sandberg@ARM.comDebugFlag('Context') 1559534SAndreas.Sandberg@ARM.comDebugFlag('Decode') 1569534SAndreas.Sandberg@ARM.comDebugFlag('DynInst') 1579534SAndreas.Sandberg@ARM.comDebugFlag('ExecEnable') 1588335Snate@binkert.orgDebugFlag('ExecCPSeq') 1598335Snate@binkert.orgDebugFlag('ExecEffAddr') 1608471SGiacomo.Gabrielli@arm.comDebugFlag('ExecFaulting', 'Trace faulting instructions') 1618335Snate@binkert.orgDebugFlag('ExecFetchSeq') 1628335Snate@binkert.orgDebugFlag('ExecOpClass') 1635192Ssaidi@eecs.umich.eduDebugFlag('ExecRegDelta') 1648232Snate@binkert.orgDebugFlag('ExecResult') 1658232Snate@binkert.orgDebugFlag('ExecSpeculative') 1668232Snate@binkert.orgDebugFlag('ExecSymbol') 1678300Schander.sudanthi@arm.comDebugFlag('ExecThread') 1688300Schander.sudanthi@arm.comDebugFlag('ExecTicks') 1695192Ssaidi@eecs.umich.eduDebugFlag('ExecMicro') 1708300Schander.sudanthi@arm.comDebugFlag('ExecMacro') 1718300Schander.sudanthi@arm.comDebugFlag('ExecUser') 1726036Sksewell@umich.eduDebugFlag('ExecKernel') 1738300Schander.sudanthi@arm.comDebugFlag('ExecAsid') 1748300Schander.sudanthi@arm.comDebugFlag('Fetch') 175DebugFlag('IntrControl') 176DebugFlag('O3PipeView') 177DebugFlag('PCEvent') 178DebugFlag('Quiesce') 179 180CompoundFlag('ExecAll', [ 'ExecEnable', 'ExecCPSeq', 'ExecEffAddr', 181 'ExecFaulting', 'ExecFetchSeq', 'ExecOpClass', 'ExecRegDelta', 182 'ExecResult', 'ExecSpeculative', 'ExecSymbol', 'ExecThread', 183 'ExecTicks', 'ExecMicro', 'ExecMacro', 'ExecUser', 'ExecKernel', 184 'ExecAsid' ]) 185CompoundFlag('Exec', [ 'ExecEnable', 'ExecTicks', 'ExecOpClass', 'ExecThread', 186 'ExecEffAddr', 'ExecResult', 'ExecSymbol', 'ExecMicro', 'ExecFaulting', 187 'ExecUser', 'ExecKernel' ]) 188CompoundFlag('ExecNoTicks', [ 'ExecEnable', 'ExecOpClass', 'ExecThread', 189 'ExecEffAddr', 'ExecResult', 'ExecMicro', 'ExecFaulting', 190 'ExecUser', 'ExecKernel' ]) 191