aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/compiler_expand.ml5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/compiler_expand.ml b/tools/compiler_expand.ml
index e5cab30c..7e1e0181 100644
--- a/tools/compiler_expand.ml
+++ b/tools/compiler_expand.ml
@@ -35,11 +35,14 @@ TOTAL, (Option "optim_move_loop_invariants"), (Some "Renumbering for LICM"), "Re
PARTIAL, (Option "optim_move_loop_invariants"), (Some "CSE3 for LICM"), "CSE3";
PARTIAL, (Option "optim_move_loop_invariants"), (Some "Redundancy elimination for LICM"), "Deadcode";
TOTAL, (Option "all_loads_nontrap"), None, "Allnontrap";
-PARTIAL, Always, (Some "Unused globals"), "Unusedglob"
+PARTIAL, Always, (Some "Unused globals"), "Unusedglob";
|];;
let post_rtl_passes =
[|
+ PARTIAL, Always, (Some "RTLpath generation"), "RTLpathLivegen", Noprint;
+ PARTIAL, Always, (Some "Prepass scheduling"), "RTLpathScheduler", Noprint;
+ TOTAL, Always, (Some "Projection to RTL"), "RTLpath", (Print (Printf.sprintf "RTL %d" ((Array.length rtl_passes) + 1)));
PARTIAL, Always, (Some "Register allocation"), "Allocation", (Print "LTL");
TOTAL, Always, (Some "Branch tunneling"), "Tunneling", Noprint;
PARTIAL, Always, (Some "CFG linearization"), "Linearize", Noprint;