Module Gccjit.Result

module Result: sig .. end

val code : Gccjit.result -> string -> ('a -> 'b) Ctypes.fn -> 'a -> 'b
Locate a given function within the built machine code.
val global : Gccjit.result -> string -> 'a Ctypes.typ -> 'a Ctypes.ptr
Locate a given global within the built machine code.
val release : Gccjit.result -> unit
Once we're done with the code, this unloads the built .so file. This cleans up the result; after calling this, it's no longer valid to use the result, or any code or globals that were obtained by calling Gccjit.Result.code or Gccjit.Result.global on it.