JITFunctionKind

Kinds of function.

Values

ValueMeaning
EXPORTEDGCC_JIT_FUNCTION_EXPORTED

Function is defined by the client code and visible by name outside of the JIT.

INTERNALGCC_JIT_FUNCTION_INTERNAL

Function is defined by the client code, but is invisible outside of the JIT.

IMPORTEDGCC_JIT_FUNCTION_IMPORTED

Function is not defined by the client code; we're merely referring to it.

ALWAYS_INLINEGCC_JIT_FUNCTION_ALWAYS_INLINE

Function is only ever inlined into other functions, and is invisible outside of the JIT.

Meta