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
afba831b
Commit
afba831b
authored
Mar 07, 2013
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
speed up access to module globals
parent
34ded093
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
62 additions
and
15 deletions
+62
-15
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+17
-9
Cython/Compiler/ModuleNode.py
Cython/Compiler/ModuleNode.py
+6
-0
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+6
-6
Cython/Utility/ObjectHandling.c
Cython/Utility/ObjectHandling.c
+33
-0
No files found.
Cython/Compiler/ExprNodes.py
View file @
afba831b
...
@@ -1615,7 +1615,6 @@ class NameNode(AtomicExprNode):
...
@@ -1615,7 +1615,6 @@ class NameNode(AtomicExprNode):
self
.
is_temp
=
0
self
.
is_temp
=
0
else
:
else
:
self
.
is_temp
=
1
self
.
is_temp
=
1
env
.
use_utility_code
(
get_name_interned_utility_code
)
self
.
is_used_as_rvalue
=
1
self
.
is_used_as_rvalue
=
1
elif
entry
.
type
.
is_memoryviewslice
:
elif
entry
.
type
.
is_memoryviewslice
:
...
@@ -1754,32 +1753,41 @@ class NameNode(AtomicExprNode):
...
@@ -1754,32 +1753,41 @@ class NameNode(AtomicExprNode):
interned_cname
))
interned_cname
))
code
.
putln
(
'if (unlikely(!%s)) {'
%
self
.
result
())
code
.
putln
(
'if (unlikely(!%s)) {'
%
self
.
result
())
code
.
putln
(
'PyErr_Clear();'
)
code
.
putln
(
'PyErr_Clear();'
)
code
.
globalstate
.
use_utility_code
(
UtilityCode
.
load_cached
(
"GetModuleGlobalName"
,
"ObjectHandling.c"
))
code
.
putln
(
code
.
putln
(
'%s = __Pyx_Get
Name(%s,
%s);'
%
(
'%s = __Pyx_Get
ModuleGlobalName(
%s);'
%
(
self
.
result
(),
self
.
result
(),
Naming
.
module_cname
,
interned_cname
))
interned_cname
))
if
not
self
.
cf_is_null
:
if
not
self
.
cf_is_null
:
code
.
putln
(
"}"
)
code
.
putln
(
"}"
)
code
.
putln
(
code
.
error_goto_if_null
(
self
.
result
(),
self
.
pos
))
code
.
putln
(
code
.
error_goto_if_null
(
self
.
result
(),
self
.
pos
))
code
.
put_gotref
(
self
.
py_result
())
code
.
put_gotref
(
self
.
py_result
())
elif
entry
.
is_
pyglobal
or
entry
.
is_
builtin
:
elif
entry
.
is_builtin
:
assert
entry
.
type
.
is_pyobject
,
"Python global or builtin not a Python object"
assert
entry
.
type
.
is_pyobject
,
"Python global or builtin not a Python object"
interned_cname
=
code
.
intern_identifier
(
self
.
entry
.
name
)
interned_cname
=
code
.
intern_identifier
(
self
.
entry
.
name
)
if
entry
.
is_builtin
:
namespace
=
Naming
.
builtins_cname
else
:
# entry.is_pyglobal
namespace
=
entry
.
scope
.
namespace_cname
code
.
globalstate
.
use_utility_code
(
get_name_interned_utility_code
)
code
.
globalstate
.
use_utility_code
(
get_name_interned_utility_code
)
code
.
putln
(
code
.
putln
(
'%s = __Pyx_GetName(%s, %s); %s'
%
(
'%s = __Pyx_GetName(%s, %s); %s'
%
(
self
.
result
(),
self
.
result
(),
namespac
e
,
Naming
.
builtins_cnam
e
,
interned_cname
,
interned_cname
,
code
.
error_goto_if_null
(
self
.
result
(),
self
.
pos
)))
code
.
error_goto_if_null
(
self
.
result
(),
self
.
pos
)))
code
.
put_gotref
(
self
.
py_result
())
code
.
put_gotref
(
self
.
py_result
())
elif
entry
.
is_pyglobal
:
assert
entry
.
type
.
is_pyobject
,
"Python global or builtin not a Python object"
interned_cname
=
code
.
intern_identifier
(
self
.
entry
.
name
)
code
.
globalstate
.
use_utility_code
(
UtilityCode
.
load_cached
(
"GetModuleGlobalName"
,
"ObjectHandling.c"
))
code
.
putln
(
'%s = __Pyx_GetModuleGlobalName(%s); %s'
%
(
self
.
result
(),
interned_cname
,
code
.
error_goto_if_null
(
self
.
result
(),
self
.
pos
)))
code
.
put_gotref
(
self
.
py_result
())
elif
entry
.
is_local
or
entry
.
in_closure
or
entry
.
from_closure
or
entry
.
type
.
is_memoryviewslice
:
elif
entry
.
is_local
or
entry
.
in_closure
or
entry
.
from_closure
or
entry
.
type
.
is_memoryviewslice
:
# Raise UnboundLocalError for objects and memoryviewslices
# Raise UnboundLocalError for objects and memoryviewslices
raise_unbound
=
(
raise_unbound
=
(
...
...
Cython/Compiler/ModuleNode.py
View file @
afba831b
...
@@ -571,6 +571,7 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
...
@@ -571,6 +571,7 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
code
.
put
(
Nodes
.
branch_prediction_macros
)
code
.
put
(
Nodes
.
branch_prediction_macros
)
code
.
putln
(
''
)
code
.
putln
(
''
)
code
.
putln
(
'static PyObject *%s;'
%
env
.
module_cname
)
code
.
putln
(
'static PyObject *%s;'
%
env
.
module_cname
)
code
.
putln
(
'static PyObject *%s;'
%
env
.
module_dict_cname
)
code
.
putln
(
'static PyObject *%s;'
%
Naming
.
builtins_cname
)
code
.
putln
(
'static PyObject *%s;'
%
Naming
.
builtins_cname
)
code
.
putln
(
'static PyObject *%s;'
%
Naming
.
empty_tuple
)
code
.
putln
(
'static PyObject *%s;'
%
Naming
.
empty_tuple
)
code
.
putln
(
'static PyObject *%s;'
%
Naming
.
empty_bytes
)
code
.
putln
(
'static PyObject *%s;'
%
Naming
.
empty_bytes
)
...
@@ -2182,6 +2183,11 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
...
@@ -2182,6 +2183,11 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
Naming
.
pymoduledef_cname
))
Naming
.
pymoduledef_cname
))
code
.
putln
(
"#endif"
)
code
.
putln
(
"#endif"
)
code
.
putln
(
code
.
error_goto_if_null
(
env
.
module_cname
,
self
.
pos
))
code
.
putln
(
code
.
error_goto_if_null
(
env
.
module_cname
,
self
.
pos
))
code
.
putln
(
"%s = PyModule_GetDict(%s); %s"
%
(
env
.
module_dict_cname
,
env
.
module_cname
,
code
.
error_goto_if_null
(
env
.
module_dict_cname
,
self
.
pos
)))
code
.
put_incref
(
env
.
module_dict_cname
,
py_object_type
,
nanny
=
False
)
# CPython may not have put us into sys.modules yet, but relative imports and reimports require it
# CPython may not have put us into sys.modules yet, but relative imports and reimports require it
fq_module_name
=
env
.
qualified_name
fq_module_name
=
env
.
qualified_name
...
...
Cython/Compiler/Nodes.py
View file @
afba831b
...
@@ -5734,12 +5734,12 @@ class ForFromStatNode(LoopNode, StatNode):
...
@@ -5734,12 +5734,12 @@ class ForFromStatNode(LoopNode, StatNode):
target_node
=
ExprNodes
.
PyTempNode
(
self
.
target
.
pos
,
None
)
target_node
=
ExprNodes
.
PyTempNode
(
self
.
target
.
pos
,
None
)
target_node
.
allocate
(
code
)
target_node
.
allocate
(
code
)
interned_cname
=
code
.
intern_identifier
(
self
.
target
.
entry
.
name
)
interned_cname
=
code
.
intern_identifier
(
self
.
target
.
entry
.
name
)
code
.
globalstate
.
use_utility_code
(
ExprNodes
.
get_name_interned_utility_code
)
code
.
globalstate
.
use_utility_code
(
code
.
putln
(
"%s = __Pyx_GetName(%s, %s); %s"
%
(
UtilityCode
.
load_cached
(
"GetModuleGlobalName"
,
"ObjectHandling.c"
))
target_node
.
result
(),
code
.
putln
(
"%s = __Pyx_GetModuleGlobalName(%s); %s"
%
(
Naming
.
module_cname
,
target_node
.
result
()
,
interned_cname
,
interned_cname
,
code
.
error_goto_if_null
(
target_node
.
result
(),
self
.
target
.
pos
)))
code
.
error_goto_if_null
(
target_node
.
result
(),
self
.
target
.
pos
)))
code
.
put_gotref
(
target_node
.
result
())
code
.
put_gotref
(
target_node
.
result
())
else
:
else
:
target_node
=
self
.
target
target_node
=
self
.
target
...
...
Cython/Utility/ObjectHandling.c
View file @
afba831b
...
@@ -606,6 +606,39 @@ static PyObject *__Pyx_GetName(PyObject *dict, PyObject *name) {
...
@@ -606,6 +606,39 @@ static PyObject *__Pyx_GetName(PyObject *dict, PyObject *name) {
return
result
;
return
result
;
}
}
/////////////// GetModuleGlobalName.proto ///////////////
static
CYTHON_INLINE
PyObject
*
__Pyx_GetModuleGlobalName
(
PyObject
*
name
);
/*proto*/
/////////////// GetModuleGlobalName ///////////////
//@requires: PyObjectGetAttrStr
//@substitute: naming
static
CYTHON_INLINE
PyObject
*
__Pyx_GetModuleGlobalName
(
PyObject
*
name
)
{
PyObject
*
result
;
#if CYTHON_COMPILING_IN_CPYTHON
result
=
PyDict_GetItem
(
$
moddict_cname
,
name
);
if
(
result
)
{
Py_INCREF
(
result
);
}
else
{
#else
result
=
PyObject_GetItem
(
$
moddict_cname
,
name
);
if
(
!
result
)
{
PyErr_Clear
();
#endif
result
=
__Pyx_PyObject_GetAttrStr
(
$
builtins_cname
,
name
);
if
(
unlikely
(
!
result
))
{
PyErr_Format
(
PyExc_NameError
,
#if PY_MAJOR_VERSION >= 3
"name '%U' is not defined"
,
name
);
#else
"name '%s' is not defined"
,
PyString_AS_STRING
(
name
));
#endif
}
}
return
result
;
}
/////////////// PyObjectGetAttrStr.proto ///////////////
/////////////// PyObjectGetAttrStr.proto ///////////////
#if CYTHON_COMPILING_IN_CPYTHON
#if CYTHON_COMPILING_IN_CPYTHON
...
...
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