Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
cython
Commits
39570c69
Commit
39570c69
authored
Nov 22, 2010
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
implement sorted(genexp) as [listcomp].sort()
parent
134af5de
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
76 additions
and
1 deletion
+76
-1
Cython/Compiler/Optimize.py
Cython/Compiler/Optimize.py
+47
-0
Cython/Compiler/UtilNodes.py
Cython/Compiler/UtilNodes.py
+7
-1
runtests.py
runtests.py
+2
-0
tests/run/builtin_sorted.pyx
tests/run/builtin_sorted.pyx
+20
-0
No files found.
Cython/Compiler/Optimize.py
View file @
39570c69
...
...
@@ -1280,6 +1280,53 @@ class EarlyReplaceBuiltinCalls(Visitor.EnvTransform):
gen_expr_node
.
pos
,
loop
=
loop_node
,
result_node
=
result_ref
,
expr_scope
=
gen_expr_node
.
expr_scope
,
orig_func
=
is_any
and
'any'
or
'all'
)
def
_handle_simple_function_sorted
(
self
,
node
,
pos_args
):
"""Transform sorted(genexpr) into [listcomp].sort(). CPython
just reads the iterable into a list and calls .sort() on it.
Expanding the iterable in a listcomp is still faster.
"""
if
len
(
pos_args
)
!=
1
:
return
node
if
not
isinstance
(
pos_args
[
0
],
ExprNodes
.
GeneratorExpressionNode
):
return
node
gen_expr_node
=
pos_args
[
0
]
loop_node
=
gen_expr_node
.
loop
yield_expression
,
yield_stat_node
=
self
.
_find_single_yield_expression
(
loop_node
)
if
yield_expression
is
None
:
return
node
result_node
=
UtilNodes
.
ResultRefNode
(
pos
=
loop_node
.
pos
,
type
=
Builtin
.
list_type
,
may_hold_none
=
False
)
target
=
ExprNodes
.
ListNode
(
node
.
pos
,
args
=
[])
append_node
=
ExprNodes
.
ComprehensionAppendNode
(
yield_expression
.
pos
,
expr
=
yield_expression
,
target
=
ExprNodes
.
CloneNode
(
target
))
Visitor
.
recursively_replace_node
(
loop_node
,
yield_stat_node
,
append_node
)
listcomp_node
=
ExprNodes
.
ComprehensionNode
(
gen_expr_node
.
pos
,
loop
=
loop_node
,
target
=
target
,
append
=
append_node
,
type
=
Builtin
.
list_type
,
expr_scope
=
gen_expr_node
.
expr_scope
,
has_local_scope
=
True
)
listcomp_assign_node
=
Nodes
.
SingleAssignmentNode
(
node
.
pos
,
lhs
=
result_node
,
rhs
=
listcomp_node
,
first
=
True
)
sort_method
=
ExprNodes
.
AttributeNode
(
node
.
pos
,
obj
=
result_node
,
attribute
=
EncodedString
(
'sort'
),
# entry ? type ?
needs_none_check
=
False
)
sort_node
=
Nodes
.
ExprStatNode
(
node
.
pos
,
expr
=
ExprNodes
.
SimpleCallNode
(
node
.
pos
,
function
=
sort_method
,
args
=
[]))
sort_node
.
analyse_declarations
(
self
.
current_env
())
return
UtilNodes
.
TempResultFromStatNode
(
result_node
,
Nodes
.
StatListNode
(
node
.
pos
,
stats
=
[
listcomp_assign_node
,
sort_node
]))
def
_handle_simple_function_sum
(
self
,
node
,
pos_args
):
"""Transform sum(genexpr) into an equivalent inlined aggregation loop.
"""
...
...
Cython/Compiler/UtilNodes.py
View file @
39570c69
...
...
@@ -120,9 +120,10 @@ class ResultRefNode(AtomicExprNode):
subexprs
=
[]
lhs_of_first_assignment
=
False
def
__init__
(
self
,
expression
=
None
,
pos
=
None
,
type
=
None
):
def
__init__
(
self
,
expression
=
None
,
pos
=
None
,
type
=
None
,
may_hold_none
=
True
):
self
.
expression
=
expression
self
.
pos
=
None
self
.
may_hold_none
=
may_hold_none
if
expression
is
not
None
:
self
.
pos
=
expression
.
pos
if
hasattr
(
expression
,
"type"
):
...
...
@@ -141,6 +142,11 @@ class ResultRefNode(AtomicExprNode):
if
self
.
expression
is
not
None
:
return
self
.
expression
.
infer_type
(
env
)
def
may_be_none
(
self
):
if
not
self
.
type
.
is_pyobject
:
return
False
return
self
.
may_hold_none
def
_DISABLED_may_be_none
(
self
):
# not sure if this is safe - the expression may not be the
# only value that gets assigned
...
...
runtests.py
View file @
39570c69
...
...
@@ -62,6 +62,8 @@ VER_DEP_MODULES = {
]),
(2,4) : (operator.le, lambda x: x in ['
run
.
extern_builtins_T258
'
]),
(2,3) : (operator.le, lambda x: x in ['
run
.
builtin_sorted
'
]),
(2,6) : (operator.lt, lambda x: x in ['
run
.
print_function
',
'
run
.
cython3
',
]),
...
...
tests/run/builtin_sorted.pyx
0 → 100644
View file @
39570c69
cimport
cython
@
cython
.
test_fail_if_path_exists
(
"//GeneratorExpressionNode"
,
"//ComprehensionNode//NoneCheckNode"
)
@
cython
.
test_assert_path_exists
(
"//ComprehensionNode"
)
def
sorted_genexp
():
"""
>>> sorted_genexp()
[1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
"""
return
sorted
(
i
*
i
for
i
in
range
(
10
,
0
,
-
1
))
@
cython
.
test_assert_path_exists
(
"//SimpleCallNode//SimpleCallNode"
)
def
sorted_list
():
"""
>>> sorted_list()
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
"""
return
sorted
(
list
(
range
(
10
,
0
,
-
1
)))
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment