SConscript revision 8483
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.orgif env['TARGET_ISA'] == 'no':
41955SN/A    Return()
424381Sbinkertn@umich.edu
434381Sbinkertn@umich.eduif not env['RUBY']:
44955SN/A    Return()
45955SN/A
46955SN/Adef do_embed_text(target, source, env):
474202Sbinkertn@umich.edu    """convert a text file into a file that can be embedded in C
48955SN/A    using an #include statement, that defines a \"const char *\" pointing
494382Sbinkertn@umich.edu    to the same text.
504382Sbinkertn@umich.edu
514382Sbinkertn@umich.edu    This is useful to embed scripts and configuration files in object files.
526654Snate@binkert.org    """
535517Snate@binkert.org
547674Snate@binkert.org    escape = [ "\'", "\"", "\\", "\?" ]
557674Snate@binkert.org
566143Snate@binkert.org    # reads the text file in, line by line, converting it to a C string
576143Snate@binkert.org    fin = open(str(source[0]), 'r')
586143Snate@binkert.org    fout = open(str(target[0]), 'w' )
596143Snate@binkert.org    fout.write("static const char *%s =\n" % source[1].get_contents());
606143Snate@binkert.org    for l in fin:
616143Snate@binkert.org        # add escape sequences for the characters in escape
626143Snate@binkert.org        fout.write("\"")
636143Snate@binkert.org        for char in l:
646143Snate@binkert.org            if char == "\n":
656143Snate@binkert.org                break
666143Snate@binkert.org            if char in escape:
676143Snate@binkert.org                fout.write("\\")
686143Snate@binkert.org                fout.write(char)
696143Snate@binkert.org            else:
706143Snate@binkert.org                fout.write(char)
714762Snate@binkert.org        fout.write("\\n\"\n");
726143Snate@binkert.org    fout.write(";\n");
736143Snate@binkert.org    fin.close()
746143Snate@binkert.org    fout.close()
756143Snate@binkert.org
766143Snate@binkert.org#
776143Snate@binkert.org# Link includes
786143Snate@binkert.org#
796143Snate@binkert.orggenerated_dir = Dir('../protocol')
806143Snate@binkert.org
816143Snate@binkert.orgdef MakeIncludeAction(target, source, env):
826143Snate@binkert.org    f = file(str(target[0]), 'w')
836143Snate@binkert.org    for s in source:
846143Snate@binkert.org        print >>f, '#include "%s"' % str(s.abspath)
856143Snate@binkert.org    f.close()
866143Snate@binkert.org
876143Snate@binkert.orgdef MakeInclude(source):
886143Snate@binkert.org    target = generated_dir.File(basename(source))
896143Snate@binkert.org    include_action = MakeAction(MakeIncludeAction, Transform("MAKE INC", 1))
906143Snate@binkert.org    env.Command(target, source, include_action)
916143Snate@binkert.org
926143Snate@binkert.orgMakeInclude('slicc_interface/AbstractEntry.hh')
937065Snate@binkert.orgMakeInclude('slicc_interface/AbstractCacheEntry.hh')
946143Snate@binkert.orgMakeInclude('slicc_interface/AbstractProtocol.hh')
956143Snate@binkert.orgMakeInclude('slicc_interface/Message.hh')
966143Snate@binkert.orgMakeInclude('slicc_interface/NetworkMessage.hh')
976143Snate@binkert.orgMakeInclude('slicc_interface/RubyRequest.hh')
986143Snate@binkert.org
996143Snate@binkert.org# External types
1006143Snate@binkert.orgMakeInclude('buffers/MessageBuffer.hh')
1016143Snate@binkert.orgMakeInclude('common/Address.hh')
1026143Snate@binkert.orgMakeInclude('common/DataBlock.hh')
1036143Snate@binkert.orgMakeInclude('common/NetDest.hh')
1046143Snate@binkert.orgMakeInclude('common/Set.hh')
1056143Snate@binkert.orgMakeInclude('filters/GenericBloomFilter.hh')
1066143Snate@binkert.orgMakeInclude('system/CacheMemory.hh')
1076143Snate@binkert.orgMakeInclude('system/DMASequencer.hh')
1086143Snate@binkert.orgMakeInclude('system/DirectoryMemory.hh')
1096143Snate@binkert.orgMakeInclude('system/MachineID.hh')
1106143Snate@binkert.orgMakeInclude('system/MemoryControl.hh')
1116143Snate@binkert.orgMakeInclude('system/WireBuffer.hh')
1126143Snate@binkert.orgMakeInclude('system/NodeID.hh')
1136143Snate@binkert.orgMakeInclude('system/PerfectCacheMemory.hh')
1146143Snate@binkert.orgMakeInclude('system/PersistentTable.hh')
1155522Snate@binkert.orgMakeInclude('system/Sequencer.hh')
1166143Snate@binkert.orgMakeInclude('system/TBETable.hh')
1176143Snate@binkert.orgMakeInclude('system/TimerTable.hh')
1186143Snate@binkert.org