SConscript revision 10662:c3fd4c020e49
1# -*- mode:python -*-
2
3# Copyright (c) 2006 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright
9# notice, this list of conditions and the following disclaimer;
10# redistributions in binary form must reproduce the above copyright
11# notice, this list of conditions and the following disclaimer in the
12# documentation and/or other materials provided with the distribution;
13# neither the name of the copyright holders nor the names of its
14# contributors may be used to endorse or promote products derived from
15# this software without specific prior written permission.
16#
17# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28#
29# Authors: Steve Reinhardt
30
31Import('*')
32
33if env['TARGET_ISA'] == 'null':
34    SimObject('IntrControl.py')
35    Source('intr_control_noisa.cc')
36    Return()
37
38SimObject('CheckerCPU.py')
39
40SimObject('BaseCPU.py')
41SimObject('FuncUnit.py')
42SimObject('ExeTracer.py')
43SimObject('IntelTrace.py')
44SimObject('IntrControl.py')
45SimObject('NativeTrace.py')
46SimObject('TimingExpr.py')
47
48Source('activity.cc')
49Source('base.cc')
50Source('cpuevent.cc')
51Source('exetrace.cc')
52Source('exec_context.cc')
53Source('func_unit.cc')
54Source('inteltrace.cc')
55Source('intr_control.cc')
56Source('nativetrace.cc')
57Source('pc_event.cc')
58Source('profile.cc')
59Source('quiesce_event.cc')
60Source('reg_class.cc')
61Source('static_inst.cc')
62Source('simple_thread.cc')
63Source('thread_context.cc')
64Source('thread_state.cc')
65Source('timing_expr.cc')
66
67SimObject('DummyChecker.py')
68SimObject('StaticInstFlags.py')
69Source('checker/cpu.cc')
70Source('dummy_checker.cc')
71DebugFlag('Checker')
72
73DebugFlag('Activity')
74DebugFlag('Commit')
75DebugFlag('Context')
76DebugFlag('Decode')
77DebugFlag('DynInst')
78DebugFlag('ExecEnable', 'Filter: Enable exec tracing (no tracing without this)')
79DebugFlag('ExecCPSeq', 'Format: Instruction sequence number')
80DebugFlag('ExecEffAddr', 'Format: Include effective address')
81DebugFlag('ExecFaulting', 'Trace faulting instructions')
82DebugFlag('ExecFetchSeq', 'Format: Fetch sequence number')
83DebugFlag('ExecOpClass', 'Format: Include operand class')
84DebugFlag('ExecRegDelta')
85DebugFlag('ExecResult', 'Format: Include results from execution')
86DebugFlag('ExecSpeculative', 'Format: Include a miss-/speculation flag (-/+)')
87DebugFlag('ExecSymbol', 'Format: Try to include symbol names')
88DebugFlag('ExecThread', 'Format: Include thread ID in trace')
89DebugFlag('ExecTicks', 'Format: Include tick count')
90DebugFlag('ExecMicro', 'Filter: Include microops')
91DebugFlag('ExecMacro', 'Filter: Include macroops')
92DebugFlag('ExecUser', 'Filter: Trace user mode instructions')
93DebugFlag('ExecKernel', 'Filter: Trace kernel mode instructions')
94DebugFlag('ExecAsid', 'Format: Include ASID in trace')
95DebugFlag('ExecFlags', 'Format: Include instruction flags in trace')
96DebugFlag('Fetch')
97DebugFlag('IntrControl')
98DebugFlag('O3PipeView')
99DebugFlag('PCEvent')
100DebugFlag('Quiesce')
101DebugFlag('Mwait')
102
103CompoundFlag('ExecAll', [ 'ExecEnable', 'ExecCPSeq', 'ExecEffAddr',
104    'ExecFaulting', 'ExecFetchSeq', 'ExecOpClass', 'ExecRegDelta',
105    'ExecResult', 'ExecSpeculative', 'ExecSymbol', 'ExecThread',
106    'ExecTicks', 'ExecMicro', 'ExecMacro', 'ExecUser', 'ExecKernel',
107    'ExecAsid', 'ExecFlags' ])
108CompoundFlag('Exec', [ 'ExecEnable', 'ExecTicks', 'ExecOpClass', 'ExecThread',
109    'ExecEffAddr', 'ExecResult', 'ExecSymbol', 'ExecMicro', 'ExecFaulting',
110    'ExecUser', 'ExecKernel' ])
111CompoundFlag('ExecNoTicks', [ 'ExecEnable', 'ExecOpClass', 'ExecThread',
112    'ExecEffAddr', 'ExecResult', 'ExecMicro', 'ExecFaulting',
113    'ExecUser', 'ExecKernel' ])
114