Stefan Behnel [Fri, 19 Dec 2008 01:18:27 +0000 (02:18 +0100)]
fix for-from loop in list comprehensions
Stefan Behnel [Thu, 18 Dec 2008 17:04:44 +0000 (18:04 +0100)]
avoid recursive coercion in CoerceToPyTypeNode
Stefan Behnel [Thu, 18 Dec 2008 16:48:44 +0000 (17:48 +0100)]
new transform that hides the loop variable in a comprehension
Stefan Behnel [Thu, 18 Dec 2008 16:35:25 +0000 (17:35 +0100)]
extended test cases for for-loop and list comp
Stefan Behnel [Thu, 18 Dec 2008 16:34:34 +0000 (17:34 +0100)]
for-from-loop: remember loopvar node instead of its name which may not be known at analysis phase
Stefan Behnel [Thu, 18 Dec 2008 09:20:09 +0000 (10:20 +0100)]
cleanup, keep for-range optimisation more local
Stefan Behnel [Thu, 18 Dec 2008 09:19:38 +0000 (10:19 +0100)]
more tests for for-loops and constant expressions
Stefan Behnel [Thu, 18 Dec 2008 09:00:56 +0000 (10:00 +0100)]
... and through type casts
Stefan Behnel [Thu, 18 Dec 2008 08:58:55 +0000 (09:58 +0100)]
better error messages during constant folding, forward constants also through type coercion
Stefan Behnel [Wed, 17 Dec 2008 21:29:11 +0000 (22:29 +0100)]
moved iter-range() optimisation into a transform (worth a review)
Stefan Behnel [Wed, 17 Dec 2008 21:24:04 +0000 (22:24 +0100)]
give a hint on what went wrong on a failed Cython import from distutils
Stefan Behnel [Tue, 16 Dec 2008 07:28:22 +0000 (08:28 +0100)]
small refactoring
Lisandro Dalcin [Tue, 16 Dec 2008 05:43:59 +0000 (02:43 -0300)]
fix outdated Parsing.pxd
Stefan Behnel [Sun, 14 Dec 2008 21:15:02 +0000 (22:15 +0100)]
replace set([...]) by a literal set {...}
Stefan Behnel [Sun, 14 Dec 2008 14:31:24 +0000 (15:31 +0100)]
all Nodes inherit from object, so should CmpNode
Stefan Behnel [Sun, 14 Dec 2008 14:19:00 +0000 (15:19 +0100)]
extended test case to make sure we didn't break some things
Stefan Behnel [Sun, 14 Dec 2008 14:17:54 +0000 (15:17 +0100)]
cleanup
Stefan Behnel [Sun, 14 Dec 2008 14:08:21 +0000 (15:08 +0100)]
generic aggregation of a constant BinopNode into a ConstNode (in simple cases)
Stefan Behnel [Sun, 14 Dec 2008 13:26:48 +0000 (14:26 +0100)]
also pre-calculate the constant result of floats
Stefan Behnel [Sun, 14 Dec 2008 12:48:53 +0000 (13:48 +0100)]
one more common exception silenced during constant folding
Stefan Behnel [Sun, 14 Dec 2008 10:15:23 +0000 (11:15 +0100)]
Py2.3 fix
Stefan Behnel [Sun, 14 Dec 2008 09:56:21 +0000 (10:56 +0100)]
cleanup
Stefan Behnel [Sat, 13 Dec 2008 21:46:31 +0000 (22:46 +0100)]
initial test for constant folding
Stefan Behnel [Sat, 13 Dec 2008 21:23:00 +0000 (22:23 +0100)]
initial constant folding transform: calculate constant values in node.constant_result
Stefan Behnel [Sat, 13 Dec 2008 20:25:00 +0000 (21:25 +0100)]
doctests must set __doc__ in Py2.3
Robert Bradshaw [Sat, 13 Dec 2008 18:55:30 +0000 (10:55 -0800)]
optional arguments for list.sort()
Stefan Behnel [Sat, 13 Dec 2008 14:21:41 +0000 (15:21 +0100)]
make sure we have the Py2.3 set code available when using set literals
Stefan Behnel [Sat, 13 Dec 2008 14:02:58 +0000 (15:02 +0100)]
extended test case
Stefan Behnel [Fri, 12 Dec 2008 22:03:50 +0000 (23:03 +0100)]
test fix
Stefan Behnel [Fri, 12 Dec 2008 18:30:27 +0000 (19:30 +0100)]
fix for dict literals that end with ','
Stefan Behnel [Fri, 12 Dec 2008 08:26:59 +0000 (09:26 +0100)]
test fixes after latest with transform changes
Stefan Behnel [Fri, 12 Dec 2008 08:21:10 +0000 (09:21 +0100)]
implement set/dict comprehensions and set literals
Stefan Behnel [Fri, 12 Dec 2008 07:22:49 +0000 (08:22 +0100)]
export set builtin type
Stefan Behnel [Thu, 11 Dec 2008 08:57:31 +0000 (09:57 +0100)]
embed __init__ signature in class docstring
Stefan Behnel [Wed, 10 Dec 2008 06:48:40 +0000 (07:48 +0100)]
minor fixes to the with statement transform
Stefan Behnel [Mon, 8 Dec 2008 21:22:21 +0000 (22:22 +0100)]
runnable test case for try-finally
Stefan Behnel [Mon, 8 Dec 2008 20:31:30 +0000 (21:31 +0100)]
missing temp cleanup on assignment to TempRefNode
Stefan Behnel [Sun, 7 Dec 2008 21:46:33 +0000 (22:46 +0100)]
extended with statement test case - disabled for now as it triggers a crash
Stefan Behnel [Sun, 7 Dec 2008 20:34:27 +0000 (21:34 +0100)]
renamed node
Stefan Behnel [Sun, 7 Dec 2008 20:14:13 +0000 (21:14 +0100)]
fixed FlattenInListTransform by providing a temp block expression that injects the temp result into a subexpression
Stefan Behnel [Sun, 7 Dec 2008 20:12:58 +0000 (21:12 +0100)]
removed unused (and broken) PersistantNode
Stefan Behnel [Sun, 7 Dec 2008 18:09:55 +0000 (19:09 +0100)]
extended test case for in/not-in operator
Stefan Behnel [Sun, 7 Dec 2008 11:15:33 +0000 (12:15 +0100)]
code simplification
Stefan Behnel [Fri, 5 Dec 2008 11:22:53 +0000 (12:22 +0100)]
disabled in-list transform again as the CloneNode still breaks the current temps
Stefan Behnel [Fri, 5 Dec 2008 09:22:09 +0000 (10:22 +0100)]
extended test case for dict iteration in list comprehensions
Stefan Behnel [Fri, 5 Dec 2008 09:16:59 +0000 (10:16 +0100)]
extended test case
Stefan Behnel [Thu, 4 Dec 2008 20:19:15 +0000 (21:19 +0100)]
comment
Stefan Behnel [Thu, 4 Dec 2008 20:08:56 +0000 (21:08 +0100)]
merge
Stefan Behnel [Thu, 4 Dec 2008 20:08:14 +0000 (21:08 +0100)]
same test for 'and' operator
Stefan Behnel [Thu, 4 Dec 2008 19:46:25 +0000 (20:46 +0100)]
fixed ref-counting in BoolBinopNode
Robert Bradshaw [Thu, 4 Dec 2008 08:16:19 +0000 (00:16 -0800)]
Avoid some trivial tree traversal to speed up compilation.
Stefan Behnel [Wed, 3 Dec 2008 22:26:10 +0000 (23:26 +0100)]
merge
Stefan Behnel [Wed, 3 Dec 2008 22:03:51 +0000 (23:03 +0100)]
fix crashes on type casts
Stefan Behnel [Wed, 3 Dec 2008 21:39:59 +0000 (22:39 +0100)]
extended 'if' test case that enforces heavy temp usage
Stefan Behnel [Wed, 3 Dec 2008 21:39:44 +0000 (22:39 +0100)]
fix temp deallocation in PrimaryCmpNode
Stefan Behnel [Wed, 3 Dec 2008 21:07:12 +0000 (22:07 +0100)]
better exception message for temp failure tracking
Stefan Behnel [Wed, 3 Dec 2008 20:57:49 +0000 (21:57 +0100)]
make CallNode a NewTempExprNode
Stefan Behnel [Wed, 3 Dec 2008 20:57:18 +0000 (21:57 +0100)]
some cleanup, fix temp handling in 'if' conditions
Lisandro Dalcin [Wed, 3 Dec 2008 19:42:27 +0000 (17:42 -0200)]
fix generation of C++-style comment, use C-style
Stefan Behnel [Tue, 2 Dec 2008 21:25:37 +0000 (22:25 +0100)]
while loop needs temp disposal, too
Stefan Behnel [Tue, 2 Dec 2008 21:25:15 +0000 (22:25 +0100)]
minor code cleanup
Stefan Behnel [Tue, 2 Dec 2008 19:39:44 +0000 (20:39 +0100)]
forgot to make the lhs in FlattenInListTransform a CloneNode
Stefan Behnel [Tue, 2 Dec 2008 19:27:40 +0000 (20:27 +0100)]
merge
Stefan Behnel [Tue, 2 Dec 2008 19:24:44 +0000 (20:24 +0100)]
fix FlattenInListTransform for the trivial case
Dag Sverre Seljebotn [Mon, 1 Dec 2008 00:06:57 +0000 (01:06 +0100)]
More fixes for new temps
Dag Sverre Seljebotn [Sun, 30 Nov 2008 15:09:44 +0000 (16:09 +0100)]
Fix major problem (recently introduced) with temp releasing interface
Dag Sverre Seljebotn [Sun, 30 Nov 2008 12:45:37 +0000 (13:45 +0100)]
merge
Dag Sverre Seljebotn [Sun, 30 Nov 2008 12:45:16 +0000 (13:45 +0100)]
Fix for temp releasing in assignment to TupleNode
Stefan Behnel [Sun, 30 Nov 2008 12:04:13 +0000 (13:04 +0100)]
fix method signatures
Dag Sverre Seljebotn [Sun, 30 Nov 2008 11:58:41 +0000 (12:58 +0100)]
Fix suboptimal temp usage in BoolBinopNode. For further improvements see #147.
Stefan Behnel [Sun, 30 Nov 2008 11:55:06 +0000 (12:55 +0100)]
merge
Dag Sverre Seljebotn [Sun, 30 Nov 2008 11:39:48 +0000 (12:39 +0100)]
Disabled FlattenInListTransform (see #146)
Dag Sverre Seljebotn [Sun, 30 Nov 2008 11:38:21 +0000 (12:38 +0100)]
BoolBinopNode converted, introduced parameters to generate_disposal_code
Dag Sverre Seljebotn [Sun, 30 Nov 2008 10:42:40 +0000 (11:42 +0100)]
merge
Dag Sverre Seljebotn [Sun, 30 Nov 2008 10:42:22 +0000 (11:42 +0100)]
Small fix
Stefan Behnel [Sun, 30 Nov 2008 06:07:20 +0000 (07:07 +0100)]
moved CoercionNode to new temps (fixes 8 tests)
Stefan Behnel [Sun, 30 Nov 2008 05:52:46 +0000 (06:52 +0100)]
micro cleanup
Stefan Behnel [Sun, 30 Nov 2008 05:07:03 +0000 (06:07 +0100)]
merge
Stefan Behnel [Sun, 30 Nov 2008 05:06:43 +0000 (06:06 +0100)]
extended test case for returning from for loops
Dag Sverre Seljebotn [Sat, 29 Nov 2008 23:12:38 +0000 (00:12 +0100)]
Convert low-hanging fruit to new temps. 12 down, 27 to go.
Dag Sverre Seljebotn [Sat, 29 Nov 2008 22:20:51 +0000 (23:20 +0100)]
Converted IteratorNode to new temps, fixes #124
Dag Sverre Seljebotn [Sat, 29 Nov 2008 22:15:53 +0000 (23:15 +0100)]
Upgraded NewTempExprNode, converted PrimaryCmpNode to it
Dag Sverre Seljebotn [Sat, 29 Nov 2008 21:37:04 +0000 (22:37 +0100)]
Cleanup
Dag Sverre Seljebotn [Sat, 29 Nov 2008 21:35:03 +0000 (22:35 +0100)]
merge
Dag Sverre Seljebotn [Sat, 29 Nov 2008 21:32:23 +0000 (22:32 +0100)]
NewTempsExprNode cleanup -- easier to override temp handling
Dag Sverre Seljebotn [Sat, 29 Nov 2008 19:31:46 +0000 (20:31 +0100)]
Remove use of TempNode from ForInStatNode to simplify temp flow slightly
Dag Sverre Seljebotn [Sat, 29 Nov 2008 18:05:17 +0000 (19:05 +0100)]
BoolBinopNode cleanup due to new temps
Stefan Behnel [Fri, 28 Nov 2008 12:39:56 +0000 (13:39 +0100)]
optimise dict(a=1,b=2,...) into {'a':1, 'b':2, ...}, also works for Py3 keyword identifiers as run/dict.pyx shows
Stefan Behnel [Fri, 28 Nov 2008 12:23:23 +0000 (13:23 +0100)]
removed caching for subexpr attributes as it can break tree manipulation
Stefan Behnel [Fri, 28 Nov 2008 11:09:28 +0000 (12:09 +0100)]
extended test cases
Stefan Behnel [Fri, 28 Nov 2008 11:08:02 +0000 (12:08 +0100)]
unit test fix
Stefan Behnel [Fri, 28 Nov 2008 09:11:54 +0000 (10:11 +0100)]
fix final optimisations for calls inside of assignments
Stefan Behnel [Fri, 28 Nov 2008 07:47:37 +0000 (08:47 +0100)]
merge
Stefan Behnel [Fri, 28 Nov 2008 07:47:27 +0000 (08:47 +0100)]
fix type of AsTupleNode to tuple_type
Dag Sverre Seljebotn [Thu, 27 Nov 2008 20:04:17 +0000 (21:04 +0100)]
One shouldn't have to maintain manual recursion stacks in this day and age...
Dag Sverre Seljebotn [Thu, 27 Nov 2008 18:29:12 +0000 (19:29 +0100)]
Inline function definitions in pxd files
Dag Sverre Seljebotn [Thu, 27 Nov 2008 16:54:26 +0000 (17:54 +0100)]
Fix broken error reporting for functions in pxds
Stefan Behnel [Thu, 27 Nov 2008 13:37:06 +0000 (14:37 +0100)]
another simplification after Dag's cleanup
Stefan Behnel [Thu, 27 Nov 2008 13:31:06 +0000 (14:31 +0100)]
merge
Stefan Behnel [Thu, 27 Nov 2008 13:30:21 +0000 (14:30 +0100)]
simplification for iter-dict optimisation after moving TupleNode to new-style temp usage