SConscript revision 10201
16657Snate@binkert.org# -*- mode:python -*-
26657Snate@binkert.org
36657Snate@binkert.org# Copyright (c) 2006 The Regents of The University of Michigan
46657Snate@binkert.org# All rights reserved.
56657Snate@binkert.org#
66657Snate@binkert.org# Redistribution and use in source and binary forms, with or without
76657Snate@binkert.org# modification, are permitted provided that the following conditions are
86657Snate@binkert.org# met: redistributions of source code must retain the above copyright
96657Snate@binkert.org# notice, this list of conditions and the following disclaimer;
106657Snate@binkert.org# redistributions in binary form must reproduce the above copyright
116657Snate@binkert.org# notice, this list of conditions and the following disclaimer in the
126657Snate@binkert.org# documentation and/or other materials provided with the distribution;
136657Snate@binkert.org# neither the name of the copyright holders nor the names of its
146657Snate@binkert.org# contributors may be used to endorse or promote products derived from
156657Snate@binkert.org# this software without specific prior written permission.
166657Snate@binkert.org#
176657Snate@binkert.org# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
186657Snate@binkert.org# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
196657Snate@binkert.org# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
206657Snate@binkert.org# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
216657Snate@binkert.org# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
226657Snate@binkert.org# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
236657Snate@binkert.org# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
246657Snate@binkert.org# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
256657Snate@binkert.org# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
266657Snate@binkert.org# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
276657Snate@binkert.org# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
286657Snate@binkert.org#
296657Snate@binkert.org# Authors: Steve Reinhardt
306657Snate@binkert.org
316657Snate@binkert.orgImport('*')
326657Snate@binkert.org
336657Snate@binkert.orgif env['TARGET_ISA'] == 'null':
346657Snate@binkert.org    SimObject('IntrControl.py')
356657Snate@binkert.org    Source('intr_control_noisa.cc')
366657Snate@binkert.org    Return()
376657Snate@binkert.org
386657Snate@binkert.org#################################################################
396657Snate@binkert.org#
406657Snate@binkert.org# Generate StaticInst execute() method signatures.
416657Snate@binkert.org#
426657Snate@binkert.org# There must be one signature for each CPU model compiled in.
436657Snate@binkert.org# Since the set of compiled-in models is flexible, we generate a
446657Snate@binkert.org# header containing the appropriate set of signatures on the fly.
456657Snate@binkert.org#
466657Snate@binkert.org#################################################################
476657Snate@binkert.org
486657Snate@binkert.org# Template for execute() signature.
496657Snate@binkert.orgexec_sig_template = '''
506657Snate@binkert.orgvirtual Fault execute(%(type)s *xc, Trace::InstRecord *traceData) const = 0;
516657Snate@binkert.orgvirtual Fault eaComp(%(type)s *xc, Trace::InstRecord *traceData) const
526657Snate@binkert.org{ panic("eaComp not defined!"); M5_DUMMY_RETURN };
536657Snate@binkert.orgvirtual Fault initiateAcc(%(type)s *xc, Trace::InstRecord *traceData) const
546657Snate@binkert.org{ panic("initiateAcc not defined!"); M5_DUMMY_RETURN };
556657Snate@binkert.orgvirtual Fault completeAcc(Packet *pkt, %(type)s *xc,
566657Snate@binkert.org                          Trace::InstRecord *traceData) const
576657Snate@binkert.org{ panic("completeAcc not defined!"); M5_DUMMY_RETURN };
586657Snate@binkert.org'''
596657Snate@binkert.org
60mem_ini_sig_template = '''
61virtual Fault eaComp(%(type)s *xc, Trace::InstRecord *traceData) const
62{ panic("eaComp not defined!"); M5_DUMMY_RETURN };
63virtual Fault initiateAcc(%s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); M5_DUMMY_RETURN };
64'''
65
66mem_comp_sig_template = '''
67virtual Fault completeAcc(uint8_t *data, %s *xc, Trace::InstRecord *traceData) const { panic("Not defined!"); return NoFault; M5_DUMMY_RETURN };
68'''
69
70# Generate a temporary CPU list, including the CheckerCPU if
71# it's enabled.  This isn't used for anything else other than StaticInst
72# headers.
73temp_cpu_list = env['CPU_MODELS'][:]
74temp_cpu_list.append('CheckerCPU')
75SimObject('CheckerCPU.py')
76
77# Generate header.
78def gen_cpu_exec_signatures(target, source, env):
79    f = open(str(target[0]), 'w')
80    print >> f, '''
81#ifndef __CPU_STATIC_INST_EXEC_SIGS_HH__
82#define __CPU_STATIC_INST_EXEC_SIGS_HH__
83'''
84    for cpu in temp_cpu_list:
85        xc_type = CpuModel.dict[cpu].strings['CPU_exec_context']
86        print >> f, exec_sig_template % { 'type' : xc_type }
87    print >> f, '''
88#endif  // __CPU_STATIC_INST_EXEC_SIGS_HH__
89'''
90
91# Generate string that gets printed when header is rebuilt
92def gen_sigs_string(target, source, env):
93    return " [GENERATE] static_inst_exec_sigs.hh: " \
94           + ', '.join(temp_cpu_list)
95
96# Add command to generate header to environment.
97env.Command('static_inst_exec_sigs.hh', (),
98            Action(gen_cpu_exec_signatures, gen_sigs_string,
99                   varlist = temp_cpu_list))
100
101env.Depends('static_inst_exec_sigs.hh', Value(env['CPU_MODELS']))
102
103SimObject('BaseCPU.py')
104SimObject('FuncUnit.py')
105SimObject('ExeTracer.py')
106SimObject('IntelTrace.py')
107SimObject('IntrControl.py')
108SimObject('NativeTrace.py')
109
110Source('activity.cc')
111Source('base.cc')
112Source('cpuevent.cc')
113Source('exetrace.cc')
114Source('func_unit.cc')
115Source('inteltrace.cc')
116Source('intr_control.cc')
117Source('nativetrace.cc')
118Source('pc_event.cc')
119Source('profile.cc')
120Source('quiesce_event.cc')
121Source('reg_class.cc')
122Source('static_inst.cc')
123Source('simple_thread.cc')
124Source('thread_context.cc')
125Source('thread_state.cc')
126
127if env['TARGET_ISA'] == 'sparc':
128    SimObject('LegionTrace.py')
129    Source('legiontrace.cc')
130
131SimObject('DummyChecker.py')
132SimObject('StaticInstFlags.py')
133Source('checker/cpu.cc')
134Source('dummy_checker.cc')
135DebugFlag('Checker')
136
137DebugFlag('Activity')
138DebugFlag('Commit')
139DebugFlag('Context')
140DebugFlag('Decode')
141DebugFlag('DynInst')
142DebugFlag('ExecEnable', 'Filter: Enable exec tracing (no tracing without this)')
143DebugFlag('ExecCPSeq', 'Format: Instruction sequence number')
144DebugFlag('ExecEffAddr', 'Format: Include effective address')
145DebugFlag('ExecFaulting', 'Trace faulting instructions')
146DebugFlag('ExecFetchSeq', 'Format: Fetch sequence number')
147DebugFlag('ExecOpClass', 'Format: Include operand class')
148DebugFlag('ExecRegDelta')
149DebugFlag('ExecResult', 'Format: Include results from execution')
150DebugFlag('ExecSpeculative', 'Format: Include a miss-/speculation flag (-/+)')
151DebugFlag('ExecSymbol', 'Format: Try to include symbol names')
152DebugFlag('ExecThread', 'Format: Include thread ID in trace')
153DebugFlag('ExecTicks', 'Format: Include tick count')
154DebugFlag('ExecMicro', 'Filter: Include microops')
155DebugFlag('ExecMacro', 'Filter: Include macroops')
156DebugFlag('ExecUser', 'Filter: Trace user mode instructions')
157DebugFlag('ExecKernel', 'Filter: Trace kernel mode instructions')
158DebugFlag('ExecAsid', 'Format: Include ASID in trace')
159DebugFlag('Fetch')
160DebugFlag('IntrControl')
161DebugFlag('O3PipeView')
162DebugFlag('PCEvent')
163DebugFlag('Quiesce')
164
165CompoundFlag('ExecAll', [ 'ExecEnable', 'ExecCPSeq', 'ExecEffAddr',
166    'ExecFaulting', 'ExecFetchSeq', 'ExecOpClass', 'ExecRegDelta',
167    'ExecResult', 'ExecSpeculative', 'ExecSymbol', 'ExecThread',
168    'ExecTicks', 'ExecMicro', 'ExecMacro', 'ExecUser', 'ExecKernel',
169    'ExecAsid' ])
170CompoundFlag('Exec', [ 'ExecEnable', 'ExecTicks', 'ExecOpClass', 'ExecThread',
171    'ExecEffAddr', 'ExecResult', 'ExecSymbol', 'ExecMicro', 'ExecFaulting',
172    'ExecUser', 'ExecKernel' ])
173CompoundFlag('ExecNoTicks', [ 'ExecEnable', 'ExecOpClass', 'ExecThread',
174    'ExecEffAddr', 'ExecResult', 'ExecMicro', 'ExecFaulting',
175    'ExecUser', 'ExecKernel' ])
176