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
85049a1a
Commit
85049a1a
authored
Dec 10, 2020
by
Xavier Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor cypclass viewpoint adaptation
parent
28025b43
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
27 deletions
+21
-27
Cython/Compiler/Symtab.py
Cython/Compiler/Symtab.py
+21
-27
No files found.
Cython/Compiler/Symtab.py
View file @
85049a1a
...
@@ -3245,8 +3245,10 @@ class CConstOrVolatileScope(Scope):
...
@@ -3245,8 +3245,10 @@ class CConstOrVolatileScope(Scope):
class
QualifiedCypclassScope
(
Scope
):
class
QualifiedCypclassScope
(
Scope
):
qualifier
=
'qual'
def
__init__
(
self
,
base_type_scope
,
qualifier
):
def
__init__
(
self
,
base_type_scope
,
qualifier
=
None
):
qualifier
=
qualifier
or
self
.
qualifier
Scope
.
__init__
(
Scope
.
__init__
(
self
,
self
,
'%s_'
%
qualifier
+
base_type_scope
.
name
,
'%s_'
%
qualifier
+
base_type_scope
.
name
,
...
@@ -3265,6 +3267,19 @@ class QualifiedCypclassScope(Scope):
...
@@ -3265,6 +3267,19 @@ class QualifiedCypclassScope(Scope):
return
entry
return
entry
def
resolve
(
self
,
name
):
def
resolve
(
self
,
name
):
base_entry
=
self
.
base_type_scope
.
lookup_here
(
name
)
if
base_entry
is
None
:
return
None
alternatives
=
[]
for
e
in
base_entry
.
all_alternatives
():
entry
=
self
.
adapt
(
e
)
if
entry
is
None
:
continue
entry
.
overloaded_alternatives
=
alternatives
alternatives
.
append
(
entry
)
return
alternatives
[
0
]
def
adapt
(
self
,
base_entry
):
return
None
return
None
...
@@ -3278,25 +3293,14 @@ def qualified_cypclass_scope(base_type_scope, qualifier):
...
@@ -3278,25 +3293,14 @@ def qualified_cypclass_scope(base_type_scope, qualifier):
class
ActiveCypclassScope
(
QualifiedCypclassScope
):
class
ActiveCypclassScope
(
QualifiedCypclassScope
):
def
__init__
(
self
,
base_type_scope
):
qualifier
=
'active'
QualifiedCypclassScope
.
__init__
(
self
,
base_type_scope
,
'active'
)
def
resolve
(
self
,
name
):
def
adapt
(
self
,
base_entry
):
base_entry
=
self
.
base_type_scope
.
lookup_here
(
name
)
if
base_entry
is
None
or
base_entry
.
active_entry
is
None
:
return
None
active_alternatives
=
[]
for
e
in
base_entry
.
all_alternatives
():
# all alternatives should be equally activable
assert
e
.
active_entry
is
not
None
e
.
active_entry
.
overloaded_alternatives
=
active_alternatives
active_alternatives
.
append
(
e
.
active_entry
)
return
base_entry
.
active_entry
return
base_entry
.
active_entry
class
IsoCypclassScope
(
QualifiedCypclassScope
):
class
IsoCypclassScope
(
QualifiedCypclassScope
):
def
__init__
(
self
,
base_type_scope
):
qualifier
=
'iso'
QualifiedCypclassScope
.
__init__
(
self
,
base_type_scope
,
'iso'
)
def
adapt_arg_type
(
self
,
arg
):
def
adapt_arg_type
(
self
,
arg
):
arg
=
copy
.
copy
(
arg
)
arg
=
copy
.
copy
(
arg
)
...
@@ -3308,25 +3312,15 @@ class IsoCypclassScope(QualifiedCypclassScope):
...
@@ -3308,25 +3312,15 @@ class IsoCypclassScope(QualifiedCypclassScope):
return_type
=
viewpoint_adaptation
(
base_entry
.
type
.
return_type
)
return_type
=
viewpoint_adaptation
(
base_entry
.
type
.
return_type
)
iso_method_type
.
return_type
=
return_type
iso_method_type
.
return_type
=
return_type
iso_method_type
.
args
=
[
self
.
adapt_arg_type
(
arg
)
for
arg
in
base_entry
.
type
.
args
]
iso_method_type
.
args
=
[
self
.
adapt_arg_type
(
arg
)
for
arg
in
base_entry
.
type
.
args
]
if
hasattr
(
base_entry
.
type
,
'op_arg_struct'
):
iso_method_type
.
op_arg_struct
=
entry
.
type
.
op_arg_struct
entry
=
copy
.
copy
(
base_entry
)
entry
=
copy
.
copy
(
base_entry
)
entry
.
type
=
iso_method_type
entry
.
type
=
iso_method_type
return
entry
return
entry
def
resolve
(
self
,
name
):
def
adapt
(
self
,
base_entry
):
base_entry
=
self
.
base_type_scope
.
lookup_here
(
name
)
if
base_entry
is
None
:
return
None
if
base_entry
.
is_type
:
if
base_entry
.
is_type
:
return
base_entry
return
base_entry
if
base_entry
.
is_cfunction
:
if
base_entry
.
is_cfunction
:
iso_alternatives
=
[]
return
self
.
adapt_method_entry
(
base_entry
)
for
e
in
base_entry
.
all_alternatives
():
iso_entry
=
self
.
adapt_method_entry
(
e
)
iso_alternatives
.
append
(
iso_entry
)
iso_entry
.
overloaded_alternatives
=
iso_alternatives
return
iso_alternatives
[
0
]
else
:
else
:
base_entry_type
=
base_entry
.
type
base_entry_type
=
base_entry
.
type
adapted_type
=
viewpoint_adaptation
(
base_entry_type
)
adapted_type
=
viewpoint_adaptation
(
base_entry_type
)
...
...
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