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
Boxiang Sun
cython
Commits
40f1624b
Commit
40f1624b
authored
Apr 09, 2009
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
74dffa6f
76e9534b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
19 deletions
+20
-19
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+7
-8
Cython/Compiler/ParseTreeTransforms.py
Cython/Compiler/ParseTreeTransforms.py
+10
-10
Cython/Compiler/Symtab.py
Cython/Compiler/Symtab.py
+0
-1
runtests.py
runtests.py
+3
-0
No files found.
Cython/Compiler/Nodes.py
View file @
40f1624b
...
...
@@ -1023,6 +1023,7 @@ class FuncDefNode(StatNode, BlockNode):
if
type
.
is_cfunction
:
lenv
.
nogil
=
type
.
nogil
and
not
type
.
with_gil
self
.
local_scope
=
lenv
lenv
.
directives
=
env
.
directives
return
lenv
def
generate_function_definitions
(
self
,
env
,
code
):
...
...
@@ -1305,9 +1306,7 @@ class CFuncDefNode(FuncDefNode):
return
self
.
entry
.
name
def
analyse_declarations
(
self
,
env
):
if
'locals'
in
env
.
directives
and
env
.
directives
[
'locals'
]:
self
.
directive_locals
=
env
.
directives
[
'locals'
]
directive_locals
=
self
.
directive_locals
directive_locals
=
self
.
directive_locals
=
env
.
directives
[
'locals'
]
base_type
=
self
.
base_type
.
analyse
(
env
)
# The 2 here is because we need both function and argument names.
name_declarator
,
type
=
self
.
declarator
.
analyse
(
base_type
,
env
,
nonempty
=
2
*
(
self
.
body
is
not
None
))
...
...
@@ -1650,11 +1649,7 @@ class DefNode(FuncDefNode):
directive_locals
=
getattr
(
cfunc
,
'directive_locals'
,
{}))
def
analyse_declarations
(
self
,
env
):
if
'locals'
in
env
.
directives
:
directive_locals
=
env
.
directives
[
'locals'
]
else
:
directive_locals
=
{}
self
.
directive_locals
=
directive_locals
directive_locals
=
self
.
directive_locals
=
env
.
directives
[
'locals'
]
for
arg
in
self
.
args
:
if
hasattr
(
arg
,
'name'
):
type
=
arg
.
type
...
...
@@ -2564,6 +2559,7 @@ class PyClassDefNode(ClassDefNode):
def
analyse_declarations
(
self
,
env
):
self
.
target
.
analyse_target_declaration
(
env
)
cenv
=
self
.
create_scope
(
env
)
cenv
.
directives
=
env
.
directives
cenv
.
class_obj_cname
=
self
.
target
.
entry
.
cname
self
.
body
.
analyse_declarations
(
cenv
)
...
...
@@ -2702,6 +2698,8 @@ class CClassDefNode(ClassDefNode):
if
home_scope
is
not
env
and
self
.
visibility
==
'extern'
:
env
.
add_imported_entry
(
self
.
class_name
,
self
.
entry
,
pos
)
scope
=
self
.
entry
.
type
.
scope
if
scope
is
not
None
:
scope
.
directives
=
env
.
directives
if
self
.
doc
and
Options
.
docstrings
:
scope
.
doc
=
embed_position
(
self
.
pos
,
self
.
doc
)
...
...
@@ -2752,6 +2750,7 @@ class PropertyNode(StatNode):
doc_entry
=
env
.
get_string_const
(
self
.
doc
,
identifier
=
False
)
entry
.
doc_cname
=
doc_entry
.
cname
entry
.
scope
.
directives
=
env
.
directives
self
.
body
.
analyse_declarations
(
entry
.
scope
)
def
analyse_expressions
(
self
,
env
):
...
...
Cython/Compiler/ParseTreeTransforms.py
View file @
40f1624b
...
...
@@ -659,7 +659,6 @@ class DecoratorTransform(CythonTransform, SkipDeclarations):
return
[
func_node
,
reassignment
]
ERR_DEC_AFTER
=
"cdef variable '%s' declared after it is used"
class
AnalyseDeclarationsTransform
(
CythonTransform
):
basic_property
=
TreeFragment
(
u"""
...
...
@@ -673,22 +672,22 @@ property NAME:
def
__call__
(
self
,
root
):
self
.
env_stack
=
[
root
.
scope
]
# needed to determine if a cdef var is declared after it's used.
self
.
local_scope
_stack
=
[]
self
.
seen_vars
_stack
=
[]
return
super
(
AnalyseDeclarationsTransform
,
self
).
__call__
(
root
)
def
visit_NameNode
(
self
,
node
):
self
.
local_scope
_stack
[
-
1
].
add
(
node
.
name
)
self
.
seen_vars
_stack
[
-
1
].
add
(
node
.
name
)
return
node
def
visit_ModuleNode
(
self
,
node
):
self
.
local_scope
_stack
.
append
(
set
())
self
.
seen_vars
_stack
.
append
(
set
())
node
.
analyse_declarations
(
self
.
env_stack
[
-
1
])
self
.
visitchildren
(
node
)
self
.
local_scope
_stack
.
pop
()
self
.
seen_vars
_stack
.
pop
()
return
node
def
visit_FuncDefNode
(
self
,
node
):
self
.
local_scope
_stack
.
append
(
set
())
self
.
seen_vars
_stack
.
append
(
set
())
lenv
=
node
.
create_local_scope
(
self
.
env_stack
[
-
1
])
node
.
body
.
analyse_control_flow
(
lenv
)
# this will be totally refactored
node
.
declare_arguments
(
lenv
)
...
...
@@ -703,7 +702,7 @@ property NAME:
self
.
env_stack
.
append
(
lenv
)
self
.
visitchildren
(
node
)
self
.
env_stack
.
pop
()
self
.
local_scope
_stack
.
pop
()
self
.
seen_vars
_stack
.
pop
()
return
node
# Some nodes are no longer needed after declaration
...
...
@@ -728,9 +727,10 @@ property NAME:
return
None
def
visit_CNameDeclaratorNode
(
self
,
node
):
if
node
.
name
in
self
.
local_scope_stack
[
-
1
]:
# cdef variable declared after it's used.
error
(
node
.
pos
,
ERR_DEC_AFTER
%
node
.
name
)
if
node
.
name
in
self
.
seen_vars_stack
[
-
1
]:
entry
=
self
.
env_stack
[
-
1
].
lookup
(
node
.
name
)
if
entry
is
None
or
entry
.
visibility
!=
'extern'
:
error
(
node
.
pos
,
"cdef variable '%s' declared after it is used"
%
node
.
name
)
self
.
visitchildren
(
node
)
return
node
...
...
Cython/Compiler/Symtab.py
View file @
40f1624b
...
...
@@ -211,7 +211,6 @@ class Scope(object):
scope_prefix = ""
in_cinclude = 0
nogil = 0
directives = {}
temp_prefix = Naming.pyrex_prefix
...
...
runtests.py
View file @
40f1624b
...
...
@@ -147,6 +147,9 @@ class TestBuilder(object):
languages
=
self
.
languages
[:
1
]
else
:
languages
=
self
.
languages
if
'cpp'
in
module
and
'c'
in
languages
:
languages
=
list
(
languages
)
languages
.
remove
(
'c'
)
tests
=
[
self
.
build_test
(
test_class
,
path
,
workdir
,
module
,
language
,
expect_errors
)
for
language
in
languages
]
...
...
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