SConscript revision 8778
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
337768SAli.Saidi@ARM.comif env['TARGET_ISA'] == 'no':
347768SAli.Saidi@ARM.com    Return()
357768SAli.Saidi@ARM.com
362178SN/A#################################################################
372178SN/A#
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.
472155SN/Aexec_sig_template = '''
485865Sksewell@umich.eduvirtual Fault execute(%(type)s *xc, Trace::InstRecord *traceData) const = 0;
496181Sksewell@umich.eduvirtual Fault eaComp(%(type)s *xc, Trace::InstRecord *traceData) const
506181Sksewell@umich.edu{ panic("eaComp not defined!"); M5_DUMMY_RETURN };
515865Sksewell@umich.eduvirtual Fault initiateAcc(%(type)s *xc, Trace::InstRecord *traceData) const
523918Ssaidi@eecs.umich.edu{ panic("initiateAcc not defined!"); M5_DUMMY_RETURN };
535865Sksewell@umich.eduvirtual Fault completeAcc(Packet *pkt, %(type)s *xc,
542623SN/A                          Trace::InstRecord *traceData) const
553918Ssaidi@eecs.umich.edu{ panic("completeAcc not defined!"); M5_DUMMY_RETURN };
562155SN/A'''
572155SN/A
582292SN/Amem_ini_sig_template = '''
596181Sksewell@umich.eduvirtual Fault eaComp(%(type)s *xc, Trace::InstRecord *traceData) const
606181Sksewell@umich.edu{ panic("eaComp not defined!"); M5_DUMMY_RETURN };
613918Ssaidi@eecs.umich.eduvirtual Fault initiateAcc(%s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); M5_DUMMY_RETURN };
622292SN/A'''
632292SN/A
642292SN/Amem_comp_sig_template = '''
653918Ssaidi@eecs.umich.eduvirtual Fault completeAcc(uint8_t *data, %s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); return NoFault; M5_DUMMY_RETURN };
662292SN/A'''
672292SN/A
682766Sktlim@umich.edu# Generate a temporary CPU list, including the CheckerCPU if
692766Sktlim@umich.edu# it's enabled.  This isn't used for anything else other than StaticInst
702766Sktlim@umich.edu# headers.
712921Sktlim@umich.edutemp_cpu_list = env['CPU_MODELS'][:]
728887Sgeoffrey.blake@arm.com
738887Sgeoffrey.blake@arm.comif env['USE_CHECKER']:
742766Sktlim@umich.edu    temp_cpu_list.append('CheckerCPU')
754762Snate@binkert.org    SimObject('CheckerCPU.py')
762155SN/A
772155SN/A# 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__
822766Sktlim@umich.edu#define __CPU_STATIC_INST_EXEC_SIGS_HH__
832155SN/A'''
845865Sksewell@umich.edu    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 }
872155SN/A    print >> f, '''
882155SN/A#endif  // __CPU_STATIC_INST_EXEC_SIGS_HH__
892178SN/A'''
902178SN/A
917756SAli.Saidi@ARM.com# Generate string that gets printed when header is rebuilt
922766Sktlim@umich.edudef gen_sigs_string(target, source, env):
932178SN/A    return " [GENERATE] static_inst_exec_sigs.hh: " \
942178SN/A           + ', '.join(temp_cpu_list)
956994Snate@binkert.org
962178SN/A# Add command to generate header to environment.
972766Sktlim@umich.eduenv.Command('static_inst_exec_sigs.hh', (),
982766Sktlim@umich.edu            Action(gen_cpu_exec_signatures, gen_sigs_string,
992788Sktlim@umich.edu                   varlist = temp_cpu_list))
1002178SN/A
1014486Sbinkertn@umich.eduenv.Depends('static_inst_exec_sigs.hh', Value(env['USE_CHECKER']))
1024486Sbinkertn@umich.eduenv.Depends('static_inst_exec_sigs.hh', Value(env['CPU_MODELS']))
1034776Sgblack@eecs.umich.edu
1044776Sgblack@eecs.umich.edu# List of suppported CPUs by the Checker.  Errors out if USE_CHECKER=True
1058739Sgblack@eecs.umich.edu# and one of these are not being used.
1066365Sgblack@eecs.umich.eduCheckerSupportedCPUList = ['O3CPU', 'OzoneCPU']
1074486Sbinkertn@umich.edu
1084202Sbinkertn@umich.eduSimObject('BaseCPU.py')
1094202Sbinkertn@umich.eduSimObject('FuncUnit.py')
1104202Sbinkertn@umich.eduSimObject('ExeTracer.py')
1118541Sgblack@eecs.umich.eduSimObject('IntelTrace.py')
1124202Sbinkertn@umich.eduSimObject('IntrControl.py')
1134202Sbinkertn@umich.eduSimObject('NativeTrace.py')
1144776Sgblack@eecs.umich.edu
1158739Sgblack@eecs.umich.eduSource('activity.cc')
1166365Sgblack@eecs.umich.eduSource('base.cc')
1174202Sbinkertn@umich.eduSource('cpuevent.cc')
1188777Sgblack@eecs.umich.eduSource('decode.cc')
1194202Sbinkertn@umich.eduSource('exetrace.cc')
1204202Sbinkertn@umich.eduSource('func_unit.cc')
1214202Sbinkertn@umich.eduSource('inteltrace.cc')
1225217Ssaidi@eecs.umich.eduSource('intr_control.cc')
1234202Sbinkertn@umich.eduSource('nativetrace.cc')
1242155SN/ASource('pc_event.cc')
1258793Sgblack@eecs.umich.eduSource('profile.cc')
1268793Sgblack@eecs.umich.eduSource('quiesce_event.cc')
1278793Sgblack@eecs.umich.eduSource('static_inst.cc')
1284776Sgblack@eecs.umich.eduSource('simple_thread.cc')
1298887Sgeoffrey.blake@arm.comSource('thread_context.cc')
1308887Sgeoffrey.blake@arm.comSource('thread_state.cc')
1318887Sgeoffrey.blake@arm.com
1328887Sgeoffrey.blake@arm.comif env['FULL_SYSTEM']:
1335192Ssaidi@eecs.umich.edu    if env['TARGET_ISA'] == 'sparc':
1348335Snate@binkert.org        SimObject('LegionTrace.py')
1358335Snate@binkert.org        Source('legiontrace.cc')
1368335Snate@binkert.org
1378335Snate@binkert.orgif env['USE_CHECKER']:
1388335Snate@binkert.org    Source('checker/cpu.cc')
1398335Snate@binkert.org    DebugFlag('Checker')
1408335Snate@binkert.org    checker_supports = False
1418335Snate@binkert.org    for i in CheckerSupportedCPUList:
1428335Snate@binkert.org        if i in env['CPU_MODELS']:
1438335Snate@binkert.org            checker_supports = True
1448335Snate@binkert.org    if not checker_supports:
1458335Snate@binkert.org        print "Checker only supports CPU models",
1468335Snate@binkert.org        for i in CheckerSupportedCPUList:
1478335Snate@binkert.org            print i,
1488335Snate@binkert.org        print ", please set USE_CHECKER=False or use one of those CPU models"
1498335Snate@binkert.org        Exit(1)
1508335Snate@binkert.org
1518335Snate@binkert.orgDebugFlag('Activity')
1528335Snate@binkert.orgDebugFlag('Commit')
1538335Snate@binkert.orgDebugFlag('Context')
1548335Snate@binkert.orgDebugFlag('Decode')
1558335Snate@binkert.orgDebugFlag('DynInst')
1568335Snate@binkert.orgDebugFlag('ExecEnable')
1578335Snate@binkert.orgDebugFlag('ExecCPSeq')
1588471SGiacomo.Gabrielli@arm.comDebugFlag('ExecEffAddr')
1598335Snate@binkert.orgDebugFlag('ExecFaulting', 'Trace faulting instructions')
1608335Snate@binkert.orgDebugFlag('ExecFetchSeq')
1615192Ssaidi@eecs.umich.eduDebugFlag('ExecOpClass')
1628232Snate@binkert.orgDebugFlag('ExecRegDelta')
1638232Snate@binkert.orgDebugFlag('ExecResult')
1648232Snate@binkert.orgDebugFlag('ExecSpeculative')
1658300Schander.sudanthi@arm.comDebugFlag('ExecSymbol')
1668300Schander.sudanthi@arm.comDebugFlag('ExecThread')
1675192Ssaidi@eecs.umich.eduDebugFlag('ExecTicks')
1688300Schander.sudanthi@arm.comDebugFlag('ExecMicro')
1698300Schander.sudanthi@arm.comDebugFlag('ExecMacro')
1706036Sksewell@umich.eduDebugFlag('ExecUser')
1718300Schander.sudanthi@arm.comDebugFlag('ExecKernel')
1728300Schander.sudanthi@arm.comDebugFlag('ExecAsid')
173DebugFlag('Fetch')
174DebugFlag('IntrControl')
175DebugFlag('O3PipeView')
176DebugFlag('PCEvent')
177DebugFlag('Quiesce')
178
179CompoundFlag('ExecAll', [ 'ExecEnable', 'ExecCPSeq', 'ExecEffAddr',
180    'ExecFaulting', 'ExecFetchSeq', 'ExecOpClass', 'ExecRegDelta',
181    'ExecResult', 'ExecSpeculative', 'ExecSymbol', 'ExecThread',
182    'ExecTicks', 'ExecMicro', 'ExecMacro', 'ExecUser', 'ExecKernel',
183    'ExecAsid' ])
184CompoundFlag('Exec', [ 'ExecEnable', 'ExecTicks', 'ExecOpClass', 'ExecThread',
185    'ExecEffAddr', 'ExecResult', 'ExecSymbol', 'ExecMicro', 'ExecFaulting',
186    'ExecUser', 'ExecKernel' ])
187CompoundFlag('ExecNoTicks', [ 'ExecEnable', 'ExecOpClass', 'ExecThread',
188    'ExecEffAddr', 'ExecResult', 'ExecMicro', 'ExecFaulting',
189    'ExecUser', 'ExecKernel' ])
190