SConscript revision 5649
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_traits.hh
506019Shines@cs.fsu.edu        kernel_stats.hh
517170Sgblack@eecs.umich.edu        locked_mem.hh
526253Sgblack@eecs.umich.edu        mmaped_ipr.hh
537202Sgblack@eecs.umich.edu        process.hh
546253Sgblack@eecs.umich.edu        predecoder.hh
556253Sgblack@eecs.umich.edu        regfile.hh
567396Sgblack@eecs.umich.edu        remote_gdb.hh
578745Sgblack@eecs.umich.edu        stacktrace.hh
587405SAli.Saidi@ARM.com        syscallreturn.hh
597259Sgblack@eecs.umich.edu        tlb.hh
608757Sgblack@eecs.umich.edu        types.hh
617423Sgblack@eecs.umich.edu        utility.hh
628757Sgblack@eecs.umich.edu        vtophys.hh
638756Sgblack@eecs.umich.edu        ''')
646019Shines@cs.fsu.edu
656757SAli.Saidi@ARM.com# Set up this directory to support switching headers
668757Sgblack@eecs.umich.edumake_switching_dir('arch', isa_switch_hdrs, env)
676019Shines@cs.fsu.edu
688745Sgblack@eecs.umich.edu#################################################################
696397Sgblack@eecs.umich.edu#
706019Shines@cs.fsu.edu# Include architecture-specific files.
716397Sgblack@eecs.umich.edu#
728335Snate@binkert.org#################################################################
738335Snate@binkert.org
748335Snate@binkert.org#
758335Snate@binkert.org# Build a SCons scanner for ISA files
766019Shines@cs.fsu.edu#
776757SAli.Saidi@ARM.comimport SCons.Scanner
786757SAli.Saidi@ARM.com
797585SAli.Saidi@arm.comisa_scanner = SCons.Scanner.Classic("ISAScan",
806757SAli.Saidi@ARM.com                                    [".isa", ".ISA"],
816757SAli.Saidi@ARM.com                                    "SRCDIR",
826019Shines@cs.fsu.edu                                    r'^\s*##include\s+"([\w/.-]*)"')
836019Shines@cs.fsu.edu
846019Shines@cs.fsu.eduenv.Append(SCANNERS = isa_scanner)
856019Shines@cs.fsu.edu
866019Shines@cs.fsu.edu#
876019Shines@cs.fsu.edu# Now create a Builder object that uses isa_parser.py to generate C++
886019Shines@cs.fsu.edu# output from the ISA description (*.isa) files.
896019Shines@cs.fsu.edu#
906019Shines@cs.fsu.edu
916019Shines@cs.fsu.edu# Convert to File node to fix path
926019Shines@cs.fsu.eduisa_parser = File('isa_parser.py')
936019Shines@cs.fsu.educpu_models_file = File('../cpu/cpu_models.py')
94
95# This sucks in the defintions of the CpuModel objects.
96execfile(cpu_models_file.srcnode().abspath)
97
98# Several files are generated from the ISA description.
99# We always get the basic decoder and header file.
100isa_desc_gen_files = [ 'decoder.cc', 'decoder.hh', 'max_inst_regs.hh' ]
101# We also get an execute file for each selected CPU model.
102isa_desc_gen_files += [CpuModel.dict[cpu].filename
103                       for cpu in env['CPU_MODELS']]
104
105# Also include the CheckerCPU as one of the models if it is being
106# enabled via command line.
107if env['USE_CHECKER']:
108    isa_desc_gen_files += [CpuModel.dict['CheckerCPU'].filename]
109
110# The emitter patches up the sources & targets to include the
111# autogenerated files as targets and isa parser itself as a source.
112def isa_desc_emitter(target, source, env):
113    return (isa_desc_gen_files, [isa_parser, cpu_models_file] + source)
114
115# Pieces are in place, so create the builder.
116python = sys.executable  # use same Python binary used to run scons
117
118# Also include the CheckerCPU as one of the models if it is being
119# enabled via command line.
120if env['USE_CHECKER']:
121    isa_desc_builder = Builder(action=python + ' $SOURCES $TARGET.dir $CPU_MODELS CheckerCPU',
122                               emitter = isa_desc_emitter)
123else:
124    isa_desc_builder = Builder(action=python + ' $SOURCES $TARGET.dir $CPU_MODELS',
125                               emitter = isa_desc_emitter)
126
127env.Append(BUILDERS = { 'ISADesc' : isa_desc_builder })
128