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
f5867e64
Commit
f5867e64
authored
Jul 25, 2008
by
Dag Sverre Seljebotn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Buffer bounds checking etc.
parent
0b65efc4
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
102 additions
and
30 deletions
+102
-30
Cython/Compiler/Buffer.py
Cython/Compiler/Buffer.py
+53
-1
Cython/Compiler/Code.py
Cython/Compiler/Code.py
+6
-6
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+12
-14
Cython/Compiler/Symtab.py
Cython/Compiler/Symtab.py
+1
-0
tests/run/bufaccess.pyx
tests/run/bufaccess.pyx
+30
-9
No files found.
Cython/Compiler/Buffer.py
View file @
f5867e64
...
@@ -90,7 +90,7 @@ def put_assign_to_buffer(lhs_cname, rhs_cname, buffer_aux, is_initialized, pos,
...
@@ -90,7 +90,7 @@ def put_assign_to_buffer(lhs_cname, rhs_cname, buffer_aux, is_initialized, pos,
put_zero_buffer_aux_into_scope
(
buffer_aux
,
code
)
put_zero_buffer_aux_into_scope
(
buffer_aux
,
code
)
code
.
end_block
()
code
.
end_block
()
else
:
else
:
# our entry had no previous va
ul
e, so set to None when acquisition fails
# our entry had no previous va
lu
e, so set to None when acquisition fails
code
.
putln
(
'%s = Py_None; Py_INCREF(Py_None);'
%
lhs_cname
)
code
.
putln
(
'%s = Py_None; Py_INCREF(Py_None);'
%
lhs_cname
)
code
.
putln
(
code
.
error_goto
(
pos
))
code
.
putln
(
code
.
error_goto
(
pos
))
code
.
end_block
()
# acquisition failure
code
.
end_block
()
# acquisition failure
...
@@ -105,6 +105,58 @@ def put_assign_to_buffer(lhs_cname, rhs_cname, buffer_aux, is_initialized, pos,
...
@@ -105,6 +105,58 @@ def put_assign_to_buffer(lhs_cname, rhs_cname, buffer_aux, is_initialized, pos,
# Everything is ok, assign object variable
# Everything is ok, assign object variable
code
.
putln
(
"%s = %s;"
%
(
lhs_cname
,
rhs_cname
))
code
.
putln
(
"%s = %s;"
%
(
lhs_cname
,
rhs_cname
))
def
put_access
(
entry
,
index_types
,
index_cnames
,
tmp_cname
,
pos
,
code
):
"""Returns a c string which can be used to access the buffer
for reading or writing"""
bufaux
=
entry
.
buffer_aux
bufstruct
=
bufaux
.
buffer_info_var
.
cname
# Check bounds and fix negative indices
boundscheck
=
True
nonegs
=
True
if
boundscheck
:
code
.
putln
(
"%s = -1;"
%
tmp_cname
)
code
.
putln
(
"//HERE"
)
for
idx
,
(
type
,
cname
,
shape
)
in
enumerate
(
zip
(
index_types
,
index_cnames
,
bufaux
.
shapevars
)):
if
type
.
signed
!=
0
:
nonegs
=
False
# not unsigned, deal with negative index
if
idx
>
0
:
code
.
put
(
"else "
)
code
.
putln
(
"if (%s < 0) {"
%
cname
)
code
.
putln
(
"%s += %s;"
%
(
cname
,
shape
.
cname
))
if
boundscheck
:
code
.
putln
(
"if (%s) %s = %d;"
%
(
code
.
unlikely
(
"%s < 0"
%
cname
),
tmp_cname
,
idx
))
code
.
put
(
"} else "
)
else
:
if
idx
>
0
:
code
.
put
(
"} else "
)
if
boundscheck
:
# check bounds in positive direction
code
.
putln
(
"if (%s) %s = %d;"
%
(
code
.
unlikely
(
"%s >= %s"
%
(
cname
,
shape
.
cname
)),
tmp_cname
,
idx
))
# if boundscheck or not nonegs:
# code.putln("}")
if
boundscheck
:
code
.
put
(
"if (%s) "
%
code
.
unlikely
(
"%s != -1"
%
tmp_cname
))
code
.
begin_block
()
code
.
putln
(
'PyErr_Format(PyExc_IndexError, '
+
'"Index out of range (buffer lookup, axis %%d)", %s);'
%
tmp_cname
);
code
.
putln
(
code
.
error_goto
(
pos
))
code
.
end_block
()
# Create buffer lookup and return it
offset
=
" + "
.
join
([
"%s * %s"
%
(
idx
,
stride
.
cname
)
for
idx
,
stride
in
zip
(
index_cnames
,
bufaux
.
stridevars
)])
ptrcode
=
"(%s.buf + %s)"
%
(
bufstruct
,
offset
)
valuecode
=
"*%s"
%
entry
.
type
.
buffer_ptr_type
.
cast_code
(
ptrcode
)
return
valuecode
class
PureCFuncNode
(
Node
):
class
PureCFuncNode
(
Node
):
child_attrs
=
[]
child_attrs
=
[]
...
...
Cython/Compiler/Code.py
View file @
f5867e64
...
@@ -337,6 +337,12 @@ class CCodeWriter:
...
@@ -337,6 +337,12 @@ class CCodeWriter:
self
.
putln
(
"#ifndef %s"
%
guard
)
self
.
putln
(
"#ifndef %s"
%
guard
)
self
.
putln
(
"#define %s"
%
guard
)
self
.
putln
(
"#define %s"
%
guard
)
def
unlikely
(
self
,
cond
):
if
Options
.
gcc_branch_hints
:
return
'unlikely(%s)'
%
cond
else
:
return
cond
def
error_goto
(
self
,
pos
):
def
error_goto
(
self
,
pos
):
lbl
=
self
.
error_label
lbl
=
self
.
error_label
self
.
use_label
(
lbl
)
self
.
use_label
(
lbl
)
...
@@ -353,12 +359,6 @@ class CCodeWriter:
...
@@ -353,12 +359,6 @@ class CCodeWriter:
cinfo
,
cinfo
,
lbl
)
lbl
)
def
unlikely
(
self
,
cond
):
if
Options
.
gcc_branch_hints
:
return
'unlikely(%s)'
%
cond
else
:
return
cond
def
error_goto_if
(
self
,
cond
,
pos
):
def
error_goto_if
(
self
,
cond
,
pos
):
return
"if (%s) %s"
%
(
self
.
unlikely
(
cond
),
self
.
error_goto
(
pos
))
return
"if (%s) %s"
%
(
self
.
unlikely
(
cond
),
self
.
error_goto
(
pos
))
...
...
Cython/Compiler/ExprNodes.py
View file @
f5867e64
...
@@ -1363,7 +1363,9 @@ class IndexNode(ExprNode):
...
@@ -1363,7 +1363,9 @@ class IndexNode(ExprNode):
self
.
type
=
self
.
base
.
type
.
dtype
self
.
type
=
self
.
base
.
type
.
dtype
self
.
is_buffer_access
=
True
self
.
is_buffer_access
=
True
self
.
index_temps
=
[
Symtab
.
new_temp
(
i
.
type
)
for
i
in
indices
]
self
.
index_temps
=
[
Symtab
.
new_temp
(
i
.
type
)
for
i
in
indices
]
self
.
temps
=
self
.
index_temps
self
.
tmpint
=
Symtab
.
new_temp
(
PyrexTypes
.
c_int_type
)
self
.
temps
=
self
.
index_temps
+
[
self
.
tmpint
]
if
getting
:
if
getting
:
# we only need a temp because result_code isn't refactored to
# we only need a temp because result_code isn't refactored to
# generation time, but this seems an ok shortcut to take
# generation time, but this seems an ok shortcut to take
...
@@ -1440,7 +1442,8 @@ class IndexNode(ExprNode):
...
@@ -1440,7 +1442,8 @@ class IndexNode(ExprNode):
if
self
.
index
is
not
None
:
if
self
.
index
is
not
None
:
self
.
index
.
generate_disposal_code
(
code
)
self
.
index
.
generate_disposal_code
(
code
)
else
:
else
:
for
i
in
self
.
indices
:
i
.
generate_disposal_code
(
code
)
for
i
in
self
.
indices
:
i
.
generate_disposal_code
(
code
)
def
generate_result_code
(
self
,
code
):
def
generate_result_code
(
self
,
code
):
if
self
.
is_buffer_access
:
if
self
.
is_buffer_access
:
...
@@ -1512,20 +1515,15 @@ class IndexNode(ExprNode):
...
@@ -1512,20 +1515,15 @@ class IndexNode(ExprNode):
self
.
generate_subexpr_disposal_code
(
code
)
self
.
generate_subexpr_disposal_code
(
code
)
def
buffer_access_code
(
self
,
code
):
def
buffer_access_code
(
self
,
code
):
#
1.
Assign indices to temps
# Assign indices to temps
for
temp
,
index
in
zip
(
self
.
index_temps
,
self
.
indices
):
for
temp
,
index
in
zip
(
self
.
index_temps
,
self
.
indices
):
code
.
putln
(
"%s = %s;"
%
(
temp
.
cname
,
index
.
result_code
))
code
.
putln
(
"%s = %s;"
%
(
temp
.
cname
,
index
.
result_code
))
# 2. Output code to do bounds checking on these
# Generate buffer access code using these temps
import
Buffer
# 3. Return a code fragment string which does buffer
valuecode
=
Buffer
.
put_access
(
entry
=
self
.
base
.
entry
,
# lookup, which can be used on lhs or rhs of an assignment
index_types
=
[
i
.
type
for
i
in
self
.
index_temps
],
# in the caller depending on the scenario.
index_cnames
=
[
i
.
cname
for
i
in
self
.
index_temps
],
bufaux
=
self
.
base
.
entry
.
buffer_aux
pos
=
self
.
pos
,
tmp_cname
=
self
.
tmpint
.
cname
,
code
=
code
)
offset
=
" + "
.
join
([
"%s * %s"
%
(
idx
.
cname
,
stride
.
cname
)
for
idx
,
stride
in
zip
(
self
.
index_temps
,
bufaux
.
stridevars
)])
ptrcode
=
"(%s.buf + %s)"
%
(
bufaux
.
buffer_info_var
.
cname
,
offset
)
valuecode
=
"*%s"
%
self
.
base
.
type
.
buffer_ptr_type
.
cast_code
(
ptrcode
)
return
valuecode
return
valuecode
...
...
Cython/Compiler/Symtab.py
View file @
f5867e64
...
@@ -225,6 +225,7 @@ class Scope:
...
@@ -225,6 +225,7 @@ class Scope:
self.num_to_entry = {}
self.num_to_entry = {}
self.obj_to_entry = {}
self.obj_to_entry = {}
self.pystring_entries = []
self.pystring_entries = []
self.buffer_entries = []
self.control_flow = ControlFlow.LinearControlFlow()
self.control_flow = ControlFlow.LinearControlFlow()
def start_branching(self, pos):
def start_branching(self, pos):
...
...
tests/run/bufaccess.pyx
View file @
f5867e64
...
@@ -23,14 +23,14 @@ __doc__ = u"""
...
@@ -23,14 +23,14 @@ __doc__ = u"""
acquired B
acquired B
released B
released B
Apparently, doctest won't handle mixed exceptions and print
Apparently, doctest won't handle mixed exceptions and print
stats, so need to circumvent this.
stats, so need to circumvent this.
>>> A.resetlog()
>>>
#
A.resetlog()
>>> acquire_raise(A)
>>>
#
acquire_raise(A)
Traceback (most recent call last):
Traceback (most recent call last):
...
...
Exception: on purpose
Exception: on purpose
>>> A.printlog()
>>>
#
A.printlog()
acquired A
acquired A
released A
released A
...
@@ -52,7 +52,7 @@ __doc__ = u"""
...
@@ -52,7 +52,7 @@ __doc__ = u"""
0 1 2 3 4 5
0 1 2 3 4 5
released A
released A
#>>>
forin_assignment([A, B, A], 3)
>>> #
forin_assignment([A, B, A], 3)
acquired A
acquired A
3
3
released A
released A
...
@@ -63,16 +63,35 @@ __doc__ = u"""
...
@@ -63,16 +63,35 @@ __doc__ = u"""
3
3
released A
released A
>>> printbuf_float(MockBuffer("f", [1.0, 1.25, 0.75, 1.0]), (4,))
>>>
#
printbuf_float(MockBuffer("f", [1.0, 1.25, 0.75, 1.0]), (4,))
acquired
acquired
1.0 1.25 0.75 1.0
1.0 1.25 0.75 1.0
released
released
>>> printbuf_int_2d(MockBuffer("i", range(6), (2,3)), (2,3))
>>> #C = MockBuffer("i", range(6), (2,3)), (2,3)
>>> #printbuf_int_2d(C)
acquired
acquired
0 1 2
0 1 2
3 4 5
3 4 5
released
released
Check negative indexing:
>>> get_int_2d(C, 1, 1)
4
>>> get_int_2d(C, -1, 0)
3
>>> get_int_2d(C, -1, -2)
4
>>> get_int_2d(C, -2, -3)
0
Out-of-bounds errors:
>>> get_int_2d(C, 2, 0)
Traceback (most recent call last):
...
IndexError: on purpose
"""
"""
__sdfdoc__
=
"""
__sdfdoc__
=
"""
...
@@ -190,6 +209,8 @@ cdef class MockBuffer:
...
@@ -190,6 +209,8 @@ cdef class MockBuffer:
for
i
,
x
in
enumerate
(
strides
):
for
i
,
x
in
enumerate
(
strides
):
self
.
strides
[
i
]
=
x
self
.
strides
[
i
]
=
x
self
.
shape
=
<
Py_ssize_t
*>
stdlib
.
malloc
(
self
.
ndim
*
sizeof
(
Py_ssize_t
))
self
.
shape
=
<
Py_ssize_t
*>
stdlib
.
malloc
(
self
.
ndim
*
sizeof
(
Py_ssize_t
))
for
i
,
x
in
enumerate
(
shape
):
self
.
shape
[
i
]
=
x
def
__getbuffer__
(
MockBuffer
self
,
Py_buffer
*
buffer
,
int
flags
):
def
__getbuffer__
(
MockBuffer
self
,
Py_buffer
*
buffer
,
int
flags
):
global
log
global
log
...
...
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