Lines Matching refs:DEBUG_printf
39 #define DEBUG_printf DEBUG_printf macro
42 #define DEBUG_printf(...) (void)0 macro
112 …DEBUG_printf("Initializing GC heap: %p..%p = " UINT_FMT " bytes\n", start, end, (byte *)end - (byt… in gc_init()
168 DEBUG_printf("GC layout:\n"); in gc_init()
169 …DEBUG_printf(" alloc table at %p, length " UINT_FMT " bytes, " UINT_FMT " blocks\n", MP_STATE_MEM… in gc_init()
171 …DEBUG_printf(" finaliser table at %p, length " UINT_FMT " bytes, " UINT_FMT " blocks\n", MP_STATE… in gc_init()
173 …DEBUG_printf(" pool at %p, length " UINT_FMT " bytes, " UINT_FMT " blocks\n", MP_STATE_MEM(gc_poo… in gc_init()
201 #define TRACE_MARK(block, ptr) DEBUG_printf("gc_mark(%p)\n", ptr)
297 DEBUG_printf("gc_sweep(%p)\n", (void *)PTR_FROM_BLOCK(block)); in gc_sweep()
441 DEBUG_printf("gc_alloc(" UINT_FMT " bytes -> " UINT_FMT " blocks)\n", n_bytes, n_blocks); in gc_alloc()
490 DEBUG_printf("gc_alloc(" UINT_FMT "): no free mem, triggering GC\n", n_bytes); in gc_alloc()
523 DEBUG_printf("gc_alloc(%p)\n", ret_ptr); in gc_alloc()
583 DEBUG_printf("gc_free(%p)\n", ptr); in gc_free()
793 DEBUG_printf("gc_realloc(%p -> %p)\n", ptr_in, ptr_out); in gc_realloc()