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
Gwenaël Samain
cython
Commits
9787c5dc
Commit
9787c5dc
authored
Dec 28, 2014
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove some code duplication
parent
31eb24d9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
23 deletions
+17
-23
Cython/Compiler/Optimize.py
Cython/Compiler/Optimize.py
+17
-23
No files found.
Cython/Compiler/Optimize.py
View file @
9787c5dc
...
...
@@ -660,33 +660,27 @@ class IterationTransform(Visitor.EnvTransform):
if
reversed
:
bound1
,
bound2
=
bound2
,
bound1
abs_step
=
abs
(
step_value
)
if
abs_step
!=
1
:
if
not
(
isinstance
(
bound1
.
constant_result
,
(
int
,
long
))
and
isinstance
(
bound2
.
constant_result
,
(
int
,
long
))):
# FIXME: calculate final bounds at runtime
return
node
if
step_value
<
0
:
step_value
=
-
step_value
if
step_value
!=
1
:
begin_value
=
bound2
.
constant_result
end_value
=
bound1
.
constant_result
if
isinstance
(
begin_value
,
(
int
,
long
))
and
isinstance
(
end_value
,
(
int
,
long
)):
bound1_value
=
begin_value
-
step_value
*
((
begin_value
-
end_value
-
1
)
//
step_value
)
-
1
bound1
=
ExprNodes
.
IntNode
(
bound1
.
pos
,
value
=
str
(
bound1_value
),
constant_result
=
bound1_value
,
type
=
PyrexTypes
.
spanning_type
(
bound1
.
type
,
bound2
.
type
))
bound1_value
=
begin_value
-
abs_step
*
((
begin_value
-
end_value
-
1
)
//
abs_step
)
-
1
else
:
# FIXME: Optimize when variable is in range (e.g. reversed(range(x, y, -3)))
return
node
elif
step_value
!=
1
:
begin_value
=
bound1
.
constant_result
end_value
=
bound2
.
constant_result
if
isinstance
(
begin_value
,
(
int
,
long
))
and
isinstance
(
end_value
,
(
int
,
long
)):
bound1_value
=
end_value
+
step_value
*
((
begin_value
-
end_value
-
1
)
//
step_value
)
+
1
bound1_value
=
end_value
+
abs_step
*
((
begin_value
-
end_value
-
1
)
//
abs_step
)
+
1
bound1
=
ExprNodes
.
IntNode
(
bound1
.
pos
,
value
=
str
(
bound1_value
),
constant_result
=
bound1_value
,
type
=
PyrexTypes
.
spanning_type
(
bound1
.
type
,
bound2
.
type
))
else
:
# FIXME: Optimize when variable is in range (e.g. reversed(range(x, y, 3)))
return
node
elif
step_value
<
0
:
step_value
=
-
step_value
if
step_value
<
0
:
step_value
=
-
step_value
step
.
value
=
str
(
step_value
)
step
.
constant_result
=
step_value
step
=
step
.
coerce_to_integer
(
self
.
current_env
())
...
...
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