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
fd60f13d
Commit
fd60f13d
authored
Dec 30, 2011
by
Taddeus Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed infinite loop in optimization phase.
parent
e0b4e598
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
32 additions
and
20 deletions
+32
-20
main.py
main.py
+1
-1
src/optimize/__init__.py
src/optimize/__init__.py
+12
-1
src/optimize/advanced.py
src/optimize/advanced.py
+3
-3
src/optimize/redundancies.py
src/optimize/redundancies.py
+9
-7
src/program.py
src/program.py
+3
-4
src/statement.py
src/statement.py
+4
-4
No files found.
main.py
View file @
fd60f13d
...
...
@@ -13,7 +13,7 @@ if __name__ == '__main__':
# Parse file
program
=
parse_file
(
argv
[
1
])
program
.
debug
=
True
program
.
verbose
=
1
if
len
(
argv
)
>
3
:
# Save input assembly in new file for easy comparison
...
...
src/optimize/__init__.py
View file @
fd60f13d
...
...
@@ -12,13 +12,21 @@ def optimize(program, verbose=0):
o
=
program
.
count_instructions
()
changed
=
True
iterations
=
0
while
changed
:
print
'main iteration'
iterations
+=
1
if
verbose
>
1
:
print
'main iteration %d'
,
iterations
changed
=
False
# Optimize on a global level
if
program
.
optimize_global
():
if
verbose
>
1
:
print
'changed on global level'
changed
=
True
# Perform dataflow analysis on new blocks
...
...
@@ -26,6 +34,9 @@ def optimize(program, verbose=0):
# Optimize basic blocks
if
program
.
optimize_blocks
():
if
verbose
>
1
:
print
'changed on block level'
changed
=
True
# Count number of instructions after optimization
...
...
src/optimize/advanced.py
View file @
fd60f13d
...
...
@@ -274,7 +274,7 @@ def fold_constants(block):
del
register
[
reg
]
known
.
append
((
reg
,
'unknown'
))
if
block
.
debug
and
len
(
known
):
if
block
.
verbose
and
len
(
known
):
s
.
set_inline_comment
(
','
.
join
([
' %s = %s'
%
k
for
k
in
known
]))
return
changed
...
...
@@ -401,7 +401,7 @@ def eliminate_dead_code(block):
for
reg
in
s
.
get_def
():
if
is_reg_dead_after
(
reg
,
block
,
n
):
# Statement is redefined later, so this statement is useless
if
block
.
debug
:
if
block
.
verbose
:
s
.
stype
=
'comment'
s
.
options
[
'block'
]
=
False
s
.
set_inline_comment
(
' dead register %s'
%
reg
)
...
...
@@ -411,7 +411,7 @@ def eliminate_dead_code(block):
changed
=
True
if
not
block
.
debug
:
if
not
block
.
verbose
:
block
.
apply_filter
(
lambda
s
:
not
hasattr
(
s
,
'remove'
))
return
changed
src/optimize/redundancies.py
View file @
fd60f13d
...
...
@@ -128,6 +128,7 @@ def remove_redundant_jumps(statements):
changed
=
False
statements
.
reset
()
while
not
statements
.
end
():
s
=
statements
.
read
()
...
...
@@ -140,13 +141,14 @@ def remove_redundant_jumps(statements):
statements
.
replace
(
1
,
[])
changed
=
True
return
True
return
changed
def
remove_redundant_branch_jumps
(
statements
):
"""Optimize statement sequences on a global level."""
changed
=
False
statements
.
reset
()
while
not
statements
.
end
():
s
=
statements
.
read
()
...
...
src/program.py
View file @
fd60f13d
...
...
@@ -21,8 +21,8 @@ class Program(Block):
if
hasattr
(
self
,
'statements'
):
return
self
.
statements
# Only add block start and end comments when in
debug
mode
if
add_block_comments
and
self
.
debug
:
# Only add block start and end comments when in
verbose
mode
if
add_block_comments
and
self
.
verbose
:
get_id
=
lambda
b
:
b
.
bid
statements
=
[]
...
...
@@ -75,7 +75,6 @@ class Program(Block):
changed
=
False
for
block
in
self
.
blocks
:
print
'block iteration'
if
remove_redundancies
(
block
)
\
|
eliminate_common_subexpressions
(
block
)
\
|
fold_constants
(
block
)
\
...
...
@@ -90,7 +89,7 @@ class Program(Block):
self
.
blocks
=
find_basic_blocks
(
self
.
statements
)
for
b
in
self
.
blocks
:
b
.
debug
=
self
.
debug
b
.
verbose
=
self
.
verbose
# Remove the old statement list, since it will probably change
del
self
.
statements
...
...
src/statement.py
View file @
fd60f13d
...
...
@@ -231,7 +231,7 @@ class Statement:
class Block:
bid = 1
def __init__(self, statements=[],
debug
=False):
def __init__(self, statements=[],
verbose
=False):
self.statements = statements
self.pointer = 0
...
...
@@ -239,7 +239,7 @@ class Block:
self.bid = Block.bid
Block.bid += 1
self.
debug = debug
self.
verbose = verbose
def __str__(self):
return '
<
Block
bid
=%
d
statements
=%
d
>
' % (self.bid, len(self))
...
...
@@ -288,7 +288,7 @@ class Block:
start = self.pointer - 1
# Add a message in inline comments
if self.
debug
:
if self.
verbose
:
if len(message):
message = '
' + message
...
...
@@ -313,7 +313,7 @@ class Block:
if index == None:
index = self.pointer
if self.
debug
and len(message):
if self.
verbose
and len(message):
statement.set_inline_comment('
' + message)
self.statements.insert(index, statement)
...
...
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