aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorLéo Gourdin <leo.gourdin@univ-grenoble-alpes.fr>2021-05-17 23:19:16 +0200
committerLéo Gourdin <leo.gourdin@univ-grenoble-alpes.fr>2021-05-17 23:19:16 +0200
commitbf443e2f2bf38c30c9b68020c7c43cd7b3e10549 (patch)
tree87696f4b78894ceb46d44b1d7e2aea9375865c5d /tools
parentee558407e59c6794daad70aab2e1e7794535367e (diff)
downloadcompcert-kvx-bf443e2f2bf38c30c9b68020c7c43cd7b3e10549.tar.gz
compcert-kvx-bf443e2f2bf38c30c9b68020c7c43cd7b3e10549.zip
preparing compiler passes and ml oracles
Diffstat (limited to 'tools')
-rw-r--r--tools/compiler_expand.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/compiler_expand.ml b/tools/compiler_expand.ml
index ddb3c21a..be3c6e19 100644
--- a/tools/compiler_expand.ml
+++ b/tools/compiler_expand.ml
@@ -51,9 +51,9 @@ PARTIAL, Always, Require, (Some "Unused globals"), "Unusedglob"
let post_rtl_passes =
[|
- PARTIAL, Always, Require, (Some "RTLpath generation"), "RTLpathLivegen", Noprint;
- PARTIAL, Always, Require, (Some "Prepass scheduling"), "RTLpathScheduler", Noprint;
- TOTAL, Always, Require, (Some "Projection to RTL"), "RTLpath", (Print (Printf.sprintf "RTL %d" ((Array.length rtl_passes) + 1)));
+ PARTIAL, Always, Require, (Some "BTL generation"), "RTLtoBTL", Noprint;
+ (*PARTIAL, Always, Require, (Some "Prepass scheduling"), "RTLpathScheduler", Noprint;*)
+ PARTIAL, Always, Require, (Some "Projection to RTL"), "BTLtoRTL", (Print (Printf.sprintf "RTL %d" ((Array.length rtl_passes) + 1)));
PARTIAL, Always, Require, (Some "Register allocation"), "Allocation", (Print "LTL 1");
PARTIAL, Always, Require, (Some "Branch tunneling"), "Tunneling", (Print "LTL 2");
PARTIAL, Always, Require, (Some "CFG linearization"), "Linearize", Noprint;