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
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
af8dcdb3
Commit
af8dcdb3
authored
Nov 03, 2020
by
Xavier Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make cypclass automatic lock acquisition be flat and never nested
parent
bc3b8ae5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+3
-4
No files found.
Cython/Compiler/ExprNodes.py
View file @
af8dcdb3
...
@@ -14181,7 +14181,6 @@ class CoerceToLockedNode(CoercionNode):
...
@@ -14181,7 +14181,6 @@ class CoerceToLockedNode(CoercionNode):
self
.
rlock_only
=
rlock_only
self
.
rlock_only
=
rlock_only
self
.
type
=
arg
.
type
self
.
type
=
arg
.
type
temp_arg
=
arg
.
coerce_to_temp
(
env
)
temp_arg
=
arg
.
coerce_to_temp
(
env
)
temp_arg
.
postpone_subexpr_disposal
=
True
# Avoid incrementing the reference count when assigning to the temporary
# Avoid incrementing the reference count when assigning to the temporary
# but ensure it will be decremented if it was already incremented previously.
# but ensure it will be decremented if it was already incremented previously.
self
.
needs_decref
=
not
temp_arg
.
use_managed_ref
self
.
needs_decref
=
not
temp_arg
.
use_managed_ref
...
@@ -14224,9 +14223,9 @@ class CoerceToLockedNode(CoercionNode):
...
@@ -14224,9 +14223,9 @@ class CoerceToLockedNode(CoercionNode):
def
generate_disposal_code
(
self
,
code
):
def
generate_disposal_code
(
self
,
code
):
# Close the scope to release the lock.
# Close the scope to release the lock.
code
.
putln
(
"}"
)
code
.
putln
(
"}"
)
#
Dispose of and free subexpressions.
#
The subexpressions of self.arg are disposed-of and freed
self
.
arg
.
generate_subexpr_disposal_code
(
code
)
# as soon as self.arg is evaluated because it is a temporary.
self
.
arg
.
free_subexpr_temps
(
code
)
# Decref only if previously incref-ed.
# Decref only if previously incref-ed.
if
self
.
needs_decref
:
if
self
.
needs_decref
:
code
.
put_xdecref_clear
(
self
.
result
(),
self
.
ctype
(),
have_gil
=
not
self
.
in_nogil_context
)
code
.
put_xdecref_clear
(
self
.
result
(),
self
.
ctype
(),
have_gil
=
not
self
.
in_nogil_context
)
...
...
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