Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
gccjit.ml1 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 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466(* The MIT License (MIT) Copyright (c) 2015 Nicolas Ojeda Bar <n.oje.bar@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. *) exception Error of string open Gccjit_bindings_types (* open C.Types *) open C.Functions type context = gcc_jit_context type result = gcc_jit_result type location = gcc_jit_location type param = gcc_jit_param type lvalue = gcc_jit_lvalue type rvalue = gcc_jit_rvalue type field = gcc_jit_field type struct_ = gcc_jit_struct type type_ = gcc_jit_type type function_ = gcc_jit_function type block = gcc_jit_block let null_loc = Ctypes.(coerce (ptr void) gcc_jit_location null) type unary_op = Negate | Bitwise_negate | Logical_negate type binary_op = | Plus | Minus | Mult | Divide | Modulo | Bitwise_and | Bitwise_xor | Bitwise_or | Logical_and | Logical_or type comparison = Eq | Ne | Lt | Le | Gt | Ge let binary_op = function | Plus -> GCC_JIT_BINARY_OP_PLUS | Minus -> GCC_JIT_BINARY_OP_MINUS | Mult -> GCC_JIT_BINARY_OP_MULT | Divide -> GCC_JIT_BINARY_OP_DIVIDE | Modulo -> GCC_JIT_BINARY_OP_MODULO | Bitwise_and -> GCC_JIT_BINARY_OP_BITWISE_AND | Bitwise_xor -> GCC_JIT_BINARY_OP_BITWISE_XOR | Bitwise_or -> GCC_JIT_BINARY_OP_BITWISE_OR | Logical_and -> GCC_JIT_BINARY_OP_LOGICAL_AND | Logical_or -> GCC_JIT_BINARY_OP_LOGICAL_OR let comparison = function | Eq -> GCC_JIT_COMPARISON_EQ | Ne -> GCC_JIT_COMPARISON_NE | Lt -> GCC_JIT_COMPARISON_LT | Le -> GCC_JIT_COMPARISON_LE | Gt -> GCC_JIT_COMPARISON_GT | Ge -> GCC_JIT_COMPARISON_GE let unary_op = function | Negate -> GCC_JIT_UNARY_OP_MINUS | Bitwise_negate -> GCC_JIT_UNARY_OP_BITWISE_NEGATE | Logical_negate -> GCC_JIT_UNARY_OP_LOGICAL_NEGATE let wrap1 ctx f x1 = let y = f x1 in match gcc_jit_context_get_first_error ctx with None -> y | Some err -> raise (Error err) let wrap2 ctx f x1 x2 = let y = f x1 x2 in match gcc_jit_context_get_first_error ctx with None -> y | Some err -> raise (Error err) let wrap3 ctx f x1 x2 x3 = let y = f x1 x2 x3 in match gcc_jit_context_get_first_error ctx with None -> y | Some err -> raise (Error err) let wrap4 ctx f x1 x2 x3 x4 = let y = f x1 x2 x3 x4 in match gcc_jit_context_get_first_error ctx with None -> y | Some err -> raise (Error err) let wrap5 ctx f x1 x2 x3 x4 x5 = let y = f x1 x2 x3 x4 x5 in match gcc_jit_context_get_first_error ctx with None -> y | Some err -> raise (Error err) let wrap6 ctx f x1 x2 x3 x4 x5 x6 = let y = f x1 x2 x3 x4 x5 x6 in match gcc_jit_context_get_first_error ctx with None -> y | Some err -> raise (Error err) let wrap8 ctx f x1 x2 x3 x4 x5 x6 x7 x8 = let y = f x1 x2 x3 x4 x5 x6 x7 x8 in match gcc_jit_context_get_first_error ctx with None -> y | Some err -> raise (Error err) let get_first_error ctx = gcc_jit_context_get_first_error ctx module Context = struct let create () = gcc_jit_context_acquire () let release ctx = gcc_jit_context_release ctx let create_child ctx = wrap1 ctx gcc_jit_context_new_child_context ctx let dump_to_file ctx ?(update_locs = false) path = wrap3 ctx gcc_jit_context_dump_to_file ctx path (if update_locs then 1 else 0) external int_of_file_descr : Unix.file_descr -> int = "%identity" let set_logfile ctx = function | None -> wrap4 ctx gcc_jit_context_set_logfile ctx Ctypes.null 0 0 | Some fd -> let f = match fdopen (int_of_file_descr fd) "a" with None -> raise (Error "fdopen") | Some f -> f in wrap4 ctx gcc_jit_context_set_logfile ctx f 0 0 let dump_reproducer_to_file ctx path = wrap2 ctx gcc_jit_context_dump_reproducer_to_file ctx path type _ context_option = | Progname : string context_option | Optimization_level : int context_option | Debuginfo : bool context_option | Dump_initial_tree : bool context_option | Dump_initial_gimple : bool context_option | Dump_generated_code : bool context_option | Dump_summary : bool context_option | Dump_everything : bool context_option | Selfcheck_gc : bool context_option | Keep_intermediates : bool context_option let set_option : type a. context -> a context_option -> a -> unit = fun ctx opt v -> match opt with | Progname -> wrap3 ctx gcc_jit_context_set_str_option ctx GCC_JIT_STR_OPTION_PROGNAME v | Optimization_level -> wrap3 ctx gcc_jit_context_set_int_option ctx GCC_JIT_INT_OPTION_OPTIMIZATION_LEVEL v | Debuginfo -> wrap3 ctx gcc_jit_context_set_bool_option ctx GCC_JIT_BOOL_OPTION_DEBUGINFO v | Dump_initial_tree -> wrap3 ctx gcc_jit_context_set_bool_option ctx GCC_JIT_BOOL_OPTION_DUMP_INITIAL_TREE v | Dump_initial_gimple -> wrap3 ctx gcc_jit_context_set_bool_option ctx GCC_JIT_BOOL_OPTION_DUMP_INITIAL_GIMPLE v | Dump_generated_code -> wrap3 ctx gcc_jit_context_set_bool_option ctx GCC_JIT_BOOL_OPTION_DUMP_GENERATED_CODE v | Dump_summary -> wrap3 ctx gcc_jit_context_set_bool_option ctx GCC_JIT_BOOL_OPTION_DUMP_SUMMARY v | Dump_everything -> wrap3 ctx gcc_jit_context_set_bool_option ctx GCC_JIT_BOOL_OPTION_DUMP_EVERYTHING v | Selfcheck_gc -> wrap3 ctx gcc_jit_context_set_bool_option ctx GCC_JIT_BOOL_OPTION_SELFCHECK_GC v | Keep_intermediates -> wrap3 ctx gcc_jit_context_set_bool_option ctx GCC_JIT_BOOL_OPTION_KEEP_INTERMEDIATES v let compile ctx = let res = wrap1 ctx gcc_jit_context_compile ctx in (* Gc.finalise gcc_jit_result_release res; *) res type output_kind = Assembler | Object_file | Dynamic_library | Executable let output_kind = function | Assembler -> GCC_JIT_OUTPUT_KIND_ASSEMBLER | Object_file -> GCC_JIT_OUTPUT_KIND_OBJECT_FILE | Dynamic_library -> GCC_JIT_OUTPUT_KIND_DYNAMIC_LIBRARY | Executable -> GCC_JIT_OUTPUT_KIND_EXECUTABLE let compile_to_file ctx kind path = wrap3 ctx gcc_jit_context_compile_to_file ctx (output_kind kind) path end module Field = struct let create ctx ?(loc = null_loc) typ name = wrap4 ctx gcc_jit_context_new_field ctx loc typ name let to_string fld = gcc_jit_object_get_debug_string (gcc_jit_field_as_object fld) end module Struct = struct let create ctx ?(loc = null_loc) name fields = let a = Ctypes.CArray.of_list gcc_jit_field fields in wrap3 ctx gcc_jit_context_new_struct_type ctx loc name (List.length fields) (Ctypes.CArray.start a) let opaque ctx ?(loc = null_loc) name = wrap2 ctx gcc_jit_context_new_opaque_struct ctx loc name let set_fields ?(loc = null_loc) struc fields = let ctx = gcc_jit_object_get_context (gcc_jit_type_as_object (gcc_jit_struct_as_type struc)) in let a = Ctypes.CArray.of_list gcc_jit_field fields in wrap3 ctx gcc_jit_struct_set_fields struc loc (List.length fields) (Ctypes.CArray.start a) let to_string struc = gcc_jit_object_get_debug_string (gcc_jit_type_as_object (gcc_jit_struct_as_type struc)) end module Type = struct type type_kind = | Void | Void_ptr | Bool | Char | Signed_char | Unsigned_char | Short | Unsigned_short | Int | Unsigned_int | Long | Unsigned_long | Long_long | Unsigned_long_long | Float | Double | Long_double | Const_char_ptr | Size_t | File_ptr | Complex_float | Complex_double | Complex_long_double let type_kind = function | Void -> GCC_JIT_TYPE_VOID | Void_ptr -> GCC_JIT_TYPE_VOID_PTR | Bool -> GCC_JIT_TYPE_BOOL | Char -> GCC_JIT_TYPE_CHAR | Signed_char -> GCC_JIT_TYPE_SIGNED_CHAR | Unsigned_char -> GCC_JIT_TYPE_UNSIGNED_CHAR | Short -> GCC_JIT_TYPE_SHORT | Unsigned_short -> GCC_JIT_TYPE_UNSIGNED_SHORT | Int -> GCC_JIT_TYPE_INT | Unsigned_int -> GCC_JIT_TYPE_UNSIGNED_INT | Long -> GCC_JIT_TYPE_LONG | Unsigned_long -> GCC_JIT_TYPE_UNSIGNED_LONG | Long_long -> GCC_JIT_TYPE_LONG_LONG | Unsigned_long_long -> GCC_JIT_TYPE_UNSIGNED_LONG_LONG | Float -> GCC_JIT_TYPE_FLOAT | Double -> GCC_JIT_TYPE_DOUBLE | Long_double -> GCC_JIT_TYPE_LONG_DOUBLE | Const_char_ptr -> GCC_JIT_TYPE_CONST_CHAR_PTR | Size_t -> GCC_JIT_TYPE_SIZE_T | File_ptr -> GCC_JIT_TYPE_FILE_PTR | Complex_float -> GCC_JIT_TYPE_COMPLEX_FLOAT | Complex_double -> GCC_JIT_TYPE_COMPLEX_DOUBLE | Complex_long_double -> GCC_JIT_TYPE_COMPLEX_LONG_DOUBLE let get ctx kind = wrap2 ctx gcc_jit_context_get_type ctx (type_kind kind) let int ctx ?(signed = false) n = wrap3 ctx gcc_jit_context_get_int_type ctx (if signed then 1 else 0) n let pointer typ = let ctx = gcc_jit_object_get_context (gcc_jit_type_as_object typ) in wrap1 ctx gcc_jit_type_get_pointer typ let const typ = let ctx = gcc_jit_object_get_context (gcc_jit_type_as_object typ) in wrap1 ctx gcc_jit_type_get_const typ let volatile typ = let ctx = gcc_jit_object_get_context (gcc_jit_type_as_object typ) in wrap1 ctx gcc_jit_type_get_volatile typ let array ctx ?(loc = null_loc) typ n = wrap4 ctx gcc_jit_context_new_array_type ctx loc typ n let function_ptr ctx ?(loc = null_loc) ?(variadic = false) args ret = let a = Ctypes.CArray.of_list gcc_jit_type args in wrap5 ctx gcc_jit_context_new_function_ptr_type ctx loc ret (List.length args) (Ctypes.CArray.start a) (if variadic then 1 else 0) let struct_ str = let ctx = gcc_jit_object_get_context (gcc_jit_type_as_object (gcc_jit_struct_as_type str)) in wrap1 ctx gcc_jit_struct_as_type str let union ctx ?(loc = null_loc) name fields = let a = Ctypes.CArray.of_list gcc_jit_field fields in wrap3 ctx gcc_jit_context_new_union_type ctx loc name (List.length fields) (Ctypes.CArray.start a) let to_string typ = gcc_jit_object_get_debug_string (gcc_jit_type_as_object typ) end module RValue = struct let type_of rval = let ctx = gcc_jit_object_get_context (gcc_jit_rvalue_as_object rval) in wrap1 ctx gcc_jit_rvalue_get_type rval let int ctx typ n = wrap3 ctx gcc_jit_context_new_rvalue_from_int ctx typ n let zero ctx typ : rvalue = wrap2 ctx gcc_jit_context_zero ctx typ let one ctx typ = wrap2 ctx gcc_jit_context_one ctx typ let double ctx typ f = wrap3 ctx gcc_jit_context_new_rvalue_from_double ctx typ f let ptr ctx typ ptr = wrap3 ctx gcc_jit_context_new_rvalue_from_ptr ctx typ (Ctypes.to_voidp ptr) let null ctx typ = wrap2 ctx gcc_jit_context_null ctx typ let string_literal ctx str = wrap2 ctx gcc_jit_context_new_string_literal ctx str let unary_op ctx ?(loc = null_loc) op typ rval = wrap5 ctx gcc_jit_context_new_unary_op ctx loc (unary_op op) typ rval let binary_op ctx ?(loc = null_loc) op typ rval1 rval2 = wrap6 ctx gcc_jit_context_new_binary_op ctx loc (binary_op op) typ rval1 rval2 let comparison ctx ?(loc = null_loc) cmp rval1 rval2 = wrap5 ctx gcc_jit_context_new_comparison ctx loc (comparison cmp) rval1 rval2 let call ctx ?(loc = null_loc) fn args = let a = Ctypes.CArray.of_list gcc_jit_rvalue args in wrap5 ctx gcc_jit_context_new_call ctx loc fn (List.length args) (Ctypes.CArray.start a) let indirect_call ctx ?(loc = null_loc) rval args = let a = Ctypes.CArray.of_list gcc_jit_rvalue args in wrap5 ctx gcc_jit_context_new_call_through_ptr ctx loc rval (List.length args) (Ctypes.CArray.start a) let cast ctx ?(loc = null_loc) rval typ = wrap4 ctx gcc_jit_context_new_cast ctx loc rval typ let access_field ?(loc = null_loc) rval fld = let ctx = gcc_jit_object_get_context (gcc_jit_rvalue_as_object rval) in wrap3 ctx gcc_jit_rvalue_access_field rval loc fld let lvalue lval = let ctx = gcc_jit_object_get_context (gcc_jit_lvalue_as_object lval) in wrap1 ctx gcc_jit_lvalue_as_rvalue lval let param param = let ctx = gcc_jit_object_get_context (gcc_jit_param_as_object param) in wrap1 ctx gcc_jit_param_as_rvalue param let to_string rval = gcc_jit_object_get_debug_string (gcc_jit_rvalue_as_object rval) end module LValue = struct let address ?(loc = null_loc) lval = let ctx = gcc_jit_object_get_context (gcc_jit_lvalue_as_object lval) in wrap2 ctx gcc_jit_lvalue_get_address lval loc type global_kind = Exported | Internal | Imported let global_kind = function | Exported -> GCC_JIT_GLOBAL_EXPORTED | Imported -> GCC_JIT_GLOBAL_IMPORTED | Internal -> GCC_JIT_GLOBAL_INTERNAL let global ctx ?(loc = null_loc) kind typ name = wrap4 ctx gcc_jit_context_new_global ctx loc (global_kind kind) typ name let deref ?(loc = null_loc) rval = let ctx = gcc_jit_object_get_context (gcc_jit_rvalue_as_object rval) in wrap2 ctx gcc_jit_rvalue_dereference rval loc let deref_field ?(loc = null_loc) rval fld = let ctx = gcc_jit_object_get_context (gcc_jit_rvalue_as_object rval) in wrap3 ctx gcc_jit_rvalue_dereference_field rval loc fld let access_array ?(loc = null_loc) rval1 rval2 = let ctx = gcc_jit_object_get_context (gcc_jit_rvalue_as_object rval1) in wrap3 ctx gcc_jit_context_new_array_access ctx loc rval1 rval2 let access_field ?(loc = null_loc) lval fld = let ctx = gcc_jit_object_get_context (gcc_jit_lvalue_as_object lval) in wrap3 ctx gcc_jit_lvalue_access_field lval loc fld let param param = let ctx = gcc_jit_object_get_context (gcc_jit_param_as_object param) in wrap1 ctx gcc_jit_param_as_lvalue param let to_string lval = gcc_jit_object_get_debug_string (gcc_jit_lvalue_as_object lval) end module Param = struct let create ctx ?(loc = null_loc) typ name = wrap4 ctx gcc_jit_context_new_param ctx loc typ name let to_string param = gcc_jit_object_get_debug_string (gcc_jit_param_as_object param) end module Function = struct type function_kind = Exported | Internal | Imported | Always_inline let function_kind = function | Exported -> GCC_JIT_FUNCTION_EXPORTED | Internal -> GCC_JIT_FUNCTION_INTERNAL | Imported -> GCC_JIT_FUNCTION_IMPORTED | Always_inline -> GCC_JIT_FUNCTION_ALWAYS_INLINE let create ctx ?(loc = null_loc) ?(variadic = false) kind ret name args = let a = Ctypes.CArray.of_list gcc_jit_param args in wrap8 ctx gcc_jit_context_new_function ctx loc (function_kind kind) ret name (List.length args) (Ctypes.CArray.start a) (if variadic then 1 else 0) let builtin ctx name = wrap2 ctx gcc_jit_context_get_builtin_function ctx name let param fn i = let ctx = gcc_jit_object_get_context (gcc_jit_function_as_object fn) in wrap2 ctx gcc_jit_function_get_param fn i let dump_dot fn path = let ctx = gcc_jit_object_get_context (gcc_jit_function_as_object fn) in wrap2 ctx gcc_jit_function_dump_to_dot fn path let local ?(loc = null_loc) fn typ name = let ctx = gcc_jit_object_get_context (gcc_jit_function_as_object fn) in wrap4 ctx gcc_jit_function_new_local fn loc typ name let to_string fn = gcc_jit_object_get_debug_string (gcc_jit_function_as_object fn) end module Block = struct let create ?name fn = let ctx = gcc_jit_object_get_context (gcc_jit_function_as_object fn) in wrap2 ctx gcc_jit_function_new_block fn name let parent blk = let ctx = gcc_jit_object_get_context (gcc_jit_block_as_object blk) in wrap1 ctx gcc_jit_block_get_function blk let eval ?(loc = null_loc) blk rval = let ctx = gcc_jit_object_get_context (gcc_jit_block_as_object blk) in wrap3 ctx gcc_jit_block_add_eval blk loc rval let assign ?(loc = null_loc) blk lval rval = let ctx = gcc_jit_object_get_context (gcc_jit_block_as_object blk) in wrap4 ctx gcc_jit_block_add_assignment blk loc lval rval let assign_op ?(loc = null_loc) blk lval op rval = let ctx = gcc_jit_object_get_context (gcc_jit_block_as_object blk) in wrap5 ctx gcc_jit_block_add_assignment_op blk loc lval (binary_op op) rval let comment ?(loc = null_loc) blk str = let ctx = gcc_jit_object_get_context (gcc_jit_block_as_object blk) in wrap3 ctx gcc_jit_block_add_comment blk loc str let cond_jump ?(loc = null_loc) blk rval blk1 blk2 = let ctx = gcc_jit_object_get_context (gcc_jit_block_as_object blk) in wrap5 ctx gcc_jit_block_end_with_conditional blk loc rval blk1 blk2 let jump ?(loc = null_loc) blk blk1 = let ctx = gcc_jit_object_get_context (gcc_jit_block_as_object blk) in wrap3 ctx gcc_jit_block_end_with_jump blk loc blk1 let return ?(loc = null_loc) blk rval = let ctx = gcc_jit_object_get_context (gcc_jit_block_as_object blk) in wrap3 ctx gcc_jit_block_end_with_return blk loc rval let return_void ?(loc = null_loc) blk = let ctx = gcc_jit_object_get_context (gcc_jit_block_as_object blk) in wrap2 ctx gcc_jit_block_end_with_void_return blk loc let to_string blk = gcc_jit_object_get_debug_string (gcc_jit_block_as_object blk) end module Location = struct let create ctx path line col = wrap4 ctx gcc_jit_context_new_location ctx path line col let to_string loc = gcc_jit_object_get_debug_string (gcc_jit_location_as_object loc) end module Result = struct let code res name fn = let p = gcc_jit_result_get_code res name in Ctypes.(coerce (ptr void) (Foreign.funptr ~name fn) p) let global res name typ = let p = gcc_jit_result_get_global res name in Ctypes.(coerce (ptr void) (ptr typ)) p let release res = gcc_jit_result_release res end