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
Kirill Smelkov
cython
Commits
72020fc3
Commit
72020fc3
authored
Dec 16, 2012
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fold 'x in [a,b,c]' into 'x in (a,b,c)' as tuples are more efficient than lists
parent
8445e550
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
7 deletions
+12
-7
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+3
-0
Cython/Compiler/Optimize.py
Cython/Compiler/Optimize.py
+9
-7
No files found.
Cython/Compiler/ExprNodes.py
View file @
72020fc3
...
...
@@ -5496,6 +5496,9 @@ class ListNode(SequenceNode):
error
(
self
.
pos
,
"Cannot coerce list to type '%s'"
%
dst_type
)
return
self
def
as_tuple
(
self
):
return
TupleNode
(
self
.
pos
,
args
=
self
.
args
,
mult_factor
=
self
.
mult_factor
)
def
release_temp_result
(
self
,
env
):
if
self
.
type
.
is_array
:
# To be valid C++, we must allocate the memory on the stack
...
...
Cython/Compiler/Optimize.py
View file @
72020fc3
...
...
@@ -3109,11 +3109,14 @@ class ConstantFolding(Visitor.VisitorTransform, SkipDeclarations):
def
visit_PrimaryCmpNode
(
self
,
node
):
self
.
_calculate_const
(
node
)
if
node
.
constant_result
is
ExprNodes
.
not_a_constant
:
return
node
if
node
.
constant_result
is
not
ExprNodes
.
not_a_constant
:
bool_result
=
bool
(
node
.
constant_result
)
return
ExprNodes
.
BoolNode
(
node
.
pos
,
value
=
bool_result
,
constant_result
=
bool_result
)
if
node
.
operator
in
(
'in'
,
'not_in'
)
and
not
node
.
cascade
:
if
isinstance
(
node
.
operand2
,
ExprNodes
.
ListNode
):
node
.
operand2
=
node
.
operand2
.
as_tuple
()
return
node
def
visit_CondExprNode
(
self
,
node
):
self
.
_calculate_const
(
node
)
...
...
@@ -3153,8 +3156,7 @@ class ConstantFolding(Visitor.VisitorTransform, SkipDeclarations):
# iterating over a list literal? => tuples are more efficient
sequence
=
node
.
iterator
.
sequence
if
isinstance
(
sequence
,
ExprNodes
.
ListNode
):
node
.
iterator
.
sequence
=
ExprNodes
.
TupleNode
(
sequence
.
pos
,
args
=
sequence
.
args
,
mult_factor
=
sequence
.
mult_factor
)
node
.
iterator
.
sequence
=
sequence
.
as_tuple
()
return
node
def
_find_genexpr_yield_stat
(
self
,
node
):
...
...
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