Type.py revision 7832
16657Snate@binkert.org# Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
26657Snate@binkert.org# Copyright (c) 2009 The Hewlett-Packard Development Company
36657Snate@binkert.org# All rights reserved.
46657Snate@binkert.org#
56657Snate@binkert.org# Redistribution and use in source and binary forms, with or without
66657Snate@binkert.org# modification, are permitted provided that the following conditions are
76657Snate@binkert.org# met: redistributions of source code must retain the above copyright
86657Snate@binkert.org# notice, this list of conditions and the following disclaimer;
96657Snate@binkert.org# redistributions in binary form must reproduce the above copyright
106657Snate@binkert.org# notice, this list of conditions and the following disclaimer in the
116657Snate@binkert.org# documentation and/or other materials provided with the distribution;
126657Snate@binkert.org# neither the name of the copyright holders nor the names of its
136657Snate@binkert.org# contributors may be used to endorse or promote products derived from
146657Snate@binkert.org# this software without specific prior written permission.
156657Snate@binkert.org#
166657Snate@binkert.org# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
176657Snate@binkert.org# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
186657Snate@binkert.org# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
196657Snate@binkert.org# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
206657Snate@binkert.org# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
216657Snate@binkert.org# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
226657Snate@binkert.org# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
236657Snate@binkert.org# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
246657Snate@binkert.org# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
256657Snate@binkert.org# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
266657Snate@binkert.org# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
276657Snate@binkert.org
286999Snate@binkert.orgfrom m5.util import orderdict
296657Snate@binkert.org
306657Snate@binkert.orgfrom slicc.util import PairContainer
316657Snate@binkert.orgfrom slicc.symbols.Symbol import Symbol
326657Snate@binkert.org
336657Snate@binkert.orgclass DataMember(PairContainer):
346657Snate@binkert.org    def __init__(self, ident, type, pairs, init_code):
356657Snate@binkert.org        super(DataMember, self).__init__(pairs)
366657Snate@binkert.org        self.ident = ident
376657Snate@binkert.org        self.type = type
386657Snate@binkert.org        self.init_code = init_code
396657Snate@binkert.org
406657Snate@binkert.orgclass Enumeration(PairContainer):
416657Snate@binkert.org    def __init__(self, ident, pairs):
426657Snate@binkert.org        super(Enumeration, self).__init__(pairs)
436657Snate@binkert.org        self.ident = ident
446657Snate@binkert.org
456657Snate@binkert.orgclass Method(object):
466657Snate@binkert.org    def __init__(self, return_type, param_types):
476657Snate@binkert.org        self.return_type = return_type
486657Snate@binkert.org        self.param_types = param_types
496657Snate@binkert.org
506657Snate@binkert.orgclass Type(Symbol):
516657Snate@binkert.org    def __init__(self, table, ident, location, pairs, machine=None):
526657Snate@binkert.org        super(Type, self).__init__(table, ident, location, pairs)
536657Snate@binkert.org        self.c_ident = ident
546882SBrad.Beckmann@amd.com        self.abstract_ident = ""
556657Snate@binkert.org        if machine:
566657Snate@binkert.org            if self.isExternal or self.isPrimitive:
576657Snate@binkert.org                if "external_name" in self:
586657Snate@binkert.org                    self.c_ident = self["external_name"]
596657Snate@binkert.org            else:
606657Snate@binkert.org                # Append with machine name
616657Snate@binkert.org                self.c_ident = "%s_%s" % (machine, ident)
626657Snate@binkert.org
636657Snate@binkert.org        self.pairs.setdefault("desc", "No description avaliable")
646657Snate@binkert.org
656657Snate@binkert.org        # check for interface that this Type implements
666657Snate@binkert.org        if "interface" in self:
676657Snate@binkert.org            interface = self["interface"]
686657Snate@binkert.org            if interface in ("Message", "NetworkMessage"):
696657Snate@binkert.org                self["message"] = "yes"
706657Snate@binkert.org            if interface == "NetworkMessage":
716657Snate@binkert.org                self["networkmessage"] = "yes"
726657Snate@binkert.org
736657Snate@binkert.org        # FIXME - all of the following id comparisons are fragile hacks
746657Snate@binkert.org        if self.ident in ("CacheMemory", "NewCacheMemory",
756657Snate@binkert.org                          "TLCCacheMemory", "DNUCACacheMemory",
766657Snate@binkert.org                          "DNUCABankCacheMemory", "L2BankCacheMemory",
776657Snate@binkert.org                          "CompressedCacheMemory", "PrefetchCacheMemory"):
786657Snate@binkert.org            self["cache"] = "yes"
796657Snate@binkert.org
806657Snate@binkert.org        if self.ident in ("TBETable", "DNUCATBETable", "DNUCAStopTable"):
816657Snate@binkert.org            self["tbe"] = "yes"
826657Snate@binkert.org
836657Snate@binkert.org        if self.ident == "NewTBETable":
846657Snate@binkert.org            self["newtbe"] = "yes"
856657Snate@binkert.org
866657Snate@binkert.org        if self.ident == "TimerTable":
876657Snate@binkert.org            self["timer"] = "yes"
886657Snate@binkert.org
896657Snate@binkert.org        if self.ident == "DirectoryMemory":
906657Snate@binkert.org            self["dir"] = "yes"
916657Snate@binkert.org
926657Snate@binkert.org        if self.ident == "PersistentTable":
936657Snate@binkert.org            self["persistent"] = "yes"
946657Snate@binkert.org
956657Snate@binkert.org        if self.ident == "Prefetcher":
966657Snate@binkert.org            self["prefetcher"] = "yes"
976657Snate@binkert.org
986657Snate@binkert.org        if self.ident == "DNUCA_Movement":
996657Snate@binkert.org            self["mover"] = "yes"
1006657Snate@binkert.org
1016657Snate@binkert.org        self.isMachineType = (ident == "MachineType")
1026657Snate@binkert.org
1036657Snate@binkert.org        self.data_members = orderdict()
1046657Snate@binkert.org
1056657Snate@binkert.org        # Methods
1066657Snate@binkert.org        self.methods = {}
1076657Snate@binkert.org
1086657Snate@binkert.org        # Enums
1096657Snate@binkert.org        self.enums = orderdict()
1106657Snate@binkert.org
1116657Snate@binkert.org    @property
1126657Snate@binkert.org    def isPrimitive(self):
1136657Snate@binkert.org        return "primitive" in self
1146657Snate@binkert.org    @property
1156657Snate@binkert.org    def isNetworkMessage(self):
1166657Snate@binkert.org        return "networkmessage" in self
1176657Snate@binkert.org    @property
1186657Snate@binkert.org    def isMessage(self):
1196657Snate@binkert.org        return "message" in self
1206657Snate@binkert.org    @property
1216657Snate@binkert.org    def isBuffer(self):
1226657Snate@binkert.org        return "buffer" in self
1236657Snate@binkert.org    @property
1246657Snate@binkert.org    def isInPort(self):
1256657Snate@binkert.org        return "inport" in self
1266657Snate@binkert.org    @property
1276657Snate@binkert.org    def isOutPort(self):
1286657Snate@binkert.org        return "outport" in self
1296657Snate@binkert.org    @property
1306657Snate@binkert.org    def isEnumeration(self):
1316657Snate@binkert.org        return "enumeration" in self
1326657Snate@binkert.org    @property
1336657Snate@binkert.org    def isExternal(self):
1346657Snate@binkert.org        return "external" in self
1356657Snate@binkert.org    @property
1366657Snate@binkert.org    def isGlobal(self):
1376657Snate@binkert.org        return "global" in self
1386657Snate@binkert.org    @property
1396657Snate@binkert.org    def isInterface(self):
1406657Snate@binkert.org        return "interface" in self
1416657Snate@binkert.org
1426657Snate@binkert.org    # Return false on error
1436657Snate@binkert.org    def dataMemberAdd(self, ident, type, pairs, init_code):
1446657Snate@binkert.org        if ident in self.data_members:
1456657Snate@binkert.org            return False
1466657Snate@binkert.org
1476657Snate@binkert.org        member = DataMember(ident, type, pairs, init_code)
1486657Snate@binkert.org        self.data_members[ident] = member
1496657Snate@binkert.org
1506657Snate@binkert.org        return True
1516657Snate@binkert.org
1526657Snate@binkert.org    def dataMemberType(self, ident):
1536657Snate@binkert.org        return self.data_members[ident].type
1546657Snate@binkert.org
1556657Snate@binkert.org    def methodId(self, name, param_type_vec):
1566657Snate@binkert.org        return '_'.join([name] + [ pt.c_ident for pt in param_type_vec ])
1576657Snate@binkert.org
1586882SBrad.Beckmann@amd.com    def methodIdAbstract(self, name, param_type_vec):
1596882SBrad.Beckmann@amd.com        return '_'.join([name] + [ pt.abstract_ident for pt in param_type_vec ])
1606882SBrad.Beckmann@amd.com
1616657Snate@binkert.org    def methodAdd(self, name, return_type, param_type_vec):
1626657Snate@binkert.org        ident = self.methodId(name, param_type_vec)
1636657Snate@binkert.org        if ident in self.methods:
1646657Snate@binkert.org            return False
1656657Snate@binkert.org
1666657Snate@binkert.org        self.methods[ident] = Method(return_type, param_type_vec)
1676657Snate@binkert.org        return True
1686657Snate@binkert.org
1696657Snate@binkert.org    def enumAdd(self, ident, pairs):
1706657Snate@binkert.org        if ident in self.enums:
1716657Snate@binkert.org            return False
1726657Snate@binkert.org
1736657Snate@binkert.org        self.enums[ident] = Enumeration(ident, pairs)
1746657Snate@binkert.org
1756657Snate@binkert.org        # Add default
1766657Snate@binkert.org        if "default" not in self:
1776657Snate@binkert.org            self["default"] = "%s_NUM" % self.c_ident
1786657Snate@binkert.org
1796657Snate@binkert.org        return True
1806657Snate@binkert.org
1816657Snate@binkert.org    def writeCodeFiles(self, path):
1826657Snate@binkert.org        if self.isExternal:
1836657Snate@binkert.org            # Do nothing
1846657Snate@binkert.org            pass
1856657Snate@binkert.org        elif self.isEnumeration:
1866657Snate@binkert.org            self.printEnumHH(path)
1876657Snate@binkert.org            self.printEnumCC(path)
1886657Snate@binkert.org        else:
1896657Snate@binkert.org            # User defined structs and messages
1906657Snate@binkert.org            self.printTypeHH(path)
1916657Snate@binkert.org            self.printTypeCC(path)
1926657Snate@binkert.org
1936657Snate@binkert.org    def printTypeHH(self, path):
1946999Snate@binkert.org        code = self.symtab.codeFormatter()
1956657Snate@binkert.org        code('''
1966657Snate@binkert.org/** \\file ${{self.c_ident}}.hh
1976657Snate@binkert.org *
1986657Snate@binkert.org *
1996657Snate@binkert.org * Auto generated C++ code started by $__file__:$__line__
2006657Snate@binkert.org */
2016657Snate@binkert.org
2027007Snate@binkert.org#ifndef __${{self.c_ident}}_HH__
2037007Snate@binkert.org#define __${{self.c_ident}}_HH__
2046657Snate@binkert.org
2057002Snate@binkert.org#include <iostream>
2067002Snate@binkert.org
2076657Snate@binkert.org#include "mem/ruby/common/Global.hh"
2086657Snate@binkert.org''')
2096657Snate@binkert.org
2106657Snate@binkert.org        for dm in self.data_members.values():
2116657Snate@binkert.org            if not dm.type.isPrimitive:
2126657Snate@binkert.org                code('#include "mem/protocol/$0.hh"', dm.type.c_ident)
2136657Snate@binkert.org
2146657Snate@binkert.org        parent = ""
2156657Snate@binkert.org        if "interface" in self:
2166657Snate@binkert.org            code('#include "mem/protocol/$0.hh"', self["interface"])
2176657Snate@binkert.org            parent = " :  public %s" % self["interface"]
2186657Snate@binkert.org
2196657Snate@binkert.org        code('''
2207007Snate@binkert.org$klass ${{self.c_ident}}$parent
2217007Snate@binkert.org{
2226657Snate@binkert.org  public:
2236657Snate@binkert.org    ${{self.c_ident}}()
2247007Snate@binkert.org    {
2256657Snate@binkert.org''', klass="class")
2266657Snate@binkert.org
2276657Snate@binkert.org        code.indent()
2286657Snate@binkert.org        if not self.isGlobal:
2296657Snate@binkert.org            code.indent()
2306657Snate@binkert.org            for dm in self.data_members.values():
2316657Snate@binkert.org                ident = dm.ident
2326657Snate@binkert.org                if "default" in dm:
2336657Snate@binkert.org                    # look for default value
2346657Snate@binkert.org                    code('m_$ident = ${{dm["default"]}}; // default for this field')
2356657Snate@binkert.org                elif "default" in dm.type:
2366657Snate@binkert.org                    # Look for the type default
2376657Snate@binkert.org                    tid = dm.type.c_ident
2386657Snate@binkert.org                    code('m_$ident = ${{dm.type["default"]}}; // default value of $tid')
2396657Snate@binkert.org                else:
2406657Snate@binkert.org                    code('// m_$ident has no default')
2416657Snate@binkert.org            code.dedent()
2426657Snate@binkert.org        code('}')
2436657Snate@binkert.org
2447453Snate@binkert.org        # ******** Copy constructor ********
2457453Snate@binkert.org        if not self.isGlobal:
2467453Snate@binkert.org            code('${{self.c_ident}}(const ${{self.c_ident}}&other)')
2477453Snate@binkert.org
2487453Snate@binkert.org            # Call superclass constructor
2497453Snate@binkert.org            if "interface" in self:
2507453Snate@binkert.org                code('    : ${{self["interface"]}}(other)')
2517453Snate@binkert.org
2527453Snate@binkert.org            code('{')
2537453Snate@binkert.org            code.indent()
2547453Snate@binkert.org
2557453Snate@binkert.org            for dm in self.data_members.values():
2567453Snate@binkert.org                code('m_${{dm.ident}} = other.m_${{dm.ident}};')
2577453Snate@binkert.org
2587453Snate@binkert.org            if self.isMessage:
2597453Snate@binkert.org                code('proc_id = other.proc_id;')
2607453Snate@binkert.org
2617453Snate@binkert.org            code.dedent()
2627453Snate@binkert.org            code('}')
2637453Snate@binkert.org
2646657Snate@binkert.org        # ******** Full init constructor ********
2656657Snate@binkert.org        if not self.isGlobal:
2666657Snate@binkert.org            params = [ 'const %s& local_%s' % (dm.type.c_ident, dm.ident) \
2676657Snate@binkert.org                       for dm in self.data_members.itervalues() ]
2686657Snate@binkert.org
2696657Snate@binkert.org            if self.isMessage:
2706657Snate@binkert.org                params.append('const unsigned local_proc_id')
2716657Snate@binkert.org
2726657Snate@binkert.org            params = ', '.join(params)
2736657Snate@binkert.org            code('${{self.c_ident}}($params)')
2746657Snate@binkert.org
2756657Snate@binkert.org            # Call superclass constructor
2766657Snate@binkert.org            if "interface" in self:
2776657Snate@binkert.org                code('    : ${{self["interface"]}}()')
2786657Snate@binkert.org
2796657Snate@binkert.org            code('{')
2806657Snate@binkert.org            code.indent()
2816657Snate@binkert.org            for dm in self.data_members.values():
2826657Snate@binkert.org                code('m_${{dm.ident}} = local_${{dm.ident}};')
2836657Snate@binkert.org                if "nextLineCallHack" in dm:
2846657Snate@binkert.org                    code('m_${{dm.ident}}${{dm["nextLineCallHack"]}};')
2856657Snate@binkert.org
2866657Snate@binkert.org            if self.isMessage:
2876657Snate@binkert.org                code('proc_id = local_proc_id;')
2886657Snate@binkert.org
2896657Snate@binkert.org            code.dedent()
2906657Snate@binkert.org            code('}')
2916657Snate@binkert.org
2927453Snate@binkert.org        # create a static factory method and a clone member
2937453Snate@binkert.org        code('''
2947453Snate@binkert.orgstatic ${{self.c_ident}}*
2957007Snate@binkert.orgcreate()
2967007Snate@binkert.org{
2976657Snate@binkert.org    return new ${{self.c_ident}}();
2986657Snate@binkert.org}
2996657Snate@binkert.org
3007453Snate@binkert.org${{self.c_ident}}*
3017007Snate@binkert.orgclone() const
3027007Snate@binkert.org{
3037453Snate@binkert.org     return new ${{self.c_ident}}(*this);
3047007Snate@binkert.org}
3056657Snate@binkert.org''')
3066657Snate@binkert.org
3076657Snate@binkert.org        if not self.isGlobal:
3086657Snate@binkert.org            # const Get methods for each field
3096657Snate@binkert.org            code('// Const accessors methods for each field')
3106657Snate@binkert.org            for dm in self.data_members.values():
3116657Snate@binkert.org                code('''
3126657Snate@binkert.org/** \\brief Const accessor method for ${{dm.ident}} field.
3136657Snate@binkert.org *  \\return ${{dm.ident}} field
3146657Snate@binkert.org */
3157007Snate@binkert.orgconst ${{dm.type.c_ident}}&
3167007Snate@binkert.orgget${{dm.ident}}() const
3177007Snate@binkert.org{
3187007Snate@binkert.org    return m_${{dm.ident}};
3197007Snate@binkert.org}
3206657Snate@binkert.org''')
3216657Snate@binkert.org
3226657Snate@binkert.org            # Non-const Get methods for each field
3236657Snate@binkert.org            code('// Non const Accessors methods for each field')
3246657Snate@binkert.org            for dm in self.data_members.values():
3256657Snate@binkert.org                code('''
3266657Snate@binkert.org/** \\brief Non-const accessor method for ${{dm.ident}} field.
3276657Snate@binkert.org *  \\return ${{dm.ident}} field
3286657Snate@binkert.org */
3297007Snate@binkert.org${{dm.type.c_ident}}&
3307007Snate@binkert.orgget${{dm.ident}}()
3317007Snate@binkert.org{
3327007Snate@binkert.org    return m_${{dm.ident}};
3337007Snate@binkert.org}
3346657Snate@binkert.org''')
3356657Snate@binkert.org
3366657Snate@binkert.org            #Set methods for each field
3376657Snate@binkert.org            code('// Mutator methods for each field')
3386657Snate@binkert.org            for dm in self.data_members.values():
3396657Snate@binkert.org                code('''
3406657Snate@binkert.org/** \\brief Mutator method for ${{dm.ident}} field */
3417007Snate@binkert.orgvoid
3427007Snate@binkert.orgset${{dm.ident}}(const ${{dm.type.c_ident}}& local_${{dm.ident}})
3437007Snate@binkert.org{
3447007Snate@binkert.org    m_${{dm.ident}} = local_${{dm.ident}};
3457007Snate@binkert.org}
3466657Snate@binkert.org''')
3476657Snate@binkert.org
3487002Snate@binkert.org        code('void print(std::ostream& out) const;')
3496657Snate@binkert.org        code.dedent()
3506657Snate@binkert.org        code('  //private:')
3516657Snate@binkert.org        code.indent()
3526657Snate@binkert.org
3536657Snate@binkert.org        # Data members for each field
3546657Snate@binkert.org        for dm in self.data_members.values():
3556657Snate@binkert.org            if "abstract" not in dm:
3566657Snate@binkert.org                const = ""
3576657Snate@binkert.org                init = ""
3586657Snate@binkert.org
3596657Snate@binkert.org                # global structure
3606657Snate@binkert.org                if self.isGlobal:
3616657Snate@binkert.org                    const = "static const "
3626657Snate@binkert.org
3636657Snate@binkert.org                # init value
3646657Snate@binkert.org                if dm.init_code:
3656657Snate@binkert.org                    # only global structure can have init value here
3666657Snate@binkert.org                    assert self.isGlobal
3676657Snate@binkert.org                    init = " = %s" % (dm.init_code)
3686657Snate@binkert.org
3696657Snate@binkert.org                if "desc" in dm:
3707007Snate@binkert.org                    code('/** ${{dm["desc"]}} */')
3716657Snate@binkert.org
3727007Snate@binkert.org                code('$const${{dm.type.c_ident}} m_${{dm.ident}}$init;')
3736657Snate@binkert.org
3746657Snate@binkert.org        if self.isMessage:
3756657Snate@binkert.org            code('unsigned proc_id;')
3766657Snate@binkert.org
3776657Snate@binkert.org        code.dedent()
3786657Snate@binkert.org        code('};')
3796657Snate@binkert.org
3806657Snate@binkert.org        code('''
3817055Snate@binkert.orginline std::ostream&
3827007Snate@binkert.orgoperator<<(std::ostream& out, const ${{self.c_ident}}& obj)
3836657Snate@binkert.org{
3846657Snate@binkert.org    obj.print(out);
3857002Snate@binkert.org    out << std::flush;
3866657Snate@binkert.org    return out;
3876657Snate@binkert.org}
3886657Snate@binkert.org
3897007Snate@binkert.org#endif // __${{self.c_ident}}_HH__
3906657Snate@binkert.org''')
3916657Snate@binkert.org
3926657Snate@binkert.org        code.write(path, "%s.hh" % self.c_ident)
3936657Snate@binkert.org
3946657Snate@binkert.org    def printTypeCC(self, path):
3956999Snate@binkert.org        code = self.symtab.codeFormatter()
3966657Snate@binkert.org
3976657Snate@binkert.org        code('''
3986657Snate@binkert.org/** \\file ${{self.c_ident}}.cc
3996657Snate@binkert.org *
4006657Snate@binkert.org * Auto generated C++ code started by $__file__:$__line__
4016657Snate@binkert.org */
4026657Snate@binkert.org
4037002Snate@binkert.org#include <iostream>
4047002Snate@binkert.org
4056657Snate@binkert.org#include "mem/protocol/${{self.c_ident}}.hh"
4067002Snate@binkert.org
4077002Snate@binkert.orgusing namespace std;
4086657Snate@binkert.org''')
4096657Snate@binkert.org
4106657Snate@binkert.org        code('''
4116657Snate@binkert.org/** \\brief Print the state of this object */
4127007Snate@binkert.orgvoid
4137007Snate@binkert.org${{self.c_ident}}::print(ostream& out) const
4146657Snate@binkert.org{
4156657Snate@binkert.org    out << "[${{self.c_ident}}: ";
4166657Snate@binkert.org''')
4176657Snate@binkert.org
4186657Snate@binkert.org        # For each field
4196657Snate@binkert.org        code.indent()
4206657Snate@binkert.org        for dm in self.data_members.values():
4216657Snate@binkert.org            code('out << "${{dm.ident}} = " << m_${{dm.ident}} << " ";''')
4226657Snate@binkert.org
4236657Snate@binkert.org        if self.isMessage:
4246657Snate@binkert.org            code('out << "Time = " << getTime() << " ";')
4256657Snate@binkert.org        code.dedent()
4266657Snate@binkert.org
4276657Snate@binkert.org        # Trailer
4286657Snate@binkert.org        code('''
4296657Snate@binkert.org    out << "]";
4306657Snate@binkert.org}''')
4316657Snate@binkert.org
4326657Snate@binkert.org        code.write(path, "%s.cc" % self.c_ident)
4336657Snate@binkert.org
4346657Snate@binkert.org    def printEnumHH(self, path):
4356999Snate@binkert.org        code = self.symtab.codeFormatter()
4366657Snate@binkert.org        code('''
4376657Snate@binkert.org/** \\file ${{self.c_ident}}.hh
4386657Snate@binkert.org *
4396657Snate@binkert.org * Auto generated C++ code started by $__file__:$__line__
4406657Snate@binkert.org */
4417007Snate@binkert.org
4427007Snate@binkert.org#ifndef __${{self.c_ident}}_HH__
4437007Snate@binkert.org#define __${{self.c_ident}}_HH__
4446657Snate@binkert.org
4457002Snate@binkert.org#include <iostream>
4467002Snate@binkert.org#include <string>
4477002Snate@binkert.org
4486657Snate@binkert.org#include "mem/ruby/common/Global.hh"
4496657Snate@binkert.org
4507007Snate@binkert.org// Class definition
4516657Snate@binkert.org/** \\enum ${{self.c_ident}}
4526657Snate@binkert.org *  \\brief ${{self.desc}}
4536657Snate@binkert.org */
4546657Snate@binkert.orgenum ${{self.c_ident}} {
4556657Snate@binkert.org    ${{self.c_ident}}_FIRST,
4566657Snate@binkert.org''')
4576657Snate@binkert.org
4586657Snate@binkert.org        code.indent()
4596657Snate@binkert.org        # For each field
4606657Snate@binkert.org        for i,(ident,enum) in enumerate(self.enums.iteritems()):
4616657Snate@binkert.org            desc = enum.get("desc", "No description avaliable")
4626862Sdrh5@cs.wisc.edu            if i == 0:
4636862Sdrh5@cs.wisc.edu                init = ' = %s_FIRST' % self.c_ident
4646862Sdrh5@cs.wisc.edu            else:
4656862Sdrh5@cs.wisc.edu                init = ''
4666657Snate@binkert.org            code('${{self.c_ident}}_${{enum.ident}}$init, /**< $desc */')
4676657Snate@binkert.org        code.dedent()
4686657Snate@binkert.org        code('''
4696657Snate@binkert.org    ${{self.c_ident}}_NUM
4706657Snate@binkert.org};
4717007Snate@binkert.org
4727007Snate@binkert.org// Code to convert from a string to the enumeration
4737002Snate@binkert.org${{self.c_ident}} string_to_${{self.c_ident}}(const std::string& str);
4747007Snate@binkert.org
4757007Snate@binkert.org// Code to convert state to a string
4767002Snate@binkert.orgstd::string ${{self.c_ident}}_to_string(const ${{self.c_ident}}& obj);
4777007Snate@binkert.org
4787007Snate@binkert.org// Code to increment an enumeration type
4796657Snate@binkert.org${{self.c_ident}} &operator++(${{self.c_ident}} &e);
4806657Snate@binkert.org''')
4816657Snate@binkert.org
4826657Snate@binkert.org        # MachineType hack used to set the base component id for each Machine
4836657Snate@binkert.org        if self.isMachineType:
4846657Snate@binkert.org            code('''
4856657Snate@binkert.orgint ${{self.c_ident}}_base_level(const ${{self.c_ident}}& obj);
4866657Snate@binkert.orgMachineType ${{self.c_ident}}_from_base_level(int);
4876657Snate@binkert.orgint ${{self.c_ident}}_base_number(const ${{self.c_ident}}& obj);
4886657Snate@binkert.orgint ${{self.c_ident}}_base_count(const ${{self.c_ident}}& obj);
4896657Snate@binkert.org''')
4906657Snate@binkert.org
4916657Snate@binkert.org            for enum in self.enums.itervalues():
4926657Snate@binkert.org                code('#define MACHINETYPE_${{enum.ident}} 1')
4936657Snate@binkert.org
4946657Snate@binkert.org        # Trailer
4956657Snate@binkert.org        code('''
4967002Snate@binkert.orgstd::ostream& operator<<(std::ostream& out, const ${{self.c_ident}}& obj);
4976657Snate@binkert.org
4987007Snate@binkert.org#endif // __${{self.c_ident}}_HH__
4996657Snate@binkert.org''')
5006657Snate@binkert.org
5016657Snate@binkert.org        code.write(path, "%s.hh" % self.c_ident)
5026657Snate@binkert.org
5036657Snate@binkert.org    def printEnumCC(self, path):
5046999Snate@binkert.org        code = self.symtab.codeFormatter()
5056657Snate@binkert.org        code('''
5066657Snate@binkert.org/** \\file ${{self.c_ident}}.hh
5076657Snate@binkert.org *
5086657Snate@binkert.org * Auto generated C++ code started by $__file__:$__line__
5096657Snate@binkert.org */
5106657Snate@binkert.org
5117832Snate@binkert.org#include <cassert>
5127002Snate@binkert.org#include <iostream>
5137002Snate@binkert.org#include <string>
5147002Snate@binkert.org
5157805Snilay@cs.wisc.edu#include "base/misc.hh"
5166657Snate@binkert.org#include "mem/protocol/${{self.c_ident}}.hh"
5176657Snate@binkert.org
5187002Snate@binkert.orgusing namespace std;
5197002Snate@binkert.org
5206657Snate@binkert.org''')
5216657Snate@binkert.org
5226657Snate@binkert.org        if self.isMachineType:
5236657Snate@binkert.org            for enum in self.enums.itervalues():
5246657Snate@binkert.org                code('#include "mem/protocol/${{enum.ident}}_Controller.hh"')
5256657Snate@binkert.org
5266657Snate@binkert.org        code('''
5277007Snate@binkert.org// Code for output operator
5287007Snate@binkert.orgostream&
5297007Snate@binkert.orgoperator<<(ostream& out, const ${{self.c_ident}}& obj)
5306657Snate@binkert.org{
5316657Snate@binkert.org    out << ${{self.c_ident}}_to_string(obj);
5326657Snate@binkert.org    out << flush;
5336657Snate@binkert.org    return out;
5346657Snate@binkert.org}
5356657Snate@binkert.org
5367007Snate@binkert.org// Code to convert state to a string
5377007Snate@binkert.orgstring
5387007Snate@binkert.org${{self.c_ident}}_to_string(const ${{self.c_ident}}& obj)
5396657Snate@binkert.org{
5406657Snate@binkert.org    switch(obj) {
5416657Snate@binkert.org''')
5426657Snate@binkert.org
5436657Snate@binkert.org        # For each field
5446657Snate@binkert.org        code.indent()
5456657Snate@binkert.org        for enum in self.enums.itervalues():
5466657Snate@binkert.org            code('  case ${{self.c_ident}}_${{enum.ident}}:')
5476657Snate@binkert.org            code('    return "${{enum.ident}}";')
5486657Snate@binkert.org        code.dedent()
5496657Snate@binkert.org
5506657Snate@binkert.org        # Trailer
5516657Snate@binkert.org        code('''
5526657Snate@binkert.org      default:
5537805Snilay@cs.wisc.edu        panic("Invalid range for type ${{self.c_ident}}");
5546657Snate@binkert.org    }
5556657Snate@binkert.org}
5566657Snate@binkert.org
5577007Snate@binkert.org// Code to convert from a string to the enumeration
5587007Snate@binkert.org${{self.c_ident}}
5597007Snate@binkert.orgstring_to_${{self.c_ident}}(const string& str)
5606657Snate@binkert.org{
5616657Snate@binkert.org''')
5626657Snate@binkert.org
5636657Snate@binkert.org        # For each field
5647007Snate@binkert.org        start = ""
5656657Snate@binkert.org        code.indent()
5666657Snate@binkert.org        for enum in self.enums.itervalues():
5676657Snate@binkert.org            code('${start}if (str == "${{enum.ident}}") {')
5686657Snate@binkert.org            code('    return ${{self.c_ident}}_${{enum.ident}};')
5697007Snate@binkert.org            start = "} else "
5706657Snate@binkert.org        code.dedent()
5716657Snate@binkert.org
5726657Snate@binkert.org        code('''
5736657Snate@binkert.org    } else {
5747805Snilay@cs.wisc.edu        panic("Invalid string conversion for %s, type ${{self.c_ident}}", str);
5756657Snate@binkert.org    }
5766657Snate@binkert.org}
5776657Snate@binkert.org
5787007Snate@binkert.org// Code to increment an enumeration type
5797007Snate@binkert.org${{self.c_ident}}&
5807007Snate@binkert.orgoperator++(${{self.c_ident}}& e)
5817007Snate@binkert.org{
5826657Snate@binkert.org    assert(e < ${{self.c_ident}}_NUM);
5836657Snate@binkert.org    return e = ${{self.c_ident}}(e+1);
5846657Snate@binkert.org}
5856657Snate@binkert.org''')
5866657Snate@binkert.org
5876657Snate@binkert.org        # MachineType hack used to set the base level and number of
5886657Snate@binkert.org        # components for each Machine
5896657Snate@binkert.org        if self.isMachineType:
5906657Snate@binkert.org            code('''
5917007Snate@binkert.org/** \\brief returns the base vector index for each machine type to be
5927007Snate@binkert.org  * used by NetDest
5936657Snate@binkert.org  *
5946657Snate@binkert.org  * \\return the base vector index for each machine type to be used by NetDest
5956657Snate@binkert.org  * \\see NetDest.hh
5966657Snate@binkert.org  */
5977007Snate@binkert.orgint
5987007Snate@binkert.org${{self.c_ident}}_base_level(const ${{self.c_ident}}& obj)
5996657Snate@binkert.org{
6006657Snate@binkert.org    switch(obj) {
6016657Snate@binkert.org''')
6026657Snate@binkert.org
6036657Snate@binkert.org            # For each field
6046657Snate@binkert.org            code.indent()
6056657Snate@binkert.org            for i,enum in enumerate(self.enums.itervalues()):
6066657Snate@binkert.org                code('  case ${{self.c_ident}}_${{enum.ident}}:')
6076657Snate@binkert.org                code('    return $i;')
6086657Snate@binkert.org            code.dedent()
6096657Snate@binkert.org
6106657Snate@binkert.org            # total num
6116657Snate@binkert.org            code('''
6126657Snate@binkert.org      case ${{self.c_ident}}_NUM:
6136657Snate@binkert.org        return ${{len(self.enums)}};
6146657Snate@binkert.org
6156657Snate@binkert.org      default:
6167805Snilay@cs.wisc.edu        panic("Invalid range for type ${{self.c_ident}}");
6176657Snate@binkert.org    }
6186657Snate@binkert.org}
6196657Snate@binkert.org
6206657Snate@binkert.org/** \\brief returns the machine type for each base vector index used by NetDest
6216657Snate@binkert.org *
6227007Snate@binkert.org * \\return the MachineType
6236657Snate@binkert.org */
6247007Snate@binkert.orgMachineType
6257007Snate@binkert.org${{self.c_ident}}_from_base_level(int type)
6266657Snate@binkert.org{
6276657Snate@binkert.org    switch(type) {
6286657Snate@binkert.org''')
6296657Snate@binkert.org
6306657Snate@binkert.org            # For each field
6316657Snate@binkert.org            code.indent()
6326657Snate@binkert.org            for i,enum in enumerate(self.enums.itervalues()):
6336657Snate@binkert.org                code('  case $i:')
6346657Snate@binkert.org                code('    return ${{self.c_ident}}_${{enum.ident}};')
6356657Snate@binkert.org            code.dedent()
6366657Snate@binkert.org
6376657Snate@binkert.org            # Trailer
6386657Snate@binkert.org            code('''
6396657Snate@binkert.org      default:
6407805Snilay@cs.wisc.edu        panic("Invalid range for type ${{self.c_ident}}");
6416657Snate@binkert.org    }
6426657Snate@binkert.org}
6436657Snate@binkert.org
6446657Snate@binkert.org/** \\brief The return value indicates the number of components created
6456657Snate@binkert.org * before a particular machine\'s components
6466657Snate@binkert.org *
6476657Snate@binkert.org * \\return the base number of components for each machine
6486657Snate@binkert.org */
6497007Snate@binkert.orgint
6507007Snate@binkert.org${{self.c_ident}}_base_number(const ${{self.c_ident}}& obj)
6516657Snate@binkert.org{
6526657Snate@binkert.org    int base = 0;
6536657Snate@binkert.org    switch(obj) {
6546657Snate@binkert.org''')
6556657Snate@binkert.org
6566657Snate@binkert.org            # For each field
6576657Snate@binkert.org            code.indent()
6586657Snate@binkert.org            code('  case ${{self.c_ident}}_NUM:')
6596657Snate@binkert.org            for enum in reversed(self.enums.values()):
6606657Snate@binkert.org                code('    base += ${{enum.ident}}_Controller::getNumControllers();')
6616657Snate@binkert.org                code('  case ${{self.c_ident}}_${{enum.ident}}:')
6626657Snate@binkert.org            code('    break;')
6636657Snate@binkert.org            code.dedent()
6646657Snate@binkert.org
6656657Snate@binkert.org            code('''
6666657Snate@binkert.org      default:
6677805Snilay@cs.wisc.edu        panic("Invalid range for type ${{self.c_ident}}");
6686657Snate@binkert.org    }
6696657Snate@binkert.org
6706657Snate@binkert.org    return base;
6716657Snate@binkert.org}
6726657Snate@binkert.org
6736657Snate@binkert.org/** \\brief returns the total number of components for each machine
6746657Snate@binkert.org * \\return the total number of components for each machine
6756657Snate@binkert.org */
6767007Snate@binkert.orgint
6777007Snate@binkert.org${{self.c_ident}}_base_count(const ${{self.c_ident}}& obj)
6786657Snate@binkert.org{
6796657Snate@binkert.org    switch(obj) {
6806657Snate@binkert.org''')
6816657Snate@binkert.org
6826657Snate@binkert.org            # For each field
6836657Snate@binkert.org            for enum in self.enums.itervalues():
6846657Snate@binkert.org                code('''
6856657Snate@binkert.org      case ${{self.c_ident}}_${{enum.ident}}:
6866657Snate@binkert.org        return ${{enum.ident}}_Controller::getNumControllers();
6876657Snate@binkert.org''')
6886657Snate@binkert.org
6896657Snate@binkert.org            # total num
6906657Snate@binkert.org            code('''
6916657Snate@binkert.org      case ${{self.c_ident}}_NUM:
6926657Snate@binkert.org      default:
6937805Snilay@cs.wisc.edu        panic("Invalid range for type ${{self.c_ident}}");
6946657Snate@binkert.org    }
6956657Snate@binkert.org}
6966657Snate@binkert.org''')
6976657Snate@binkert.org
6986657Snate@binkert.org        # Write the file
6996657Snate@binkert.org        code.write(path, "%s.cc" % self.c_ident)
7006657Snate@binkert.org
7016657Snate@binkert.org__all__ = [ "Type" ]
702