From: Dag Sverre Seljebotn Date: Thu, 19 Jun 2008 23:51:19 +0000 (-0700) Subject: Generates closure classes for all functions X-Git-Tag: 0.9.8.1~49^2~114^2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=747a011050f555d318b68cfe699f08655ff829cc;p=cython.git Generates closure classes for all functions --- diff --git a/Cython/Compiler/Main.py b/Cython/Compiler/Main.py index 5c51e632..48194613 100644 --- a/Cython/Compiler/Main.py +++ b/Cython/Compiler/Main.py @@ -336,6 +336,7 @@ def create_generate_code(context, options, result): def create_default_pipeline(context, options, result): from ParseTreeTransforms import WithTransform, PostParse from ParseTreeTransforms import AnalyseDeclarationsTransform, AnalyseExpressionsTransform + from ParseTreeTransforms import CreateClosureClasses from ModuleNode import check_c_classes return [ @@ -345,6 +346,7 @@ def create_default_pipeline(context, options, result): AnalyseDeclarationsTransform(), check_c_classes, AnalyseExpressionsTransform(), + CreateClosureClasses(), create_generate_code(context, options, result) ] diff --git a/Cython/Compiler/ParseTreeTransforms.py b/Cython/Compiler/ParseTreeTransforms.py index dbb30d24..ffb79e71 100644 --- a/Cython/Compiler/ParseTreeTransforms.py +++ b/Cython/Compiler/ParseTreeTransforms.py @@ -1,9 +1,9 @@ from Cython.Compiler.Visitor import VisitorTransform, temp_name_handle +from Cython.Compiler.ModuleNode import ModuleNode from Cython.Compiler.Nodes import * from Cython.Compiler.ExprNodes import * from Cython.Compiler.TreeFragment import TreeFragment - class PostParse(VisitorTransform): """ This transform fixes up a few things after parsing @@ -170,7 +170,6 @@ class AnalyseDeclarationsTransform(VisitorTransform): class AnalyseExpressionsTransform(VisitorTransform): - def visit_ModuleNode(self, node): node.body.analyse_expressions(node.scope) self.visitchildren(node) @@ -185,3 +184,35 @@ class AnalyseExpressionsTransform(VisitorTransform): self.visitchildren(node) return node + +class CreateClosureClasses(VisitorTransform): + # Output closure classes in module scope for all functions + # that need it. + + def visit_ModuleNode(self, node): + self.module_scope = node.scope + self.visitchildren(node) + return node + + def create_class_from_scope(self, node, target_module_scope): + as_name = temp_name_handle("closure") + func_scope = node.local_scope + + entry = target_module_scope.declare_c_class(name = as_name, + pos = node.pos, defining = True, implementing = True) + class_scope = entry.type.scope + for entry in func_scope.entries.values(): + class_scope.declare_var(pos=node.pos, + name=entry.name, + cname=entry.cname, + type=entry.type, + is_cdef=True) + + def visit_FuncDefNode(self, node): + self.create_class_from_scope(node, self.module_scope) + return node + + def visit_Node(self, node): + self.visitchildren(node) + return node + diff --git a/Cython/Compiler/Parsing.py b/Cython/Compiler/Parsing.py index 4d5de6cf..ac7c18d4 100644 --- a/Cython/Compiler/Parsing.py +++ b/Cython/Compiler/Parsing.py @@ -1386,7 +1386,7 @@ def p_statement(s, ctx, first_statement = 0): if ctx.api: error(s.pos, "'api' not allowed with this statement") elif s.sy == 'def': - if ctx.level not in ('module', 'class', 'c_class', 'property'): + if ctx.level not in ('module', 'class', 'c_class', 'function', 'property'): s.error('def statement not allowed here') s.level = ctx.level return p_def_statement(s) diff --git a/Cython/TestUtils.py b/Cython/TestUtils.py index 87f072f8..6383f44f 100644 --- a/Cython/TestUtils.py +++ b/Cython/TestUtils.py @@ -27,6 +27,15 @@ class NodeTypeWriter(TreeVisitor): self.visitchildren(node) self._indents -= 1 +def treetypes(root): + """Returns a string representing the tree by class names. + There's a leading and trailing whitespace so that it can be + compared by simple string comparison while still making test + cases look ok.""" + w = NodeTypeWriter() + w.visit(root) + return u"\n".join([u""] + w.result + [u""]) + class CythonTest(unittest.TestCase): def assertLines(self, expected, result): @@ -58,13 +67,7 @@ class CythonTest(unittest.TestCase): return TreeFragment(code, name, pxds) def treetypes(self, root): - """Returns a string representing the tree by class names. - There's a leading and trailing whitespace so that it can be - compared by simple string comparison while still making test - cases look ok.""" - w = NodeTypeWriter() - w.visit(root) - return u"\n".join([u""] + w.result + [u""]) + return treetypes(root) class TransformTest(CythonTest): """