SConscript revision 5952
112027Sjungma@eit.uni-kl.de# -*- mode:python -*-
212027Sjungma@eit.uni-kl.de
312027Sjungma@eit.uni-kl.de# Copyright (c) 2006 The Regents of The University of Michigan
412027Sjungma@eit.uni-kl.de# All rights reserved.
512027Sjungma@eit.uni-kl.de#
612027Sjungma@eit.uni-kl.de# Redistribution and use in source and binary forms, with or without
712027Sjungma@eit.uni-kl.de# modification, are permitted provided that the following conditions are
812027Sjungma@eit.uni-kl.de# met: redistributions of source code must retain the above copyright
912027Sjungma@eit.uni-kl.de# notice, this list of conditions and the following disclaimer;
1012027Sjungma@eit.uni-kl.de# redistributions in binary form must reproduce the above copyright
1112027Sjungma@eit.uni-kl.de# notice, this list of conditions and the following disclaimer in the
1212027Sjungma@eit.uni-kl.de# documentation and/or other materials provided with the distribution;
1312027Sjungma@eit.uni-kl.de# neither the name of the copyright holders nor the names of its
1412027Sjungma@eit.uni-kl.de# contributors may be used to endorse or promote products derived from
1512027Sjungma@eit.uni-kl.de# 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: Nathan Binkert
30
31Import('*')
32
33if env['CP_ANNOTATE']:
34    SimObject('CPA.py')
35    Source('cp_annotate.cc')
36Source('atomicio.cc')
37Source('bigint.cc')
38Source('circlebuf.cc')
39Source('cprintf.cc')
40Source('crc.cc')
41Source('debug.cc')
42Source('fast_alloc.cc')
43if env['USE_FENV']:
44    Source('fenv.c')
45Source('fifo_buffer.cc')
46Source('hostinfo.cc')
47Source('hybrid_pred.cc')
48Source('inet.cc')
49Source('inifile.cc')
50Source('intmath.cc')
51Source('match.cc')
52Source('misc.cc')
53Source('output.cc')
54Source('pollevent.cc')
55Source('random.cc')
56Source('random_mt.cc')
57Source('range.cc')
58Source('remote_gdb.cc')
59Source('sat_counter.cc')
60Source('socket.cc')
61Source('statistics.cc')
62Source('str.cc')
63Source('time.cc')
64Source('trace.cc')
65Source('userinfo.cc')
66
67Source('compression/lzss_compression.cc')
68
69Source('loader/aout_object.cc')
70Source('loader/ecoff_object.cc')
71Source('loader/elf_object.cc')
72Source('loader/hex_file.cc')
73Source('loader/object_file.cc')
74Source('loader/raw_object.cc')
75Source('loader/symtab.cc')
76
77Source('stats/events.cc')
78Source('stats/output.cc')
79Source('stats/text.cc')
80Source('stats/visit.cc')
81
82if env['USE_MYSQL']:
83    Source('mysql.cc')
84    Source('stats/mysql.cc')
85
86TraceFlag('Annotate', "State machine annotation debugging")
87TraceFlag('AnnotateQ', "State machine annotation queue debugging")
88TraceFlag('AnnotateVerbose', "Dump all state machine annotation details")
89TraceFlag('GDBAcc', "Remote debugger accesses")
90TraceFlag('GDBExtra', "Dump extra information on reads and writes")
91TraceFlag('GDBMisc', "Breakpoints, traps, watchpoints, etc.")
92TraceFlag('GDBRead', "Reads to the remote address space")
93TraceFlag('GDBRecv', "Messages received from the remote application")
94TraceFlag('GDBSend', "Messages sent to the remote application")
95TraceFlag('GDBWrite', "Writes to the remote address space")
96TraceFlag('SQL', "SQL queries sent to the server")
97TraceFlag('StatEvents', "Statistics event tracking")
98
99CompoundFlag('GDBAll',
100    [ 'GDBMisc', 'GDBAcc', 'GDBRead', 'GDBWrite', 'GDBSend', 'GDBRecv',
101      'GDBExtra' ],
102    desc="All Remote debugging flags")
103CompoundFlag('AnnotateAll', ['Annotate', 'AnnotateQ', 'AnnotateVerbose'],
104    desc="All Annotation flags")
105
106