23 lines
451 B
C
Executable File
23 lines
451 B
C
Executable File
/* compiled code */
|
|
F_HEAP code_heap;
|
|
|
|
void init_code_heap(CELL size);
|
|
|
|
bool in_code_heap_p(CELL ptr);
|
|
|
|
void jit_compile_word(F_WORD *word, CELL def, bool relocate);
|
|
|
|
typedef void (*CODE_HEAP_ITERATOR)(F_CODE_BLOCK *compiled);
|
|
|
|
void iterate_code_heap(CODE_HEAP_ITERATOR iter);
|
|
|
|
void copy_code_heap_roots(void);
|
|
|
|
void update_code_heap_roots(void);
|
|
|
|
void primitive_modify_code_heap(void);
|
|
|
|
void primitive_code_room(void);
|
|
|
|
void compact_code_heap(void);
|