module Function:sig
..end
type
function_kind =
| |
Exported |
(* |
Function is defined by the client code and visible by name outside of the
JIT.
| *) |
| |
Internal |
(* |
Function is defined by the client code, but is invisible outside of the
JIT. Analogous to a
"static" function. | *) |
| |
Imported |
(* |
Function is not defined by the client code; we're merely referring to it.
Analogous to using an
"extern" function from a header file. | *) |
| |
Always_inline |
(* |
Function is only ever inlined into other functions, and is invisible
outside of the JIT. Analogous to prefixing with
"inline" and adding
__attribute__((always_inline)) . Inlining will only occur when the
optimization level is above 0; when optimization is off, this is
essentially the same as FUNCTION_Internal . | *) |
val create : Gccjit.context ->
?loc:Gccjit.location ->
?variadic:bool ->
function_kind ->
Gccjit.type_ -> string -> Gccjit.param list -> Gccjit.function_
val builtin : Gccjit.context -> string -> Gccjit.function_
val param : Gccjit.function_ -> int -> Gccjit.param
val dump_dot : Gccjit.function_ -> string -> unit
val local : ?loc:Gccjit.location ->
Gccjit.function_ -> Gccjit.type_ -> string -> Gccjit.lvalue
val to_string : Gccjit.function_ -> string