SConscript revision 6179
1955SN/A# -*- mode:python -*-
2955SN/A
31762SN/A# Copyright (c) 2006 The Regents of The University of Michigan
4955SN/A# All rights reserved.
5955SN/A#
6955SN/A# Redistribution and use in source and binary forms, with or without
7955SN/A# modification, are permitted provided that the following conditions are
8955SN/A# met: redistributions of source code must retain the above copyright
9955SN/A# notice, this list of conditions and the following disclaimer;
10955SN/A# redistributions in binary form must reproduce the above copyright
11955SN/A# notice, this list of conditions and the following disclaimer in the
12955SN/A# documentation and/or other materials provided with the distribution;
13955SN/A# neither the name of the copyright holders nor the names of its
14955SN/A# contributors may be used to endorse or promote products derived from
15955SN/A# this software without specific prior written permission.
16955SN/A#
17955SN/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.
282665Ssaidi@eecs.umich.edu#
292665Ssaidi@eecs.umich.edu# Authors: Steve Reinhardt
30955SN/A
31955SN/Aimport sys
32955SN/A
331608SN/AImport('*')
34955SN/A
35955SN/A#################################################################
36955SN/A#
37955SN/A# ISA "switch header" generation.
38955SN/A#
39955SN/A# Auto-generate arch headers that include the right ISA-specific
40955SN/A# header based on the setting of THE_ISA preprocessor variable.
41955SN/A#
42955SN/A#################################################################
43955SN/A
44955SN/A# List of headers to generate
45955SN/Aisa_switch_hdrs = Split('''
46955SN/A        arguments.hh
47955SN/A        faults.hh
482023SN/A        interrupts.hh
49955SN/A        isa_traits.hh
503089Ssaidi@eecs.umich.edu        kernel_stats.hh
51955SN/A        locked_mem.hh
52955SN/A        microcode_rom.hh
53955SN/A        mmaped_ipr.hh
54955SN/A        mt.hh
55955SN/A        process.hh
56955SN/A        predecoder.hh
57955SN/A        regfile.hh
58955SN/A        remote_gdb.hh
591031SN/A        stacktrace.hh
60955SN/A        tlb.hh
611388SN/A        types.hh
62955SN/A        utility.hh
63955SN/A        vtophys.hh
641296SN/A        ''')
65955SN/A
66955SN/A# Set up this directory to support switching headers
67955SN/Amake_switching_dir('arch', isa_switch_hdrs, env)
68955SN/A
69955SN/A#################################################################
70955SN/A#
71955SN/A# Include architecture-specific files.
72955SN/A#
73955SN/A#################################################################
74955SN/A
75955SN/A#
76955SN/A# Build a SCons scanner for ISA files
77955SN/A#
78955SN/Aimport SCons.Scanner
79955SN/A
80955SN/Aisa_scanner = SCons.Scanner.Classic("ISAScan",
81955SN/A                                    [".isa", ".ISA"],
82955SN/A                                    "SRCDIR",
83955SN/A                                    r'^\s*##include\s+"([\w/.-]*)"')
842325SN/A
851717SN/Aenv.Append(SCANNERS = isa_scanner)
862652Ssaidi@eecs.umich.edu
87955SN/A#
882736Sktlim@umich.edu# Now create a Builder object that uses isa_parser.py to generate C++
892410SN/A# output from the ISA description (*.isa) files.
90955SN/A#
912290SN/A
92955SN/A# Convert to File node to fix path
932683Sktlim@umich.eduisa_parser = File('isa_parser.py')
942683Sktlim@umich.educpu_models_file = File('../cpu/cpu_models.py')
952669Sktlim@umich.edu
962568SN/A# This sucks in the defintions of the CpuModel objects.
972568SN/Aexecfile(cpu_models_file.srcnode().abspath)
983012Ssaidi@eecs.umich.edu
992462SN/A# Several files are generated from the ISA description.
1002568SN/A# We always get the basic decoder and header file.
1012395SN/Aisa_desc_gen_files = [ 'decoder.cc', 'decoder.hh', 'max_inst_regs.hh' ]
1022405SN/A# We also get an execute file for each selected CPU model.
1032914Ssaidi@eecs.umich.eduisa_desc_gen_files += [CpuModel.dict[cpu].filename
104955SN/A                       for cpu in env['CPU_MODELS']]
1052811Srdreslin@umich.edu
1062811Srdreslin@umich.edu# Also include the CheckerCPU as one of the models if it is being
1072811Srdreslin@umich.edu# enabled via command line.
1082811Srdreslin@umich.eduif env['USE_CHECKER']:
1092811Srdreslin@umich.edu    isa_desc_gen_files += [CpuModel.dict['CheckerCPU'].filename]
1102811Srdreslin@umich.edu
1112811Srdreslin@umich.edu# The emitter patches up the sources & targets to include the
1122811Srdreslin@umich.edu# autogenerated files as targets and isa parser itself as a source.
1132811Srdreslin@umich.edudef isa_desc_emitter(target, source, env):
1142811Srdreslin@umich.edu    return (isa_desc_gen_files, [isa_parser, cpu_models_file] + source)
1152811Srdreslin@umich.edu
1162811Srdreslin@umich.edu# Pieces are in place, so create the builder.
1172811Srdreslin@umich.edupython = sys.executable  # use same Python binary used to run scons
1182811Srdreslin@umich.edu
1192811Srdreslin@umich.edu# Also include the CheckerCPU as one of the models if it is being
1202811Srdreslin@umich.edu# enabled via command line.
1212814Srdreslin@umich.eduif env['USE_CHECKER']:
1222811Srdreslin@umich.edu    isa_desc_builder = Builder(action=python + ' $SOURCES $TARGET.dir $CPU_MODELS CheckerCPU',
1232811Srdreslin@umich.edu                               emitter = isa_desc_emitter)
1242811Srdreslin@umich.eduelse:
1252811Srdreslin@umich.edu    isa_desc_builder = Builder(action=python + ' $SOURCES $TARGET.dir $CPU_MODELS',
1262811Srdreslin@umich.edu                               emitter = isa_desc_emitter)
1272811Srdreslin@umich.edu
1282811Srdreslin@umich.eduenv.Append(BUILDERS = { 'ISADesc' : isa_desc_builder })
1292813Srdreslin@umich.edu
1302813Srdreslin@umich.eduTraceFlag('IntRegs')
131955SN/ATraceFlag('FloatRegs')
132955SN/ATraceFlag('MiscRegs')
133955SN/ACompoundFlag('Registers', [ 'IntRegs', 'FloatRegs', 'MiscRegs' ])
1342090SN/A