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
1f700974
Commit
1f700974
authored
May 01, 2013
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
move [GS]etVTable utility code to more appropriate ImportExport.c file
parent
74924957
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
52 additions
and
51 deletions
+52
-51
Cython/Compiler/ModuleNode.py
Cython/Compiler/ModuleNode.py
+2
-2
Cython/Utility/ExtensionTypes.c
Cython/Utility/ExtensionTypes.c
+0
-49
Cython/Utility/ImportExport.c
Cython/Utility/ImportExport.c
+50
-0
No files found.
Cython/Compiler/ModuleNode.py
View file @
1f700974
...
...
@@ -2397,7 +2397,7 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
code
.
error_goto_if_null
(
type
.
typeptr_cname
,
pos
))
if
type
.
vtabptr_cname
:
code
.
globalstate
.
use_utility_code
(
UtilityCode
.
load_cached
(
'GetVTable'
,
'
ExtensionTypes
.c'
))
UtilityCode
.
load_cached
(
'GetVTable'
,
'
ImportExport
.c'
))
code
.
putln
(
"%s = (struct %s*)__Pyx_GetVtable(%s->tp_dict); %s"
%
(
type
.
vtabptr_cname
,
type
.
vtabstruct_cname
,
...
...
@@ -2503,7 +2503,7 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
type
.
vtabptr_cname
,
code
.
error_goto
(
entry
.
pos
)))
code
.
globalstate
.
use_utility_code
(
UtilityCode
.
load_cached
(
'SetVTable'
,
'
ExtensionTypes
.c'
))
UtilityCode
.
load_cached
(
'SetVTable'
,
'
ImportExport
.c'
))
if
not
type
.
scope
.
is_internal
and
not
type
.
scope
.
directives
[
'internal'
]:
# scope.is_internal is set for types defined by
# Cython (such as closures), the 'internal'
...
...
Cython/Utility/ExtensionTypes.c
View file @
1f700974
...
...
@@ -51,52 +51,3 @@ static void __Pyx_call_next_tp_clear(PyObject* obj, inquiry current_tp_clear) {
if
(
type
&&
type
->
tp_clear
)
type
->
tp_clear
(
obj
);
}
/////////////// SetVTable.proto ///////////////
static
int
__Pyx_SetVtable
(
PyObject
*
dict
,
void
*
vtable
);
/*proto*/
/////////////// SetVTable ///////////////
static
int
__Pyx_SetVtable
(
PyObject
*
dict
,
void
*
vtable
)
{
#if PY_VERSION_HEX >= 0x02070000 && !(PY_MAJOR_VERSION==3&&PY_MINOR_VERSION==0)
PyObject
*
ob
=
PyCapsule_New
(
vtable
,
0
,
0
);
#else
PyObject
*
ob
=
PyCObject_FromVoidPtr
(
vtable
,
0
);
#endif
if
(
!
ob
)
goto
bad
;
if
(
PyDict_SetItem
(
dict
,
PYIDENT
(
"__pyx_vtable__"
),
ob
)
<
0
)
goto
bad
;
Py_DECREF
(
ob
);
return
0
;
bad:
Py_XDECREF
(
ob
);
return
-
1
;
}
/////////////// GetVTable.proto ///////////////
static
void
*
__Pyx_GetVtable
(
PyObject
*
dict
);
/*proto*/
/////////////// GetVTable ///////////////
static
void
*
__Pyx_GetVtable
(
PyObject
*
dict
)
{
void
*
ptr
;
PyObject
*
ob
=
PyObject_GetItem
(
dict
,
PYIDENT
(
"__pyx_vtable__"
));
if
(
!
ob
)
goto
bad
;
#if PY_VERSION_HEX >= 0x02070000 && !(PY_MAJOR_VERSION==3&&PY_MINOR_VERSION==0)
ptr
=
PyCapsule_GetPointer
(
ob
,
0
);
#else
ptr
=
PyCObject_AsVoidPtr
(
ob
);
#endif
if
(
!
ptr
&&
!
PyErr_Occurred
())
PyErr_SetString
(
PyExc_RuntimeError
,
"invalid vtable found for imported type"
);
Py_DECREF
(
ob
);
return
ptr
;
bad:
Py_XDECREF
(
ob
);
return
NULL
;
}
Cython/Utility/ImportExport.c
View file @
1f700974
...
...
@@ -423,3 +423,53 @@ bad:
Py_XDECREF
(
d
);
return
-
1
;
}
/////////////// SetVTable.proto ///////////////
static
int
__Pyx_SetVtable
(
PyObject
*
dict
,
void
*
vtable
);
/*proto*/
/////////////// SetVTable ///////////////
static
int
__Pyx_SetVtable
(
PyObject
*
dict
,
void
*
vtable
)
{
#if PY_VERSION_HEX >= 0x02070000 && !(PY_MAJOR_VERSION==3&&PY_MINOR_VERSION==0)
PyObject
*
ob
=
PyCapsule_New
(
vtable
,
0
,
0
);
#else
PyObject
*
ob
=
PyCObject_FromVoidPtr
(
vtable
,
0
);
#endif
if
(
!
ob
)
goto
bad
;
if
(
PyDict_SetItem
(
dict
,
PYIDENT
(
"__pyx_vtable__"
),
ob
)
<
0
)
goto
bad
;
Py_DECREF
(
ob
);
return
0
;
bad:
Py_XDECREF
(
ob
);
return
-
1
;
}
/////////////// GetVTable.proto ///////////////
static
void
*
__Pyx_GetVtable
(
PyObject
*
dict
);
/*proto*/
/////////////// GetVTable ///////////////
static
void
*
__Pyx_GetVtable
(
PyObject
*
dict
)
{
void
*
ptr
;
PyObject
*
ob
=
PyObject_GetItem
(
dict
,
PYIDENT
(
"__pyx_vtable__"
));
if
(
!
ob
)
goto
bad
;
#if PY_VERSION_HEX >= 0x02070000 && !(PY_MAJOR_VERSION==3&&PY_MINOR_VERSION==0)
ptr
=
PyCapsule_GetPointer
(
ob
,
0
);
#else
ptr
=
PyCObject_AsVoidPtr
(
ob
);
#endif
if
(
!
ptr
&&
!
PyErr_Occurred
())
PyErr_SetString
(
PyExc_RuntimeError
,
"invalid vtable found for imported type"
);
Py_DECREF
(
ob
);
return
ptr
;
bad:
Py_XDECREF
(
ob
);
return
NULL
;
}
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