SConscript revision 11265
1955SN/A# -*- mode:python -*-
2955SN/A
31762SN/A# Copyright (c) 2009 The Hewlett-Packard Development Company
4955SN/A# All rights reserved.
5955SN/A#
6955SN/A# Redistribution and use in source and binary forms, with or without
7955SN/A# modification, are permitted provided that the following conditions are
8955SN/A# met: redistributions of source code must retain the above copyright
9955SN/A# notice, this list of conditions and the following disclaimer;
10955SN/A# redistributions in binary form must reproduce the above copyright
11955SN/A# notice, this list of conditions and the following disclaimer in the
12955SN/A# documentation and/or other materials provided with the distribution;
13955SN/A# neither the name of the copyright holders nor the names of its
14955SN/A# contributors may be used to endorse or promote products derived from
15955SN/A# this software without specific prior written permission.
16955SN/A#
17955SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18955SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19955SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20955SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21955SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22955SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23955SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24955SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25955SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26955SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27955SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
282665Ssaidi@eecs.umich.edu#
294762Snate@binkert.org# Authors: Nathan Binkert
30955SN/A
315522Snate@binkert.orgimport os
326143Snate@binkert.orgimport sys
334762Snate@binkert.org
345522Snate@binkert.orgfrom os.path import basename, isdir, join as joinpath
35955SN/A
365522Snate@binkert.orgimport SCons
37955SN/A
385522Snate@binkert.orgImport('*')
394202Sbinkertn@umich.edu
405742Snate@binkert.orgDebugFlag('ProtocolTrace')
41955SN/ADebugFlag('RubyCache')
424381Sbinkertn@umich.eduDebugFlag('RubyCacheTrace')
434381Sbinkertn@umich.eduDebugFlag('RubyDma')
44955SN/ADebugFlag('RubyGenerated')
45955SN/ADebugFlag('RubyMemory')
46955SN/ADebugFlag('RubyNetwork')
474202Sbinkertn@umich.eduDebugFlag('RubyPort')
48955SN/ADebugFlag('RubyPrefetcher')
494382Sbinkertn@umich.eduDebugFlag('RubyQueue')
504382Sbinkertn@umich.eduDebugFlag('RubySequencer')
514382Sbinkertn@umich.eduDebugFlag('RubySlicc')
526108Snate@binkert.orgDebugFlag('RubySystem')
535517Snate@binkert.orgDebugFlag('RubyTester')
546143Snate@binkert.orgDebugFlag('RubyStats')
556143Snate@binkert.orgDebugFlag('RubyResourceStalls')
566143Snate@binkert.org
576143Snate@binkert.orgCompoundFlag('Ruby', [ 'RubyQueue', 'RubyNetwork', 'RubyTester',
586143Snate@binkert.org    'RubyGenerated', 'RubySlicc', 'RubySystem', 'RubyCache',
596143Snate@binkert.org    'RubyMemory', 'RubyDma', 'RubyPort', 'RubySequencer', 'RubyCacheTrace',
606143Snate@binkert.org    'RubyPrefetcher'])
616143Snate@binkert.org
626143Snate@binkert.orgif env['PROTOCOL'] == 'None':
636143Snate@binkert.org    Return()
646143Snate@binkert.org
656143Snate@binkert.orgdef do_embed_text(target, source, env):
666143Snate@binkert.org    """convert a text file into a file that can be embedded in C
676143Snate@binkert.org    using an #include statement, that defines a \"const char *\" pointing
686143Snate@binkert.org    to the same text.
694762Snate@binkert.org
706143Snate@binkert.org    This is useful to embed scripts and configuration files in object files.
716143Snate@binkert.org    """
726143Snate@binkert.org
736143Snate@binkert.org    escape = [ "\'", "\"", "\\", "\?" ]
746143Snate@binkert.org
756143Snate@binkert.org    # reads the text file in, line by line, converting it to a C string
766143Snate@binkert.org    fin = open(str(source[0]), 'r')
776143Snate@binkert.org    fout = open(str(target[0]), 'w' )
786143Snate@binkert.org    fout.write("static const char *%s =\n" % source[1].get_contents());
796143Snate@binkert.org    for l in fin:
806143Snate@binkert.org        # add escape sequences for the characters in escape
816143Snate@binkert.org        fout.write("\"")
826143Snate@binkert.org        for char in l:
836143Snate@binkert.org            if char == "\n":
846143Snate@binkert.org                break
856143Snate@binkert.org            if char in escape:
866143Snate@binkert.org                fout.write("\\")
876143Snate@binkert.org                fout.write(char)
886143Snate@binkert.org            else:
896143Snate@binkert.org                fout.write(char)
906143Snate@binkert.org        fout.write("\\n\"\n");
916143Snate@binkert.org    fout.write(";\n");
926143Snate@binkert.org    fin.close()
936143Snate@binkert.org    fout.close()
946143Snate@binkert.org
956143Snate@binkert.org#
966143Snate@binkert.org# Link includes
976143Snate@binkert.org#
986143Snate@binkert.orggenerated_dir = Dir('../protocol')
996143Snate@binkert.org
1006143Snate@binkert.orgdef MakeIncludeAction(target, source, env):
1016143Snate@binkert.org    f = file(str(target[0]), 'w')
1026143Snate@binkert.org    for s in source:
1036143Snate@binkert.org        print >>f, '#include "%s"' % str(s.abspath)
1046143Snate@binkert.org    f.close()
1056143Snate@binkert.org
1066143Snate@binkert.orgdef MakeInclude(source):
1076143Snate@binkert.org    target = generated_dir.File(basename(source))
1086143Snate@binkert.org    include_action = MakeAction(MakeIncludeAction, Transform("MAKE INC", 1))
1096143Snate@binkert.org    env.Command(target, source, include_action)
1106143Snate@binkert.org
1116143Snate@binkert.orgMakeInclude('slicc_interface/AbstractEntry.hh')
1126143Snate@binkert.orgMakeInclude('slicc_interface/AbstractCacheEntry.hh')
1135522Snate@binkert.orgMakeInclude('slicc_interface/Message.hh')
1146143Snate@binkert.orgMakeInclude('slicc_interface/RubyRequest.hh')
1156143Snate@binkert.org
1166143Snate@binkert.org# External types
1176143Snate@binkert.orgMakeInclude('common/Address.hh')
1186143Snate@binkert.orgMakeInclude('common/BoolVec.hh')
1196143Snate@binkert.orgMakeInclude('common/DataBlock.hh')
1206143Snate@binkert.orgMakeInclude('common/IntVec.hh')
1216143Snate@binkert.orgMakeInclude('common/MachineID.hh')
1226143Snate@binkert.orgMakeInclude('common/NetDest.hh')
1236143Snate@binkert.orgMakeInclude('common/Set.hh')
1245522Snate@binkert.orgMakeInclude('filters/AbstractBloomFilter.hh')
1255522Snate@binkert.orgMakeInclude('network/MessageBuffer.hh')
1265522Snate@binkert.orgMakeInclude('structures/Prefetcher.hh')
1275522Snate@binkert.orgMakeInclude('structures/CacheMemory.hh')
1285604Snate@binkert.orgMakeInclude('system/DMASequencer.hh')
1295604Snate@binkert.orgMakeInclude('structures/DirectoryMemory.hh')
1306143Snate@binkert.orgMakeInclude('structures/WireBuffer.hh')
1316143Snate@binkert.orgMakeInclude('structures/PerfectCacheMemory.hh')
1324762Snate@binkert.orgMakeInclude('structures/PersistentTable.hh')
1334762Snate@binkert.orgMakeInclude('system/Sequencer.hh')
1346143Snate@binkert.orgMakeInclude('structures/TBETable.hh')
1356143Snate@binkert.orgMakeInclude('structures/TimerTable.hh')
1366143Snate@binkert.org