SConscript revision 4202
19363Snilay@cs.wisc.edu# -*- mode:python -*-
29363Snilay@cs.wisc.edu
39363Snilay@cs.wisc.edu# Copyright (c) 2005-2006 The Regents of The University of Michigan
49363Snilay@cs.wisc.edu# All rights reserved.
59363Snilay@cs.wisc.edu#
69363Snilay@cs.wisc.edu# Redistribution and use in source and binary forms, with or without
79363Snilay@cs.wisc.edu# modification, are permitted provided that the following conditions are
89363Snilay@cs.wisc.edu# met: redistributions of source code must retain the above copyright
99363Snilay@cs.wisc.edu# notice, this list of conditions and the following disclaimer;
109363Snilay@cs.wisc.edu# redistributions in binary form must reproduce the above copyright
119363Snilay@cs.wisc.edu# notice, this list of conditions and the following disclaimer in the
129363Snilay@cs.wisc.edu# documentation and/or other materials provided with the distribution;
139363Snilay@cs.wisc.edu# neither the name of the copyright holders nor the names of its
149363Snilay@cs.wisc.edu# contributors may be used to endorse or promote products derived from
159363Snilay@cs.wisc.edu# this software without specific prior written permission.
169363Snilay@cs.wisc.edu#
179363Snilay@cs.wisc.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
189363Snilay@cs.wisc.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
199363Snilay@cs.wisc.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
209363Snilay@cs.wisc.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
219363Snilay@cs.wisc.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
229363Snilay@cs.wisc.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
239363Snilay@cs.wisc.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
249363Snilay@cs.wisc.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
259363Snilay@cs.wisc.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
269363Snilay@cs.wisc.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
279363Snilay@cs.wisc.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
289363Snilay@cs.wisc.edu#
299363Snilay@cs.wisc.edu# Authors: Gabe Black
309363Snilay@cs.wisc.edu
319363Snilay@cs.wisc.edu# Copyright (c) 2007 The Hewlett-Packard Development Company
329363Snilay@cs.wisc.edu# All rights reserved.
339363Snilay@cs.wisc.edu#
349363Snilay@cs.wisc.edu# Redistribution and use of this software in source and binary forms,
359363Snilay@cs.wisc.edu# with or without modification, are permitted provided that the
3611052Sandreas.hansson@arm.com# following conditions are met:
3710301Snilay@cs.wisc.edu#
3810970Sdavid.hashe@amd.com# The software must be used only for Non-Commercial Use which means any
3910970Sdavid.hashe@amd.com# use which is NOT directed to receiving any direct monetary
4010970Sdavid.hashe@amd.com# compensation for, or commercial advantage from such use.  Illustrative
4110301Snilay@cs.wisc.edu# examples of non-commercial use are academic research, personal study,
429363Snilay@cs.wisc.edu# teaching, education and corporate research & development.
4310301Snilay@cs.wisc.edu# Illustrative examples of commercial use are distributing products for
4410301Snilay@cs.wisc.edu# commercial advantage and providing services using the software for
4510970Sdavid.hashe@amd.com# commercial advantage.
4610301Snilay@cs.wisc.edu#
4710301Snilay@cs.wisc.edu# If you wish to use this software or functionality therein that may be
4810970Sdavid.hashe@amd.com# covered by patents for commercial use, please contact:
4910970Sdavid.hashe@amd.com#     Director of Intellectual Property Licensing
5010301Snilay@cs.wisc.edu#     Office of Strategy and Technology
5110301Snilay@cs.wisc.edu#     Hewlett-Packard Company
5210301Snilay@cs.wisc.edu#     1501 Page Mill Road
5310301Snilay@cs.wisc.edu#     Palo Alto, California  94304
549363Snilay@cs.wisc.edu#
5510301Snilay@cs.wisc.edu# Redistributions of source code must retain the above copyright notice,
5610301Snilay@cs.wisc.edu# this list of conditions and the following disclaimer.  Redistributions
57# in binary form must reproduce the above copyright notice, this list of
58# conditions and the following disclaimer in the documentation and/or
59# other materials provided with the distribution.  Neither the name of
60# the COPYRIGHT HOLDER(s), HEWLETT-PACKARD COMPANY, nor the names of its
61# contributors may be used to endorse or promote products derived from
62# this software without specific prior written permission.  No right of
63# sublicense is granted herewith.  Derivatives of the software and
64# output created using the software may be prepared, but only for
65# Non-Commercial Uses.  Derivatives of the software may be shared with
66# others provided: (i) the others agree to abide by the list of
67# conditions herein which includes the Non-Commercial Use restrictions;
68# and (ii) such Derivatives of the software include the above copyright
69# notice to acknowledge the contribution from this software where
70# applicable, this list of conditions and the disclaimer below.
71#
72# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
73# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
74# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
75# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
76# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
77# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
78# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
79# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
80# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
81# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
82# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
83#
84# Authors: Gabe Black
85
86Import('*')
87
88if env['TARGET_ISA'] == 'x86':
89    Source('floatregfile.cc')
90    Source('intregfile.cc')
91    Source('miscregfile.cc')
92    Source('regfile.cc')
93    Source('remote_gdb.cc')
94
95    if env['FULL_SYSTEM']:
96        # Full-system sources
97        pass
98    else:
99        Source('process.cc')
100
101        Source('linux/linux.cc')
102        Source('linux/process.cc')
103        Source('linux/syscalls.cc')
104
105    # Add in files generated by the ISA description.
106    isa_desc_files = env.ISADesc('isa/main.isa')
107    # Only non-header files need to be compiled.
108    for f in isa_desc_files:
109        if not f.path.endswith('.hh'):
110            Source(f)
111