SConscript revision 11307
16757SAli.Saidi@ARM.com# -*- mode:python -*-
26757SAli.Saidi@ARM.com
36757SAli.Saidi@ARM.com# Copyright (c) 2009 The Hewlett-Packard Development Company
46757SAli.Saidi@ARM.com# All rights reserved.
56757SAli.Saidi@ARM.com#
67090SAli.Saidi@ARM.com# Redistribution and use in source and binary forms, with or without
77090SAli.Saidi@ARM.com# modification, are permitted provided that the following conditions are
87090SAli.Saidi@ARM.com# met: redistributions of source code must retain the above copyright
97090SAli.Saidi@ARM.com# notice, this list of conditions and the following disclaimer;
107090SAli.Saidi@ARM.com# redistributions in binary form must reproduce the above copyright
117090SAli.Saidi@ARM.com# notice, this list of conditions and the following disclaimer in the
127090SAli.Saidi@ARM.com# documentation and/or other materials provided with the distribution;
137090SAli.Saidi@ARM.com# neither the name of the copyright holders nor the names of its
147090SAli.Saidi@ARM.com# contributors may be used to endorse or promote products derived from
156757SAli.Saidi@ARM.com# this software without specific prior written permission.
166757SAli.Saidi@ARM.com#
176757SAli.Saidi@ARM.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
186757SAli.Saidi@ARM.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
196757SAli.Saidi@ARM.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
206757SAli.Saidi@ARM.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
216757SAli.Saidi@ARM.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
226757SAli.Saidi@ARM.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
236757SAli.Saidi@ARM.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
246757SAli.Saidi@ARM.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
256757SAli.Saidi@ARM.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
266757SAli.Saidi@ARM.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
276757SAli.Saidi@ARM.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
286757SAli.Saidi@ARM.com#
296757SAli.Saidi@ARM.com# Authors: Nathan Binkert
306757SAli.Saidi@ARM.com
316757SAli.Saidi@ARM.comimport os
326757SAli.Saidi@ARM.comimport sys
336757SAli.Saidi@ARM.com
346757SAli.Saidi@ARM.comfrom os.path import basename, isdir, join as joinpath
356757SAli.Saidi@ARM.com
366757SAli.Saidi@ARM.comimport SCons
376757SAli.Saidi@ARM.com
386757SAli.Saidi@ARM.comImport('*')
396757SAli.Saidi@ARM.com
406757SAli.Saidi@ARM.comDebugFlag('ProtocolTrace')
416757SAli.Saidi@ARM.comDebugFlag('RubyCache')
426757SAli.Saidi@ARM.comDebugFlag('RubyCacheTrace')
437584SAli.Saidi@arm.comDebugFlag('RubyDma')
446757SAli.Saidi@ARM.comDebugFlag('RubyGenerated')
457584SAli.Saidi@arm.comDebugFlag('RubyMemory')
467584SAli.Saidi@arm.comDebugFlag('RubyNetwork')
477584SAli.Saidi@arm.comDebugFlag('RubyPort')
487584SAli.Saidi@arm.comDebugFlag('RubyPrefetcher')
497753SWilliam.Wang@arm.comDebugFlag('RubyQueue')
507584SAli.Saidi@arm.comDebugFlag('RubySequencer')
517584SAli.Saidi@arm.comDebugFlag('RubySlicc')
527584SAli.Saidi@arm.comDebugFlag('RubySystem')
537584SAli.Saidi@arm.comDebugFlag('RubyTester')
547584SAli.Saidi@arm.comDebugFlag('RubyStats')
557753SWilliam.Wang@arm.comDebugFlag('RubyResourceStalls')
567695SPrakash.Ramrakhyani@arm.com
57CompoundFlag('Ruby', [ 'RubyQueue', 'RubyNetwork', 'RubyTester',
58    'RubyGenerated', 'RubySlicc', 'RubySystem', 'RubyCache',
59    'RubyMemory', 'RubyDma', 'RubyPort', 'RubySequencer', 'RubyCacheTrace',
60    'RubyPrefetcher'])
61
62if env['PROTOCOL'] == 'None':
63    Return()
64
65def do_embed_text(target, source, env):
66    """convert a text file into a file that can be embedded in C
67    using an #include statement, that defines a \"const char *\" pointing
68    to the same text.
69
70    This is useful to embed scripts and configuration files in object files.
71    """
72
73    escape = [ "\'", "\"", "\\", "\?" ]
74
75    # reads the text file in, line by line, converting it to a C string
76    fin = open(str(source[0]), 'r')
77    fout = open(str(target[0]), 'w' )
78    fout.write("static const char *%s =\n" % source[1].get_contents());
79    for l in fin:
80        # add escape sequences for the characters in escape
81        fout.write("\"")
82        for char in l:
83            if char == "\n":
84                break
85            if char in escape:
86                fout.write("\\")
87                fout.write(char)
88            else:
89                fout.write(char)
90        fout.write("\\n\"\n");
91    fout.write(";\n");
92    fin.close()
93    fout.close()
94
95#
96# Link includes
97#
98generated_dir = Dir('../protocol')
99
100def MakeIncludeAction(target, source, env):
101    f = file(str(target[0]), 'w')
102    for s in source:
103        print >>f, '#include "%s"' % str(s.abspath)
104    f.close()
105
106def MakeInclude(source):
107    target = generated_dir.File(basename(source))
108    include_action = MakeAction(MakeIncludeAction, Transform("MAKE INC", 1))
109    env.Command(target, source, include_action)
110
111MakeInclude('slicc_interface/AbstractEntry.hh')
112MakeInclude('slicc_interface/AbstractCacheEntry.hh')
113MakeInclude('slicc_interface/Message.hh')
114MakeInclude('slicc_interface/RubyRequest.hh')
115
116# External types
117MakeInclude('common/Address.hh')
118MakeInclude('common/BoolVec.hh')
119MakeInclude('common/DataBlock.hh')
120MakeInclude('common/IntVec.hh')
121MakeInclude('common/MachineID.hh')
122MakeInclude('common/NetDest.hh')
123MakeInclude('common/Set.hh')
124MakeInclude('common/WriteMask.hh')
125MakeInclude('filters/AbstractBloomFilter.hh')
126MakeInclude('network/MessageBuffer.hh')
127MakeInclude('structures/Prefetcher.hh')
128MakeInclude('structures/CacheMemory.hh')
129MakeInclude('system/DMASequencer.hh')
130MakeInclude('structures/DirectoryMemory.hh')
131MakeInclude('structures/WireBuffer.hh')
132MakeInclude('structures/PerfectCacheMemory.hh')
133MakeInclude('structures/PersistentTable.hh')
134MakeInclude('system/Sequencer.hh')
135MakeInclude('structures/TBETable.hh')
136MakeInclude('structures/TimerTable.hh')
137