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
0760a6ab
Commit
0760a6ab
authored
Sep 09, 2020
by
Xavier Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Let template argument types resolve to raw cypclass pointer type instead of smart pointers
parent
2ffe0aa6
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
5 deletions
+30
-5
Cython/Compiler/PyrexTypes.py
Cython/Compiler/PyrexTypes.py
+17
-5
Cython/Utility/CyObjects.cpp
Cython/Utility/CyObjects.cpp
+13
-0
No files found.
Cython/Compiler/PyrexTypes.py
View file @
0760a6ab
...
@@ -265,6 +265,7 @@ class PyrexType(BaseType):
...
@@ -265,6 +265,7 @@ class PyrexType(BaseType):
is_pythran_expr
=
0
is_pythran_expr
=
0
is_numpy_buffer
=
0
is_numpy_buffer
=
0
is_checked_result
=
0
is_checked_result
=
0
is_template_typename
=
0
has_attributes
=
0
has_attributes
=
0
needs_refcounting
=
0
needs_refcounting
=
0
default_value
=
""
default_value
=
""
...
@@ -3259,7 +3260,7 @@ class CFuncType(CType):
...
@@ -3259,7 +3260,7 @@ class CFuncType(CType):
arg_decl_list
=
[]
arg_decl_list
=
[]
for
arg
in
self
.
args
[:
len
(
self
.
args
)
-
self
.
optional_arg_count
]:
for
arg
in
self
.
args
[:
len
(
self
.
args
)
-
self
.
optional_arg_count
]:
arg_decl_list
.
append
(
arg_decl_list
.
append
(
arg
.
type
.
declaration_code
(
""
,
for_display
,
pyrex
=
pyrex
))
arg
.
declaration_code
(
for_display
,
pyrex
=
pyrex
,
cname
=
''
))
if
self
.
is_overridable
:
if
self
.
is_overridable
:
arg_decl_list
.
append
(
"int %s"
%
Naming
.
skip_dispatch_cname
)
arg_decl_list
.
append
(
"int %s"
%
Naming
.
skip_dispatch_cname
)
if
self
.
optional_arg_count
:
if
self
.
optional_arg_count
:
...
@@ -3610,10 +3611,12 @@ class CFuncTypeArg(BaseType):
...
@@ -3610,10 +3611,12 @@ class CFuncTypeArg(BaseType):
accept_none
=
True
accept_none
=
True
accept_builtin_subtypes
=
False
accept_builtin_subtypes
=
False
annotation
=
None
annotation
=
None
original_template
=
None
has_cypclass_specialisation
=
False
subtypes
=
[
'type'
]
subtypes
=
[
'type'
]
def
__init__
(
self
,
name
,
type
,
pos
,
cname
=
None
,
annotation
=
None
):
def
__init__
(
self
,
name
,
type
,
pos
,
cname
=
None
,
annotation
=
None
,
original_template
=
None
):
self
.
name
=
name
self
.
name
=
name
if
cname
is
not
None
:
if
cname
is
not
None
:
self
.
cname
=
cname
self
.
cname
=
cname
...
@@ -3624,15 +3627,23 @@ class CFuncTypeArg(BaseType):
...
@@ -3624,15 +3627,23 @@ class CFuncTypeArg(BaseType):
self
.
type
=
type
self
.
type
=
type
self
.
pos
=
pos
self
.
pos
=
pos
self
.
needs_type_test
=
False
# TODO: should these defaults be set in analyse_types()?
self
.
needs_type_test
=
False
# TODO: should these defaults be set in analyse_types()?
self
.
original_template
=
original_template
or
self
self
.
original_template
.
has_cypclass_specialisation
=
type
.
is_cyp_class
def
__repr__
(
self
):
def
__repr__
(
self
):
return
"%s:%s"
%
(
self
.
name
,
repr
(
self
.
type
))
return
"%s:%s"
%
(
self
.
name
,
repr
(
self
.
type
))
def
declaration_code
(
self
,
for_display
=
0
):
def
declaration_code
(
self
,
for_display
=
0
,
pyrex
=
0
,
cname
=
None
):
return
self
.
type
.
declaration_code
(
self
.
cname
,
for_display
)
if
cname
is
None
:
cname
=
self
.
cname
if
self
.
type
.
is_template_typename
and
self
.
has_cypclass_specialisation
:
base_code
=
"Cy_Raw<%s>"
%
self
.
type
.
empty_declaration_code
()
return
self
.
base_declaration_code
(
base_code
,
self
.
cname
)
return
self
.
type
.
declaration_code
(
cname
,
for_display
,
pyrex
)
def
specialize
(
self
,
values
):
def
specialize
(
self
,
values
):
return
CFuncTypeArg
(
self
.
name
,
self
.
type
.
specialize
(
values
),
self
.
pos
,
self
.
cname
)
return
CFuncTypeArg
(
self
.
name
,
self
.
type
.
specialize
(
values
),
self
.
pos
,
self
.
cname
,
None
,
self
.
original_template
)
class
ToPyStructUtilityCode
(
object
):
class
ToPyStructUtilityCode
(
object
):
...
@@ -4537,6 +4548,7 @@ class CypClassType(CppClassType):
...
@@ -4537,6 +4548,7 @@ class CypClassType(CppClassType):
class
TemplatePlaceholderType
(
CType
):
class
TemplatePlaceholderType
(
CType
):
is_template_typename
=
1
def
__init__
(
self
,
name
,
optional
=
False
):
def
__init__
(
self
,
name
,
optional
=
False
):
self
.
name
=
name
self
.
name
=
name
...
...
Cython/Utility/CyObjects.cpp
View file @
0760a6ab
...
@@ -272,6 +272,19 @@
...
@@ -272,6 +272,19 @@
template
<
typename
T
>
template
<
typename
T
>
using
Cy_Ref
=
typename
Cy_Ref_t
<
T
>::
type
;
using
Cy_Ref
=
typename
Cy_Ref_t
<
T
>::
type
;
template
<
typename
T
>
struct
Cy_Raw_t
{
using
type
=
T
;
};
template
<
typename
T
>
struct
Cy_Raw_t
<
Cy_Ref_impl
<
T
>>
{
using
type
=
T
*
;
};
template
<
typename
T
>
using
Cy_Raw
=
typename
Cy_Raw_t
<
T
>::
type
;
class
Cy_rlock_guard
{
class
Cy_rlock_guard
{
CyObject
*
o
;
CyObject
*
o
;
public:
public:
...
...
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