Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
peephole
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Taddeüs Kroes
peephole
Commits
eea69c60
Commit
eea69c60
authored
Dec 28, 2011
by
Richard Torenvliet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made progress with liveness analyses in dataflow.py
parent
13966882
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
63 additions
and
6 deletions
+63
-6
src/dataflow.py
src/dataflow.py
+31
-6
src/optimize.py
src/optimize.py
+3
-0
tests/test_dataflow.py
tests/test_dataflow.py
+29
-0
No files found.
src/dataflow.py
View file @
eea69c60
...
...
@@ -11,6 +11,10 @@ class BasicBlock(Block):
self
.
dominates
=
[]
self
.
dominated_by
=
[]
self
.
in_set
=
set
([])
self
.
out_set
=
set
([])
self
.
gen_set
=
set
([])
self
.
kill_set
=
set
([])
def
add_edge_to
(
self
,
block
):
if
block
not
in
self
.
edges_to
:
...
...
@@ -23,17 +27,38 @@ class BasicBlock(Block):
block
.
dominated_by
.
append
(
self
)
def
get_gen
(
self
):
pass
for
s
in
self
.
statements
:
if
s
.
is_arith
():
self
.
gen_set
.
add
(
s
[
0
])
print
'added: '
,
s
[
0
]
return
self
.
gen_set
def
get_kill
(
self
):
pass
# if self.edges_from != []:
for
backw
in
self
.
edges_from
:
self
.
kill_set
=
self
.
kill_set
|
backw
.
get_kill
()
self
.
kill_set
=
self
.
kill_set
-
self
.
get_gen
()
print
'get_kill_set'
,
self
.
kill_set
return
self
.
kill_set
def
get_in
(
self
):
pass
for
backw
in
self
.
edges_from
:
self
.
in_set
=
self
.
in_set
|
backw
.
get_out
()
print
'in_set'
,
self
.
in_set
return
self
.
in_set
def
get_out
(
self
):
pass
print
'gen_set'
,
self
.
gen_set
print
'get_in'
,
self
.
get_in
()
print
'get_kill'
,
self
.
get_kill
()
self
.
out_set
=
self
.
gen_set
|
(
self
.
get_in
()
-
self
.
get_kill
())
def
reaching_definition
(
blocks
):
generate_flow_graph
(
blocks
)
def
find_leaders
(
statements
):
"""Determine the leaders, which are:
...
...
src/optimize.py
View file @
eea69c60
...
...
@@ -101,6 +101,9 @@ def optimize_blocks(blocks):
blocks
=
optimized
return
reduce
(
lambda
a
,
b
:
a
+
b
,
blocks
,
[])
...
...
tests/test_dataflow.py
View file @
eea69c60
...
...
@@ -23,6 +23,35 @@ class TestDataflow(unittest.TestCase):
self
.
assertEqual
(
map
(
lambda
b
:
b
.
statements
,
find_basic_blocks
(
s
)),
\
[
B
(
s
[:
2
]).
statements
,
B
(
s
[
2
:
4
]).
statements
,
\
B
(
s
[
4
:]).
statements
])
# def test_get_gen(self):
# b1 = B([S('command', 'add', '$1', '$2', '$3'), \
# S('command', 'add', '$2', '$3', '$4'), \
# S('command', 'add', '$1', '$4', '$5')])
#
# self.assertEqual(b1.get_gen(), ['$1', '$2'])
# def test_get_out(self):
# b1 = B([S('command', 'add', '$1', '$2', '$3'), \
# S('command', 'add', '$2', '$3', '$4'), \
# S('command', 'add', '$1', '$4', '$5'), \
# S('command', 'j', 'b2')])
#
# b2 = B([S('command', 'add', '$3', '$5', '$6'), \
# S('command', 'add', '$1', '$2', '$3'), \
# S('command', 'add', '$6', '$4', '$5')])
#
# blocks = [b1, b2]
#
# for block in blocks:
# block.out_set = block.get_gen()
# print 'block.out_set', block.out_set
# generate_flow_graph(blocks)
# print b1.get_gen()
# print b2.get_gen()
# print b2.get_out()
def
test_generate_flow_graph_simple
(
self
):
b1
=
B
([
S
(
'command'
,
'foo'
),
S
(
'command'
,
'j'
,
'b2'
)])
...
...
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