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
998f767f
Commit
998f767f
authored
May 09, 2012
by
Mark Florisson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow nogil None checking for memoryview slices
parent
9076b8a4
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
43 additions
and
2 deletions
+43
-2
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+28
-2
tests/run/memslice.pyx
tests/run/memslice.pyx
+15
-0
No files found.
Cython/Compiler/ExprNodes.py
View file @
998f767f
...
...
@@ -8643,6 +8643,7 @@ class PrimaryCmpNode(ExprNode, CmpNode):
child_attrs
=
[
'operand1'
,
'operand2'
,
'cascade'
]
cascade
=
None
is_memslice_nonecheck
=
False
def
infer_type
(
self
,
env
):
# TODO: Actually implement this (after merging with -unstable).
...
...
@@ -8666,6 +8667,10 @@ class PrimaryCmpNode(ExprNode, CmpNode):
if
self
.
cascade
:
error
(
self
.
pos
,
"Cascading comparison not yet supported for cpp types."
)
return
if
self
.
analyse_memoryviewslice_comparison
(
env
):
return
if
self
.
cascade
:
self
.
cascade
.
analyse_types
(
env
)
...
...
@@ -8744,6 +8749,19 @@ class PrimaryCmpNode(ExprNode, CmpNode):
self
.
operand2
=
self
.
operand2
.
coerce_to
(
func_type
.
args
[
1
].
type
,
env
)
self
.
type
=
func_type
.
return_type
def
analyse_memoryviewslice_comparison
(
self
,
env
):
have_none
=
self
.
operand1
.
is_none
or
self
.
operand2
.
is_none
have_slice
=
(
self
.
operand1
.
type
.
is_memoryviewslice
or
self
.
operand2
.
type
.
is_memoryviewslice
)
ops
=
(
'=='
,
'!='
,
'is'
,
'is_not'
)
if
have_slice
and
have_none
and
self
.
operator
in
ops
:
self
.
is_pycmp
=
False
self
.
type
=
PyrexTypes
.
c_bint_type
self
.
is_memslice_nonecheck
=
True
return
True
return
False
def
has_python_operands
(
self
):
return
(
self
.
operand1
.
type
.
is_pyobject
or
self
.
operand2
.
type
.
is_pyobject
)
...
...
@@ -8781,10 +8799,18 @@ class PrimaryCmpNode(ExprNode, CmpNode):
self
.
operand2
.
result
(),
self
.
operand1
.
result
())
else
:
result1
=
self
.
operand1
.
result
()
result2
=
self
.
operand2
.
result
()
if
self
.
is_memslice_nonecheck
:
if
self
.
operand1
.
type
.
is_memoryviewslice
:
result1
=
"((PyObject *) %s.memview)"
%
result1
else
:
result2
=
"((PyObject *) %s.memview)"
%
result2
return
"(%s %s %s)"
%
(
self
.
operand1
.
result
()
,
result1
,
self
.
c_operator
(
self
.
operator
),
self
.
operand2
.
result
()
)
result2
)
def
generate_evaluation_code
(
self
,
code
):
self
.
operand1
.
generate_evaluation_code
(
code
)
...
...
tests/run/memslice.pyx
View file @
998f767f
...
...
@@ -2180,6 +2180,21 @@ def test_noneslice_del():
del
m
print
m
@
testcase
def
test_noneslice_nogil_check_none
(
double
[:]
m
):
"""
>>> test_noneslice_nogil_check_none(None)
(True, False)
"""
cdef
bint
is_none
=
False
cdef
bint
not_none
=
True
with
nogil
:
is_none
=
m
is
None
and
None
is
m
and
m
==
None
and
None
==
m
not_none
=
m
is
not
None
and
None
is
not
m
and
m
!=
None
and
None
!=
m
return
is_none
,
not_none
def
get_int
():
return
10
...
...
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