Skip to content

Commit e390bc7

Browse files
committed
Implement GC.disable and GC.enable
We also let GC.start force triggering GC because it should trigger GC even if the user disabled GC. This fixes a failure in `TestGc#test_gc_disabled_start`. TODO: The built-in Ruby binding (`gc/mmtk`) should be updated to have this behavior, too.
1 parent 9bb8f4b commit e390bc7

File tree

2 files changed

+26
-3
lines changed

2 files changed

+26
-3
lines changed

gc/default/default.c

+23-2
Original file line numberDiff line numberDiff line change
@@ -1499,13 +1499,22 @@ RVALUE_WHITE_P(rb_objspace_t *objspace, VALUE obj)
14991499
bool
15001500
rb_gc_impl_gc_enabled_p(void *objspace_ptr)
15011501
{
1502+
WHEN_USING_MMTK({
1503+
return mmtk_is_collection_enabled();
1504+
})
1505+
15021506
rb_objspace_t *objspace = objspace_ptr;
15031507
return !dont_gc_val();
15041508
}
15051509

15061510
void
15071511
rb_gc_impl_gc_enable(void *objspace_ptr)
15081512
{
1513+
WHEN_USING_MMTK({
1514+
mmtk_enable_collection();
1515+
return;
1516+
})
1517+
15091518
rb_objspace_t *objspace = objspace_ptr;
15101519

15111520
dont_gc_off();
@@ -1514,6 +1523,11 @@ rb_gc_impl_gc_enable(void *objspace_ptr)
15141523
void
15151524
rb_gc_impl_gc_disable(void *objspace_ptr, bool finish_current_gc)
15161525
{
1526+
WHEN_USING_MMTK({
1527+
mmtk_disable_collection();
1528+
return;
1529+
})
1530+
15171531
rb_objspace_t *objspace = objspace_ptr;
15181532

15191533
if (finish_current_gc) {
@@ -7444,7 +7458,11 @@ rb_gc_impl_start(void *objspace_ptr, bool full_mark, bool immediate_mark, bool i
74447458
rb_objspace_t *objspace = objspace_ptr;
74457459
#if USE_MMTK
74467460
if (rb_mmtk_enabled_p()) {
7447-
mmtk_handle_user_collection_request(GET_THREAD());
7461+
// Note: GC.start will initiates garbage collection even if manually disabled.
7462+
// Therefore, we need to force GC.
7463+
// We do a full-heap GC if full_mark is true. In StickyImmix this may or may not trigger defragmentation.
7464+
// There is currently no way to force a defragmentation GC.
7465+
mmtk_handle_user_collection_request(GET_THREAD(), true, full_mark);
74487466

74497467
gc_finalize_deferred(objspace);
74507468
}
@@ -8741,6 +8759,8 @@ objspace_malloc_increase_body(rb_objspace_t *objspace, void *mem, size_t new_siz
87418759
// object is allocated but other disjoint parts allocated by xmalloc have not been assigned
87428760
// to the fields of the object. If GC is triggered at this time, the GC may try to scan
87438761
// incomplete objects and crash.
8762+
// TODO: Re-investigate whether we shouldn't trigger GC. If triggering a GC during xmalloc
8763+
// is a problem, the default GC should crash, too.
87448764
return true;
87458765
}
87468766
#endif
@@ -8767,7 +8787,8 @@ objspace_malloc_increase_body(rb_objspace_t *objspace, void *mem, size_t new_siz
87678787
// This will trigger user-requested GC.
87688788
// `obj_free` is called during GC for dead objects.
87698789
// It will free underlying xmalloc-ed buffers for them.
8770-
mmtk_handle_user_collection_request((MMTk_VMMutatorThread)GET_THREAD());
8790+
// We don't force GC. When GC.disable is called, allocation should not trigger GC.
8791+
mmtk_handle_user_collection_request((MMTk_VMMutatorThread)GET_THREAD(), false, false);
87718792

87728793
gc_reset_malloc_info(objspace, true);
87738794
} else {

internal/mmtk.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,8 @@ void mmtk_enable_collection(void);
203203

204204
void mmtk_disable_collection(void);
205205

206+
bool mmtk_is_collection_enabled(void);
207+
206208
const char *mmtk_plan_name(void);
207209

208210
size_t mmtk_used_bytes(void);
@@ -219,7 +221,7 @@ MMTk_NullableObjectReference mmtk_get_forwarded_object(MMTk_ObjectReference obje
219221

220222
bool mmtk_is_mmtk_object(MMTk_Address addr);
221223

222-
void mmtk_handle_user_collection_request(MMTk_VMMutatorThread tls);
224+
void mmtk_handle_user_collection_request(MMTk_VMMutatorThread tls, bool force, bool exhaustive);
223225

224226
void mmtk_harness_begin(MMTk_VMMutatorThread tls);
225227

0 commit comments

Comments
 (0)