Skip to content

Commit b6bcdcf

Browse files
committed
Sync stat with upstream and fix stat[:count]
Synchronized the code of rb_gc_impl_stat with the master branch. When using MMTk, `GC.stat[:count]` will print the GC count in the MMTk binding.
1 parent c2cd371 commit b6bcdcf

File tree

1 file changed

+15
-25
lines changed

1 file changed

+15
-25
lines changed

gc/default/default.c

+15-25
Original file line numberDiff line numberDiff line change
@@ -8222,24 +8222,14 @@ rb_gc_impl_stat(void *objspace_ptr, VALUE hash_or_sym)
82228222
else if (hash != Qnil) \
82238223
rb_hash_aset(hash, gc_stat_symbols[gc_stat_sym_##name], SIZET2NUM(attr));
82248224

8225-
#if USE_MMTK
8226-
if (!rb_mmtk_enabled_p()) {
8227-
#endif
8225+
WHEN_NOT_USING_MMTK({
8226+
82288227
SET(count, objspace->profile.count);
82298228
SET(time, (size_t)ns_to_ms(objspace->profile.marking_time_ns + objspace->profile.sweeping_time_ns)); // TODO: UINT64T2NUM
82308229
SET(marking_time, (size_t)ns_to_ms(objspace->profile.marking_time_ns));
82318230
SET(sweeping_time, (size_t)ns_to_ms(objspace->profile.sweeping_time_ns));
8232-
#if USE_MMTK
8233-
}
8234-
#endif
8235-
/* implementation dependent counters */
8236-
SET(total_allocated_objects, total_allocated_objects(objspace));
8237-
SET(malloc_increase_bytes, malloc_increase);
8238-
SET(malloc_increase_bytes_limit, malloc_limit);
82398231

8240-
#if USE_MMTK
8241-
if (!rb_mmtk_enabled_p()) {
8242-
#endif
8232+
/* implementation dependent counters */
82438233
SET(heap_allocated_pages, rb_darray_size(objspace->heap_pages.sorted));
82448234
SET(heap_empty_pages, objspace->empty_pages_count)
82458235
SET(heap_allocatable_slots, objspace->heap_pages.allocatable_slots);
@@ -8253,6 +8243,8 @@ rb_gc_impl_stat(void *objspace_ptr, VALUE hash_or_sym)
82538243
SET(total_freed_pages, objspace->heap_pages.freed_pages);
82548244
SET(total_allocated_objects, total_allocated_objects(objspace));
82558245
SET(total_freed_objects, total_freed_objects(objspace));
8246+
SET(malloc_increase_bytes, malloc_increase);
8247+
SET(malloc_increase_bytes_limit, malloc_limit);
82568248
SET(minor_gc_count, objspace->profile.minor_gc_count);
82578249
SET(major_gc_count, objspace->profile.major_gc_count);
82588250
SET(compact_count, objspace->profile.compact_count);
@@ -8262,6 +8254,11 @@ rb_gc_impl_stat(void *objspace_ptr, VALUE hash_or_sym)
82628254
SET(remembered_wb_unprotected_objects_limit, objspace->rgengc.uncollectible_wb_unprotected_objects_limit);
82638255
SET(old_objects, objspace->rgengc.old_objects);
82648256
SET(old_objects_limit, objspace->rgengc.old_objects_limit);
8257+
#if RGENGC_ESTIMATE_OLDMALLOC
8258+
SET(oldmalloc_increase_bytes, objspace->rgengc.oldmalloc_increase);
8259+
SET(oldmalloc_increase_bytes_limit, objspace->rgengc.oldmalloc_increase_limit);
8260+
#endif
8261+
82658262
#if RGENGC_PROFILE
82668263
SET(total_generated_normal_object_count, objspace->profile.total_generated_normal_object_count);
82678264
SET(total_generated_shady_object_count, objspace->profile.total_generated_shady_object_count);
@@ -8270,24 +8267,17 @@ rb_gc_impl_stat(void *objspace_ptr, VALUE hash_or_sym)
82708267
SET(total_remembered_normal_object_count, objspace->profile.total_remembered_normal_object_count);
82718268
SET(total_remembered_shady_object_count, objspace->profile.total_remembered_shady_object_count);
82728269
#endif /* RGENGC_PROFILE */
8273-
#if USE_MMTK
8274-
}
8275-
#endif
8276-
8277-
#if RGENGC_ESTIMATE_OLDMALLOC
8278-
SET(oldmalloc_increase_bytes, objspace->rgengc.oldmalloc_increase);
8279-
SET(oldmalloc_increase_bytes_limit, objspace->rgengc.oldmalloc_increase_limit);
8280-
#endif
8270+
})
82818271

8282-
#if USE_MMTK
8283-
if (rb_mmtk_enabled_p()) {
8272+
WHEN_USING_MMTK({
8273+
SET(count, rb_mmtk_gc_count());
82848274
SET(mmtk_free_bytes, mmtk_free_bytes());
82858275
SET(mmtk_total_bytes, mmtk_total_bytes());
82868276
SET(mmtk_used_bytes, mmtk_used_bytes());
82878277
SET(mmtk_starting_heap_address, (size_t) mmtk_starting_heap_address());
82888278
SET(mmtk_last_heap_address, (size_t) mmtk_last_heap_address());
8289-
}
8290-
#endif
8279+
// TODO: Add more statistics in a way similar to the default GC, if applicable.
8280+
})
82918281
#undef SET
82928282

82938283
if (!NIL_P(key)) {

0 commit comments

Comments
 (0)