Gccjit.LValueTaking the address of an lvalue; analogous to &(EXPR) in C.
val global :
context ->
?loc:location ->
global_kind ->
type_ ->
string ->
lvalueAdd a new global variable of the given type and name to the context.
The global_kind parameter determines the visibility of the global outside of the result.
Accessing a field of an rvalue of pointer type, analogous (EXPR)->field in C, itself equivalent to (\*EXPR).FIELD
Given an rvalue of pointer type T *, get at the element T at the given index, using standard C array indexing rules i.e. each increment of index corresponds to sizeof(T) bytes. Analogous to PTR[INDEX] in C (or, indeed, to PTR + INDEX).
val to_string : lvalue -> stringGet a human-readable description of this object.