SConscript revision 10069
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 332178SN/Aif env['TARGET_ISA'] == 'null': 342178SN/A SimObject('IntrControl.py') 352178SN/A Source('intr_control_noisa.cc') 362178SN/A Return() 372178SN/A 382178SN/A################################################################# 392178SN/A# 402178SN/A# Generate StaticInst execute() method signatures. 412178SN/A# 422178SN/A# There must be one signature for each CPU model compiled in. 432178SN/A# Since the set of compiled-in models is flexible, we generate a 442178SN/A# header containing the appropriate set of signatures on the fly. 452155SN/A# 462178SN/A################################################################# 472155SN/A 482155SN/A# Template for execute() signature. 492178SN/Aexec_sig_template = ''' 502155SN/Avirtual Fault execute(%(type)s *xc, Trace::InstRecord *traceData) const = 0; 515865Sksewell@umich.eduvirtual Fault eaComp(%(type)s *xc, Trace::InstRecord *traceData) const 526181Sksewell@umich.edu{ panic("eaComp not defined!"); M5_DUMMY_RETURN }; 536181Sksewell@umich.eduvirtual Fault initiateAcc(%(type)s *xc, Trace::InstRecord *traceData) const 545865Sksewell@umich.edu{ panic("initiateAcc not defined!"); M5_DUMMY_RETURN }; 553918Ssaidi@eecs.umich.eduvirtual Fault completeAcc(Packet *pkt, %(type)s *xc, 565865Sksewell@umich.edu Trace::InstRecord *traceData) const 572623SN/A{ panic("completeAcc not defined!"); M5_DUMMY_RETURN }; 583918Ssaidi@eecs.umich.edu''' 592155SN/A 602155SN/Amem_ini_sig_template = ''' 612292SN/Avirtual Fault eaComp(%(type)s *xc, Trace::InstRecord *traceData) const 626181Sksewell@umich.edu{ panic("eaComp not defined!"); M5_DUMMY_RETURN }; 636181Sksewell@umich.eduvirtual Fault initiateAcc(%s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); M5_DUMMY_RETURN }; 643918Ssaidi@eecs.umich.edu''' 652292SN/A 662292SN/Amem_comp_sig_template = ''' 672292SN/Avirtual Fault completeAcc(uint8_t *data, %s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); return NoFault; M5_DUMMY_RETURN }; 683918Ssaidi@eecs.umich.edu''' 692292SN/A 702292SN/A# Generate a temporary CPU list, including the CheckerCPU if 712766Sktlim@umich.edu# it's enabled. This isn't used for anything else other than StaticInst 722766Sktlim@umich.edu# headers. 732766Sktlim@umich.edutemp_cpu_list = env['CPU_MODELS'][:] 742921Sktlim@umich.edutemp_cpu_list.append('CheckerCPU') 752921Sktlim@umich.eduSimObject('CheckerCPU.py') 762766Sktlim@umich.edu 772766Sktlim@umich.edu# Generate header. 785529Snate@binkert.orgdef gen_cpu_exec_signatures(target, source, env): 792766Sktlim@umich.edu f = open(str(target[0]), 'w') 804762Snate@binkert.org print >> f, ''' 812155SN/A#ifndef __CPU_STATIC_INST_EXEC_SIGS_HH__ 822155SN/A#define __CPU_STATIC_INST_EXEC_SIGS_HH__ 832155SN/A''' 842155SN/A for cpu in temp_cpu_list: 852155SN/A xc_type = CpuModel.dict[cpu].strings['CPU_exec_context'] 862155SN/A print >> f, exec_sig_template % { 'type' : xc_type } 872766Sktlim@umich.edu print >> f, ''' 882155SN/A#endif // __CPU_STATIC_INST_EXEC_SIGS_HH__ 895865Sksewell@umich.edu''' 902155SN/A 912155SN/A# Generate string that gets printed when header is rebuilt 922155SN/Adef gen_sigs_string(target, source, env): 932155SN/A return " [GENERATE] static_inst_exec_sigs.hh: " \ 942178SN/A + ', '.join(temp_cpu_list) 952178SN/A 962178SN/A# Add command to generate header to environment. 972766Sktlim@umich.eduenv.Command('static_inst_exec_sigs.hh', (), 982178SN/A Action(gen_cpu_exec_signatures, gen_sigs_string, 992178SN/A varlist = temp_cpu_list)) 1002178SN/A 1012178SN/Aenv.Depends('static_inst_exec_sigs.hh', Value(env['CPU_MODELS'])) 1022766Sktlim@umich.edu 1032766Sktlim@umich.eduSimObject('BaseCPU.py') 1042766Sktlim@umich.eduSimObject('FuncUnit.py') 1052788Sktlim@umich.eduSimObject('ExeTracer.py') 1062178SN/ASimObject('IntelTrace.py') 1072733Sktlim@umich.eduSimObject('IntrControl.py') 1082733Sktlim@umich.eduSimObject('NativeTrace.py') 1092817Sksewell@umich.edu 1102733Sktlim@umich.eduSource('activity.cc') 1114486Sbinkertn@umich.eduSource('base.cc') 1124486Sbinkertn@umich.eduSource('cpuevent.cc') 1134776Sgblack@eecs.umich.eduSource('exetrace.cc') 1144776Sgblack@eecs.umich.eduSource('func_unit.cc') 1156365Sgblack@eecs.umich.eduSource('inteltrace.cc') 1164486Sbinkertn@umich.eduSource('intr_control.cc') 1174202Sbinkertn@umich.eduSource('nativetrace.cc') 1184202Sbinkertn@umich.eduSource('pc_event.cc') 1194202Sbinkertn@umich.eduSource('profile.cc') 1204202Sbinkertn@umich.eduSource('quiesce_event.cc') 1214202Sbinkertn@umich.eduSource('reg_class.cc') 1224776Sgblack@eecs.umich.eduSource('static_inst.cc') 1236365Sgblack@eecs.umich.eduSource('simple_thread.cc') 1244202Sbinkertn@umich.eduSource('thread_context.cc') 1254202Sbinkertn@umich.eduSource('thread_state.cc') 1264202Sbinkertn@umich.edu 1274202Sbinkertn@umich.eduif env['TARGET_ISA'] == 'sparc': 1285217Ssaidi@eecs.umich.edu SimObject('LegionTrace.py') 1294202Sbinkertn@umich.edu Source('legiontrace.cc') 1302155SN/A 1314202Sbinkertn@umich.eduSimObject('DummyChecker.py') 1324486Sbinkertn@umich.eduSource('checker/cpu.cc') 1334486Sbinkertn@umich.eduSource('dummy_checker.cc') 1344202Sbinkertn@umich.eduDebugFlag('Checker') 1354202Sbinkertn@umich.edu 1362821Sktlim@umich.eduDebugFlag('Activity') 1374776Sgblack@eecs.umich.eduDebugFlag('Commit') 1384776Sgblack@eecs.umich.eduDebugFlag('Context') 1394776Sgblack@eecs.umich.eduDebugFlag('Decode') 1404776Sgblack@eecs.umich.eduDebugFlag('DynInst') 1412766Sktlim@umich.eduDebugFlag('ExecEnable', 'Filter: Enable exec tracing (no tracing without this)') 1424202Sbinkertn@umich.eduDebugFlag('ExecCPSeq', 'Format: Instruction sequence number') 1435192Ssaidi@eecs.umich.eduDebugFlag('ExecEffAddr', 'Format: Include effective address') 1442733Sktlim@umich.eduDebugFlag('ExecFaulting', 'Trace faulting instructions') 1452733Sktlim@umich.eduDebugFlag('ExecFetchSeq', 'Format: Fetch sequence number') 1462733Sktlim@umich.eduDebugFlag('ExecOpClass', 'Format: Include operand class') 1472733Sktlim@umich.eduDebugFlag('ExecRegDelta') 1482733Sktlim@umich.eduDebugFlag('ExecResult', 'Format: Include results from execution') 1492874Sktlim@umich.eduDebugFlag('ExecSpeculative', 'Format: Include a miss-/speculation flag (-/+)') 1502874Sktlim@umich.eduDebugFlag('ExecSymbol', 'Format: Try to include symbol names') 1512874Sktlim@umich.eduDebugFlag('ExecThread', 'Format: Include thread ID in trace') 1524202Sbinkertn@umich.eduDebugFlag('ExecTicks', 'Format: Include tick count') 1532733Sktlim@umich.eduDebugFlag('ExecMicro', 'Filter: Include microops') 1545192Ssaidi@eecs.umich.eduDebugFlag('ExecMacro', 'Filter: Include macroops') 1555192Ssaidi@eecs.umich.eduDebugFlag('ExecUser', 'Filter: Trace user mode instructions') 1565192Ssaidi@eecs.umich.eduDebugFlag('ExecKernel', 'Filter: Trace kernel mode instructions') 1575217Ssaidi@eecs.umich.eduDebugFlag('ExecAsid', 'Format: Include ASID in trace') 1585192Ssaidi@eecs.umich.eduDebugFlag('Fetch') 1595192Ssaidi@eecs.umich.eduDebugFlag('IntrControl') 1605192Ssaidi@eecs.umich.eduDebugFlag('O3PipeView') 1615192Ssaidi@eecs.umich.eduDebugFlag('PCEvent') 1625192Ssaidi@eecs.umich.eduDebugFlag('Quiesce') 1636667Ssteve.reinhardt@amd.com 1645192Ssaidi@eecs.umich.eduCompoundFlag('ExecAll', [ 'ExecEnable', 'ExecCPSeq', 'ExecEffAddr', 1655192Ssaidi@eecs.umich.edu 'ExecFaulting', 'ExecFetchSeq', 'ExecOpClass', 'ExecRegDelta', 1665192Ssaidi@eecs.umich.edu 'ExecResult', 'ExecSpeculative', 'ExecSymbol', 'ExecThread', 1675192Ssaidi@eecs.umich.edu 'ExecTicks', 'ExecMicro', 'ExecMacro', 'ExecUser', 'ExecKernel', 1685192Ssaidi@eecs.umich.edu 'ExecAsid' ]) 1695192Ssaidi@eecs.umich.eduCompoundFlag('Exec', [ 'ExecEnable', 'ExecTicks', 'ExecOpClass', 'ExecThread', 1705192Ssaidi@eecs.umich.edu 'ExecEffAddr', 'ExecResult', 'ExecSymbol', 'ExecMicro', 'ExecFaulting', 1715192Ssaidi@eecs.umich.edu 'ExecUser', 'ExecKernel' ]) 1725784Sgblack@eecs.umich.eduCompoundFlag('ExecNoTicks', [ 'ExecEnable', 'ExecOpClass', 'ExecThread', 1735784Sgblack@eecs.umich.edu 'ExecEffAddr', 'ExecResult', 'ExecMicro', 'ExecFaulting', 1745192Ssaidi@eecs.umich.edu 'ExecUser', 'ExecKernel' ]) 1755192Ssaidi@eecs.umich.edu