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
2a547fc9
Commit
2a547fc9
authored
Jul 18, 2017
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Further cline traceback optimizations.
This brings the overhead to about 10%, or 20ns per traceback.
parent
01fabbd9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
5 deletions
+17
-5
Cython/Utility/Exceptions.c
Cython/Utility/Exceptions.c
+17
-5
No files found.
Cython/Utility/Exceptions.c
View file @
2a547fc9
...
...
@@ -541,11 +541,25 @@ static int __Pyx_CLineForTraceback(int c_line) {
#ifdef CYTHON_CLINE_IN_TRACEBACK
/* 0 or 1 to disable/enable C line display in tracebacks at C compile time */
return
((
CYTHON_CLINE_IN_TRACEBACK
))
?
c_line
:
0
;
#else
PyObject
*
ptype
,
*
pvalue
,
*
ptraceback
;
PyObject
*
*
cython_runtime_dict
;
PyObject
*
use_cline
;
PyErr_Fetch
(
&
ptype
,
&
pvalue
,
&
ptraceback
);
use_cline
=
__Pyx_PyObject_GetAttrStr
(
$
{
cython_runtime_cname
},
PYIDENT
(
"cline_in_traceback"
));
cython_runtime_dict
=
_PyObject_GetDictPtr
(
$
{
cython_runtime_cname
});
if
(
unlikely
(
!
cython_runtime_dict
))
{
PyObject
*
ptype
,
*
pvalue
,
*
ptraceback
;
PyObject
*
use_cline_obj
;
PyErr_Fetch
(
&
ptype
,
&
pvalue
,
&
ptraceback
);
use_cline_obj
=
__Pyx_PyObject_GetAttrStr
(
$
{
cython_runtime_cname
},
PYIDENT
(
"cline_in_traceback"
));
if
(
use_cline_obj
)
{
use_cline
=
PyObject_Not
(
use_cline_obj
)
?
Py_False
:
Py_True
;
Py_DECREF
(
use_cline_obj
);
}
else
{
use_cline
=
NULL
;
}
PyErr_Restore
(
ptype
,
pvalue
,
ptraceback
);
}
else
{
use_cline
=
PyDict_GetItem
(
*
_PyObject_GetDictPtr
(
$
{
cython_runtime_cname
}),
PYIDENT
(
"cline_in_traceback"
));
}
if
(
!
use_cline
)
{
c_line
=
0
;
PyObject_SetAttr
(
$
{
cython_runtime_cname
},
PYIDENT
(
"cline_in_traceback"
),
Py_False
);
...
...
@@ -553,8 +567,6 @@ static int __Pyx_CLineForTraceback(int c_line) {
else
if
(
PyObject_Not
(
use_cline
)
!=
0
)
{
c_line
=
0
;
}
Py_XDECREF
(
use_cline
);
PyErr_Restore
(
ptype
,
pvalue
,
ptraceback
);
return
c_line
;
#endif
}
...
...
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