@@ -8222,24 +8222,14 @@ rb_gc_impl_stat(void *objspace_ptr, VALUE hash_or_sym)
8222
8222
else if (hash != Qnil) \
8223
8223
rb_hash_aset(hash, gc_stat_symbols[gc_stat_sym_##name], SIZET2NUM(attr));
8224
8224
8225
- #if USE_MMTK
8226
- if (!rb_mmtk_enabled_p ()) {
8227
- #endif
8225
+ WHEN_NOT_USING_MMTK ({
8226
+
8228
8227
SET (count , objspace -> profile .count );
8229
8228
SET (time , (size_t )ns_to_ms (objspace -> profile .marking_time_ns + objspace -> profile .sweeping_time_ns )); // TODO: UINT64T2NUM
8230
8229
SET (marking_time , (size_t )ns_to_ms (objspace -> profile .marking_time_ns ));
8231
8230
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 );
8239
8231
8240
- #if USE_MMTK
8241
- if (!rb_mmtk_enabled_p ()) {
8242
- #endif
8232
+ /* implementation dependent counters */
8243
8233
SET (heap_allocated_pages , rb_darray_size (objspace -> heap_pages .sorted ));
8244
8234
SET (heap_empty_pages , objspace -> empty_pages_count )
8245
8235
SET (heap_allocatable_slots , objspace -> heap_pages .allocatable_slots );
@@ -8253,6 +8243,8 @@ rb_gc_impl_stat(void *objspace_ptr, VALUE hash_or_sym)
8253
8243
SET (total_freed_pages , objspace -> heap_pages .freed_pages );
8254
8244
SET (total_allocated_objects , total_allocated_objects (objspace ));
8255
8245
SET (total_freed_objects , total_freed_objects (objspace ));
8246
+ SET (malloc_increase_bytes , malloc_increase );
8247
+ SET (malloc_increase_bytes_limit , malloc_limit );
8256
8248
SET (minor_gc_count , objspace -> profile .minor_gc_count );
8257
8249
SET (major_gc_count , objspace -> profile .major_gc_count );
8258
8250
SET (compact_count , objspace -> profile .compact_count );
@@ -8262,6 +8254,11 @@ rb_gc_impl_stat(void *objspace_ptr, VALUE hash_or_sym)
8262
8254
SET (remembered_wb_unprotected_objects_limit , objspace -> rgengc .uncollectible_wb_unprotected_objects_limit );
8263
8255
SET (old_objects , objspace -> rgengc .old_objects );
8264
8256
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
+
8265
8262
#if RGENGC_PROFILE
8266
8263
SET (total_generated_normal_object_count , objspace -> profile .total_generated_normal_object_count );
8267
8264
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)
8270
8267
SET (total_remembered_normal_object_count , objspace -> profile .total_remembered_normal_object_count );
8271
8268
SET (total_remembered_shady_object_count , objspace -> profile .total_remembered_shady_object_count );
8272
8269
#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
+ })
8281
8271
8282
- #if USE_MMTK
8283
- if ( rb_mmtk_enabled_p ()) {
8272
+ WHEN_USING_MMTK ({
8273
+ SET ( count , rb_mmtk_gc_count ());
8284
8274
SET (mmtk_free_bytes , mmtk_free_bytes ());
8285
8275
SET (mmtk_total_bytes , mmtk_total_bytes ());
8286
8276
SET (mmtk_used_bytes , mmtk_used_bytes ());
8287
8277
SET (mmtk_starting_heap_address , (size_t ) mmtk_starting_heap_address ());
8288
8278
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
+ })
8291
8281
#undef SET
8292
8282
8293
8283
if (!NIL_P (key )) {
0 commit comments