JITGlobalKind

Kinds of global.

Values

ValueMeaning
EXPORTEDGCC_JIT_GLOBAL_EXPORTED

Global is defined by the client code and visible by name outside of this JIT context.

INTERNALGCC_JIT_GLOBAL_INTERNAL

Global is defined by the client code, but is invisible outside of this JIT context. Analogous to a "static" global.

IMPORTEDGCC_JIT_GLOBAL_IMPORTED

Global is not defined by the client code; we're merely referring to it. Analogous to using an "extern" global.

Meta