SConscript revision 12246
1955SN/A# -*- mode:python -*-
2955SN/A
31762SN/A# Copyright (c) 2016 ARM Limited
4955SN/A# All rights reserved.
5955SN/A#
6955SN/A# The license below extends only to copyright in the software and shall
7955SN/A# not be construed as granting a license to any other intellectual
8955SN/A# property including but not limited to intellectual property relating
9955SN/A# to a hardware implementation of the functionality of the software
10955SN/A# licensed hereunder.  You may use the software subject to the license
11955SN/A# terms below provided that you ensure that this notice is replicated
12955SN/A# unmodified and in its entirety in all distributions of the software,
13955SN/A# modified or unmodified, in source code or in binary form.
14955SN/A#
15955SN/A# Copyright (c) 2006 The Regents of The University of Michigan
16955SN/A# All rights reserved.
17955SN/A#
18955SN/A# Redistribution and use in source and binary forms, with or without
19955SN/A# modification, are permitted provided that the following conditions are
20955SN/A# met: redistributions of source code must retain the above copyright
21955SN/A# notice, this list of conditions and the following disclaimer;
22955SN/A# redistributions in binary form must reproduce the above copyright
23955SN/A# notice, this list of conditions and the following disclaimer in the
24955SN/A# documentation and/or other materials provided with the distribution;
25955SN/A# neither the name of the copyright holders nor the names of its
26955SN/A# contributors may be used to endorse or promote products derived from
27955SN/A# this software without specific prior written permission.
282665Ssaidi@eecs.umich.edu#
294762Snate@binkert.org# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30955SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
315522Snate@binkert.org# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
324762Snate@binkert.org# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
335522Snate@binkert.org# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34955SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
355522Snate@binkert.org# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36955SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
375522Snate@binkert.org# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
384202Sbinkertn@umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
395742Snate@binkert.org# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40955SN/A#
414381Sbinkertn@umich.edu# Authors: Steve Reinhardt
424381Sbinkertn@umich.edu
43955SN/Aimport sys
44955SN/Aimport os
45955SN/Aimport re
464202Sbinkertn@umich.edu
47955SN/Afrom gem5_scons import Transform
484382Sbinkertn@umich.edu
494382Sbinkertn@umich.eduImport('*')
504382Sbinkertn@umich.edu
515517Snate@binkert.org#################################################################
525517Snate@binkert.org#
534762Snate@binkert.org# ISA "switch header" generation.
544762Snate@binkert.org#
554762Snate@binkert.org# Auto-generate arch headers that include the right ISA-specific
564762Snate@binkert.org# header based on the setting of THE_ISA preprocessor variable.
574762Snate@binkert.org#
584762Snate@binkert.org#################################################################
594762Snate@binkert.org
604762Snate@binkert.orgenv.SwitchingHeaders(
614762Snate@binkert.org    Split('''
624762Snate@binkert.org        decoder.hh
635522Snate@binkert.org        interrupts.hh
645604Snate@binkert.org        isa.hh
655604Snate@binkert.org        isa_traits.hh
665604Snate@binkert.org        kernel_stats.hh
674762Snate@binkert.org        locked_mem.hh
684762Snate@binkert.org        microcode_rom.hh
694762Snate@binkert.org        mmapped_ipr.hh
705522Snate@binkert.org        mt.hh
715522Snate@binkert.org        process.hh
725522Snate@binkert.org        pseudo_inst.hh
735522Snate@binkert.org        registers.hh
745604Snate@binkert.org        remote_gdb.hh
755604Snate@binkert.org        stacktrace.hh
764762Snate@binkert.org        tlb.hh
774762Snate@binkert.org        types.hh
784762Snate@binkert.org        utility.hh
794762Snate@binkert.org        vtophys.hh
805522Snate@binkert.org        '''),
814762Snate@binkert.org    env.subst('${TARGET_ISA}'))
824762Snate@binkert.org
835604Snate@binkert.orgif env['BUILD_GPU']:
845604Snate@binkert.org    env.SwitchingHeaders(
855604Snate@binkert.org        Split('''
865604Snate@binkert.org            gpu_decoder.hh
875604Snate@binkert.org            gpu_isa.hh
885604Snate@binkert.org            gpu_types.hh
894762Snate@binkert.org            '''),
904762Snate@binkert.org        env.subst('${TARGET_GPU_ISA}'))
914762Snate@binkert.org
924762Snate@binkert.org#################################################################
935604Snate@binkert.org#
944762Snate@binkert.org# Include architecture-specific files.
955522Snate@binkert.org#
965522Snate@binkert.org#################################################################
975522Snate@binkert.org
984762Snate@binkert.org#
994382Sbinkertn@umich.edu# Build a SCons scanner for ISA files
1004762Snate@binkert.org#
1014382Sbinkertn@umich.eduimport SCons.Scanner
1025522Snate@binkert.orgimport SCons.Tool
1034381Sbinkertn@umich.edu
1045522Snate@binkert.orgscanner = SCons.Scanner.Classic("ISAScan",
1054762Snate@binkert.org                                [".isa", ".ISA"],
1064762Snate@binkert.org                                 "SRCDIR",
1074762Snate@binkert.org                                r'^\s*##include\s+"([\w/.-]*)"')
1085522Snate@binkert.org
1095522Snate@binkert.orgenv.Append(SCANNERS=scanner)
1105522Snate@binkert.org
1115522Snate@binkert.org# Tell scons that when it sees a cc.inc file, it should scan it for includes.
1125522Snate@binkert.orgSCons.Tool.SourceFileScanner.add_scanner('.cc.inc', SCons.Tool.CScanner)
1135522Snate@binkert.org
1145522Snate@binkert.org#
1155522Snate@binkert.org# Now create a Builder object that uses isa_parser.py to generate C++
1165522Snate@binkert.org# output from the ISA description (*.isa) files.
1174762Snate@binkert.org#
1184762Snate@binkert.org
1194762Snate@binkert.orgparser_py = File('isa_parser.py')
1204762Snate@binkert.orgmicro_asm_py = File('micro_asm.py')
1214762Snate@binkert.org
1224762Snate@binkert.org# import ply here because SCons screws with sys.path when performing actions.
1234762Snate@binkert.orgimport ply
1244762Snate@binkert.org
1254762Snate@binkert.orgdef run_parser(target, source, env):
1264762Snate@binkert.org    # Add the current directory to the system path so we can import files.
1274762Snate@binkert.org    sys.path[0:0] = [ parser_py.dir.abspath ]
1284762Snate@binkert.org    import isa_parser
1294762Snate@binkert.org
1304762Snate@binkert.org    parser = isa_parser.ISAParser(target[0].dir.abspath)
1314762Snate@binkert.org    parser.parse_isa_desc(source[0].abspath)
1324762Snate@binkert.org
1334762Snate@binkert.orgdesc_action = MakeAction(run_parser, Transform("ISA DESC", 1))
1344762Snate@binkert.org
1354762Snate@binkert.orgIsaDescBuilder = Builder(action=desc_action)
1364762Snate@binkert.org
1374762Snate@binkert.org
1384762Snate@binkert.org# ISAs should use this function to set up an IsaDescBuilder and not try to
1394762Snate@binkert.org# set one up manually.
1404762Snate@binkert.orgdef ISADesc(desc, decoder_splits=1, exec_splits=1):
1414762Snate@binkert.org    '''Set up a builder for an ISA description.
1424762Snate@binkert.org
1434762Snate@binkert.org    The decoder_splits and exec_splits parameters let us determine what
1444762Snate@binkert.org    files the isa parser is actually going to generate. This needs to match
1454762Snate@binkert.org    what files are actually generated, and there's no specific check for that
1464762Snate@binkert.org    right now.
1474762Snate@binkert.org
1484762Snate@binkert.org    If the parser itself is responsible for generating a list of its products
1494762Snate@binkert.org    and their dependencies, then using that output to set up the right
1504762Snate@binkert.org    dependencies. This is what we used to do. The problem is that scons
1514762Snate@binkert.org    fundamentally doesn't support using a build product to affect its graph
152955SN/A    of possible products, dependencies, builders, etc. There are a couple ways
1535584Snate@binkert.org    to work around that limitation.
1545584Snate@binkert.org
1555584Snate@binkert.org    One option is to compute dependencies while the build phase of scons is
1565584Snate@binkert.org    running. That method can be quite complicated and cumbersome, because we
1575584Snate@binkert.org    have to make sure our modifications are made before scons tries to
1585584Snate@binkert.org    consume them. There's also no guarantee that this mechanism will work since
1595584Snate@binkert.org    it subverts scons expectations and changes things behind its back. This
1605584Snate@binkert.org    was implemented previously and constrained the builds parallelism
1615584Snate@binkert.org    significantly.
1625584Snate@binkert.org
1635584Snate@binkert.org    Another option would be to recursively call scons to have it update the
1645584Snate@binkert.org    list of products/dependencies during the setup phase of this invocation of
1655584Snate@binkert.org    scons. The problem with that is that it would be very difficult to make
1664382Sbinkertn@umich.edu    the sub-invocation of scons observe the options passed to the primary one
1674202Sbinkertn@umich.edu    in all possible cases, or to even determine conclusively what the name of
1685522Snate@binkert.org    the scons executable is in the first place.
1694382Sbinkertn@umich.edu
1704382Sbinkertn@umich.edu    Possible future changes to the isa parser might make it easier to
1714382Sbinkertn@umich.edu    determine what files it would generate, perhaps because there was a more
1725584Snate@binkert.org    direct correspondence between input files and output files. Or, if the
1734382Sbinkertn@umich.edu    parser could run quickly and determine what its output files would be
1744382Sbinkertn@umich.edu    without having do actually generate those files, then it could be run
1754382Sbinkertn@umich.edu    unconditionally without slowing down all builds or touching the output
1765192Ssaidi@eecs.umich.edu    files unnecessarily.
1775192Ssaidi@eecs.umich.edu    '''
1785192Ssaidi@eecs.umich.edu    generated_dir = File(desc).dir.up().Dir('generated')
1795192Ssaidi@eecs.umich.edu    def gen_file(name):
1805192Ssaidi@eecs.umich.edu        return generated_dir.File(name)
1815192Ssaidi@eecs.umich.edu
1825192Ssaidi@eecs.umich.edu    gen = []
1835192Ssaidi@eecs.umich.edu    def add_gen(name):
1845192Ssaidi@eecs.umich.edu        gen.append(gen_file(name))
1855192Ssaidi@eecs.umich.edu
1865192Ssaidi@eecs.umich.edu    # Tell scons about the various files the ISA parser will generate.
1875192Ssaidi@eecs.umich.edu    add_gen('decoder-g.cc.inc')
1885192Ssaidi@eecs.umich.edu    add_gen('decoder-ns.cc.inc')
1895192Ssaidi@eecs.umich.edu    add_gen('decode-method.cc.inc')
1905192Ssaidi@eecs.umich.edu
1915192Ssaidi@eecs.umich.edu    add_gen('decoder.hh')
1925192Ssaidi@eecs.umich.edu    add_gen('decoder-g.hh.inc')
1935192Ssaidi@eecs.umich.edu    add_gen('decoder-ns.hh.inc')
1945192Ssaidi@eecs.umich.edu
1955192Ssaidi@eecs.umich.edu    add_gen('exec-g.cc.inc')
1965192Ssaidi@eecs.umich.edu    add_gen('exec-ns.cc.inc')
1975192Ssaidi@eecs.umich.edu
1985192Ssaidi@eecs.umich.edu    add_gen('max_inst_regs.hh')
1995192Ssaidi@eecs.umich.edu
2005192Ssaidi@eecs.umich.edu
2015192Ssaidi@eecs.umich.edu    # These generated files are also top level sources.
2025192Ssaidi@eecs.umich.edu    def source_gen(name):
2035192Ssaidi@eecs.umich.edu        add_gen(name)
2045192Ssaidi@eecs.umich.edu        Source(gen_file(name))
2055192Ssaidi@eecs.umich.edu
2065192Ssaidi@eecs.umich.edu    source_gen('decoder.cc')
2075192Ssaidi@eecs.umich.edu
2084382Sbinkertn@umich.edu    if decoder_splits == 1:
2094382Sbinkertn@umich.edu        source_gen('inst-constrs.cc')
2104382Sbinkertn@umich.edu    else:
2112667Sstever@eecs.umich.edu        for i in range(1, decoder_splits + 1):
2122667Sstever@eecs.umich.edu            source_gen('inst-constrs-%d.cc' % i)
2132667Sstever@eecs.umich.edu
2142667Sstever@eecs.umich.edu    if exec_splits == 1:
2152667Sstever@eecs.umich.edu        source_gen('generic_cpu_exec.cc')
2162667Sstever@eecs.umich.edu    else:
2175742Snate@binkert.org        for i in range(1, exec_splits + 1):
2185742Snate@binkert.org            source_gen('generic_cpu_exec_%d.cc' % i)
2195742Snate@binkert.org
2202037SN/A    # Actually create the builder.
2212037SN/A    sources = [desc, parser_py, micro_asm_py]
2222037SN/A    IsaDescBuilder(target=gen, source=sources, env=env)
2235793Snate@binkert.org    return gen
2245793Snate@binkert.org
2255793Snate@binkert.orgExport('ISADesc')
2265793Snate@binkert.org
2275793Snate@binkert.orgDebugFlag('IntRegs')
2284382Sbinkertn@umich.eduDebugFlag('FloatRegs')
2294762Snate@binkert.orgDebugFlag('VecRegs')
2305344Sstever@gmail.comDebugFlag('CCRegs')
2314382Sbinkertn@umich.eduDebugFlag('MiscRegs')
2325341Sstever@gmail.comCompoundFlag('Registers', [ 'IntRegs', 'FloatRegs', 'CCRegs', 'MiscRegs' ])
2335742Snate@binkert.org