SConscript revision 5222
12155SN/A# -*- mode:python -*- 22155SN/A 32155SN/A# Copyright (c) 2006 The Regents of The University of Michigan 42155SN/A# All rights reserved. 52155SN/A# 62155SN/A# Redistribution and use in source and binary forms, with or without 72155SN/A# modification, are permitted provided that the following conditions are 82155SN/A# met: redistributions of source code must retain the above copyright 92155SN/A# notice, this list of conditions and the following disclaimer; 102155SN/A# redistributions in binary form must reproduce the above copyright 112155SN/A# notice, this list of conditions and the following disclaimer in the 122155SN/A# documentation and/or other materials provided with the distribution; 132155SN/A# neither the name of the copyright holders nor the names of its 142155SN/A# contributors may be used to endorse or promote products derived from 152155SN/A# this software without specific prior written permission. 162155SN/A# 172155SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 182155SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 192155SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 202155SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 212155SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 222155SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 232155SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 242155SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 252155SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 262155SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 272155SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 282665Ssaidi@eecs.umich.edu# 292665Ssaidi@eecs.umich.edu# Authors: Steve Reinhardt 302155SN/A 314202Sbinkertn@umich.eduimport sys 322155SN/A 332178SN/AImport('*') 342178SN/A 352178SN/A################################################################# 362178SN/A# 372178SN/A# ISA "switch header" generation. 382178SN/A# 392178SN/A# Auto-generate arch headers that include the right ISA-specific 402178SN/A# header based on the setting of THE_ISA preprocessor variable. 412178SN/A# 422178SN/A################################################################# 432178SN/A 442178SN/A# List of headers to generate 452155SN/Aisa_switch_hdrs = Split(''' 462178SN/A arguments.hh 472155SN/A faults.hh 482155SN/A interrupts.hh 492178SN/A isa_traits.hh 502155SN/A kernel_stats.hh 515865Sksewell@umich.edu locked_mem.hh 525865Sksewell@umich.edu mmaped_ipr.hh 533918Ssaidi@eecs.umich.edu process.hh 545865Sksewell@umich.edu predecoder.hh 552623SN/A regfile.hh 563918Ssaidi@eecs.umich.edu remote_gdb.hh 575865Sksewell@umich.edu stacktrace.hh 585865Sksewell@umich.edu syscallreturn.hh 592155SN/A tlb.hh 602155SN/A types.hh 612292SN/A utility.hh 623918Ssaidi@eecs.umich.edu vtophys.hh 632292SN/A ''') 642292SN/A 652292SN/A# Set up this directory to support switching headers 663918Ssaidi@eecs.umich.edumake_switching_dir('arch', isa_switch_hdrs, env) 672292SN/A 682292SN/A################################################################# 692766Sktlim@umich.edu# 702766Sktlim@umich.edu# Include architecture-specific files. 712766Sktlim@umich.edu# 722921Sktlim@umich.edu################################################################# 732921Sktlim@umich.edu 742766Sktlim@umich.edu# 752766Sktlim@umich.edu# Build a SCons scanner for ISA files 765529Snate@binkert.org# 772766Sktlim@umich.eduimport SCons.Scanner 784762Snate@binkert.org 792155SN/Aisa_scanner = SCons.Scanner.Classic("ISAScan", 802155SN/A [".isa", ".ISA"], 812155SN/A "SRCDIR", 822155SN/A r'^\s*##include\s+"([\w/.-]*)"') 832155SN/A 842155SN/Aenv.Append(SCANNERS = isa_scanner) 852766Sktlim@umich.edu 862155SN/A# 875865Sksewell@umich.edu# Now create a Builder object that uses isa_parser.py to generate C++ 882155SN/A# output from the ISA description (*.isa) files. 892155SN/A# 902155SN/A 912155SN/A# Convert to File node to fix path 922178SN/Aisa_parser = File('isa_parser.py') 932178SN/Acpu_models_file = File('../cpu/cpu_models.py') 942178SN/A 952766Sktlim@umich.edu# This sucks in the defintions of the CpuModel objects. 962178SN/Aexecfile(cpu_models_file.srcnode().abspath) 972178SN/A 982178SN/A# Several files are generated from the ISA description. 992178SN/A# We always get the basic decoder and header file. 1002766Sktlim@umich.eduisa_desc_gen_files = [ 'decoder.cc', 'decoder.hh' ] 1012766Sktlim@umich.edu# We also get an execute file for each selected CPU model. 1022766Sktlim@umich.eduisa_desc_gen_files += [CpuModel.dict[cpu].filename 1032788Sktlim@umich.edu for cpu in env['CPU_MODELS']] 1042178SN/A 1052733Sktlim@umich.edu# Also include the CheckerCPU as one of the models if it is being 1062733Sktlim@umich.edu# enabled via command line. 1072817Sksewell@umich.eduif env['USE_CHECKER']: 1082733Sktlim@umich.edu isa_desc_gen_files += [CpuModel.dict['CheckerCPU'].filename] 1094486Sbinkertn@umich.edu 1104486Sbinkertn@umich.edu# The emitter patches up the sources & targets to include the 1114776Sgblack@eecs.umich.edu# autogenerated files as targets and isa parser itself as a source. 1124776Sgblack@eecs.umich.edudef isa_desc_emitter(target, source, env): 1134486Sbinkertn@umich.edu return (isa_desc_gen_files, [isa_parser, cpu_models_file] + source) 1144202Sbinkertn@umich.edu 1154202Sbinkertn@umich.edu# Pieces are in place, so create the builder. 1164202Sbinkertn@umich.edupython = sys.executable # use same Python binary used to run scons 1174202Sbinkertn@umich.edu 1184202Sbinkertn@umich.edu# Also include the CheckerCPU as one of the models if it is being 1194776Sgblack@eecs.umich.edu# enabled via command line. 1204202Sbinkertn@umich.eduif env['USE_CHECKER']: 1214202Sbinkertn@umich.edu isa_desc_builder = Builder(action=python + ' $SOURCES $TARGET.dir $CPU_MODELS CheckerCPU', 1224202Sbinkertn@umich.edu emitter = isa_desc_emitter) 1234202Sbinkertn@umich.eduelse: 1245217Ssaidi@eecs.umich.edu isa_desc_builder = Builder(action=python + ' $SOURCES $TARGET.dir $CPU_MODELS', 1254202Sbinkertn@umich.edu emitter = isa_desc_emitter) 1262155SN/A 1274202Sbinkertn@umich.eduenv.Append(BUILDERS = { 'ISADesc' : isa_desc_builder }) 1284486Sbinkertn@umich.edu