SConscript revision 7090
16019Shines@cs.fsu.edu# -*- mode:python -*-
26019Shines@cs.fsu.edu
37100Sgblack@eecs.umich.edu# Copyright (c) 2006 The Regents of The University of Michigan
47100Sgblack@eecs.umich.edu# All rights reserved.
57100Sgblack@eecs.umich.edu#
67100Sgblack@eecs.umich.edu# Redistribution and use in source and binary forms, with or without
77100Sgblack@eecs.umich.edu# modification, are permitted provided that the following conditions are
87100Sgblack@eecs.umich.edu# met: redistributions of source code must retain the above copyright
97100Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer;
107100Sgblack@eecs.umich.edu# redistributions in binary form must reproduce the above copyright
117100Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer in the
127100Sgblack@eecs.umich.edu# documentation and/or other materials provided with the distribution;
137100Sgblack@eecs.umich.edu# neither the name of the copyright holders nor the names of its
147100Sgblack@eecs.umich.edu# contributors may be used to endorse or promote products derived from
156019Shines@cs.fsu.edu# this software without specific prior written permission.
166019Shines@cs.fsu.edu#
176019Shines@cs.fsu.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
186019Shines@cs.fsu.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
196019Shines@cs.fsu.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
206019Shines@cs.fsu.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
216019Shines@cs.fsu.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
226019Shines@cs.fsu.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
236019Shines@cs.fsu.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
246019Shines@cs.fsu.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
256019Shines@cs.fsu.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
266019Shines@cs.fsu.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
276019Shines@cs.fsu.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
286019Shines@cs.fsu.edu#
296019Shines@cs.fsu.edu# Authors: Steve Reinhardt
306019Shines@cs.fsu.edu
316019Shines@cs.fsu.eduimport sys
326019Shines@cs.fsu.edu
336019Shines@cs.fsu.eduImport('*')
346019Shines@cs.fsu.edu
356019Shines@cs.fsu.edu#################################################################
366019Shines@cs.fsu.edu#
376019Shines@cs.fsu.edu# ISA "switch header" generation.
386019Shines@cs.fsu.edu#
396019Shines@cs.fsu.edu# Auto-generate arch headers that include the right ISA-specific
406019Shines@cs.fsu.edu# header based on the setting of THE_ISA preprocessor variable.
416019Shines@cs.fsu.edu#
426757SAli.Saidi@ARM.com#################################################################
436019Shines@cs.fsu.edu
446019Shines@cs.fsu.edu# List of headers to generate
456019Shines@cs.fsu.eduisa_switch_hdrs = Split('''
466019Shines@cs.fsu.edu        arguments.hh
476019Shines@cs.fsu.edu        faults.hh
486019Shines@cs.fsu.edu        interrupts.hh
496019Shines@cs.fsu.edu	isa.hh
506019Shines@cs.fsu.edu        isa_traits.hh
517170Sgblack@eecs.umich.edu        kernel_stats.hh
526253Sgblack@eecs.umich.edu        locked_mem.hh
537202Sgblack@eecs.umich.edu        microcode_rom.hh
546253Sgblack@eecs.umich.edu        mmaped_ipr.hh
556253Sgblack@eecs.umich.edu        mt.hh
567396Sgblack@eecs.umich.edu        process.hh
577405SAli.Saidi@ARM.com        predecoder.hh
587259Sgblack@eecs.umich.edu        registers.hh
597423Sgblack@eecs.umich.edu        remote_gdb.hh
606397Sgblack@eecs.umich.edu        stacktrace.hh
616019Shines@cs.fsu.edu        tlb.hh
626019Shines@cs.fsu.edu        types.hh
636757SAli.Saidi@ARM.com        utility.hh
646019Shines@cs.fsu.edu        vtophys.hh
656397Sgblack@eecs.umich.edu        ''')
666019Shines@cs.fsu.edu
676397Sgblack@eecs.umich.edu# Set up this directory to support switching headers
686019Shines@cs.fsu.edumake_switching_dir('arch', isa_switch_hdrs, env)
697404SAli.Saidi@ARM.com
706735Sgblack@eecs.umich.edu#################################################################
717100Sgblack@eecs.umich.edu#
726019Shines@cs.fsu.edu# Include architecture-specific files.
736757SAli.Saidi@ARM.com#
746757SAli.Saidi@ARM.com#################################################################
756757SAli.Saidi@ARM.com
767585SAli.Saidi@arm.com#
777404SAli.Saidi@ARM.com# Build a SCons scanner for ISA files
786757SAli.Saidi@ARM.com#
796757SAli.Saidi@ARM.comimport SCons.Scanner
806757SAli.Saidi@ARM.com
816019Shines@cs.fsu.eduisa_scanner = SCons.Scanner.Classic("ISAScan",
826019Shines@cs.fsu.edu                                    [".isa", ".ISA"],
836019Shines@cs.fsu.edu                                    "SRCDIR",
846019Shines@cs.fsu.edu                                    r'^\s*##include\s+"([\w/.-]*)"')
856019Shines@cs.fsu.edu
866019Shines@cs.fsu.eduenv.Append(SCANNERS = isa_scanner)
876019Shines@cs.fsu.edu
886019Shines@cs.fsu.edu#
896019Shines@cs.fsu.edu# Now create a Builder object that uses isa_parser.py to generate C++
906019Shines@cs.fsu.edu# output from the ISA description (*.isa) files.
916019Shines@cs.fsu.edu#
926019Shines@cs.fsu.edu
93# The emitter patches up the sources & targets to include the
94# autogenerated files as targets and isa parser itself as a source.
95def isa_desc_emitter(target, source, env):
96    cpu_models = list(env['CPU_MODELS'])
97    if env['USE_CHECKER']:
98        cpu_models.append('CheckerCPU')
99
100    # Several files are generated from the ISA description.
101    # We always get the basic decoder and header file.
102    target = [ 'decoder.cc', 'decoder.hh', 'max_inst_regs.hh' ]
103    # We also get an execute file for each selected CPU model.
104    target += [CpuModel.dict[cpu].filename for cpu in cpu_models]
105
106    return target, source + [ Value(m) for m in cpu_models ]
107
108ARCH_DIR = Dir('.')
109
110# import ply here because SCons screws with sys.path when performing actions.
111import ply
112
113def isa_desc_action(target, source, env):
114    # Add the current directory to the system path so we can import files
115    sys.path[0:0] = [ ARCH_DIR.srcnode().abspath ]
116    import isa_parser
117
118    models = [ s.get_contents() for s in source[1:] ]
119    cpu_models = [CpuModel.dict[cpu] for cpu in models]
120    parser = isa_parser.ISAParser(target[0].dir.abspath, cpu_models)
121    parser.parse_isa_desc(source[0].abspath)
122
123# Also include the CheckerCPU as one of the models if it is being
124# enabled via command line.
125isa_desc_builder = Builder(action=isa_desc_action, emitter=isa_desc_emitter)
126
127env.Append(BUILDERS = { 'ISADesc' : isa_desc_builder })
128
129TraceFlag('IntRegs')
130TraceFlag('FloatRegs')
131TraceFlag('MiscRegs')
132CompoundFlag('Registers', [ 'IntRegs', 'FloatRegs', 'MiscRegs' ])
133