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
77d9b2e3
Commit
77d9b2e3
authored
Dec 12, 2007
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Optionally) mutate range into for..from loops.
parent
ca96f2e8
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
59 additions
and
3 deletions
+59
-3
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+50
-3
Cython/Compiler/Options.py
Cython/Compiler/Options.py
+9
-0
No files found.
Cython/Compiler/Nodes.py
View file @
77d9b2e3
...
...
@@ -2412,10 +2412,57 @@ class ForInStatNode(StatNode):
if
self
.
else_clause
:
self
.
else_clause
.
analyse_declarations
(
env
)
def
analyse_range_step
(
self
,
args
):
import
ExprNodes
# The direction must be determined at compile time to set relations.
# Otherwise, return False.
if
len
(
args
)
<
3
:
self
.
step
=
ExprNodes
.
IntNode
(
pos
=
sequence
.
pos
,
value
=
'1'
)
self
.
relation1
=
'<='
self
.
relation2
=
'<'
return
True
else
:
step
=
args
[
2
]
if
isinstance
(
step
,
ExprNodes
.
UnaryMinusNode
)
and
isinstance
(
step
.
operand
,
ExprNodes
.
IntNode
):
step
=
ExprNodes
.
IntNode
(
pos
=
step
.
pos
,
value
=-
int
(
step
.
operand
.
value
))
if
isinstance
(
step
,
ExprNodes
.
IntNode
):
if
step
.
value
>
0
:
self
.
step
=
step
self
.
relation1
=
'<='
self
.
relation2
=
'<'
return
True
elif
step
.
value
<
0
:
self
.
step
=
ExprNodes
.
IntNode
(
pos
=
step
.
pos
,
value
=-
int
(
step
.
value
))
self
.
relation1
=
'>='
self
.
relation2
=
'>'
return
True
return
False
def
analyse_expressions
(
self
,
env
):
import
ExprNodes
self
.
iterator
.
analyse_expressions
(
env
)
self
.
target
.
analyse_target_types
(
env
)
if
Options
.
convert_range
and
self
.
target
.
type
.
is_int
:
sequence
=
self
.
iterator
.
sequence
if
isinstance
(
sequence
,
ExprNodes
.
SimpleCallNode
)
\
and
sequence
.
self
is
None
\
and
isinstance
(
sequence
.
function
,
ExprNodes
.
NameNode
)
\
and
sequence
.
function
.
name
==
'range'
:
args
=
sequence
.
args
# Make sure we can determine direction from step
if
self
.
analyse_range_step
(
args
):
# Mutate to ForFrom loop type
self
.
__class__
=
ForFromStatNode
if
len
(
args
)
==
1
:
self
.
bound1
=
ExprNodes
.
IntNode
(
pos
=
sequence
.
pos
,
value
=
'0'
)
self
.
bound2
=
args
[
0
]
else
:
self
.
bound1
=
args
[
0
]
self
.
bound2
=
args
[
1
]
ForFromStatNode
.
analyse_expressions
(
self
,
env
)
return
self
.
iterator
.
analyse_expressions
(
env
)
self
.
item
=
ExprNodes
.
NextNode
(
self
.
iterator
,
env
)
self
.
item
=
self
.
item
.
coerce_to
(
self
.
target
.
type
,
env
)
self
.
item
.
allocate_temps
(
env
)
...
...
@@ -2485,8 +2532,8 @@ class ForFromStatNode(StatNode):
self
.
target
.
analyse_target_types
(
env
)
self
.
bound1
.
analyse_types
(
env
)
self
.
bound2
.
analyse_types
(
env
)
self
.
bound1
=
self
.
bound1
.
coerce_to
_integer
(
env
)
self
.
bound2
=
self
.
bound2
.
coerce_to
_integer
(
env
)
self
.
bound1
=
self
.
bound1
.
coerce_to
(
self
.
target
.
type
,
env
)
self
.
bound2
=
self
.
bound2
.
coerce_to
(
self
.
target
.
type
,
env
)
if
self
.
step
is
not
None
:
if
isinstance
(
self
.
step
,
ExprNodes
.
UnaryMinusNode
):
warning
(
self
.
step
.
pos
,
"Probable infinite loop in for-from-by statment. Consider switching the directions of the relations."
,
2
)
...
...
Cython/Compiler/Options.py
View file @
77d9b2e3
...
...
@@ -24,3 +24,12 @@ incref_local_binop = 0
generate_cleanup_code
=
0
annotate
=
0
# This will convert statements of the form "for i in range(...)"
# to "for i from ..." when i is a cdef'd integer type, and the direction
# (i.e. sign of step) can be determined.
# WARNING: This may change the symantics if the range causes assignment to
# i to overflow. Specifically, if this option is set, an error will be
# raised before the loop is entered, wheras without this option the loop
# will execute util a overflowing value is encountered.
convert_range
=
0
\ No newline at end of file
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