SConscript revision 6143
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/A#################################################################
342178SN/A#
352178SN/A# Generate StaticInst execute() method signatures.
362178SN/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
452155SN/Amodels_db = File('cpu_models.py')
462178SN/A# slurp in contents of file
472155SN/Aexecfile(models_db.srcnode().abspath)
482155SN/A
492178SN/A# Template for execute() signature.
502155SN/Aexec_sig_template = '''
512155SN/Avirtual Fault execute(%(type)s *xc, Trace::InstRecord *traceData) const = 0;
522623SN/Avirtual Fault initiateAcc(%(type)s *xc, Trace::InstRecord *traceData) const
533918Ssaidi@eecs.umich.edu{ panic("initiateAcc not defined!"); M5_DUMMY_RETURN };
542623SN/Avirtual Fault completeAcc(Packet *pkt, %(type)s *xc,
552623SN/A                          Trace::InstRecord *traceData) const
563918Ssaidi@eecs.umich.edu{ panic("completeAcc not defined!"); M5_DUMMY_RETURN };
572155SN/Avirtual int memAccSize(%(type)s *xc)
582155SN/A{ panic("memAccSize not defined!"); M5_DUMMY_RETURN };
592292SN/A'''
603918Ssaidi@eecs.umich.edu
612292SN/Amem_ini_sig_template = '''
622292SN/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 };
672766Sktlim@umich.edu'''
682766Sktlim@umich.edu
692766Sktlim@umich.edu# Generate a temporary CPU list, including the CheckerCPU if
702921Sktlim@umich.edu# it's enabled.  This isn't used for anything else other than StaticInst
712921Sktlim@umich.edu# headers.
722766Sktlim@umich.edutemp_cpu_list = env['CPU_MODELS'][:]
732766Sktlim@umich.edu
742766Sktlim@umich.eduif env['USE_CHECKER']:
752178SN/A    temp_cpu_list.append('CheckerCPU')
762155SN/A    SimObject('CheckerCPU.py')
772155SN/A
782155SN/A# Generate header.
792155SN/Adef gen_cpu_exec_signatures(target, source, env):
802155SN/A    f = open(str(target[0]), 'w')
812155SN/A    print >> f, '''
822766Sktlim@umich.edu#ifndef __CPU_STATIC_INST_EXEC_SIGS_HH__
832155SN/A#define __CPU_STATIC_INST_EXEC_SIGS_HH__
842623SN/A'''
852155SN/A    for cpu in temp_cpu_list:
862155SN/A        xc_type = CpuModel.dict[cpu].strings['CPU_exec_context']
872155SN/A        print >> f, exec_sig_template % { 'type' : xc_type }
882155SN/A    print >> f, '''
892178SN/A#endif  // __CPU_STATIC_INST_EXEC_SIGS_HH__
902178SN/A'''
912178SN/A
922766Sktlim@umich.edu# 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)
962178SN/A
972766Sktlim@umich.edu# Add command to generate header to environment.
982766Sktlim@umich.eduenv.Command('static_inst_exec_sigs.hh', models_db,
992766Sktlim@umich.edu            Action(gen_cpu_exec_signatures, gen_sigs_string,
1002788Sktlim@umich.edu                   varlist = temp_cpu_list))
1012178SN/A
1022733Sktlim@umich.eduenv.Depends('static_inst_exec_sigs.hh', Value(env['USE_CHECKER']))
1032733Sktlim@umich.eduenv.Depends('static_inst_exec_sigs.hh', Value(env['CPU_MODELS']))
1042817Sksewell@umich.edu
1052733Sktlim@umich.edu# List of suppported CPUs by the Checker.  Errors out if USE_CHECKER=True
1064202Sbinkertn@umich.edu# and one of these are not being used.
1074202Sbinkertn@umich.eduCheckerSupportedCPUList = ['O3CPU', 'OzoneCPU']
1084202Sbinkertn@umich.edu
1094202Sbinkertn@umich.eduSimObject('BaseCPU.py')
1104202Sbinkertn@umich.eduSimObject('FuncUnit.py')
1114202Sbinkertn@umich.eduSimObject('ExeTracer.py')
1124202Sbinkertn@umich.eduSimObject('IntelTrace.py')
1134202Sbinkertn@umich.edu
1144202Sbinkertn@umich.eduSource('activity.cc')
1154202Sbinkertn@umich.eduSource('base.cc')
1164202Sbinkertn@umich.eduSource('cpuevent.cc')
1172155SN/ASource('exetrace.cc')
1184202Sbinkertn@umich.eduSource('func_unit.cc')
1194202Sbinkertn@umich.eduSource('inteltrace.cc')
1204202Sbinkertn@umich.eduSource('pc_event.cc')
1212821Sktlim@umich.eduSource('quiesce_event.cc')
1222766Sktlim@umich.eduSource('static_inst.cc')
1234202Sbinkertn@umich.eduSource('simple_thread.cc')
1242733Sktlim@umich.eduSource('thread_context.cc')
1252733Sktlim@umich.eduSource('thread_state.cc')
1262733Sktlim@umich.edu
1272733Sktlim@umich.eduif env['FULL_SYSTEM']:
1282733Sktlim@umich.edu    SimObject('IntrControl.py')
1292874Sktlim@umich.edu
1302874Sktlim@umich.edu    Source('intr_control.cc')
1312874Sktlim@umich.edu    Source('profile.cc')
1324202Sbinkertn@umich.edu
1332733Sktlim@umich.edu    if env['TARGET_ISA'] == 'sparc':
134        SimObject('LegionTrace.py')
135        Source('legiontrace.cc')
136
137if env['TARGET_ISA'] == 'x86':
138    SimObject('NativeTrace.py')
139    Source('nativetrace.cc')
140
141if env['USE_CHECKER']:
142    Source('checker/cpu.cc')
143    TraceFlag('Checker')
144    checker_supports = False
145    for i in CheckerSupportedCPUList:
146        if i in env['CPU_MODELS']:
147            checker_supports = True
148    if not checker_supports:
149        print "Checker only supports CPU models",
150        for i in CheckerSupportedCPUList:
151            print i,
152        print ", please set USE_CHECKER=False or use one of those CPU models"
153        Exit(1)
154
155TraceFlag('Activity')
156TraceFlag('Commit')
157TraceFlag('Context')
158TraceFlag('Decode')
159TraceFlag('DynInst')
160TraceFlag('ExecEnable')
161TraceFlag('ExecCPSeq')
162TraceFlag('ExecEffAddr')
163TraceFlag('ExecFetchSeq')
164TraceFlag('ExecOpClass')
165TraceFlag('ExecRegDelta')
166TraceFlag('ExecResult')
167TraceFlag('ExecSpeculative')
168TraceFlag('ExecSymbol')
169TraceFlag('ExecThread')
170TraceFlag('ExecTicks')
171TraceFlag('ExecMicro')
172TraceFlag('ExecMacro')
173TraceFlag('Fetch')
174TraceFlag('IntrControl')
175TraceFlag('PCEvent')
176TraceFlag('Quiesce')
177
178CompoundFlag('Exec', [ 'ExecEnable', 'ExecTicks', 'ExecOpClass', 'ExecThread',
179    'ExecEffAddr', 'ExecResult', 'ExecSymbol', 'ExecMicro' ])
180CompoundFlag('ExecNoTicks', [ 'ExecEnable', 'ExecOpClass', 'ExecThread',
181    'ExecEffAddr', 'ExecResult', 'ExecMicro' ])
182