SConscript revision 11008:be3b60b52b31
1955SN/A# -*- mode:python -*-
2955SN/A
311408Sandreas.sandberg@arm.com# Copyright (c) 2006 The Regents of The University of Michigan
49812Sandreas.hansson@arm.com# All rights reserved.
59812Sandreas.hansson@arm.com#
69812Sandreas.hansson@arm.com# Redistribution and use in source and binary forms, with or without
79812Sandreas.hansson@arm.com# modification, are permitted provided that the following conditions are
89812Sandreas.hansson@arm.com# met: redistributions of source code must retain the above copyright
99812Sandreas.hansson@arm.com# notice, this list of conditions and the following disclaimer;
109812Sandreas.hansson@arm.com# redistributions in binary form must reproduce the above copyright
119812Sandreas.hansson@arm.com# notice, this list of conditions and the following disclaimer in the
129812Sandreas.hansson@arm.com# documentation and/or other materials provided with the distribution;
139812Sandreas.hansson@arm.com# neither the name of the copyright holders nor the names of its
149812Sandreas.hansson@arm.com# contributors may be used to endorse or promote products derived from
157816Ssteve.reinhardt@amd.com# this software without specific prior written permission.
165871Snate@binkert.org#
171762SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18955SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19955SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20955SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21955SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22955SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23955SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24955SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25955SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26955SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27955SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28955SN/A#
29955SN/A# Authors: Nathan Binkert
30955SN/A
31955SN/AImport('*')
32955SN/A
33955SN/Aif env['CP_ANNOTATE']:
34955SN/A    SimObject('CPA.py')
35955SN/A    Source('cp_annotate.cc')
36955SN/ASource('atomicio.cc')
37955SN/ASource('bigint.cc')
38955SN/ASource('bitmap.cc')
39955SN/ASource('callback.cc')
40955SN/ASource('cprintf.cc')
41955SN/ASource('debug.cc')
422665Ssaidi@eecs.umich.eduif env['USE_FENV']:
432665Ssaidi@eecs.umich.edu    Source('fenv.c')
445863Snate@binkert.orgSource('framebuffer.cc')
45955SN/ASource('hostinfo.cc')
46955SN/ASource('inet.cc')
47955SN/ASource('inifile.cc')
48955SN/ASource('intmath.cc')
49955SN/ASource('match.cc')
508878Ssteve.reinhardt@amd.comSource('misc.cc')
512632Sstever@eecs.umich.eduSource('output.cc')
528878Ssteve.reinhardt@amd.comSource('pollevent.cc')
532632Sstever@eecs.umich.eduSource('random.cc')
54955SN/Aif env['TARGET_ISA'] != 'null':
558878Ssteve.reinhardt@amd.com    Source('remote_gdb.cc')
562632Sstever@eecs.umich.eduSource('socket.cc')
572761Sstever@eecs.umich.eduSource('statistics.cc')
582632Sstever@eecs.umich.eduSource('str.cc')
592632Sstever@eecs.umich.eduSource('time.cc')
602632Sstever@eecs.umich.eduSource('trace.cc')
612761Sstever@eecs.umich.eduSource('types.cc')
622761Sstever@eecs.umich.edu
632761Sstever@eecs.umich.eduSource('loader/aout_object.cc')
648878Ssteve.reinhardt@amd.comSource('loader/dtb_object.cc')
658878Ssteve.reinhardt@amd.comSource('loader/ecoff_object.cc')
662761Sstever@eecs.umich.eduSource('loader/elf_object.cc')
672761Sstever@eecs.umich.eduSource('loader/hex_file.cc')
682761Sstever@eecs.umich.eduSource('loader/object_file.cc')
692761Sstever@eecs.umich.eduSource('loader/raw_object.cc')
702761Sstever@eecs.umich.eduSource('loader/symtab.cc')
718878Ssteve.reinhardt@amd.com
728878Ssteve.reinhardt@amd.comSource('stats/text.cc')
732632Sstever@eecs.umich.edu
742632Sstever@eecs.umich.eduDebugFlag('Annotate', "State machine annotation debugging")
758878Ssteve.reinhardt@amd.comDebugFlag('AnnotateQ', "State machine annotation queue debugging")
768878Ssteve.reinhardt@amd.comDebugFlag('AnnotateVerbose', "Dump all state machine annotation details")
772632Sstever@eecs.umich.eduDebugFlag('GDBAcc', "Remote debugger accesses")
78955SN/ADebugFlag('GDBExtra', "Dump extra information on reads and writes")
79955SN/ADebugFlag('GDBMisc', "Breakpoints, traps, watchpoints, etc.")
80955SN/ADebugFlag('GDBRead', "Reads to the remote address space")
815863Snate@binkert.orgDebugFlag('GDBRecv', "Messages received from the remote application")
825863Snate@binkert.orgDebugFlag('GDBSend', "Messages sent to the remote application")
835863Snate@binkert.orgDebugFlag('GDBWrite', "Writes to the remote address space")
845863Snate@binkert.orgDebugFlag('SQL', "SQL queries sent to the server")
855863Snate@binkert.orgDebugFlag('StatEvents', "Statistics event tracking")
865863Snate@binkert.org
875863Snate@binkert.orgCompoundFlag('GDBAll',
885863Snate@binkert.org    [ 'GDBMisc', 'GDBAcc', 'GDBRead', 'GDBWrite', 'GDBSend', 'GDBRecv',
895863Snate@binkert.org      'GDBExtra' ],
905863Snate@binkert.org    desc="All Remote debugging flags")
915863Snate@binkert.orgCompoundFlag('AnnotateAll', ['Annotate', 'AnnotateQ', 'AnnotateVerbose'],
928878Ssteve.reinhardt@amd.com    desc="All Annotation flags")
935863Snate@binkert.org
945863Snate@binkert.org