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
a9c7fc49
Commit
a9c7fc49
authored
Aug 16, 2014
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avoid method call optimisation for inner functions (which are obviously not methods)
parent
dcc435e5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
3 deletions
+16
-3
Cython/Compiler/Optimize.py
Cython/Compiler/Optimize.py
+16
-3
No files found.
Cython/Compiler/Optimize.py
View file @
a9c7fc49
...
...
@@ -3765,9 +3765,22 @@ class FinalOptimizePhase(Visitor.CythonTransform, Visitor.NodeRefCleanupMixin):
PyTypeObjectPtr
=
PyrexTypes
.
CPtrType
(
cython_scope
.
lookup
(
'PyTypeObject'
).
type
)
node
.
args
[
1
]
=
ExprNodes
.
CastNode
(
node
.
args
[
1
],
PyTypeObjectPtr
)
elif
node
.
is_temp
and
function
.
type
.
is_pyobject
:
if
function
.
type
is
not
Builtin
.
type_type
and
not
(
function
.
is_name
and
function
.
entry
.
is_builtin
):
# optimise simple Python methods calls
if
isinstance
(
node
.
arg_tuple
,
ExprNodes
.
TupleNode
)
and
not
(
node
.
arg_tuple
.
mult_factor
or
(
node
.
arg_tuple
.
is_literal
and
node
.
arg_tuple
.
args
)):
# simple call, now exclude calls to objects that are definitely not methods
may_be_a_method
=
True
if
function
.
type
is
Builtin
.
type_type
:
may_be_a_method
=
False
elif
function
.
is_name
:
if
function
.
entry
.
is_builtin
:
may_be_a_method
=
False
elif
function
.
cf_state
:
# local functions are definitely not methods
may_be_a_method
=
any
(
not
isinstance
(
assignment
.
rhs
,
ExprNodes
.
PyCFunctionNode
)
for
assignment
in
function
.
cf_state
)
if
may_be_a_method
:
node
=
self
.
replace
(
node
,
ExprNodes
.
PyMethodCallNode
.
from_node
(
node
,
function
=
function
,
arg_tuple
=
node
.
arg_tuple
,
type
=
node
.
type
))
return
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