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
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
5aef3d90
Commit
5aef3d90
authored
Aug 06, 2020
by
Xavier Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor the whole cypclass locking framework into a single Visitor
parent
18dee5dc
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
394 additions
and
433 deletions
+394
-433
Cython/Compiler/CypclassTransforms.py
Cython/Compiler/CypclassTransforms.py
+348
-1
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+35
-266
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+8
-117
Cython/Compiler/Pipeline.py
Cython/Compiler/Pipeline.py
+2
-1
Cython/Compiler/Symtab.py
Cython/Compiler/Symtab.py
+1
-48
No files found.
Cython/Compiler/CypclassTransforms.py
View file @
5aef3d90
This diff is collapsed.
Click to expand it.
Cython/Compiler/ExprNodes.py
View file @
5aef3d90
This diff is collapsed.
Click to expand it.
Cython/Compiler/Nodes.py
View file @
5aef3d90
This diff is collapsed.
Click to expand it.
Cython/Compiler/Pipeline.py
View file @
5aef3d90
...
@@ -141,7 +141,7 @@ def inject_utility_code_stage_factory(context):
...
@@ -141,7 +141,7 @@ def inject_utility_code_stage_factory(context):
def
create_pipeline
(
context
,
mode
,
exclude_classes
=
()):
def
create_pipeline
(
context
,
mode
,
exclude_classes
=
()):
assert
mode
in
(
'pyx'
,
'py'
,
'pxd'
)
assert
mode
in
(
'pyx'
,
'py'
,
'pxd'
)
from
.Visitor
import
PrintTree
from
.Visitor
import
PrintTree
from
.CypclassTransforms
import
CypclassWrapperInjection
from
.CypclassTransforms
import
CypclassWrapperInjection
,
CypclassLockTransform
from
.ParseTreeTransforms
import
WithTransform
,
NormalizeTree
,
PostParse
,
PxdPostParse
from
.ParseTreeTransforms
import
WithTransform
,
NormalizeTree
,
PostParse
,
PxdPostParse
from
.ParseTreeTransforms
import
ForwardDeclareTypes
,
InjectGilHandling
,
AnalyseDeclarationsTransform
from
.ParseTreeTransforms
import
ForwardDeclareTypes
,
InjectGilHandling
,
AnalyseDeclarationsTransform
from
.ParseTreeTransforms
import
AnalyseExpressionsTransform
,
FindInvalidUseOfFusedTypes
from
.ParseTreeTransforms
import
AnalyseExpressionsTransform
,
FindInvalidUseOfFusedTypes
...
@@ -212,6 +212,7 @@ def create_pipeline(context, mode, exclude_classes=()):
...
@@ -212,6 +212,7 @@ def create_pipeline(context, mode, exclude_classes=()):
_check_c_declarations
,
_check_c_declarations
,
InlineDefNodeCalls
(
context
),
InlineDefNodeCalls
(
context
),
AnalyseExpressionsTransform
(
context
),
AnalyseExpressionsTransform
(
context
),
CypclassLockTransform
(
context
),
FindInvalidUseOfFusedTypes
(
context
),
FindInvalidUseOfFusedTypes
(
context
),
ExpandInplaceOperators
(
context
),
ExpandInplaceOperators
(
context
),
IterationTransform
(
context
),
IterationTransform
(
context
),
...
...
Cython/Compiler/Symtab.py
View file @
5aef3d90
...
@@ -158,10 +158,6 @@ class Entry(object):
...
@@ -158,10 +158,6 @@ class Entry(object):
# is_fused_specialized boolean Whether this entry of a cdef or def function
# is_fused_specialized boolean Whether this entry of a cdef or def function
# is a specialization
# is a specialization
# is_cgetter boolean Is a c-level getter function
# is_cgetter boolean Is a c-level getter function
# is_wlocked boolean Is locked with a write lock (used for cypclass)
# is_rlocked boolean Is locked with a read lock (used for cypclass)
# needs_rlock boolean The entry needs a read lock (used in autolock mode)
# needs_wlock boolean The entry needs a write lock (used in autolock mode)
#
#
# is_default boolean This entry is a compiler-generated default and
# is_default boolean This entry is a compiler-generated default and
# is not user-defined (e.g default contructor)
# is not user-defined (e.g default contructor)
...
@@ -173,7 +169,7 @@ class Entry(object):
...
@@ -173,7 +169,7 @@ class Entry(object):
# mro_index integer The index of the type where this entry was originally
# mro_index integer The index of the type where this entry was originally
# declared in the mro of the cypclass where it is now
# declared in the mro of the cypclass where it is now
#
#
# defining_classes
[CypClassType or CppClassType or CStructOrUnionType]
# defining_classes [CypClassType or CppClassType or CStructOrUnionType]
# All the base classes that define an entry that this entry
# All the base classes that define an entry that this entry
# overrides, if this entry represents a cypclass method
# overrides, if this entry represents a cypclass method
#
#
...
@@ -251,10 +247,6 @@ class Entry(object):
...
@@ -251,10 +247,6 @@ class Entry(object):
cf_used
=
True
cf_used
=
True
outer_entry
=
None
outer_entry
=
None
is_cgetter
=
False
is_cgetter
=
False
is_wlocked
=
False
is_rlocked
=
False
needs_rlock
=
False
needs_wlock
=
False
is_default
=
False
is_default
=
False
mro_index
=
0
mro_index
=
0
from_type
=
None
from_type
=
None
...
@@ -335,14 +327,6 @@ class InnerEntry(Entry):
...
@@ -335,14 +327,6 @@ class InnerEntry(Entry):
def
all_entries
(
self
):
def
all_entries
(
self
):
return
self
.
defining_entry
.
all_entries
()
return
self
.
defining_entry
.
all_entries
()
class
TrackedLockedEntry
:
def
__init__
(
self
,
entry
,
scope
):
self
.
entry
=
entry
self
.
scope
=
scope
self
.
is_wlocked
=
False
self
.
is_rlocked
=
False
self
.
needs_wlock
=
False
self
.
needs_rlock
=
False
class
Scope
(
object
):
class
Scope
(
object
):
# name string Unqualified name
# name string Unqualified name
...
@@ -357,7 +341,6 @@ class Scope(object):
...
@@ -357,7 +341,6 @@ class Scope(object):
# cfunc_entries [Entry] C function entries
# cfunc_entries [Entry] C function entries
# c_class_entries [Entry] All extension type entries
# c_class_entries [Entry] All extension type entries
# cypclass_entries [Entry] All cypclass entries
# cypclass_entries [Entry] All cypclass entries
# autolocked_nodes [ExprNodes] All autolocked nodes that needs unlocking
# cname_to_entry {string : Entry} Temp cname to entry mapping
# cname_to_entry {string : Entry} Temp cname to entry mapping
# return_type PyrexType or None Return type of function owning scope
# return_type PyrexType or None Return type of function owning scope
# is_builtin_scope boolean Is the builtin scope of Python/Cython
# is_builtin_scope boolean Is the builtin scope of Python/Cython
...
@@ -420,7 +403,6 @@ class Scope(object):
...
@@ -420,7 +403,6 @@ class Scope(object):
self
.
c_class_entries
=
[]
self
.
c_class_entries
=
[]
self
.
cypclass_entries
=
[]
self
.
cypclass_entries
=
[]
self
.
defined_c_classes
=
[]
self
.
defined_c_classes
=
[]
self
.
autolocked_nodes
=
[]
self
.
imported_c_classes
=
{}
self
.
imported_c_classes
=
{}
self
.
cname_to_entry
=
{}
self
.
cname_to_entry
=
{}
self
.
identifier_to_entry
=
{}
self
.
identifier_to_entry
=
{}
...
@@ -429,7 +411,6 @@ class Scope(object):
...
@@ -429,7 +411,6 @@ class Scope(object):
self
.
buffer_entries
=
[]
self
.
buffer_entries
=
[]
self
.
lambda_defs
=
[]
self
.
lambda_defs
=
[]
self
.
id_counters
=
{}
self
.
id_counters
=
{}
self
.
tracked_entries
=
{}
def
__deepcopy__
(
self
,
memo
):
def
__deepcopy__
(
self
,
memo
):
...
@@ -525,18 +506,6 @@ class Scope(object):
...
@@ -525,18 +506,6 @@ class Scope(object):
for
e
,
s
in
cypclass_scope
.
iter_cypclass_entries_and_scopes
():
for
e
,
s
in
cypclass_scope
.
iter_cypclass_entries_and_scopes
():
yield
e
,
s
yield
e
,
s
def
declare_tracked
(
self
,
entry
):
# Keying only with the name is wrong: if we have multiple attributes
# with the same name in different cypclass, this will conflict.
key
=
entry
self
.
tracked_entries
[
key
]
=
TrackedLockedEntry
(
entry
,
self
)
return
self
.
tracked_entries
[
key
]
def
lookup_tracked
(
self
,
entry
):
# We don't chain up the scopes on purpose: we want to keep things local
key
=
entry
return
self
.
tracked_entries
.
get
(
key
,
None
)
def
declare
(
self
,
name
,
cname
,
type
,
pos
,
visibility
,
shadow
=
0
,
is_type
=
0
,
create_wrapper
=
0
,
from_type
=
None
):
def
declare
(
self
,
name
,
cname
,
type
,
pos
,
visibility
,
shadow
=
0
,
is_type
=
0
,
create_wrapper
=
0
,
from_type
=
None
):
# Create new entry, and add to dictionary if
# Create new entry, and add to dictionary if
# name is not None. Reports a warning if already
# name is not None. Reports a warning if already
...
@@ -2093,12 +2062,6 @@ class ModuleScope(Scope):
...
@@ -2093,12 +2062,6 @@ class ModuleScope(Scope):
from
.TypeInference
import
PyObjectTypeInferer
from
.TypeInference
import
PyObjectTypeInferer
PyObjectTypeInferer
().
infer_types
(
self
)
PyObjectTypeInferer
().
infer_types
(
self
)
def
declare_autolocked
(
self
,
node
):
# Add an entry for autolocked cypclass
if
not
(
node
.
type
.
is_cyp_class
and
node
.
type
.
lock_mode
==
"autolock"
):
error
(
node
.
pos
,
"Trying to autolock a non (autolocked) cypclass object !"
)
self
.
autolocked_nodes
.
append
(
node
)
class
LocalScope
(
Scope
):
class
LocalScope
(
Scope
):
...
@@ -2125,20 +2088,10 @@ class LocalScope(Scope):
...
@@ -2125,20 +2088,10 @@ class LocalScope(Scope):
if
type
.
is_pyobject
:
if
type
.
is_pyobject
:
entry
.
init
=
"0"
entry
.
init
=
"0"
entry
.
is_arg
=
1
entry
.
is_arg
=
1
if
type
.
is_cyp_class
and
type
.
lock_mode
!=
"nolock"
:
arg_lock_state
=
self
.
declare_tracked
(
entry
)
arg_lock_state
.
is_rlocked
=
type
.
is_const
arg_lock_state
.
is_wlocked
=
not
type
.
is_const
#entry.borrowed = 1 # Not using borrowed arg refs for now
#entry.borrowed = 1 # Not using borrowed arg refs for now
self
.
arg_entries
.
append
(
entry
)
self
.
arg_entries
.
append
(
entry
)
return
entry
return
entry
def
declare_autolocked
(
self
,
node
):
# Add an entry for autolocked cypclass
if
not
(
node
.
type
.
is_cyp_class
and
node
.
type
.
lock_mode
==
"autolock"
):
error
(
node
.
pos
,
"Trying to autolock a non (autolocked) cypclass object !"
)
self
.
autolocked_nodes
.
append
(
node
)
def
declare_var
(
self
,
name
,
type
,
pos
,
def
declare_var
(
self
,
name
,
type
,
pos
,
cname
=
None
,
visibility
=
'private'
,
cname
=
None
,
visibility
=
'private'
,
api
=
0
,
in_pxd
=
0
,
is_cdef
=
0
):
api
=
0
,
in_pxd
=
0
,
is_cdef
=
0
):
...
...
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