SConscript revision 4781:59a75bd0ddf4
15703SN/A# -*- mode:python -*- 25703SN/A 35703SN/A# Copyright (c) 2006 The Regents of The University of Michigan 45703SN/A# All rights reserved. 55703SN/A# 65703SN/A# Redistribution and use in source and binary forms, with or without 75703SN/A# modification, are permitted provided that the following conditions are 85703SN/A# met: redistributions of source code must retain the above copyright 95703SN/A# notice, this list of conditions and the following disclaimer; 105703SN/A# redistributions in binary form must reproduce the above copyright 115703SN/A# notice, this list of conditions and the following disclaimer in the 125703SN/A# documentation and/or other materials provided with the distribution; 135703SN/A# neither the name of the copyright holders nor the names of its 145703SN/A# contributors may be used to endorse or promote products derived from 155703SN/A# this software without specific prior written permission. 165703SN/A# 175703SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 185703SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 195703SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 205703SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 215703SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 225703SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 235703SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 245703SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 255703SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 265703SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 275703SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 285703SN/A# 295703SN/A# Authors: Steve Reinhardt 3011680SCurtis.Dunham@arm.com 315703SN/Aimport sys 325703SN/A 335703SN/AImport('*') 345703SN/A 355703SN/A################################################################# 365703SN/A# 375703SN/A# ISA "switch header" generation. 385703SN/A# 395703SN/A# Auto-generate arch headers that include the right ISA-specific 405703SN/A# header based on the setting of THE_ISA preprocessor variable. 415703SN/A# 425703SN/A################################################################# 435703SN/A 445703SN/A# List of headers to generate 455703SN/Aisa_switch_hdrs = Split(''' 465703SN/A arguments.hh 475703SN/A faults.hh 485703SN/A interrupts.hh 495703SN/A isa_traits.hh 505703SN/A kernel_stats.hh 515703SN/A locked_mem.hh 525703SN/A mmaped_ipr.hh 535703SN/A process.hh 545703SN/A predecoder.hh 555703SN/A regfile.hh 565703SN/A remote_gdb.hh 575703SN/A stacktrace.hh 585703SN/A syscallreturn.hh 595703SN/A tlb.hh 605703SN/A types.hh 615703SN/A utility.hh 625703SN/A vtophys.hh 635703SN/A ''') 645778SN/A 655703SN/A# Set up this directory to support switching headers 665703SN/Amake_switching_dir('arch', isa_switch_hdrs, env) 675703SN/A 685703SN/A################################################################# 695703SN/A# 705703SN/A# Include architecture-specific files. 715703SN/A# 725703SN/A################################################################# 735703SN/A 745703SN/A# 755703SN/A# Build a SCons scanner for ISA files 765778SN/A# 775703SN/Aimport SCons.Scanner 785703SN/A 795703SN/Aisa_scanner = SCons.Scanner.Classic("ISAScan", 805703SN/A [".isa", ".ISA"], 815703SN/A "SRCDIR", 825703SN/A r'^\s*##include\s+"([\w/.-]*)"') 835703SN/A 845703SN/Aenv.Append(SCANNERS = isa_scanner) 855703SN/A 865703SN/A# 875703SN/A# Now create a Builder object that uses isa_parser.py to generate C++ 885703SN/A# output from the ISA description (*.isa) files. 895703SN/A# 905703SN/A 915703SN/A# Convert to File node to fix path 925703SN/Aisa_parser = File('isa_parser.py') 935703SN/Acpu_models_file = File('../cpu/cpu_models.py') 945703SN/A 955703SN/A# This sucks in the defintions of the CpuModel objects. 965703SN/Aexecfile(cpu_models_file.srcnode().abspath) 975703SN/A 985703SN/A# Several files are generated from the ISA description. 995703SN/A# We always get the basic decoder and header file. 1005703SN/Aisa_desc_gen_files = [ 'decoder.cc', 'decoder.hh' ] 1015703SN/A# We also get an execute file for each selected CPU model. 1025703SN/Aisa_desc_gen_files += [CpuModel.dict[cpu].filename 1035703SN/A for cpu in env['CPU_MODELS']] 1045703SN/A 1055703SN/A# Also include the CheckerCPU as one of the models if it is being 1065703SN/A# enabled via command line. 1075703SN/Aif env['USE_CHECKER']: 1085703SN/A isa_desc_gen_files += [CpuModel.dict['CheckerCPU'].filename] 1095703SN/A 1105703SN/A# The emitter patches up the sources & targets to include the 1115703SN/A# autogenerated files as targets and isa parser itself as a source. 1125703SN/Adef isa_desc_emitter(target, source, env): 1135703SN/A return (isa_desc_gen_files, [isa_parser, cpu_models_file] + source) 11411680SCurtis.Dunham@arm.com 11511680SCurtis.Dunham@arm.com# Pieces are in place, so create the builder. 11611680SCurtis.Dunham@arm.compython = sys.executable # use same Python binary used to run scons 11711680SCurtis.Dunham@arm.com 11811680SCurtis.Dunham@arm.com# Also include the CheckerCPU as one of the models if it is being 11911680SCurtis.Dunham@arm.com# enabled via command line. 12011680SCurtis.Dunham@arm.comif env['USE_CHECKER']: 12111680SCurtis.Dunham@arm.com isa_desc_builder = Builder(action=python + ' $SOURCES $TARGET.dir $CPU_MODELS CheckerCPU', 12211680SCurtis.Dunham@arm.com emitter = isa_desc_emitter) 12311680SCurtis.Dunham@arm.comelse: 12411680SCurtis.Dunham@arm.com isa_desc_builder = Builder(action=python + ' $SOURCES $TARGET.dir $CPU_MODELS', 12511680SCurtis.Dunham@arm.com emitter = isa_desc_emitter) 12611680SCurtis.Dunham@arm.com 12711680SCurtis.Dunham@arm.comenv.Append(BUILDERS = { 'ISADesc' : isa_desc_builder }) 12811680SCurtis.Dunham@arm.com