SConscript revision 9219
15222Sksewell@umich.edu# -*- mode:python -*-
25222Sksewell@umich.edu
35222Sksewell@umich.edu# Copyright (c) 2009 The Hewlett-Packard Development Company
45222Sksewell@umich.edu# All rights reserved.
55222Sksewell@umich.edu#
65222Sksewell@umich.edu# Redistribution and use in source and binary forms, with or without
75222Sksewell@umich.edu# modification, are permitted provided that the following conditions are
85222Sksewell@umich.edu# met: redistributions of source code must retain the above copyright
95222Sksewell@umich.edu# notice, this list of conditions and the following disclaimer;
105222Sksewell@umich.edu# redistributions in binary form must reproduce the above copyright
115222Sksewell@umich.edu# notice, this list of conditions and the following disclaimer in the
125222Sksewell@umich.edu# documentation and/or other materials provided with the distribution;
135222Sksewell@umich.edu# neither the name of the copyright holders nor the names of its
145222Sksewell@umich.edu# contributors may be used to endorse or promote products derived from
155222Sksewell@umich.edu# this software without specific prior written permission.
165222Sksewell@umich.edu#
175222Sksewell@umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
185222Sksewell@umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
195222Sksewell@umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
205222Sksewell@umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
215222Sksewell@umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
225222Sksewell@umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
235222Sksewell@umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
245222Sksewell@umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
255222Sksewell@umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
265222Sksewell@umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
275222Sksewell@umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
285222Sksewell@umich.edu#
295222Sksewell@umich.edu# Authors: Nathan Binkert
305222Sksewell@umich.edu
315222Sksewell@umich.eduimport os
325222Sksewell@umich.eduimport re
335222Sksewell@umich.eduimport sys
345222Sksewell@umich.edu
355481Snate@binkert.orgfrom os.path import isdir, isfile, join as joinpath
365222Sksewell@umich.edu
375222Sksewell@umich.edufrom SCons.Scanner import Classic
385222Sksewell@umich.edu
395222Sksewell@umich.eduImport('*')
405481Snate@binkert.org
415222Sksewell@umich.eduif env['PROTOCOL'] == 'None':
425222Sksewell@umich.edu    Return()
435222Sksewell@umich.edu
445222Sksewell@umich.eduoutput_dir = Dir('.')
45html_dir = Dir('html')
46slicc_dir = Dir('../slicc')
47
48sys.path[1:1] = [ Dir('..').srcnode().abspath ]
49from slicc.parser import SLICC
50
51slicc_depends = []
52for root,dirs,files in os.walk(slicc_dir.srcnode().abspath):
53    for f in files:
54        if f.endswith('.py'):
55            slicc_depends.append(File(joinpath(root, f)))
56
57#
58# Use SLICC
59#
60env["SLICC_PATH"] = protocol_dirs
61slicc_scanner = Classic("SliccScanner", ['.sm', '.slicc'], "SLICC_PATH",
62                        r'''include[ \t]["'](.*)["'];''')
63env.Append(SCANNERS=slicc_scanner)
64
65def slicc_emitter(target, source, env):
66    assert len(source) == 1
67    filepath = source[0].srcnode().abspath
68
69    slicc = SLICC(filepath, protocol_base.abspath, verbose=False)
70    slicc.process()
71    slicc.writeCodeFiles(output_dir.abspath, slicc_includes)
72    if env['SLICC_HTML']:
73        slicc.writeHTMLFiles(html_dir.abspath)
74
75    target.extend([output_dir.File(f) for f in sorted(slicc.files())])
76    return target, source
77
78def slicc_action(target, source, env):
79    assert len(source) == 1
80    filepath = source[0].srcnode().abspath
81
82    slicc = SLICC(filepath, protocol_base.abspath, verbose=True)
83    slicc.process()
84    slicc.writeCodeFiles(output_dir.abspath, slicc_includes)
85    if env['SLICC_HTML']:
86        slicc.writeHTMLFiles(html_dir.abspath)
87
88slicc_builder = Builder(action=MakeAction(slicc_action, Transform("SLICC")),
89                        emitter=slicc_emitter)
90
91protocol = env['PROTOCOL']
92protocol_dir = None
93for path in protocol_dirs:
94    if os.path.exists(os.path.join(path, "%s.slicc" % protocol)):
95        protocol_dir = Dir(path)
96        break
97
98if not protocol_dir:
99    raise ValueError, "Could not find %s.slicc in protocol_dirs" % protocol
100
101sources = [ protocol_dir.File("%s.slicc" % protocol) ]
102
103env.Append(BUILDERS={'SLICC' : slicc_builder})
104nodes = env.SLICC([], sources)
105env.Depends(nodes, slicc_depends)
106
107for f in nodes:
108    s = str(f)
109    if s.endswith('.cc'):
110        Source(f)
111    elif s.endswith('.py'):
112        SimObject(f)
113
114