Accessing a field of an lvalue of struct type. This is equivalent to "(value).field = ...".
Taking the address of an lvalue. This is equivalent to "&(value)".
Returns the internal gcc_jit_lvalue object.
Returns the internal gcc_jit_rvalue object.
Returns the JITType of the rvalue.
Accessing a field of an rvalue of struct type. This is equivalent to "(value).field".
Accessing a field of an rvalue of pointer type. This is equivalent to "(*value).field".
Dereferencing an rvalue of pointer type. This is equivalent to "*(value)".
Convert an rvalue to the given JITType. See JITContext.newCast for limitations.
Class wrapper for gcc_jit_lvalue