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
9257aee9
Commit
9257aee9
authored
May 13, 2008
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes: generate constant declarations before we access them, write cleanup code as before
parent
c4ba39e1
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
20 deletions
+32
-20
Cython/Compiler/ModuleNode.py
Cython/Compiler/ModuleNode.py
+6
-8
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+14
-2
Cython/Compiler/Symtab.py
Cython/Compiler/Symtab.py
+12
-10
No files found.
Cython/Compiler/ModuleNode.py
View file @
9257aee9
...
...
@@ -221,6 +221,7 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
code
.
putln
(
"/* Implementation of %s */"
%
env
.
qualified_name
)
self
.
generate_const_definitions
(
env
,
code
)
self
.
generate_interned_num_decls
(
env
,
code
)
self
.
generate_interned_string_decls
(
env
,
code
)
self
.
generate_py_string_decls
(
env
,
code
)
self
.
generate_cached_builtins_decls
(
env
,
code
)
self
.
body
.
generate_function_definitions
(
env
,
code
,
options
.
transforms
)
...
...
@@ -1365,11 +1366,6 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
entries
=
env
.
all_pystring_entries
if
entries
:
code
.
putln
(
""
)
for
entry
in
entries
:
if
entry
.
is_interned
:
code
.
putln
(
'static char %s[] = "%s";'
%
(
entry
.
cname
,
entry
.
init
))
code
.
putln
(
""
)
code
.
putln
(
"static __Pyx_StringTabEntry %s[] = {"
%
Naming
.
stringtab_cname
)
...
...
@@ -1476,9 +1472,11 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
code
.
putln
(
"/*--- Intern cleanup code ---*/"
)
for
entry
in
env
.
pynum_entries
:
code
.
put_var_decref_clear
(
entry
)
if
env
.
intern_map
:
for
name
,
cname
in
env
.
intern_map
.
items
():
code
.
put_decref_clear
(
cname
,
PyrexTypes
.
py_object_type
)
if
env
.
all_pystring_entries
:
for
entry
in
env
.
all_pystring_entries
:
if
entry
.
is_interned
:
code
.
put_decref_clear
(
entry
.
pystring_cname
,
PyrexTypes
.
py_object_type
)
code
.
putln
(
"Py_INCREF(Py_None); return Py_None;"
)
code
.
putln
(
'}'
)
...
...
Cython/Compiler/Nodes.py
View file @
9257aee9
...
...
@@ -231,6 +231,17 @@ class BlockNode:
if
not
entry
.
is_interned
:
code
.
put_var_declaration
(
entry
,
static
=
1
)
def
generate_interned_string_decls
(
self
,
env
,
code
):
entries
=
env
.
global_scope
().
new_interned_string_entries
if
entries
:
code
.
putln
(
""
)
for
entry
in
entries
:
code
.
put_var_declaration
(
entry
,
static
=
1
)
for
entry
in
entries
:
code
.
putln
(
"static PyObject *%s;"
%
entry
.
pystring_cname
)
del
entries
[:]
def
generate_py_string_decls
(
self
,
env
,
code
):
entries
=
env
.
pystring_entries
if
entries
:
...
...
@@ -865,6 +876,7 @@ class FuncDefNode(StatNode, BlockNode):
# if we supported them, which we probably won't.
# ----- Top-level constants used by this function
self
.
generate_interned_num_decls
(
lenv
,
code
)
self
.
generate_interned_string_decls
(
lenv
,
code
)
self
.
generate_py_string_decls
(
lenv
,
code
)
self
.
generate_cached_builtins_decls
(
lenv
,
code
)
#code.putln("")
...
...
Cython/Compiler/Symtab.py
View file @
9257aee9
...
...
@@ -461,13 +461,15 @@ class Scope:
# a string literal, and add it to the list of Python strings to
# be created at module init time. If the string resembles a
# Python identifier, it will be interned.
if not entry.pystring_cname:
if entry.pystring_cname:
return
value = entry.init
if possible_identifier(value):
entry.is_interned = 1
entry.pystring_cname = entry.cname + "
p
"
self.pystring_entries.append(entry)
self.global_scope().all_pystring_entries.append(entry)
if possible_identifier(value):
entry.is_interned = 1
self.global_scope().new_interned_string_entries.append(entry)
def add_py_num(self, value):
# Add an entry for an int constant.
...
...
@@ -673,7 +675,7 @@ class ModuleScope(Scope):
# type_names {string : 1} Set of type names (used during parsing)
# pxd_file_loaded boolean Corresponding .pxd file has been processed
# cimported_modules [ModuleScope] Modules imported with cimport
#
intern_map {string : string} Mapping from Python names to interned strs
#
new_interned_string_entries [Entry] New interned strings waiting to be declared
# interned_nums [int/long] Interned numeric constants
# all_pystring_entries [Entry] Python string consts from all scopes
# types_imported {PyrexType : 1} Set of types for which import code generated
...
...
@@ -700,7 +702,7 @@ class ModuleScope(Scope):
self.type_names = dict(outer_scope.type_names)
self.pxd_file_loaded = 0
self.cimported_modules = []
self.
intern_map = {}
self.
new_interned_string_entries = []
self.interned_nums = []
self.interned_objs = []
self.all_pystring_entries = []
...
...
@@ -739,7 +741,7 @@ class ModuleScope(Scope):
return entry
def intern(self, name):
string_entry = self.
add
_string_const(name)
string_entry = self.
get
_string_const(name)
self.add_py_string(string_entry)
return string_entry.pystring_cname
...
...
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