SConscript revision 9016
13546Sgblack@eecs.umich.edu# -*- mode:python -*- 23546Sgblack@eecs.umich.edu 33546Sgblack@eecs.umich.edu# Copyright (c) 2009 The Hewlett-Packard Development Company 43546Sgblack@eecs.umich.edu# All rights reserved. 53546Sgblack@eecs.umich.edu# 63546Sgblack@eecs.umich.edu# Redistribution and use in source and binary forms, with or without 73546Sgblack@eecs.umich.edu# modification, are permitted provided that the following conditions are 83546Sgblack@eecs.umich.edu# met: redistributions of source code must retain the above copyright 93546Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer; 103546Sgblack@eecs.umich.edu# redistributions in binary form must reproduce the above copyright 113546Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer in the 123546Sgblack@eecs.umich.edu# documentation and/or other materials provided with the distribution; 133546Sgblack@eecs.umich.edu# neither the name of the copyright holders nor the names of its 143546Sgblack@eecs.umich.edu# contributors may be used to endorse or promote products derived from 153546Sgblack@eecs.umich.edu# this software without specific prior written permission. 163546Sgblack@eecs.umich.edu# 173546Sgblack@eecs.umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 183546Sgblack@eecs.umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 193546Sgblack@eecs.umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 203546Sgblack@eecs.umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 213546Sgblack@eecs.umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 223546Sgblack@eecs.umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 233546Sgblack@eecs.umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 243546Sgblack@eecs.umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 253546Sgblack@eecs.umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 263546Sgblack@eecs.umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 273546Sgblack@eecs.umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 283546Sgblack@eecs.umich.edu# 293546Sgblack@eecs.umich.edu# Authors: Nathan Binkert 303546Sgblack@eecs.umich.edu 314202Sbinkertn@umich.eduimport os 323546Sgblack@eecs.umich.eduimport re 334202Sbinkertn@umich.eduimport sys 344202Sbinkertn@umich.edu 354202Sbinkertn@umich.edufrom os.path import isdir, isfile, join as joinpath 363546Sgblack@eecs.umich.edu 374202Sbinkertn@umich.edufrom SCons.Scanner import Classic 384202Sbinkertn@umich.edu 394202Sbinkertn@umich.eduImport('*') 403546Sgblack@eecs.umich.edu 414202Sbinkertn@umich.eduif env['PROTOCOL'] == 'None': 424202Sbinkertn@umich.edu Return() 434202Sbinkertn@umich.edu 444202Sbinkertn@umich.eduprotocol_dir = Dir('.') 454202Sbinkertn@umich.eduhtml_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'] = str(protocol_dir) 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, verbose=False) 70 slicc.process() 71 slicc.writeCodeFiles(protocol_dir.abspath) 72 if env['SLICC_HTML']: 73 slicc.writeHTMLFiles(html_dir.abspath) 74 75 target.extend([protocol_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, verbose=True) 83 slicc.process() 84 slicc.writeCodeFiles(protocol_dir.abspath) 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'] 92sources = [ protocol_dir.File("%s.slicc" % protocol) ] 93 94env.Append(BUILDERS={'SLICC' : slicc_builder}) 95nodes = env.SLICC([], sources) 96env.Depends(nodes, slicc_depends) 97 98for f in nodes: 99 s = str(f) 100 if s.endswith('.cc'): 101 Source(f) 102 elif s.endswith('.py'): 103 SimObject(f) 104 105