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
Xavier Thompson
cython
Commits
cbd03841
Commit
cbd03841
authored
Jan 04, 2021
by
Xavier Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix 'consume' operations with typecast operands
parent
a09e8c79
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
153 additions
and
4 deletions
+153
-4
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+11
-4
tests/run/cypclass_consume.pyx
tests/run/cypclass_consume.pyx
+31
-0
tests/run/cypclass_consume_refcount.pyx
tests/run/cypclass_consume_refcount.pyx
+111
-0
No files found.
Cython/Compiler/ExprNodes.py
View file @
cbd03841
...
...
@@ -11378,6 +11378,7 @@ class ConsumeNode(ExprNode):
# generate_runtime_check boolean used internally
# check_refcount_only boolean used internally
# operand_is_named boolean used internally
# solid_operand ExprNode used internally
subexprs
=
[
'operand'
]
...
...
@@ -11409,10 +11410,16 @@ class ConsumeNode(ExprNode):
self
.
generate_runtime_check
=
True
self
.
check_refcount_only
=
False
self
.
type
=
PyrexTypes
.
cyp_class_qualified_type
(
operand_type
,
'iso~'
)
self
.
operand_is_named
=
self
.
operand
.
is_name
or
self
.
operand
.
is_attribute
self
.
is_temp
=
self
.
operand_is_named
or
(
self
.
generate_runtime_check
and
not
self
.
operand
.
is_temp
)
solid_operand
=
self
.
operand
while
isinstance
(
solid_operand
,
TypecastNode
)
and
not
solid_operand
.
is_temp
:
if
not
solid_operand
.
operand
.
type
.
is_cyp_class
:
break
solid_operand
=
solid_operand
.
operand
self
.
operand_is_named
=
solid_operand
.
is_name
or
solid_operand
.
is_attribute
self
.
is_temp
=
self
.
operand_is_named
or
(
self
.
generate_runtime_check
and
not
solid_operand
.
is_temp
)
self
.
solid_operand
=
solid_operand
if
self
.
operand_is_named
:
s
elf
.
operand
.
entry
.
is_consumed
=
True
s
olid_
operand
.
entry
.
is_consumed
=
True
return
self
def
may_be_none
(
self
):
...
...
@@ -11453,7 +11460,7 @@ class ConsumeNode(ExprNode):
code
.
error_goto
(
self
.
pos
))
code
.
putln
(
"}"
)
if
self
.
operand_is_named
:
code
.
putln
(
"%s = NULL;"
%
self
.
operand
.
result
())
code
.
putln
(
"%s = NULL;"
%
self
.
solid_
operand
.
result
())
def
generate_post_assignment_code
(
self
,
code
):
if
self
.
is_temp
:
...
...
tests/run/cypclass_consume.pyx
View file @
cbd03841
...
...
@@ -82,6 +82,37 @@ def test_nogil_consume_aliased_leaf():
return
0
cdef
cypclass
Convertible
:
Leaf
__Leaf__
(
self
):
return
Leaf
()
def
test_consume_isolated_cast_named_leaf
():
"""
>>> test_consume_isolated_cast_named_leaf()
0
"""
leaf
=
Leaf
()
try
:
l
=
consume
<
Leaf
>
leaf
if
leaf
is
not
NULL
:
return
-
1
return
0
except
TypeError
as
e
:
print
(
e
)
return
-
2
def
test_consume_isolated_cast_converted_leaf
():
"""
>>> test_consume_isolated_cast_converted_leaf()
0
"""
try
:
l
=
consume
<
Leaf
>
Convertible
()
return
0
except
TypeError
as
e
:
print
(
e
)
return
-
2
cdef
cypclass
Field
:
Field
foo
(
self
,
Field
other
):
return
other
...
...
tests/run/cypclass_consume_refcount.pyx
View file @
cbd03841
...
...
@@ -144,3 +144,114 @@ def test_consume_and_drop_field():
print
(
"consumed"
)
return
0
def
test_consume_cast_name
():
"""
>>> test_consume_cast_name()
Refcounted destroyed
0
"""
r0
=
Refcounted
()
if
Cy_GETREF
(
r0
)
!=
2
:
return
-
1
cdef
Refcounted
r1
=
consume
<
Refcounted
>
r0
if
r0
is
not
NULL
:
return
-
2
if
Cy_GETREF
(
r1
)
!=
2
:
return
-
3
return
0
def
test_consume_cast_constructed
():
"""
>>> test_consume_cast_constructed()
Refcounted destroyed
0
"""
cdef
Refcounted
r
=
consume
<
Refcounted
>
Refcounted
()
if
Cy_GETREF
(
r
)
!=
2
:
return
-
1
return
0
def
test_consume_cast_field
():
"""
>>> test_consume_cast_field()
Refcounted destroyed
0
"""
cdef
Refcounted
r
=
consume
<
Refcounted
>
Origin
().
field
if
Cy_GETREF
(
r
)
!=
2
:
return
-
1
return
0
cdef
cypclass
Convertible
:
Refcounted
__Refcounted__
(
self
):
return
Refcounted
()
__dealloc__
(
self
)
with
gil
:
print
(
"Convertible destroyed"
)
def
test_consume_converted_name
():
"""
>>> test_consume_converted_name()
Convertible destroyed
Refcounted destroyed
0
"""
c
=
Convertible
()
if
Cy_GETREF
(
c
)
!=
2
:
return
-
1
cdef
Refcounted
r
=
consume
<
Refcounted
>
c
if
c
is
NULL
:
return
-
2
if
Cy_GETREF
(
c
)
!=
2
:
return
-
3
if
Cy_GETREF
(
r
)
!=
2
:
return
-
4
del
c
return
0
def
test_consume_converted_constructed
():
"""
>>> test_consume_converted_constructed()
Convertible destroyed
Refcounted destroyed
0
"""
cdef
Refcounted
r
=
consume
<
Refcounted
>
Convertible
()
if
Cy_GETREF
(
r
)
!=
2
:
return
-
1
return
0
cdef
cypclass
OriginConvertible
:
Convertible
field
__init__
(
self
):
self
.
field
=
Convertible
()
def
test_consume_converted_field
():
"""
>>> test_consume_converted_field()
Convertible destroyed
Refcounted destroyed
0
"""
o
=
OriginConvertible
()
if
Cy_GETREF
(
o
.
field
)
!=
2
:
return
-
1
cdef
Refcounted
r
=
consume
<
Refcounted
>
o
.
field
if
o
.
field
is
NULL
:
return
-
2
if
Cy_GETREF
(
o
.
field
)
!=
2
:
return
-
3
if
Cy_GETREF
(
r
)
!=
2
:
return
-
4
return
0
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