summaryrefslogtreecommitdiff
path: root/bytecomp/instruct.mli
diff options
context:
space:
mode:
Diffstat (limited to 'bytecomp/instruct.mli')
-rw-r--r--bytecomp/instruct.mli57
1 files changed, 0 insertions, 57 deletions
diff --git a/bytecomp/instruct.mli b/bytecomp/instruct.mli
deleted file mode 100644
index b2412029e1..0000000000
--- a/bytecomp/instruct.mli
+++ /dev/null
@@ -1,57 +0,0 @@
-(* The type of the instructions of the abstract machine *)
-
-open Lambda
-
-type label = int (* Symbolic code labels *)
-
-type instruction =
- Klabel of label
- | Kacc of int
- | Kenvacc of int
- | Kpush
- | Kpop of int
- | Kassign of int
- | Kpush_retaddr of label
- | Kapply of int (* number of arguments *)
- | Kappterm of int * int (* number of arguments, slot size *)
- | Kreturn of int (* slot size *)
- | Krestart
- | Kgrab of int (* number of arguments *)
- | Kclosure of label * int
- | Kclosurerec of label * int
- | Kgetglobal of Ident.t
- | Ksetglobal of Ident.t
- | Kconst of structured_constant
- | Kmakeblock of int * int (* size, tag *)
- | Kgetfield of int
- | Ksetfield of int
- | Ktagof
- | Kdummy of int
- | Kupdate
- | Kvectlength
- | Kgetvectitem
- | Ksetvectitem
- | Kgetstringchar
- | Ksetstringchar
- | Kbranch of label
- | Kbranchif of label
- | Kbranchifnot of label
- | Kstrictbranchif of label
- | Kstrictbranchifnot of label
- | Kswitch of label array
- | Ktranslate of (int * int * int) array
- | Kboolnot
- | Kpushtrap of label
- | Kpoptrap
- | Kraise
- | Kcheck_signals
- | Kccall of string * int
- | Knegint | Kaddint | Ksubint | Kmulint | Kdivint | Kmodint
- | Kandint | Korint | Kxorint | Klslint | Klsrint | Kasrint
- | Kintcomp of comparison
- | Koffsetint of int
- | Koffsetref of int
- | Kstop
-
-val immed_min: int
-val immed_max: int