Home
last modified time | relevance | path

Searched refs:GCT_ENTRY (Results 1 – 4 of 4) sorted by relevance

/dports/lang/mit-scheme/mit-scheme-9.2/src/microcode/
H A Dfasdump.c338 (GCT_ENTRY ((&table), TC_PRIMITIVE)) = handle_primitive; in fasdump_table()
339 (GCT_ENTRY ((&table), TC_MANIFEST_CLOSURE)) = handle_manifest_closure; in fasdump_table()
340 (GCT_ENTRY ((&table), TC_LINKAGE_SECTION)) = handle_linkage_section; in fasdump_table()
341 (GCT_ENTRY ((&table), TC_INTERNED_SYMBOL)) = handle_symbol; in fasdump_table()
342 (GCT_ENTRY ((&table), TC_BROKEN_HEART)) = handle_broken_heart; in fasdump_table()
343 (GCT_ENTRY ((&table), TC_UNINTERNED_SYMBOL)) = handle_symbol; in fasdump_table()
344 (GCT_ENTRY ((&table), TC_VARIABLE)) = handle_variable; in fasdump_table()
345 (GCT_ENTRY ((&table), TC_ENVIRONMENT)) = handle_environment; in fasdump_table()
346 (GCT_ENTRY ((&table), TC_WEAK_CONS)) = gc_handle_pair; in fasdump_table()
347 (GCT_ENTRY ((&table), TC_EPHEMERON)) = handle_ephemeron; in fasdump_table()
H A Dfasload.c496 (GCT_ENTRY ((&table), TC_WEAK_CONS)) = gc_handle_pair; in relocate_block_table()
497 (GCT_ENTRY ((&table), TC_EPHEMERON)) = gc_handle_unaligned_vector; in relocate_block_table()
498 (GCT_ENTRY ((&table), TC_PRIMITIVE)) = handle_primitive; in relocate_block_table()
499 (GCT_ENTRY ((&table), TC_BROKEN_HEART)) = gc_handle_non_pointer; in relocate_block_table()
625 (GCT_ENTRY ((&table), TC_WEAK_CONS)) = gc_handle_pair; in intern_block_table()
626 (GCT_ENTRY ((&table), TC_EPHEMERON)) = gc_handle_unaligned_vector; in intern_block_table()
627 (GCT_ENTRY ((&table), TC_INTERNED_SYMBOL)) = intern_handle_symbol; in intern_block_table()
628 (GCT_ENTRY ((&table), TC_BROKEN_HEART)) = gc_handle_non_pointer; in intern_block_table()
H A Dgcloop.c313 (GCT_ENTRY (table, i)) = name; \
356 (GCT_ENTRY (table, TC_WEAK_CONS)) = gc_handle_weak_pair; in initialize_gc_table()
357 (GCT_ENTRY (table, TC_EPHEMERON)) = gc_handle_ephemeron; in initialize_gc_table()
358 (GCT_ENTRY (table, TC_BIG_FLONUM)) = gc_handle_aligned_vector; in initialize_gc_table()
359 (GCT_ENTRY (table, TC_COMPILED_CODE_BLOCK)) = gc_handle_aligned_vector; in initialize_gc_table()
435 = ((* (GCT_ENTRY (current_gc_table, (OBJECT_TYPE (object))))) in run_gc_loop()
960 scan = ((* (GCT_ENTRY (current_gc_table, (OBJECT_TYPE (object))))) in scan_newspace_addr()
H A Dgccode.h112 #define GCT_ENTRY(table, type) (((table)->handlers) [(type)]) macro