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
fb6c602d
Commit
fb6c602d
authored
May 26, 2020
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '0.29.x'
parents
6644799d
02bb311d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
64 additions
and
39 deletions
+64
-39
Cython/Compiler/ModuleNode.py
Cython/Compiler/ModuleNode.py
+43
-35
Cython/Utility/ExtensionTypes.c
Cython/Utility/ExtensionTypes.c
+21
-4
No files found.
Cython/Compiler/ModuleNode.py
View file @
fb6c602d
...
...
@@ -2035,47 +2035,55 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
def
generate_binop_function
(
self
,
scope
,
slot
,
code
):
func_name
=
scope
.
mangle_internal
(
slot
.
slot_name
)
if
scope
.
directives
[
'c_api_binop_methods'
]:
code
.
putln
(
'#define %s %s'
%
(
func_name
,
slot
.
left_slot
.
slot_code
(
scope
)))
return
code
.
putln
()
preprocessor_guard
=
slot
.
preprocessor_guard_code
()
if
preprocessor_guard
:
code
.
putln
(
preprocessor_guard
)
if
scope
.
directives
[
'c_api_binop_methods'
]:
code
.
putln
(
'#define %s %s'
%
(
func_name
,
slot
.
left_slot
.
slot_code
(
scope
)))
if
slot
.
left_slot
.
signature
==
TypeSlots
.
binaryfunc
:
slot_type
=
'binaryfunc'
extra_arg
=
extra_arg_decl
=
''
elif
slot
.
left_slot
.
signature
==
TypeSlots
.
ternaryfunc
:
slot_type
=
'ternaryfunc'
extra_arg
=
', extra_arg'
extra_arg_decl
=
', PyObject* extra_arg'
else
:
if
slot
.
left_slot
.
signature
==
TypeSlots
.
binaryfunc
:
extra_arg
=
extra_arg_decl
=
''
elif
slot
.
left_slot
.
signature
==
TypeSlots
.
ternaryfunc
:
extra_arg
=
', extra_arg'
extra_arg_decl
=
', PyObject* extra_arg'
error
(
entry
.
pos
,
"Unexpected type lost signature: %s"
%
slot
)
def
has_slot_method
(
method_name
):
entry
=
scope
.
lookup
(
method_name
)
return
bool
(
entry
and
entry
.
is_special
and
entry
.
func_cname
)
def
call_slot_method
(
method_name
,
reverse
):
entry
=
scope
.
lookup
(
method_name
)
if
entry
and
entry
.
is_special
and
entry
.
func_cname
:
return
"%s(%s%s)"
%
(
entry
.
func_cname
,
"right, left"
if
reverse
else
"left, right"
,
extra_arg
)
else
:
error
(
entry
.
pos
,
"Unexpected type lost signature: %s"
%
slot
)
def
has_slot_method
(
method_name
):
entry
=
scope
.
lookup
(
method_name
)
return
bool
(
entry
and
entry
.
is_special
and
entry
.
func_cname
)
def
call_slot_method
(
method_name
,
reverse
):
entry
=
scope
.
lookup
(
method_name
)
if
entry
and
entry
.
is_special
and
entry
.
func_cname
:
return
"%s(%s%s)"
%
(
entry
.
func_cname
,
"right, left"
if
reverse
else
"left, right"
,
extra_arg
)
else
:
super
=
'Py_TYPE(right)->tp_base'
if
reverse
else
'Py_TYPE(left)->tp_base'
return
(
'(%s->tp_as_number && %s->tp_as_number->%s)'
' ? %s->tp_as_number->%s(left, right %s)'
' : (Py_INCREF(Py_NotImplemented), Py_NotImplemented)'
)
%
(
super
,
super
,
slot
.
slot_name
,
super
,
slot
.
slot_name
,
extra_arg
)
code
.
putln
(
TempitaUtilityCode
.
load_cached
(
"BinopSlot"
,
"ExtensionTypes.c"
,
context
=
{
"func_name"
:
func_name
,
"slot_name"
:
slot
.
slot_name
,
"overloads_left"
:
int
(
has_slot_method
(
slot
.
left_slot
.
method_name
)),
"call_left"
:
call_slot_method
(
slot
.
left_slot
.
method_name
,
reverse
=
False
),
"call_right"
:
call_slot_method
(
slot
.
right_slot
.
method_name
,
reverse
=
True
),
"type_cname"
:
scope
.
parent_type
.
typeptr_cname
,
"extra_arg"
:
extra_arg
,
"extra_arg_decl"
:
extra_arg_decl
,
}).
impl
.
strip
())
code
.
putln
()
return
'%s_maybe_call_slot(%s, left, right %s)'
%
(
func_name
,
'Py_TYPE(right)->tp_base'
if
reverse
else
'Py_TYPE(left)->tp_base'
,
extra_arg
)
code
.
putln
(
TempitaUtilityCode
.
load_as_string
(
"BinopSlot"
,
"ExtensionTypes.c"
,
context
=
{
"func_name"
:
func_name
,
"slot_name"
:
slot
.
slot_name
,
"overloads_left"
:
int
(
has_slot_method
(
slot
.
left_slot
.
method_name
)),
"call_left"
:
call_slot_method
(
slot
.
left_slot
.
method_name
,
reverse
=
False
),
"call_right"
:
call_slot_method
(
slot
.
right_slot
.
method_name
,
reverse
=
True
),
"type_cname"
:
scope
.
parent_type
.
typeptr_cname
,
"slot_type"
:
slot_type
,
"extra_arg"
:
extra_arg
,
"extra_arg_decl"
:
extra_arg_decl
,
})[
1
])
if
preprocessor_guard
:
code
.
putln
(
"#endif"
)
...
...
Cython/Utility/ExtensionTypes.c
View file @
fb6c602d
...
...
@@ -329,24 +329,39 @@ __PYX_GOOD:
/////////////// BinopSlot ///////////////
static
CYTHON_INLINE
PyObject
*
{{
func_name
}}
_maybe_call_slot
(
PyTypeObject
*
type
,
PyObject
*
left
,
PyObject
*
right
{{
extra_arg_decl
}})
{
{{
slot_type
}}
slot
;
#if CYTHON_USE_TYPE_SLOTS
slot
=
type
->
tp_as_number
?
type
->
tp_as_number
->
{{
slot_name
}}
:
NULL
;
#else
slot
=
({{
slot_type
}})
PyType_GetSlot
(
type
,
Py_
{{
slot_name
}});
#endif
return
slot
?
slot
(
left
,
right
{{
extra_arg
}})
:
__Pyx_NewRef
(
Py_NotImplemented
);
}
static
PyObject
*
{{
func_name
}}(
PyObject
*
left
,
PyObject
*
right
{{
extra_arg_decl
}})
{
PyObject
*
res
;
int
maybe_self_is_left
,
maybe_self_is_right
=
0
;
maybe_self_is_left
=
Py_TYPE
(
left
)
==
Py_TYPE
(
right
)
#if CYTHON_USE_TYPE_SLOTS
||
(
Py_TYPE
(
left
)
->
tp_as_number
&&
Py_TYPE
(
left
)
->
tp_as_number
->
{{
slot_name
}}
==
&
{{
func_name
}})
||
PyType_IsSubtype
(
Py_TYPE
(
left
),
{{
type_cname
}});
#endif
||
__Pyx_TypeCheck
(
left
,
{{
type_cname
}});
// Optimize for the common case where the left operation is defined (and successful).
if
(
!
{{
overloads_left
}})
{
maybe_self_is_right
=
Py_TYPE
(
left
)
==
Py_TYPE
(
right
)
#if CYTHON_USE_TYPE_SLOTS
||
(
Py_TYPE
(
right
)
->
tp_as_number
&&
Py_TYPE
(
right
)
->
tp_as_number
->
{{
slot_name
}}
==
&
{{
func_name
}})
||
PyType_IsSubtype
(
Py_TYPE
(
right
),
{{
type_cname
}});
#endif
||
__Pyx_TypeCheck
(
right
,
{{
type_cname
}});
}
if
(
maybe_self_is_left
)
{
if
(
maybe_self_is_right
&&
!
{{
overloads_left
}})
{
res
=
{{
call_right
}};
if
(
res
!=
Py_NotImplemented
)
return
res
;
Py_DECREF
(
res
);
maybe_self_is_right
=
0
;
// Don't bother calling it again.
// Don't bother calling it again.
maybe_self_is_right
=
0
;
}
res
=
{{
call_left
}};
if
(
res
!=
Py_NotImplemented
)
return
res
;
...
...
@@ -354,11 +369,13 @@ static PyObject *{{func_name}}(PyObject *left, PyObject *right {{extra_arg_decl}
}
if
({{
overloads_left
}})
{
maybe_self_is_right
=
Py_TYPE
(
left
)
==
Py_TYPE
(
right
)
#if CYTHON_USE_TYPE_SLOTS
||
(
Py_TYPE
(
right
)
->
tp_as_number
&&
Py_TYPE
(
right
)
->
tp_as_number
->
{{
slot_name
}}
==
&
{{
func_name
}})
#endif
||
PyType_IsSubtype
(
Py_TYPE
(
right
),
{{
type_cname
}});
}
if
(
maybe_self_is_right
)
{
return
{{
call_right
}};
}
return
Py_INCREF
(
Py_NotImplemented
),
Py_NotImplemented
;
return
__Pyx_NewRef
(
Py_NotImplemented
)
;
}
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