From 3c2d40f55db9527d35b7ef2f1a25dfc82a19a842 Mon Sep 17 00:00:00 2001 From: Paweł Dybiec Date: Sun, 23 Dec 2018 17:09:57 +0100 Subject: Start of regalloc --- source/xi_lib/plugin.ml | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source/xi_lib/plugin.ml') diff --git a/source/xi_lib/plugin.ml b/source/xi_lib/plugin.ml index 33e6e4e..7069924 100644 --- a/source/xi_lib/plugin.ml +++ b/source/xi_lib/plugin.ml @@ -39,6 +39,9 @@ module type MAKE_MIPS_LOWER = functor (T:COMPILER_TOOLBOX) -> MIPS_LOWER module type MAKE_SPILLING = functor () -> SPILLING +module type MAKE_REGISTER_COALESCING = functor () -> REGISTER_COALESCING + + module type PLUGIN = sig val version: string @@ -82,4 +85,6 @@ module type PLUGIN = sig val make_spilling: (module MAKE_SPILLING) option val make_reachability_analysis: (module MAKE_REACHABILITY_ANALYSIS) option + + val make_register_coalescing: (module MAKE_REGISTER_COALESCING ) option end \ No newline at end of file -- cgit 1.4.1