1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
|
(* Js_of_ocaml compiler
* http://www.ocsigen.org/js_of_ocaml/
* Copyright (C) 2010 Jérôme Vouillon
* Laboratoire PPS - CNRS Université Paris Diderot
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, with linking exception;
* either version 2.1 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*)
type t =
| ACC0
| ACC1
| ACC2
| ACC3
| ACC4
| ACC5
| ACC6
| ACC7
| ACC
| PUSH
| PUSHACC0
| PUSHACC1
| PUSHACC2
| PUSHACC3
| PUSHACC4
| PUSHACC5
| PUSHACC6
| PUSHACC7
| PUSHACC
| POP
| ASSIGN
| ENVACC1
| ENVACC2
| ENVACC3
| ENVACC4
| ENVACC
| PUSHENVACC1
| PUSHENVACC2
| PUSHENVACC3
| PUSHENVACC4
| PUSHENVACC
| PUSH_RETADDR
| APPLY
| APPLY1
| APPLY2
| APPLY3
| APPTERM
| APPTERM1
| APPTERM2
| APPTERM3
| RETURN
| RESTART
| GRAB
| CLOSURE
| CLOSUREREC
| OFFSETCLOSUREM3
| OFFSETCLOSURE0
| OFFSETCLOSURE3
| OFFSETCLOSURE
| PUSHOFFSETCLOSUREM3
| PUSHOFFSETCLOSURE0
| PUSHOFFSETCLOSURE3
| PUSHOFFSETCLOSURE
| GETGLOBAL
| PUSHGETGLOBAL
| GETGLOBALFIELD
| PUSHGETGLOBALFIELD
| SETGLOBAL
| ATOM0
| ATOM
| PUSHATOM0
| PUSHATOM
| MAKEBLOCK
| MAKEBLOCK1
| MAKEBLOCK2
| MAKEBLOCK3
| MAKEFLOATBLOCK
| GETFIELD0
| GETFIELD1
| GETFIELD2
| GETFIELD3
| GETFIELD
| GETFLOATFIELD
| SETFIELD0
| SETFIELD1
| SETFIELD2
| SETFIELD3
| SETFIELD
| SETFLOATFIELD
| VECTLENGTH
| GETVECTITEM
| SETVECTITEM
| GETBYTESCHAR
| SETBYTESCHAR
| BRANCH
| BRANCHIF
| BRANCHIFNOT
| SWITCH
| BOOLNOT
| PUSHTRAP
| POPTRAP
| RAISE
| CHECK_SIGNALS
| C_CALL1
| C_CALL2
| C_CALL3
| C_CALL4
| C_CALL5
| C_CALLN
| CONST0
| CONST1
| CONST2
| CONST3
| CONSTINT
| PUSHCONST0
| PUSHCONST1
| PUSHCONST2
| PUSHCONST3
| PUSHCONSTINT
| NEGINT
| ADDINT
| SUBINT
| MULINT
| DIVINT
| MODINT
| ANDINT
| ORINT
| XORINT
| LSLINT
| LSRINT
| ASRINT
| EQ
| NEQ
| LTINT
| LEINT
| GTINT
| GEINT
| OFFSETINT
| OFFSETREF
| ISINT
| GETMETHOD
| BEQ
| BNEQ
| BLTINT
| BLEINT
| BGTINT
| BGEINT
| ULTINT
| UGEINT
| BULTINT
| BUGEINT
| GETPUBMET
| GETDYNMET
| STOP
| EVENT
| BREAK
| RERAISE
| RAISE_NOTRACE
| GETSTRINGCHAR
| PERFORM
| RESUME
| RESUMETERM
| REPERFORMTERM
| FIRST_UNIMPLEMENTED_OP
type kind =
| KNullary
| KUnary
| KBinary
| KJump
| KCond_jump
| KCmp_jump
| KSwitch
| KClosurerec
| KClosure
| KNullaryCall
| KUnaryCall
| KBinaryCall
| KStop of int
| K_will_not_happen
type desc =
{ code : t
; kind : kind
; name : string
; opcode : int
}
val find : t -> desc
val get_instr_exn : string -> int -> desc
val gets : string -> int -> int
val getu : string -> int -> int
val gets32 : string -> int -> int32
val getu32 : string -> int -> int32
|