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
Kirill Smelkov
cython
Commits
7373159c
Commit
7373159c
authored
Apr 27, 2008
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
List and tuple types.
parent
eed01890
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
133 additions
and
20 deletions
+133
-20
Cython/Compiler/Builtin.py
Cython/Compiler/Builtin.py
+35
-1
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+17
-10
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+16
-8
Cython/Compiler/PyrexTypes.py
Cython/Compiler/PyrexTypes.py
+46
-0
Cython/Compiler/Symtab.py
Cython/Compiler/Symtab.py
+19
-1
No files found.
Cython/Compiler/Builtin.py
View file @
7373159c
...
@@ -78,6 +78,28 @@ builtin_function_table = [
...
@@ -78,6 +78,28 @@ builtin_function_table = [
# type
# type
# xrange
# xrange
builtin_types_table
=
[
(
"type"
,
"PyType_Type"
,
[]),
# ("str", "PyString_Type", []),
(
"unicode"
,
"PyUnicode_Type"
,
[]),
(
"file"
,
"PyFile_Type"
,
[]),
# ("slice", "PySlice_Type", []),
# ("set", "PySet_Type", []),
(
"frozenset"
,
"PyFrozenSet_Type"
,
[]),
(
"tuple"
,
"PyTuple_Type"
,
[]),
(
"list"
,
"PyList_Type"
,
[(
"append"
,
"OO"
,
"i"
,
"PyList_Append"
),
(
"insert"
,
"OiO"
,
"i"
,
"PyList_Insert"
),
(
"sort"
,
"O"
,
"i"
,
"PyList_Sort"
),
(
"reverse"
,
"O"
,
"i"
,
"PyList_Reverse"
)]),
(
"dict"
,
"PyDict_Type"
,
[(
"items"
,
"O"
,
"O"
,
"PyDict_Items"
),
(
"keys"
,
"O"
,
"O"
,
"PyDict_Keys"
),
(
"values"
,
"O"
,
"O"
,
"PyDict_Values"
)]),
]
getattr3_utility_code
=
[
"""
getattr3_utility_code
=
[
"""
static PyObject *__Pyx_GetAttr3(PyObject *, PyObject *, PyObject *); /*proto*/
static PyObject *__Pyx_GetAttr3(PyObject *, PyObject *, PyObject *); /*proto*/
"""
,
"""
"""
,
"""
...
@@ -112,7 +134,19 @@ def init_builtin_funcs():
...
@@ -112,7 +134,19 @@ def init_builtin_funcs():
for
desc
in
builtin_function_table
:
for
desc
in
builtin_function_table
:
declare_builtin_func
(
*
desc
)
declare_builtin_func
(
*
desc
)
def
init_builtin_types
():
for
name
,
cname
,
funcs
in
builtin_types_table
:
the_type
=
builtin_scope
.
declare_builtin_type
(
name
,
cname
)
for
name
,
args
,
ret
,
cname
in
funcs
:
sig
=
Signature
(
args
,
ret
)
the_type
.
scope
.
declare_cfunction
(
name
,
sig
.
function_type
(),
None
,
cname
)
def
init_builtins
():
def
init_builtins
():
init_builtin_funcs
()
init_builtin_funcs
()
init_builtin_types
()
global
list_type
,
tuple_type
,
dict_type
list_type
=
builtin_scope
.
lookup
(
'list'
).
type
tuple_type
=
builtin_scope
.
lookup
(
'tuple'
).
type
dict_type
=
builtin_scope
.
lookup
(
'dict'
).
type
init_builtins
()
init_builtins
()
Cython/Compiler/ExprNodes.py
View file @
7373159c
...
@@ -10,6 +10,7 @@ import Naming
...
@@ -10,6 +10,7 @@ import Naming
from
Nodes
import
Node
from
Nodes
import
Node
import
PyrexTypes
import
PyrexTypes
from
PyrexTypes
import
py_object_type
,
c_long_type
,
typecast
,
error_type
from
PyrexTypes
import
py_object_type
,
c_long_type
,
typecast
,
error_type
from
Builtin
import
list_type
,
tuple_type
,
dict_type
import
Symtab
import
Symtab
import
Options
import
Options
from
Annotate
import
AnnotationItem
from
Annotate
import
AnnotationItem
...
@@ -2052,9 +2053,12 @@ class AttributeNode(ExprNode):
...
@@ -2052,9 +2053,12 @@ class AttributeNode(ExprNode):
obj_code
=
obj
.
result_as
(
obj
.
type
)
obj_code
=
obj
.
result_as
(
obj
.
type
)
#print "...obj_code =", obj_code ###
#print "...obj_code =", obj_code ###
if
self
.
entry
and
self
.
entry
.
is_cmethod
:
if
self
.
entry
and
self
.
entry
.
is_cmethod
:
if
obj
.
type
.
is_extension_type
:
return
"((struct %s *)%s%s%s)->%s"
%
(
return
"((struct %s *)%s%s%s)->%s"
%
(
obj
.
type
.
vtabstruct_cname
,
obj_code
,
self
.
op
,
obj
.
type
.
vtabstruct_cname
,
obj_code
,
self
.
op
,
obj
.
type
.
vtabslot_cname
,
self
.
member
)
obj
.
type
.
vtabslot_cname
,
self
.
member
)
else
:
return
self
.
member
else
:
else
:
return
"%s%s%s"
%
(
obj_code
,
self
.
op
,
self
.
member
)
return
"%s%s%s"
%
(
obj_code
,
self
.
op
,
self
.
member
)
...
@@ -2261,11 +2265,11 @@ class TupleNode(SequenceNode):
...
@@ -2261,11 +2265,11 @@ class TupleNode(SequenceNode):
def
analyse_types
(
self
,
env
):
def
analyse_types
(
self
,
env
):
if
len
(
self
.
args
)
==
0
:
if
len
(
self
.
args
)
==
0
:
self
.
type
=
py_object_type
self
.
is_temp
=
0
self
.
is_temp
=
0
self
.
is_literal
=
1
self
.
is_literal
=
1
else
:
else
:
SequenceNode
.
analyse_types
(
self
,
env
)
SequenceNode
.
analyse_types
(
self
,
env
)
self
.
type
=
tuple_type
def
calculate_result_code
(
self
):
def
calculate_result_code
(
self
):
if
len
(
self
.
args
)
>
0
:
if
len
(
self
.
args
)
>
0
:
...
@@ -2310,6 +2314,10 @@ class TupleNode(SequenceNode):
...
@@ -2310,6 +2314,10 @@ class TupleNode(SequenceNode):
class
ListNode
(
SequenceNode
):
class
ListNode
(
SequenceNode
):
# List constructor.
# List constructor.
def
analyse_types
(
self
,
env
):
SequenceNode
.
analyse_types
(
self
,
env
)
self
.
type
=
list_type
def
compile_time_value
(
self
,
denv
):
def
compile_time_value
(
self
,
denv
):
return
self
.
compile_time_value_list
(
denv
)
return
self
.
compile_time_value_list
(
denv
)
...
@@ -2342,7 +2350,7 @@ class ListComprehensionNode(SequenceNode):
...
@@ -2342,7 +2350,7 @@ class ListComprehensionNode(SequenceNode):
is_sequence_constructor
=
0
# not unpackable
is_sequence_constructor
=
0
# not unpackable
def
analyse_types
(
self
,
env
):
def
analyse_types
(
self
,
env
):
self
.
type
=
py_objec
t_type
self
.
type
=
lis
t_type
self
.
is_temp
=
1
self
.
is_temp
=
1
self
.
append
.
target
=
self
# this is a CloneNode used in the PyList_Append in the inner loop
self
.
append
.
target
=
self
# this is a CloneNode used in the PyList_Append in the inner loop
...
@@ -2401,7 +2409,7 @@ class DictNode(ExprNode):
...
@@ -2401,7 +2409,7 @@ class DictNode(ExprNode):
def
analyse_types
(
self
,
env
):
def
analyse_types
(
self
,
env
):
for
item
in
self
.
key_value_pairs
:
for
item
in
self
.
key_value_pairs
:
item
.
analyse_types
(
env
)
item
.
analyse_types
(
env
)
self
.
type
=
py_obje
ct_type
self
.
type
=
di
ct_type
self
.
is_temp
=
1
self
.
is_temp
=
1
def
allocate_temps
(
self
,
env
,
result
=
None
):
def
allocate_temps
(
self
,
env
,
result
=
None
):
...
@@ -3719,7 +3727,7 @@ class PyTypeTestNode(CoercionNode):
...
@@ -3719,7 +3727,7 @@ class PyTypeTestNode(CoercionNode):
def
__init__
(
self
,
arg
,
dst_type
,
env
):
def
__init__
(
self
,
arg
,
dst_type
,
env
):
# The arg is know to be a Python object, and
# The arg is know to be a Python object, and
# the dst_type is known to be an extension type.
# the dst_type is known to be an extension type.
assert
dst_type
.
is_extension_type
,
"PyTypeTest on non extension type"
assert
dst_type
.
is_extension_type
or
dst_type
.
is_builtin_type
,
"PyTypeTest on non extension type"
CoercionNode
.
__init__
(
self
,
arg
)
CoercionNode
.
__init__
(
self
,
arg
)
self
.
type
=
dst_type
self
.
type
=
dst_type
self
.
result_ctype
=
arg
.
ctype
()
self
.
result_ctype
=
arg
.
ctype
()
...
@@ -3740,9 +3748,8 @@ class PyTypeTestNode(CoercionNode):
...
@@ -3740,9 +3748,8 @@ class PyTypeTestNode(CoercionNode):
def
generate_result_code
(
self
,
code
):
def
generate_result_code
(
self
,
code
):
if
self
.
type
.
typeobj_is_available
():
if
self
.
type
.
typeobj_is_available
():
code
.
putln
(
code
.
putln
(
"if (!__Pyx_TypeTest(%s, %s)) %s"
%
(
"if (!(%s)) %s"
%
(
self
.
arg
.
py_result
(),
self
.
type
.
type_test_code
(
self
.
arg
.
py_result
()),
self
.
type
.
typeptr_cname
,
code
.
error_goto
(
self
.
pos
)))
code
.
error_goto
(
self
.
pos
)))
else
:
else
:
error
(
self
.
pos
,
"Cannot test type of extern C class "
error
(
self
.
pos
,
"Cannot test type of extern C class "
...
...
Cython/Compiler/Nodes.py
View file @
7373159c
...
@@ -1176,11 +1176,12 @@ class CFuncDefNode(FuncDefNode):
...
@@ -1176,11 +1176,12 @@ class CFuncDefNode(FuncDefNode):
typeptr_cname
=
arg
.
type
.
typeptr_cname
typeptr_cname
=
arg
.
type
.
typeptr_cname
arg_code
=
"((PyObject *)%s)"
%
arg
.
cname
arg_code
=
"((PyObject *)%s)"
%
arg
.
cname
code
.
putln
(
code
.
putln
(
'if (unlikely(!__Pyx_ArgTypeTest(%s, %s, %d, "%s"))) %s'
%
(
'if (unlikely(!__Pyx_ArgTypeTest(%s, %s, %d, "%s"
, %s
))) %s'
%
(
arg_code
,
arg_code
,
typeptr_cname
,
typeptr_cname
,
not
arg
.
not_none
,
not
arg
.
not_none
,
arg
.
name
,
arg
.
name
,
type
.
is_builtin_type
,
code
.
error_goto
(
arg
.
pos
)))
code
.
error_goto
(
arg
.
pos
)))
else
:
else
:
error
(
arg
.
pos
,
"Cannot test type of extern C class "
error
(
arg
.
pos
,
"Cannot test type of extern C class "
...
@@ -1337,7 +1338,8 @@ class DefNode(FuncDefNode):
...
@@ -1337,7 +1338,8 @@ class DefNode(FuncDefNode):
if
not
sig
.
has_generic_args
:
if
not
sig
.
has_generic_args
:
self
.
bad_signature
()
self
.
bad_signature
()
for
arg
in
self
.
args
:
for
arg
in
self
.
args
:
if
arg
.
is_generic
and
arg
.
type
.
is_extension_type
:
if
arg
.
is_generic
and
\
(
arg
.
type
.
is_extension_type
or
arg
.
type
.
is_builtin_type
):
arg
.
needs_type_test
=
1
arg
.
needs_type_test
=
1
any_type_tests_needed
=
1
any_type_tests_needed
=
1
elif
arg
.
type
is
PyrexTypes
.
c_py_ssize_t_type
:
elif
arg
.
type
is
PyrexTypes
.
c_py_ssize_t_type
:
...
@@ -1843,11 +1845,12 @@ class DefNode(FuncDefNode):
...
@@ -1843,11 +1845,12 @@ class DefNode(FuncDefNode):
typeptr_cname
=
arg
.
type
.
typeptr_cname
typeptr_cname
=
arg
.
type
.
typeptr_cname
arg_code
=
"((PyObject *)%s)"
%
arg
.
entry
.
cname
arg_code
=
"((PyObject *)%s)"
%
arg
.
entry
.
cname
code
.
putln
(
code
.
putln
(
'if (unlikely(!__Pyx_ArgTypeTest(%s, %s, %d, "%s"))) %s'
%
(
'if (unlikely(!__Pyx_ArgTypeTest(%s, %s, %d, "%s"
, %s
))) %s'
%
(
arg_code
,
arg_code
,
typeptr_cname
,
typeptr_cname
,
not
arg
.
not_none
,
not
arg
.
not_none
,
arg
.
name
,
arg
.
name
,
arg
.
type
.
is_builtin_type
,
code
.
error_goto
(
arg
.
pos
)))
code
.
error_goto
(
arg
.
pos
)))
else
:
else
:
error
(
arg
.
pos
,
"Cannot test type of extern C class "
error
(
arg
.
pos
,
"Cannot test type of extern C class "
...
@@ -2990,7 +2993,7 @@ class ForInStatNode(LoopNode, StatNode):
...
@@ -2990,7 +2993,7 @@ class ForInStatNode(LoopNode, StatNode):
if
isinstance
(
sequence
,
ExprNodes
.
SimpleCallNode
)
\
if
isinstance
(
sequence
,
ExprNodes
.
SimpleCallNode
)
\
and
sequence
.
self
is
None
\
and
sequence
.
self
is
None
\
and
isinstance
(
sequence
.
function
,
ExprNodes
.
NameNode
)
\
and
isinstance
(
sequence
.
function
,
ExprNodes
.
NameNode
)
\
and
sequence
.
function
.
name
==
'range'
:
and
(
sequence
.
function
.
name
==
'range'
or
sequence
.
function
.
name
==
'xrange'
)
:
args
=
sequence
.
args
args
=
sequence
.
args
# Make sure we can determine direction from step
# Make sure we can determine direction from step
if
self
.
analyse_range_step
(
args
):
if
self
.
analyse_range_step
(
args
):
...
@@ -3890,15 +3893,20 @@ static void __Pyx_ReRaise(void) {
...
@@ -3890,15 +3893,20 @@ static void __Pyx_ReRaise(void) {
arg_type_test_utility_code
=
[
arg_type_test_utility_code
=
[
"""
"""
static int __Pyx_ArgTypeTest(PyObject *obj, PyTypeObject *type, int none_allowed, char *name); /*proto*/
static int __Pyx_ArgTypeTest(PyObject *obj, PyTypeObject *type, int none_allowed, char *name
, int exact
); /*proto*/
"""
,
"""
"""
,
"""
static int __Pyx_ArgTypeTest(PyObject *obj, PyTypeObject *type, int none_allowed, char *name) {
static int __Pyx_ArgTypeTest(PyObject *obj, PyTypeObject *type, int none_allowed, char *name
, int exact
) {
if (!type) {
if (!type) {
PyErr_Format(PyExc_SystemError, "Missing type object");
PyErr_Format(PyExc_SystemError, "Missing type object");
return 0;
return 0;
}
}
if ((none_allowed && obj == Py_None) || PyObject_TypeCheck(obj, type))
if (none_allowed && obj == Py_None) return 1;
return 1;
else if (exact) {
if (PyObject_TypeCheck(obj, type)) return 1;
}
else {
if (obj->ob_type == type) return 1;
}
PyErr_Format(PyExc_TypeError,
PyErr_Format(PyExc_TypeError,
"Argument '%s' has incorrect type (expected %s, got %s)",
"Argument '%s' has incorrect type (expected %s, got %s)",
name, type->tp_name, obj->ob_type->tp_name);
name, type->tp_name, obj->ob_type->tp_name);
...
...
Cython/Compiler/PyrexTypes.py
View file @
7373159c
...
@@ -72,6 +72,7 @@ class PyrexType(BaseType):
...
@@ -72,6 +72,7 @@ class PyrexType(BaseType):
is_pyobject
=
0
is_pyobject
=
0
is_extension_type
=
0
is_extension_type
=
0
is_builtin_type
=
0
is_numeric
=
0
is_numeric
=
0
is_int
=
0
is_int
=
0
is_float
=
0
is_float
=
0
...
@@ -210,6 +211,48 @@ class PyObjectType(PyrexType):
...
@@ -210,6 +211,48 @@ class PyObjectType(PyrexType):
return
"%s *%s"
%
(
public_decl
(
"PyObject"
,
dll_linkage
),
entity_code
)
return
"%s *%s"
%
(
public_decl
(
"PyObject"
,
dll_linkage
),
entity_code
)
class
BuiltinObjectType
(
PyObjectType
):
is_builtin_type
=
1
has_attributes
=
1
base_type
=
None
module_name
=
'__builtin__'
def
__init__
(
self
,
name
,
cname
):
self
.
name
=
name
self
.
cname
=
cname
self
.
typeptr_cname
=
"&"
+
cname
def
set_scope
(
self
,
scope
):
self
.
scope
=
scope
if
scope
:
scope
.
parent_type
=
self
def
__str__
(
self
):
return
"%s object"
%
self
.
name
def
__repr__
(
self
):
return
"<%s>"
%
self
.
cname
def
assignable_from
(
self
,
src_type
):
if
isinstance
(
src_type
,
BuiltinObjectType
):
return
src_type
.
name
==
self
.
name
else
:
return
not
src_type
.
is_extension_type
def
typeobj_is_available
(
self
):
return
True
def
attributes_known
(
self
):
return
True
def
subtype_of
(
self
,
type
):
return
type
.
is_pyobject
and
self
.
assignable_from
(
type
)
def
type_test_code
(
self
,
arg
):
return
'likely(Py%s_CheckExact(%s)) || (%s) == Py_None || (PyErr_Format(PyExc_TypeError, "Expected %s, got %%s", %s->ob_type->tp_name), 0)'
%
(
self
.
name
[
0
].
upper
()
+
self
.
name
[
1
:],
arg
,
arg
,
self
.
name
,
arg
)
class
PyExtensionType
(
PyObjectType
):
class
PyExtensionType
(
PyObjectType
):
#
#
# A Python extension type.
# A Python extension type.
...
@@ -281,6 +324,9 @@ class PyExtensionType(PyObjectType):
...
@@ -281,6 +324,9 @@ class PyExtensionType(PyObjectType):
else
:
else
:
return
"%s *%s"
%
(
base
,
entity_code
)
return
"%s *%s"
%
(
base
,
entity_code
)
def
type_test_code
(
self
,
py_arg
):
return
"__Pyx_TypeTest(%s, %s)"
%
(
py_arg
,
self
.
typeptr_cname
)
def
attributes_known
(
self
):
def
attributes_known
(
self
):
return
self
.
scope
is
not
None
return
self
.
scope
is
not
None
...
...
Cython/Compiler/Symtab.py
View file @
7373159c
...
@@ -588,6 +588,7 @@ class BuiltinScope(Scope):
...
@@ -588,6 +588,7 @@ class BuiltinScope(Scope):
Scope
.
__init__
(
self
,
"__builtin__"
,
None
,
None
)
Scope
.
__init__
(
self
,
"__builtin__"
,
None
,
None
)
else
:
else
:
Scope
.
__init__
(
self
,
"__builtin__"
,
PreImportScope
(),
None
)
Scope
.
__init__
(
self
,
"__builtin__"
,
PreImportScope
(),
None
)
self
.
type_names
=
{}
for
name
,
definition
in
self
.
builtin_entries
.
iteritems
():
for
name
,
definition
in
self
.
builtin_entries
.
iteritems
():
cname
,
type
=
definition
cname
,
type
=
definition
...
@@ -615,6 +616,23 @@ class BuiltinScope(Scope):
...
@@ -615,6 +616,23 @@ class BuiltinScope(Scope):
entry
.
as_variable
=
var_entry
entry
.
as_variable
=
var_entry
return
entry
return
entry
def
declare_builtin_type
(
self
,
name
,
cname
):
type
=
PyrexTypes
.
BuiltinObjectType
(
name
,
cname
)
type
.
set_scope
(
CClassScope
(
name
,
outer_scope
=
None
,
visibility
=
'extern'
))
self
.
type_names
[
name
]
=
1
entry
=
self
.
declare_type
(
name
,
type
,
None
,
visibility
=
'extern'
)
var_entry
=
Entry
(
name
=
entry
.
name
,
type
=
py_object_type
,
pos
=
entry
.
pos
,
cname
=
"((PyObject*)%s)"
%
entry
.
type
.
typeptr_cname
)
var_entry
.
is_variable
=
1
var_entry
.
is_cglobal
=
1
var_entry
.
is_readonly
=
1
entry
.
as_variable
=
var_entry
return
type
def
builtin_scope
(
self
):
def
builtin_scope
(
self
):
return
self
return
self
...
@@ -684,7 +702,7 @@ class ModuleScope(Scope):
...
@@ -684,7 +702,7 @@ class ModuleScope(Scope):
self
.
module_entries
=
{}
self
.
module_entries
=
{}
self
.
python_include_files
=
[
"Python.h"
,
"structmember.h"
]
self
.
python_include_files
=
[
"Python.h"
,
"structmember.h"
]
self
.
include_files
=
[]
self
.
include_files
=
[]
self
.
type_names
=
{}
self
.
type_names
=
dict
(
outer_scope
.
type_names
)
self
.
pxd_file_loaded
=
0
self
.
pxd_file_loaded
=
0
self
.
cimported_modules
=
[]
self
.
cimported_modules
=
[]
self
.
intern_map
=
{}
self
.
intern_map
=
{}
...
...
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