FormalParamAST.py (8644:acf68e5a8cd7) FormalParamAST.py (10308:8c0870dbae5c)
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;

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

46 def generate(self):
47 type = self.type_ast.type
48 param = "param_%s" % self.ident
49
50 # Add to symbol table
51 v = Var(self.symtab, self.ident, self.location, type, param,
52 self.pairs)
53 self.symtab.newSymbol(v)
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;

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

46 def generate(self):
47 type = self.type_ast.type
48 param = "param_%s" % self.ident
49
50 # Add to symbol table
51 v = Var(self.symtab, self.ident, self.location, type, param,
52 self.pairs)
53 self.symtab.newSymbol(v)
54
54 if self.pointer or str(type) == "TBE" or (
55 "interface" in type and (
56 type["interface"] == "AbstractCacheEntry" or
57 type["interface"] == "AbstractEntry")):
58 return type, "%s* %s" % (type.c_ident, param)
59 else:
60 return type, "const %s& %s" % (type.c_ident, param)
55 if self.pointer or str(type) == "TBE" or (
56 "interface" in type and (
57 type["interface"] == "AbstractCacheEntry" or
58 type["interface"] == "AbstractEntry")):
59 return type, "%s* %s" % (type.c_ident, param)
60 else:
61 return type, "const %s& %s" % (type.c_ident, param)