ObjDeclAST.py (10075:7322d2b2ec76) ObjDeclAST.py (10305:76745b567dc3)
1# Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
2# Copyright (c) 2009 The Hewlett-Packard Development Company
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

--- 56 unchanged lines hidden (view full) ---

65 # FIXME : should all use accessors here to avoid public member
66 # variables
67 if self.ident == "version":
68 c_code = "m_version"
69 elif self.ident == "machineID":
70 c_code = "m_machineID"
71 elif self.ident == "clusterID":
72 c_code = "m_clusterID"
1# Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
2# Copyright (c) 2009 The Hewlett-Packard Development Company
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

--- 56 unchanged lines hidden (view full) ---

65 # FIXME : should all use accessors here to avoid public member
66 # variables
67 if self.ident == "version":
68 c_code = "m_version"
69 elif self.ident == "machineID":
70 c_code = "m_machineID"
71 elif self.ident == "clusterID":
72 c_code = "m_clusterID"
73 elif machine:
74 c_code = "(*m_%s_%s_ptr)" % (machine.ident, self.ident)
75 else:
76 c_code = "(*m_%s_ptr)" % (self.ident)
77
78 v = Var(self.symtab, self.ident, self.location, type, c_code,
79 self.pairs, machine)
80
81 if machine:
82 machine.addObject(v)
83
84 self.symtab.newSymbol(v)
73 else:
74 c_code = "(*m_%s_ptr)" % (self.ident)
75
76 v = Var(self.symtab, self.ident, self.location, type, c_code,
77 self.pairs, machine)
78
79 if machine:
80 machine.addObject(v)
81
82 self.symtab.newSymbol(v)