Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
CertiCompil
CompCert-KVX
Commits
df103897
Commit
df103897
authored
Feb 10, 2021
by
Sylvain Boulmé
Browse files
insert CSE after constant propagation and before CSE2
=> useful to have a nice generated code for || (and also probably &&)
parent
716687e1
Changes
1
Hide whitespace changes
Inline
Side-by-side
tools/compiler_expand.ml
View file @
df103897
...
...
@@ -32,6 +32,7 @@ PARTIAL, Always, NoRequire, (Some "Unrolling the body of innermost loops"), "Unr
TOTAL
,
Always
,
NoRequire
,
(
Some
"Renumbering pre constprop"
)
,
"Renumber"
;
TOTAL
,
(
Option
"optim_constprop"
)
,
Require
,
(
Some
"Constant propagation"
)
,
"Constprop"
;
TOTAL
,
Always
,
NoRequire
,
(
Some
"Renumbering pre CSE"
)
,
"Renumber"
;
PARTIAL
,
(
Option
"optim_CSE"
)
,
Require
,
(
Some
"CSE"
)
,
"CSE"
;
TOTAL
,
(
Option
"optim_CSE2"
)
,
Require
,
(
Some
"CSE2"
)
,
"CSE2"
;
PARTIAL
,
(
Option
"optim_CSE3"
)
,
Require
,
(
Some
"CSE3"
)
,
"CSE3"
;
TOTAL
,
(
Option
"optim_CSE3"
)
,
Require
,
(
Some
"Kill useless moves after CSE3"
)
,
"KillUselessMoves"
;
...
...
Write
Preview
Supports
Markdown
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