From bf443e2f2bf38c30c9b68020c7c43cd7b3e10549 Mon Sep 17 00:00:00 2001 From: Léo Gourdin Date: Mon, 17 May 2021 23:19:16 +0200 Subject: preparing compiler passes and ml oracles --- tools/compiler_expand.ml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tools') 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; -- cgit From b7940bfaa83db66837be4d3b9d8b352e8ea4e470 Mon Sep 17 00:00:00 2001 From: Léo Gourdin Date: Tue, 18 May 2021 08:26:40 +0200 Subject: todos --- tools/compiler_expand.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/compiler_expand.ml b/tools/compiler_expand.ml index be3c6e19..29403c7e 100644 --- a/tools/compiler_expand.ml +++ b/tools/compiler_expand.ml @@ -52,7 +52,7 @@ PARTIAL, Always, Require, (Some "Unused globals"), "Unusedglob" let post_rtl_passes = [| PARTIAL, Always, Require, (Some "BTL generation"), "RTLtoBTL", Noprint; - (*PARTIAL, Always, Require, (Some "Prepass scheduling"), "RTLpathScheduler", Noprint;*) + (*TODO gourdinl 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"); -- cgit From 78fbb0e6f4c2065460a0ddb7e2e3ec94da21169f Mon Sep 17 00:00:00 2001 From: Léo Gourdin Date: Mon, 31 May 2021 23:51:31 +0200 Subject: Dupmap bugfix and some advance in Livegen --- tools/compiler_expand.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/compiler_expand.ml b/tools/compiler_expand.ml index 29403c7e..5c90af6c 100644 --- a/tools/compiler_expand.ml +++ b/tools/compiler_expand.ml @@ -52,7 +52,7 @@ PARTIAL, Always, Require, (Some "Unused globals"), "Unusedglob" let post_rtl_passes = [| PARTIAL, Always, Require, (Some "BTL generation"), "RTLtoBTL", Noprint; - (*TODO gourdinl PARTIAL, Always, Require, (Some "Prepass scheduling"), "RTLpathScheduler", Noprint;*) + PARTIAL, Always, Require, (Some "Prepass scheduling"), "BTL_Scheduler", 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"); -- cgit