aboutsummaryrefslogtreecommitdiffstats
path: root/scheduling/BTLtypes.ml
diff options
context:
space:
mode:
Diffstat (limited to 'scheduling/BTLtypes.ml')
-rw-r--r--scheduling/BTLtypes.ml15
1 files changed, 15 insertions, 0 deletions
diff --git a/scheduling/BTLtypes.ml b/scheduling/BTLtypes.ml
new file mode 100644
index 00000000..12ca30e8
--- /dev/null
+++ b/scheduling/BTLtypes.ml
@@ -0,0 +1,15 @@
+open Registers
+
+type inst_info = {
+ mutable inumb : int;
+ mutable pcond : bool option;
+ mutable visited : bool;
+ mutable liveins: Regset.t;
+}
+
+type block_info = {
+ mutable bnumb : int;
+ mutable visited : bool;
+ s_output_regs : Regset.t;
+ typing : RTLtyping.regenv;
+}