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
480ee80c
Commit
480ee80c
authored
Feb 15, 2011
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove excessive refcounting.
parent
9f2c79e1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
1 deletion
+20
-1
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+20
-1
No files found.
Cython/Compiler/ExprNodes.py
View file @
480ee80c
...
...
@@ -365,6 +365,11 @@ class ExprNode(Node):
else
:
self
.
not_implemented
(
"infer_type"
)
def
nonlocally_immutable
(
self
):
# Returns whether this variable is a safe reference, i.e.
# can't be modified as part of globals or closures.
return
self
.
is_temp
# --------------- Type Analysis ------------------
def
analyse_as_module
(
self
,
env
):
...
...
@@ -751,6 +756,9 @@ class ConstNode(AtomicExprNode):
def
is_simple
(
self
):
return
1
def
nonlocally_immutable
(
self
):
return
1
def
may_be_none
(
self
):
return
False
...
...
@@ -1468,6 +1476,10 @@ class NameNode(AtomicExprNode):
# If it's not a C variable, it'll be in a temp.
return
1
def
nonlocally_immutable
(
self
):
entry
=
self
.
entry
return
entry
and
(
entry
.
is_local
or
entry
.
is_arg
)
and
not
entry
.
in_closure
def
calculate_target_results
(
self
,
env
):
pass
...
...
@@ -2990,7 +3002,7 @@ class SimpleCallNode(CallNode):
if
i
==
0
and
self
.
self
is
not
None
:
# a method's cloned "self" argument is ok
pass
elif
arg
.
is_name
and
arg
.
entry
and
arg
.
entry
.
is_local
and
not
arg
.
entry
.
in_closure
:
elif
arg
.
nonlocally_immutable
()
:
# plain local variables are ok
pass
else
:
...
...
@@ -4042,6 +4054,10 @@ class TupleNode(SequenceNode):
# either temp or constant => always simple
return
True
def
nonlocally_immutable
(
self
):
# either temp or constant => always safe
return
True
def
calculate_result_code
(
self
):
if
len
(
self
.
args
)
>
0
:
return
self
.
result_code
...
...
@@ -5428,6 +5444,9 @@ class TypecastNode(ExprNode):
# either temp or a C cast => no side effects
return
True
def
nonlocally_immutable
(
self
):
return
self
.
operand
.
nonlocally_immutable
()
def
nogil_check
(
self
,
env
):
if
self
.
type
and
self
.
type
.
is_pyobject
and
self
.
is_temp
:
self
.
gil_error
()
...
...
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