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
Gwenaël Samain
cython
Commits
f9aee885
Commit
f9aee885
authored
Jan 12, 2008
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
only reference type GC functions in extension type if GC support is required
parent
3b8a1a8c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
27 deletions
+21
-27
Cython/Compiler/TypeSlots.py
Cython/Compiler/TypeSlots.py
+21
-27
No files found.
Cython/Compiler/TypeSlots.py
View file @
f9aee885
...
@@ -176,22 +176,6 @@ class EmptySlot(FixedSlot):
...
@@ -176,22 +176,6 @@ class EmptySlot(FixedSlot):
FixedSlot
.
__init__
(
self
,
slot_name
,
"0"
)
FixedSlot
.
__init__
(
self
,
slot_name
,
"0"
)
class
GCDependentSlot
(
SlotDescriptor
):
# Descriptor for a slot whose value depends on whether
# the type participates in GC.
def
__init__
(
self
,
slot_name
,
no_gc_value
,
gc_value
,
dynamic
=
0
):
SlotDescriptor
.
__init__
(
self
,
slot_name
,
dynamic
=
dynamic
)
self
.
no_gc_value
=
no_gc_value
self
.
gc_value
=
gc_value
def
slot_code
(
self
,
scope
):
if
scope
.
has_pyobject_attrs
:
return
self
.
gc_value
else
:
return
self
.
no_gc_value
class
MethodSlot
(
SlotDescriptor
):
class
MethodSlot
(
SlotDescriptor
):
# Type slot descriptor for a user-definable method.
# Type slot descriptor for a user-definable method.
#
#
...
@@ -228,6 +212,20 @@ class InternalMethodSlot(SlotDescriptor):
...
@@ -228,6 +212,20 @@ class InternalMethodSlot(SlotDescriptor):
return
scope
.
mangle_internal
(
self
.
slot_name
)
return
scope
.
mangle_internal
(
self
.
slot_name
)
class
GCDependentSlot
(
InternalMethodSlot
):
# Descriptor for a slot whose value depends on whether
# the type participates in GC.
def
__init__
(
self
,
slot_name
):
InternalMethodSlot
.
__init__
(
self
,
slot_name
)
def
slot_code
(
self
,
scope
):
if
scope
.
needs_gc
():
return
InternalMethodSlot
.
slot_code
(
self
,
scope
)
else
:
return
"0"
class
SyntheticSlot
(
InternalMethodSlot
):
class
SyntheticSlot
(
InternalMethodSlot
):
# Type slot descriptor for a synthesized method which
# Type slot descriptor for a synthesized method which
# dispatches to one or more user-defined methods depending
# dispatches to one or more user-defined methods depending
...
@@ -252,10 +250,9 @@ class TypeFlagsSlot(SlotDescriptor):
...
@@ -252,10 +250,9 @@ class TypeFlagsSlot(SlotDescriptor):
# Descriptor for the type flags slot.
# Descriptor for the type flags slot.
def
slot_code
(
self
,
scope
):
def
slot_code
(
self
,
scope
):
# Always add Py_TPFLAGS_HAVE_GC -- PyType_Ready doesn't seem to inherit it
value
=
"Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_BASETYPE"
value
=
"Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_GC"
if
scope
.
needs_gc
():
#if scope.has_pyobject_attrs:
value
+=
"|Py_TPFLAGS_HAVE_GC"
# value += "|Py_TPFLAGS_HAVE_GC"
return
value
return
value
...
@@ -578,8 +575,8 @@ slot_table = (
...
@@ -578,8 +575,8 @@ slot_table = (
TypeFlagsSlot
(
"tp_flags"
),
TypeFlagsSlot
(
"tp_flags"
),
DocStringSlot
(
"tp_doc"
),
DocStringSlot
(
"tp_doc"
),
InternalMethod
Slot
(
"tp_traverse"
),
GCDependent
Slot
(
"tp_traverse"
),
InternalMethod
Slot
(
"tp_clear"
),
GCDependent
Slot
(
"tp_clear"
),
# Later -- synthesize a method to split into separate ops?
# Later -- synthesize a method to split into separate ops?
MethodSlot
(
richcmpfunc
,
"tp_richcompare"
,
"__richcmp__"
),
MethodSlot
(
richcmpfunc
,
"tp_richcompare"
,
"__richcmp__"
),
...
@@ -604,10 +601,7 @@ slot_table = (
...
@@ -604,10 +601,7 @@ slot_table = (
MethodSlot
(
initproc
,
"tp_init"
,
"__init__"
),
MethodSlot
(
initproc
,
"tp_init"
,
"__init__"
),
EmptySlot
(
"tp_alloc"
),
#FixedSlot("tp_alloc", "PyType_GenericAlloc"),
EmptySlot
(
"tp_alloc"
),
#FixedSlot("tp_alloc", "PyType_GenericAlloc"),
InternalMethodSlot
(
"tp_new"
),
InternalMethodSlot
(
"tp_new"
),
# Some versions of Python 2.2 inherit the wrong value for tp_free when the
EmptySlot
(
"tp_free"
),
# type has GC but the base type doesn't, so we explicitly set it ourselves
# in that case.
GCDependentSlot
(
"tp_free"
,
"0"
,
"_PyObject_GC_Del"
,
dynamic
=
1
),
EmptySlot
(
"tp_is_gc"
),
EmptySlot
(
"tp_is_gc"
),
EmptySlot
(
"tp_bases"
),
EmptySlot
(
"tp_bases"
),
...
...
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