Ruby 3.5.0dev (2025-04-03 revision 1dddc6c78b5f6dc6ae18ee04ebe44abfce3b0433)
mmtk.c
1#include <pthread.h>
2#include <stdbool.h>
3
4#include "ruby/assert.h"
5#include "ruby/atomic.h"
6#include "ruby/debug.h"
7
8#include "gc/gc.h"
9#include "gc/gc_impl.h"
10#include "gc/mmtk/mmtk.h"
11
12#include "ccan/list/list.h"
13#include "darray.h"
14
15#ifdef __APPLE__
16#include <sys/sysctl.h>
17#endif
18
19struct objspace {
20 bool measure_gc_time;
21 bool gc_stress;
22
23 size_t gc_count;
24 size_t total_gc_time;
25 size_t total_allocated_objects;
26
27 st_table *id_to_obj_tbl;
28 st_table *obj_to_id_tbl;
29 unsigned long long next_object_id;
30
31 st_table *finalizer_table;
32 struct MMTk_final_job *finalizer_jobs;
33 rb_postponed_job_handle_t finalizer_postponed_job;
34
35 struct ccan_list_head ractor_caches;
36 unsigned long live_ractor_cache_count;
37
38 pthread_mutex_t mutex;
39 bool world_stopped;
40 pthread_cond_t cond_world_stopped;
41 pthread_cond_t cond_world_started;
42 size_t start_the_world_count;
43
44 struct rb_gc_vm_context vm_context;
45};
46
48 struct ccan_list_node list_node;
49
50 MMTk_Mutator *mutator;
51 bool gc_mutator_p;
52};
53
55 struct MMTk_final_job *next;
56 enum {
57 MMTK_FINAL_JOB_DFREE,
58 MMTK_FINAL_JOB_FINALIZE,
59 } kind;
60 union {
61 struct {
62 void (*func)(void *);
63 void *data;
64 } dfree;
65 struct {
66 VALUE object_id;
67 VALUE finalizer_array;
68 } finalize;
69 } as;
70};
71
72#ifdef RB_THREAD_LOCAL_SPECIFIER
73RB_THREAD_LOCAL_SPECIFIER struct MMTk_GCThreadTLS *rb_mmtk_gc_thread_tls;
74#else
75# error We currently need language-supported TLS
76#endif
77
78#include <pthread.h>
79
80static void
81rb_mmtk_init_gc_worker_thread(MMTk_VMWorkerThread gc_thread_tls)
82{
83 rb_mmtk_gc_thread_tls = gc_thread_tls;
84}
85
86static bool
87rb_mmtk_is_mutator(void)
88{
89 return ruby_native_thread_p();
90}
91
92static void
93rb_mmtk_stop_the_world(void)
94{
95 struct objspace *objspace = rb_gc_get_objspace();
96
97 int err;
98 if ((err = pthread_mutex_lock(&objspace->mutex)) != 0) {
99 rb_bug("ERROR: cannot lock objspace->mutex: %s", strerror(err));
100 }
101
102 while (!objspace->world_stopped) {
103 pthread_cond_wait(&objspace->cond_world_stopped, &objspace->mutex);
104 }
105
106 if ((err = pthread_mutex_unlock(&objspace->mutex)) != 0) {
107 rb_bug("ERROR: cannot release objspace->mutex: %s", strerror(err));
108 }
109}
110
111static void
112rb_mmtk_resume_mutators(void)
113{
114 struct objspace *objspace = rb_gc_get_objspace();
115
116 int err;
117 if ((err = pthread_mutex_lock(&objspace->mutex)) != 0) {
118 rb_bug("ERROR: cannot lock objspace->mutex: %s", strerror(err));
119 }
120
121 objspace->world_stopped = false;
122 objspace->gc_count++;
123 pthread_cond_broadcast(&objspace->cond_world_started);
124
125 if ((err = pthread_mutex_unlock(&objspace->mutex)) != 0) {
126 rb_bug("ERROR: cannot release objspace->mutex: %s", strerror(err));
127 }
128}
129
130static void
131rb_mmtk_block_for_gc(MMTk_VMMutatorThread mutator)
132{
133 struct objspace *objspace = rb_gc_get_objspace();
134
135 size_t starting_gc_count = objspace->gc_count;
136 int lock_lev = rb_gc_vm_lock();
137 int err;
138 if ((err = pthread_mutex_lock(&objspace->mutex)) != 0) {
139 rb_bug("ERROR: cannot lock objspace->mutex: %s", strerror(err));
140 }
141
142 if (objspace->gc_count == starting_gc_count) {
143 rb_gc_event_hook(0, RUBY_INTERNAL_EVENT_GC_START);
144
145 rb_gc_initialize_vm_context(&objspace->vm_context);
146
147 mutator->gc_mutator_p = true;
148
149 struct timespec gc_start_time;
150 if (objspace->measure_gc_time) {
151 clock_gettime(CLOCK_MONOTONIC, &gc_start_time);
152 }
153
154 rb_gc_save_machine_context();
155
156 rb_gc_vm_barrier();
157
158 objspace->world_stopped = true;
159
160 pthread_cond_broadcast(&objspace->cond_world_stopped);
161
162 // Wait for GC end
163 while (objspace->world_stopped) {
164 pthread_cond_wait(&objspace->cond_world_started, &objspace->mutex);
165 }
166
167 if (objspace->measure_gc_time) {
168 struct timespec gc_end_time;
169 clock_gettime(CLOCK_MONOTONIC, &gc_end_time);
170
171 objspace->total_gc_time +=
172 (gc_end_time.tv_sec - gc_start_time.tv_sec) * (1000 * 1000 * 1000) +
173 (gc_end_time.tv_nsec - gc_start_time.tv_nsec);
174 }
175 }
176
177 if ((err = pthread_mutex_unlock(&objspace->mutex)) != 0) {
178 rb_bug("ERROR: cannot release objspace->mutex: %s", strerror(err));
179 }
180 rb_gc_vm_unlock(lock_lev);
181}
182
183static size_t
184rb_mmtk_number_of_mutators(void)
185{
186 struct objspace *objspace = rb_gc_get_objspace();
187 return objspace->live_ractor_cache_count;
188}
189
190static void
191rb_mmtk_get_mutators(void (*visit_mutator)(MMTk_Mutator *mutator, void *data), void *data)
192{
193 struct objspace *objspace = rb_gc_get_objspace();
194 struct MMTk_ractor_cache *ractor_cache;
195
196 ccan_list_for_each(&objspace->ractor_caches, ractor_cache, list_node) {
197 visit_mutator(ractor_cache->mutator, data);
198 }
199}
200
201static void
202rb_mmtk_scan_gc_roots(void)
203{
204 // rb_gc_mark_roots(rb_gc_get_objspace(), NULL);
205}
206
207static int
208pin_value(st_data_t key, st_data_t value, st_data_t data)
209{
210 rb_gc_impl_mark_and_pin((void *)data, (VALUE)value);
211
212 return ST_CONTINUE;
213}
214
215static void
216rb_mmtk_scan_objspace(void)
217{
218 struct objspace *objspace = rb_gc_get_objspace();
219
220 if (objspace->finalizer_table != NULL) {
221 st_foreach(objspace->finalizer_table, pin_value, (st_data_t)objspace);
222 }
223
224 st_foreach(objspace->obj_to_id_tbl, gc_mark_tbl_no_pin_i, (st_data_t)objspace);
225
226 struct MMTk_final_job *job = objspace->finalizer_jobs;
227 while (job != NULL) {
228 switch (job->kind) {
229 case MMTK_FINAL_JOB_DFREE:
230 break;
231 case MMTK_FINAL_JOB_FINALIZE:
232 rb_gc_impl_mark(objspace, job->as.finalize.object_id);
233 rb_gc_impl_mark(objspace, job->as.finalize.finalizer_array);
234 break;
235 default:
236 rb_bug("rb_mmtk_scan_objspace: unknown final job type %d", job->kind);
237 }
238
239 job = job->next;
240 }
241}
242
243static void
244rb_mmtk_scan_roots_in_mutator_thread(MMTk_VMMutatorThread mutator, MMTk_VMWorkerThread worker)
245{
246 if (mutator->gc_mutator_p) {
247 struct objspace *objspace = rb_gc_get_objspace();
248
249 rb_gc_worker_thread_set_vm_context(&objspace->vm_context);
250 rb_gc_mark_roots(objspace, NULL);
251 rb_gc_worker_thread_unset_vm_context(&objspace->vm_context);
252 }
253}
254
255static void
256rb_mmtk_scan_object_ruby_style(MMTk_ObjectReference object)
257{
258 rb_gc_mark_children(rb_gc_get_objspace(), (VALUE)object);
259}
260
261static void
262rb_mmtk_call_gc_mark_children(MMTk_ObjectReference object)
263{
264 rb_gc_mark_children(rb_gc_get_objspace(), (VALUE)object);
265}
266
267static void
268rb_mmtk_call_obj_free(MMTk_ObjectReference object)
269{
270 VALUE obj = (VALUE)object;
271 struct objspace *objspace = rb_gc_get_objspace();
272
273 if (RB_UNLIKELY(rb_gc_event_hook_required_p(RUBY_INTERNAL_EVENT_FREEOBJ))) {
274 rb_gc_worker_thread_set_vm_context(&objspace->vm_context);
275 rb_gc_event_hook(obj, RUBY_INTERNAL_EVENT_FREEOBJ);
276 rb_gc_worker_thread_unset_vm_context(&objspace->vm_context);
277 }
278
279 rb_gc_obj_free(objspace, obj);
280}
281
282static size_t
283rb_mmtk_vm_live_bytes(void)
284{
285 return 0;
286}
287
288static void
289make_final_job(struct objspace *objspace, VALUE obj, VALUE table)
290{
292 RUBY_ASSERT(mmtk_is_reachable((MMTk_ObjectReference)table));
294
296
297 struct MMTk_final_job *job = xmalloc(sizeof(struct MMTk_final_job));
298 job->next = objspace->finalizer_jobs;
299 job->kind = MMTK_FINAL_JOB_FINALIZE;
300 job->as.finalize.object_id = rb_obj_id((VALUE)obj);
301 job->as.finalize.finalizer_array = table;
302
303 objspace->finalizer_jobs = job;
304}
305
306static int
307rb_mmtk_update_finalizer_table_i(st_data_t key, st_data_t value, st_data_t data)
308{
310 RUBY_ASSERT(mmtk_is_reachable((MMTk_ObjectReference)value));
312
313 struct objspace *objspace = (struct objspace *)data;
314
315 if (!mmtk_is_reachable((MMTk_ObjectReference)key)) {
316 make_final_job(objspace, (VALUE)key, (VALUE)value);
317
318 rb_postponed_job_trigger(objspace->finalizer_postponed_job);
319
320 return ST_DELETE;
321 }
322
323 return ST_CONTINUE;
324}
325
326static void
327rb_mmtk_update_finalizer_table(void)
328{
329 struct objspace *objspace = rb_gc_get_objspace();
330
331 // TODO: replace with st_foreach_with_replace when GC is moving
332 st_foreach(objspace->finalizer_table, rb_mmtk_update_finalizer_table_i, (st_data_t)objspace);
333}
334
335static int
336rb_mmtk_update_table_i(VALUE val, void *data)
337{
338 if (!mmtk_is_reachable((MMTk_ObjectReference)val)) {
339 return ST_DELETE;
340 }
341
342 return ST_CONTINUE;
343}
344
345static int
346rb_mmtk_update_obj_id_tables_obj_to_id_i(st_data_t key, st_data_t val, st_data_t data)
347{
349
350 if (!mmtk_is_reachable((MMTk_ObjectReference)key)) {
351 return ST_DELETE;
352 }
353
354 return ST_CONTINUE;
355}
356
357static int
358rb_mmtk_update_obj_id_tables_id_to_obj_i(st_data_t key, st_data_t val, st_data_t data)
359{
361
362 if (!mmtk_is_reachable((MMTk_ObjectReference)val)) {
363 return ST_DELETE;
364 }
365
366 return ST_CONTINUE;
367}
368
369static void
370rb_mmtk_update_obj_id_tables(void)
371{
372 struct objspace *objspace = rb_gc_get_objspace();
373
374 st_foreach(objspace->obj_to_id_tbl, rb_mmtk_update_obj_id_tables_obj_to_id_i, 0);
375 st_foreach(objspace->id_to_obj_tbl, rb_mmtk_update_obj_id_tables_id_to_obj_i, 0);
376}
377
378static int
379rb_mmtk_global_tables_count(void)
380{
381 return RB_GC_VM_WEAK_TABLE_COUNT;
382}
383
384static void
385rb_mmtk_update_global_tables(int table)
386{
387 RUBY_ASSERT(table < RB_GC_VM_WEAK_TABLE_COUNT);
388
389 rb_gc_vm_weak_table_foreach(rb_mmtk_update_table_i, NULL, NULL, true, (enum rb_gc_vm_weak_tables)table);
390}
391
392// Bootup
393MMTk_RubyUpcalls ruby_upcalls = {
394 rb_mmtk_init_gc_worker_thread,
395 rb_mmtk_is_mutator,
396 rb_mmtk_stop_the_world,
397 rb_mmtk_resume_mutators,
398 rb_mmtk_block_for_gc,
399 rb_mmtk_number_of_mutators,
400 rb_mmtk_get_mutators,
401 rb_mmtk_scan_gc_roots,
402 rb_mmtk_scan_objspace,
403 rb_mmtk_scan_roots_in_mutator_thread,
404 rb_mmtk_scan_object_ruby_style,
405 rb_mmtk_call_gc_mark_children,
406 rb_mmtk_call_obj_free,
407 rb_mmtk_vm_live_bytes,
408 rb_mmtk_update_global_tables,
409 rb_mmtk_global_tables_count,
410 rb_mmtk_update_finalizer_table,
411 rb_mmtk_update_obj_id_tables,
412};
413
414// Use max 80% of the available memory by default for MMTk
415#define RB_MMTK_HEAP_LIMIT_PERC 80
416#define RB_MMTK_DEFAULT_HEAP_MIN (1024 * 1024)
417#define RB_MMTK_DEFAULT_HEAP_MAX (rb_mmtk_system_physical_memory() / 100 * RB_MMTK_HEAP_LIMIT_PERC)
418
419enum mmtk_heap_mode {
420 RB_MMTK_DYNAMIC_HEAP,
421 RB_MMTK_FIXED_HEAP
422};
423
424MMTk_Builder *
425rb_mmtk_builder_init(void)
426{
427 MMTk_Builder *builder = mmtk_builder_default();
428 return builder;
429}
430
431void *
432rb_gc_impl_objspace_alloc(void)
433{
434 MMTk_Builder *builder = rb_mmtk_builder_init();
435 mmtk_init_binding(builder, NULL, &ruby_upcalls, (MMTk_ObjectReference)Qundef);
436
437 return calloc(1, sizeof(struct objspace));
438}
439
440static void objspace_obj_id_init(struct objspace *objspace);
441static void gc_run_finalizers(void *data);
442
443void
444rb_gc_impl_objspace_init(void *objspace_ptr)
445{
446 struct objspace *objspace = objspace_ptr;
447
448 objspace->measure_gc_time = true;
449
450 objspace_obj_id_init(objspace);
451
452 objspace->finalizer_table = st_init_numtable();
453 objspace->finalizer_postponed_job = rb_postponed_job_preregister(0, gc_run_finalizers, objspace);
454
455 ccan_list_head_init(&objspace->ractor_caches);
456
457 objspace->mutex = (pthread_mutex_t)PTHREAD_MUTEX_INITIALIZER;
458 objspace->cond_world_stopped = (pthread_cond_t)PTHREAD_COND_INITIALIZER;
459 objspace->cond_world_started = (pthread_cond_t)PTHREAD_COND_INITIALIZER;
460}
461
462void
463rb_gc_impl_objspace_free(void *objspace_ptr)
464{
465 free(objspace_ptr);
466}
467
468void *
469rb_gc_impl_ractor_cache_alloc(void *objspace_ptr, void *ractor)
470{
471 struct objspace *objspace = objspace_ptr;
472 if (objspace->live_ractor_cache_count == 0) {
473 mmtk_initialize_collection(ractor);
474 }
475 objspace->live_ractor_cache_count++;
476
477 struct MMTk_ractor_cache *cache = malloc(sizeof(struct MMTk_ractor_cache));
478 ccan_list_add(&objspace->ractor_caches, &cache->list_node);
479
480 cache->mutator = mmtk_bind_mutator(cache);
481
482 return cache;
483}
484
485void
486rb_gc_impl_ractor_cache_free(void *objspace_ptr, void *cache_ptr)
487{
488 struct objspace *objspace = objspace_ptr;
489 struct MMTk_ractor_cache *cache = cache_ptr;
490
491 ccan_list_del(&cache->list_node);
492
493 RUBY_ASSERT(objspace->live_ractor_cache_count > 1);
494 objspace->live_ractor_cache_count--;
495
496 mmtk_destroy_mutator(cache->mutator);
497}
498
499void rb_gc_impl_set_params(void *objspace_ptr) { }
500
501static VALUE gc_verify_internal_consistency(VALUE self) { return Qnil; }
502
503void
504rb_gc_impl_init(void)
505{
506 VALUE gc_constants = rb_hash_new();
507 rb_hash_aset(gc_constants, ID2SYM(rb_intern("BASE_SLOT_SIZE")), SIZET2NUM(sizeof(VALUE) * 5));
508 rb_hash_aset(gc_constants, ID2SYM(rb_intern("RVALUE_OVERHEAD")), INT2NUM(0));
509 rb_hash_aset(gc_constants, ID2SYM(rb_intern("RVARGC_MAX_ALLOCATE_SIZE")), LONG2FIX(640));
510 // Pretend we have 5 size pools
511 rb_hash_aset(gc_constants, ID2SYM(rb_intern("SIZE_POOL_COUNT")), LONG2FIX(5));
512 OBJ_FREEZE(gc_constants);
513 rb_define_const(rb_mGC, "INTERNAL_CONSTANTS", gc_constants);
514
515 // no-ops for compatibility
516 rb_define_singleton_method(rb_mGC, "verify_internal_consistency", gc_verify_internal_consistency, 0);
517
521 rb_define_singleton_method(rb_mGC, "latest_compact_info", rb_f_notimplement, 0);
522 rb_define_singleton_method(rb_mGC, "verify_compaction_references", rb_f_notimplement, -1);
523}
524
525static size_t heap_sizes[6] = {
526 40, 80, 160, 320, 640, 0
527};
528
529size_t *
530rb_gc_impl_heap_sizes(void *objspace_ptr)
531{
532 return heap_sizes;
533}
534
535int
536rb_mmtk_obj_free_iter_wrapper(VALUE obj, void *data)
537{
538 struct objspace *objspace = data;
539
540 if (!RB_TYPE_P(obj, T_NONE)) {
541 rb_gc_obj_free_vm_weak_references(obj);
542 rb_gc_obj_free(objspace, obj);
543 }
544
545 return 0;
546}
547
548// Shutdown
549static void each_object(struct objspace *objspace, int (*func)(VALUE, void *), void *data);
550
551void
552rb_gc_impl_shutdown_free_objects(void *objspace_ptr)
553{
554 mmtk_set_gc_enabled(false);
555 each_object(objspace_ptr, rb_mmtk_obj_free_iter_wrapper, objspace_ptr);
556 mmtk_set_gc_enabled(true);
557}
558
559// GC
560void
561rb_gc_impl_start(void *objspace_ptr, bool full_mark, bool immediate_mark, bool immediate_sweep, bool compact)
562{
563 mmtk_handle_user_collection_request(rb_gc_get_ractor_newobj_cache(), true, full_mark);
564}
565
566bool
567rb_gc_impl_during_gc_p(void *objspace_ptr)
568{
569 // TODO
570 return false;
571}
572
573static void
574rb_gc_impl_prepare_heap_i(MMTk_ObjectReference obj, void *d)
575{
576 rb_gc_prepare_heap_process_object((VALUE)obj);
577}
578
579void
580rb_gc_impl_prepare_heap(void *objspace_ptr)
581{
582 mmtk_enumerate_objects(rb_gc_impl_prepare_heap_i, NULL);
583}
584
585void
586rb_gc_impl_gc_enable(void *objspace_ptr)
587{
588 mmtk_set_gc_enabled(true);
589}
590
591void
592rb_gc_impl_gc_disable(void *objspace_ptr, bool finish_current_gc)
593{
594 mmtk_set_gc_enabled(false);
595}
596
597bool
598rb_gc_impl_gc_enabled_p(void *objspace_ptr)
599{
600 return mmtk_gc_enabled_p();
601}
602
603void
604rb_gc_impl_stress_set(void *objspace_ptr, VALUE flag)
605{
606 struct objspace *objspace = objspace_ptr;
607
608 objspace->gc_stress = RTEST(flag);
609}
610
611VALUE
612rb_gc_impl_stress_get(void *objspace_ptr)
613{
614 struct objspace *objspace = objspace_ptr;
615
616 return objspace->gc_stress ? Qtrue : Qfalse;
617}
618
619VALUE
620rb_gc_impl_config_get(void *objspace_ptr)
621{
622 VALUE hash = rb_hash_new();
623
624 rb_hash_aset(hash, ID2SYM(rb_intern_const("mmtk_worker_count")), RB_ULONG2NUM(mmtk_worker_count()));
625 rb_hash_aset(hash, ID2SYM(rb_intern_const("mmtk_plan")), rb_str_new_cstr((const char *)mmtk_plan()));
626 rb_hash_aset(hash, ID2SYM(rb_intern_const("mmtk_heap_mode")), rb_str_new_cstr((const char *)mmtk_heap_mode()));
627 size_t heap_min = mmtk_heap_min();
628 if (heap_min > 0) rb_hash_aset(hash, ID2SYM(rb_intern_const("mmtk_heap_min")), RB_ULONG2NUM(heap_min));
629 rb_hash_aset(hash, ID2SYM(rb_intern_const("mmtk_heap_max")), RB_ULONG2NUM(mmtk_heap_max()));
630
631 return hash;
632}
633
634void
635rb_gc_impl_config_set(void *objspace_ptr, VALUE hash)
636{
637 // TODO
638}
639
640// Object allocation
641
642VALUE
643rb_gc_impl_new_obj(void *objspace_ptr, void *cache_ptr, VALUE klass, VALUE flags, VALUE v1, VALUE v2, VALUE v3, bool wb_protected, size_t alloc_size)
644{
645#define MMTK_ALLOCATION_SEMANTICS_DEFAULT 0
646 struct objspace *objspace = objspace_ptr;
647 struct MMTk_ractor_cache *ractor_cache = cache_ptr;
648
649 if (alloc_size > 640) rb_bug("too big");
650 for (int i = 0; i < 5; i++) {
651 if (alloc_size == heap_sizes[i]) break;
652 if (alloc_size < heap_sizes[i]) {
653 alloc_size = heap_sizes[i];
654 break;
655 }
656 }
657
658 if (objspace->gc_stress) {
659 mmtk_handle_user_collection_request(ractor_cache, false, false);
660 }
661
662 VALUE *alloc_obj = mmtk_alloc(ractor_cache->mutator, alloc_size + 8, MMTk_MIN_OBJ_ALIGN, 0, MMTK_ALLOCATION_SEMANTICS_DEFAULT);
663 alloc_obj++;
664 alloc_obj[-1] = alloc_size;
665 alloc_obj[0] = flags;
666 alloc_obj[1] = klass;
667 if (alloc_size > 16) alloc_obj[2] = v1;
668 if (alloc_size > 24) alloc_obj[3] = v2;
669 if (alloc_size > 32) alloc_obj[4] = v3;
670
671 mmtk_post_alloc(ractor_cache->mutator, (void*)alloc_obj, alloc_size + 8, MMTK_ALLOCATION_SEMANTICS_DEFAULT);
672
673 // TODO: only add when object needs obj_free to be called
674 mmtk_add_obj_free_candidate(alloc_obj);
675
676 objspace->total_allocated_objects++;
677
678 return (VALUE)alloc_obj;
679}
680
681size_t
682rb_gc_impl_obj_slot_size(VALUE obj)
683{
684 return ((VALUE *)obj)[-1];
685}
686
687size_t
688rb_gc_impl_heap_id_for_size(void *objspace_ptr, size_t size)
689{
690 for (int i = 0; i < 5; i++) {
691 if (size == heap_sizes[i]) return i;
692 if (size < heap_sizes[i]) return i;
693 }
694
695 rb_bug("size too big");
696}
697
698bool
699rb_gc_impl_size_allocatable_p(size_t size)
700{
701 return size <= 640;
702}
703
704// Malloc
705void *
706rb_gc_impl_malloc(void *objspace_ptr, size_t size)
707{
708 // TODO: don't use system malloc
709 return malloc(size);
710}
711
712void *
713rb_gc_impl_calloc(void *objspace_ptr, size_t size)
714{
715 // TODO: don't use system calloc
716 return calloc(1, size);
717}
718
719void *
720rb_gc_impl_realloc(void *objspace_ptr, void *ptr, size_t new_size, size_t old_size)
721{
722 // TODO: don't use system realloc
723 return realloc(ptr, new_size);
724}
725
726void
727rb_gc_impl_free(void *objspace_ptr, void *ptr, size_t old_size)
728{
729 // TODO: don't use system free
730 free(ptr);
731}
732
733void rb_gc_impl_adjust_memory_usage(void *objspace_ptr, ssize_t diff) { }
734
735// Marking
736void
737rb_gc_impl_mark(void *objspace_ptr, VALUE obj)
738{
739 if (RB_SPECIAL_CONST_P(obj)) return;
740
741 rb_mmtk_gc_thread_tls->object_closure.c_function(rb_mmtk_gc_thread_tls->object_closure.rust_closure,
742 rb_mmtk_gc_thread_tls->gc_context,
743 (MMTk_ObjectReference)obj,
744 false);
745}
746
747void
748rb_gc_impl_mark_and_move(void *objspace_ptr, VALUE *ptr)
749{
750 if (RB_SPECIAL_CONST_P(*ptr)) return;
751
752 // TODO: make it movable
753 rb_gc_impl_mark(objspace_ptr, *ptr);
754}
755
756void
757rb_gc_impl_mark_and_pin(void *objspace_ptr, VALUE obj)
758{
759 if (RB_SPECIAL_CONST_P(obj)) return;
760
761 // TODO: also pin
762 rb_gc_impl_mark(objspace_ptr, obj);
763}
764
765void
766rb_gc_impl_mark_maybe(void *objspace_ptr, VALUE obj)
767{
768 if (rb_gc_impl_pointer_to_heap_p(objspace_ptr, (const void *)obj)) {
769 rb_gc_impl_mark_and_pin(objspace_ptr, obj);
770 }
771}
772
773void
774rb_gc_impl_mark_weak(void *objspace_ptr, VALUE *ptr)
775{
776 mmtk_mark_weak((MMTk_ObjectReference *)ptr);
777}
778
779void
780rb_gc_impl_remove_weak(void *objspace_ptr, VALUE parent_obj, VALUE *ptr)
781{
782 mmtk_remove_weak((MMTk_ObjectReference *)ptr);
783}
784
785// Compaction
786bool
787rb_gc_impl_object_moved_p(void *objspace_ptr, VALUE obj)
788{
789 rb_bug("unimplemented");
790}
791
792VALUE
793rb_gc_impl_location(void *objspace_ptr, VALUE value)
794{
795 rb_bug("unimplemented");
796}
797
798// Write barriers
799void
800rb_gc_impl_writebarrier(void *objspace_ptr, VALUE a, VALUE b)
801{
802 struct MMTk_ractor_cache *cache = rb_gc_get_ractor_newobj_cache();
803
804 mmtk_object_reference_write_post(cache->mutator, (MMTk_ObjectReference)a);
805}
806
807void
808rb_gc_impl_writebarrier_unprotect(void *objspace_ptr, VALUE obj)
809{
810 mmtk_register_wb_unprotected_object((MMTk_ObjectReference)obj);
811}
812
813void
814rb_gc_impl_writebarrier_remember(void *objspace_ptr, VALUE obj)
815{
816 struct MMTk_ractor_cache *cache = rb_gc_get_ractor_newobj_cache();
817
818 mmtk_object_reference_write_post(cache->mutator, (MMTk_ObjectReference)obj);
819}
820
821// Heap walking
822static void
823each_objects_i(MMTk_ObjectReference obj, void *d)
824{
825 rb_darray(VALUE) *objs = d;
826
827 rb_darray_append(objs, (VALUE)obj);
828}
829
830static void
831each_object(struct objspace *objspace, int (*func)(VALUE, void *), void *data)
832{
833 rb_darray(VALUE) objs;
834 rb_darray_make(&objs, 0);
835
836 mmtk_enumerate_objects(each_objects_i, &objs);
837
838 VALUE *obj_ptr;
839 rb_darray_foreach(objs, i, obj_ptr) {
840 if (!mmtk_is_mmtk_object((MMTk_ObjectReference)*obj_ptr)) continue;
841
842 if (func(*obj_ptr, data) != 0) {
843 break;
844 }
845 }
846
847 rb_darray_free(objs);
848}
849
851 int (*func)(void *, void *, size_t, void *);
852 void *data;
853};
854
855static int
856rb_gc_impl_each_objects_i(VALUE obj, void *d)
857{
858 struct rb_gc_impl_each_objects_data *data = d;
859
860 size_t slot_size = rb_gc_impl_obj_slot_size(obj);
861
862 return data->func((void *)obj, (void *)(obj + slot_size), slot_size, data->data);
863}
864
865void
866rb_gc_impl_each_objects(void *objspace_ptr, int (*func)(void *, void *, size_t, void *), void *data)
867{
868 struct rb_gc_impl_each_objects_data each_objects_data = {
869 .func = func,
870 .data = data
871 };
872
873 each_object(objspace_ptr, rb_gc_impl_each_objects_i, &each_objects_data);
874}
875
877 void (*func)(VALUE, void *);
878 void *data;
879};
880
881static int
882rb_gc_impl_each_object_i(VALUE obj, void *d)
883{
884 struct rb_gc_impl_each_object_data *data = d;
885
886 data->func(obj, data->data);
887
888 return 0;
889}
890
891void
892rb_gc_impl_each_object(void *objspace_ptr, void (*func)(VALUE, void *), void *data)
893{
894 struct rb_gc_impl_each_object_data each_object_data = {
895 .func = func,
896 .data = data
897 };
898
899 each_object(objspace_ptr, rb_gc_impl_each_object_i, &each_object_data);
900}
901
902// Finalizers
903static VALUE
904gc_run_finalizers_get_final(long i, void *data)
905{
906 VALUE table = (VALUE)data;
907
908 return RARRAY_AREF(table, i);
909}
910
911static void
912gc_run_finalizers(void *data)
913{
914 struct objspace *objspace = data;
915
916 rb_gc_set_pending_interrupt();
917
918 while (objspace->finalizer_jobs != NULL) {
919 struct MMTk_final_job *job = objspace->finalizer_jobs;
920 objspace->finalizer_jobs = job->next;
921
922 switch (job->kind) {
923 case MMTK_FINAL_JOB_DFREE:
924 job->as.dfree.func(job->as.dfree.data);
925 break;
926 case MMTK_FINAL_JOB_FINALIZE: {
927 VALUE object_id = job->as.finalize.object_id;
928 VALUE finalizer_array = job->as.finalize.finalizer_array;
929
930 rb_gc_run_obj_finalizer(
931 job->as.finalize.object_id,
932 RARRAY_LEN(finalizer_array),
933 gc_run_finalizers_get_final,
934 (void *)finalizer_array
935 );
936
937 RB_GC_GUARD(object_id);
938 RB_GC_GUARD(finalizer_array);
939 break;
940 }
941 }
942
943 xfree(job);
944 }
945
946 rb_gc_unset_pending_interrupt();
947}
948
949void
950rb_gc_impl_make_zombie(void *objspace_ptr, VALUE obj, void (*dfree)(void *), void *data)
951{
952 if (dfree == NULL) return;
953
954 struct objspace *objspace = objspace_ptr;
955
956 struct MMTk_final_job *job = xmalloc(sizeof(struct MMTk_final_job));
957 job->kind = MMTK_FINAL_JOB_DFREE;
958 job->as.dfree.func = dfree;
959 job->as.dfree.data = data;
960
961 struct MMTk_final_job *prev;
962 do {
963 job->next = objspace->finalizer_jobs;
964 prev = RUBY_ATOMIC_PTR_CAS(objspace->finalizer_jobs, job->next, job);
965 } while (prev != job->next);
966
967 if (!ruby_free_at_exit_p()) {
968 rb_postponed_job_trigger(objspace->finalizer_postponed_job);
969 }
970}
971
972VALUE
973rb_gc_impl_define_finalizer(void *objspace_ptr, VALUE obj, VALUE block)
974{
975 struct objspace *objspace = objspace_ptr;
976 VALUE table;
977 st_data_t data;
978
979 RBASIC(obj)->flags |= FL_FINALIZE;
980
981 if (st_lookup(objspace->finalizer_table, obj, &data)) {
982 table = (VALUE)data;
983
984 /* avoid duplicate block, table is usually small */
985 {
986 long len = RARRAY_LEN(table);
987 long i;
988
989 for (i = 0; i < len; i++) {
990 VALUE recv = RARRAY_AREF(table, i);
991 if (rb_equal(recv, block)) {
992 return recv;
993 }
994 }
995 }
996
997 rb_ary_push(table, block);
998 }
999 else {
1000 table = rb_ary_new3(1, block);
1001 rb_obj_hide(table);
1002 st_add_direct(objspace->finalizer_table, obj, table);
1003 }
1004
1005 return block;
1006}
1007
1008void
1009rb_gc_impl_undefine_finalizer(void *objspace_ptr, VALUE obj)
1010{
1011 struct objspace *objspace = objspace_ptr;
1012
1013 st_data_t data = obj;
1014 st_delete(objspace->finalizer_table, &data, 0);
1015 FL_UNSET(obj, FL_FINALIZE);
1016}
1017
1018void
1019rb_gc_impl_copy_finalizer(void *objspace_ptr, VALUE dest, VALUE obj)
1020{
1021 struct objspace *objspace = objspace_ptr;
1022 VALUE table;
1023 st_data_t data;
1024
1025 if (!FL_TEST(obj, FL_FINALIZE)) return;
1026
1027 if (RB_LIKELY(st_lookup(objspace->finalizer_table, obj, &data))) {
1028 table = (VALUE)data;
1029 st_insert(objspace->finalizer_table, dest, table);
1030 FL_SET(dest, FL_FINALIZE);
1031 }
1032 else {
1033 rb_bug("rb_gc_copy_finalizer: FL_FINALIZE set but not found in finalizer_table: %s", rb_obj_info(obj));
1034 }
1035}
1036
1037static int
1038move_finalizer_from_table_i(st_data_t key, st_data_t val, st_data_t arg)
1039{
1040 struct objspace *objspace = (struct objspace *)arg;
1041
1042 make_final_job(objspace, (VALUE)key, (VALUE)val);
1043
1044 return ST_DELETE;
1045}
1046
1047void
1048rb_gc_impl_shutdown_call_finalizer(void *objspace_ptr)
1049{
1050 struct objspace *objspace = objspace_ptr;
1051
1052 while (objspace->finalizer_table->num_entries) {
1053 st_foreach(objspace->finalizer_table, move_finalizer_from_table_i, (st_data_t)objspace);
1054
1055 gc_run_finalizers(objspace);
1056 }
1057
1058 struct MMTk_RawVecOfObjRef registered_candidates = mmtk_get_all_obj_free_candidates();
1059 for (size_t i = 0; i < registered_candidates.len; i++) {
1060 VALUE obj = (VALUE)registered_candidates.ptr[i];
1061
1062 if (rb_gc_shutdown_call_finalizer_p(obj)) {
1063 rb_gc_obj_free(objspace_ptr, obj);
1064 RBASIC(obj)->flags = 0;
1065 }
1066 }
1067 mmtk_free_raw_vec_of_obj_ref(registered_candidates);
1068
1069 gc_run_finalizers(objspace);
1070}
1071
1072// Object ID
1073static int
1074object_id_cmp(st_data_t x, st_data_t y)
1075{
1076 if (RB_TYPE_P(x, T_BIGNUM)) {
1077 return !rb_big_eql(x, y);
1078 }
1079 else {
1080 return x != y;
1081 }
1082}
1083
1084static st_index_t
1085object_id_hash(st_data_t n)
1086{
1087 return FIX2LONG(rb_hash((VALUE)n));
1088}
1089
1090#define OBJ_ID_INCREMENT (RUBY_IMMEDIATE_MASK + 1)
1091#define OBJ_ID_INITIAL (OBJ_ID_INCREMENT)
1092
1093static const struct st_hash_type object_id_hash_type = {
1094 object_id_cmp,
1095 object_id_hash,
1096};
1097
1098static void
1099objspace_obj_id_init(struct objspace *objspace)
1100{
1101 objspace->id_to_obj_tbl = st_init_table(&object_id_hash_type);
1102 objspace->obj_to_id_tbl = st_init_numtable();
1103 objspace->next_object_id = OBJ_ID_INITIAL;
1104}
1105
1106VALUE
1107rb_gc_impl_object_id(void *objspace_ptr, VALUE obj)
1108{
1109 VALUE id;
1110 struct objspace *objspace = objspace_ptr;
1111
1112 unsigned int lev = rb_gc_vm_lock();
1113 if (FL_TEST(obj, FL_SEEN_OBJ_ID)) {
1114 st_data_t val;
1115 if (st_lookup(objspace->obj_to_id_tbl, (st_data_t)obj, &val)) {
1116 id = (VALUE)val;
1117 }
1118 else {
1119 rb_bug("rb_gc_impl_object_id: FL_SEEN_OBJ_ID flag set but not found in table");
1120 }
1121 }
1122 else {
1123 RUBY_ASSERT(!st_lookup(objspace->obj_to_id_tbl, (st_data_t)obj, NULL));
1124
1125 id = ULL2NUM(objspace->next_object_id);
1126 objspace->next_object_id += OBJ_ID_INCREMENT;
1127
1128 st_insert(objspace->obj_to_id_tbl, (st_data_t)obj, (st_data_t)id);
1129 st_insert(objspace->id_to_obj_tbl, (st_data_t)id, (st_data_t)obj);
1130 FL_SET(obj, FL_SEEN_OBJ_ID);
1131 }
1132 rb_gc_vm_unlock(lev);
1133
1134 return id;
1135}
1136
1137VALUE
1138rb_gc_impl_object_id_to_ref(void *objspace_ptr, VALUE object_id)
1139{
1140 struct objspace *objspace = objspace_ptr;
1141
1142 VALUE obj;
1143 if (st_lookup(objspace->id_to_obj_tbl, object_id, &obj) &&
1144 !rb_gc_impl_garbage_object_p(objspace, obj)) {
1145 return obj;
1146 }
1147
1148 if (rb_funcall(object_id, rb_intern(">="), 1, ULL2NUM(objspace->next_object_id))) {
1149 rb_raise(rb_eRangeError, "%+"PRIsVALUE" is not id value", rb_funcall(object_id, rb_intern("to_s"), 1, INT2FIX(10)));
1150 }
1151 else {
1152 rb_raise(rb_eRangeError, "%+"PRIsVALUE" is recycled object", rb_funcall(object_id, rb_intern("to_s"), 1, INT2FIX(10)));
1153 }
1154}
1155
1156// Forking
1157
1158void
1159rb_gc_impl_before_fork(void *objspace_ptr)
1160{
1161 mmtk_before_fork();
1162}
1163
1164void
1165rb_gc_impl_after_fork(void *objspace_ptr, rb_pid_t pid)
1166{
1167 mmtk_after_fork(rb_gc_get_ractor_newobj_cache());
1168}
1169
1170// Statistics
1171
1172void
1173rb_gc_impl_set_measure_total_time(void *objspace_ptr, VALUE flag)
1174{
1175 struct objspace *objspace = objspace_ptr;
1176
1177 objspace->measure_gc_time = RTEST(flag);
1178}
1179
1180bool
1181rb_gc_impl_get_measure_total_time(void *objspace_ptr)
1182{
1183 struct objspace *objspace = objspace_ptr;
1184
1185 return objspace->measure_gc_time;
1186}
1187
1188unsigned long long
1189rb_gc_impl_get_total_time(void *objspace_ptr)
1190{
1191 struct objspace *objspace = objspace_ptr;
1192
1193 return objspace->total_gc_time;
1194}
1195
1196size_t
1197rb_gc_impl_gc_count(void *objspace_ptr)
1198{
1199 struct objspace *objspace = objspace_ptr;
1200
1201 return objspace->gc_count;
1202}
1203
1204VALUE
1205rb_gc_impl_latest_gc_info(void *objspace_ptr, VALUE hash_or_key)
1206{
1207 VALUE hash = Qnil, key = Qnil;
1208
1209 if (SYMBOL_P(hash_or_key)) {
1210 key = hash_or_key;
1211 }
1212 else if (RB_TYPE_P(hash_or_key, T_HASH)) {
1213 hash = hash_or_key;
1214 }
1215 else {
1216 rb_bug("gc_info_decode: non-hash or symbol given");
1217 }
1218
1219#define SET(name, attr) \
1220 if (key == ID2SYM(rb_intern_const(#name))) \
1221 return (attr); \
1222 else if (hash != Qnil) \
1223 rb_hash_aset(hash, ID2SYM(rb_intern_const(#name)), (attr));
1224
1225 /* Hack to get StackProf working because it calls rb_gc_latest_gc_info with
1226 * the :state key and expects a result. This always returns the :none state. */
1227 SET(state, ID2SYM(rb_intern_const("none")));
1228#undef SET
1229
1230 if (!NIL_P(key)) {
1231 // Matched key should return above
1232 return Qundef;
1233 }
1234
1235 return hash;
1236}
1237
1238enum gc_stat_sym {
1239 gc_stat_sym_count,
1240 gc_stat_sym_time,
1241 gc_stat_sym_total_allocated_objects,
1242 gc_stat_sym_total_bytes,
1243 gc_stat_sym_used_bytes,
1244 gc_stat_sym_free_bytes,
1245 gc_stat_sym_starting_heap_address,
1246 gc_stat_sym_last_heap_address,
1247 gc_stat_sym_last
1248};
1249
1250static VALUE gc_stat_symbols[gc_stat_sym_last];
1251
1252static void
1253setup_gc_stat_symbols(void)
1254{
1255 if (gc_stat_symbols[0] == 0) {
1256#define S(s) gc_stat_symbols[gc_stat_sym_##s] = ID2SYM(rb_intern_const(#s))
1257 S(count);
1258 S(time);
1259 S(total_allocated_objects);
1260 S(total_bytes);
1261 S(used_bytes);
1262 S(free_bytes);
1263 S(starting_heap_address);
1264 S(last_heap_address);
1265 }
1266}
1267
1268VALUE
1269rb_gc_impl_stat(void *objspace_ptr, VALUE hash_or_sym)
1270{
1271 struct objspace *objspace = objspace_ptr;
1272 VALUE hash = Qnil, key = Qnil;
1273
1274 setup_gc_stat_symbols();
1275
1276 if (RB_TYPE_P(hash_or_sym, T_HASH)) {
1277 hash = hash_or_sym;
1278 }
1279 else if (SYMBOL_P(hash_or_sym)) {
1280 key = hash_or_sym;
1281 }
1282 else {
1283 rb_bug("non-hash or symbol given");
1284 }
1285
1286#define SET(name, attr) \
1287 if (key == gc_stat_symbols[gc_stat_sym_##name]) \
1288 return SIZET2NUM(attr); \
1289 else if (hash != Qnil) \
1290 rb_hash_aset(hash, gc_stat_symbols[gc_stat_sym_##name], SIZET2NUM(attr));
1291
1292 SET(count, objspace->gc_count);
1293 SET(time, objspace->total_gc_time / (1000 * 1000));
1294 SET(total_allocated_objects, objspace->total_allocated_objects);
1295 SET(total_bytes, mmtk_total_bytes());
1296 SET(used_bytes, mmtk_used_bytes());
1297 SET(free_bytes, mmtk_free_bytes());
1298 SET(starting_heap_address, (size_t)mmtk_starting_heap_address());
1299 SET(last_heap_address, (size_t)mmtk_last_heap_address());
1300#undef SET
1301
1302 if (!NIL_P(key)) {
1303 // Matched key should return above
1304 return Qundef;
1305 }
1306
1307 return hash;
1308}
1309
1310VALUE
1311rb_gc_impl_stat_heap(void *objspace_ptr, VALUE heap_name, VALUE hash_or_sym)
1312{
1313 if (RB_TYPE_P(hash_or_sym, T_HASH)) {
1314 return hash_or_sym;
1315 }
1316 else {
1317 return Qundef;
1318 }
1319}
1320
1321// Miscellaneous
1322
1323#define RB_GC_OBJECT_METADATA_ENTRY_COUNT 1
1324static struct rb_gc_object_metadata_entry object_metadata_entries[RB_GC_OBJECT_METADATA_ENTRY_COUNT + 1];
1325
1327rb_gc_impl_object_metadata(void *objspace_ptr, VALUE obj)
1328{
1329 static ID ID_object_id;
1330
1331 if (!ID_object_id) {
1332#define I(s) ID_##s = rb_intern(#s);
1333 I(object_id);
1334#undef I
1335 }
1336
1337 size_t n = 0;
1338
1339#define SET_ENTRY(na, v) do { \
1340 RUBY_ASSERT(n <= RB_GC_OBJECT_METADATA_ENTRY_COUNT); \
1341 object_metadata_entries[n].name = ID_##na; \
1342 object_metadata_entries[n].val = v; \
1343 n++; \
1344} while (0)
1345
1346 if (FL_TEST(obj, FL_SEEN_OBJ_ID)) SET_ENTRY(object_id, rb_obj_id(obj));
1347
1348 object_metadata_entries[n].name = 0;
1349 object_metadata_entries[n].val = 0;
1350
1351 return object_metadata_entries;
1352}
1353
1354bool
1355rb_gc_impl_pointer_to_heap_p(void *objspace_ptr, const void *ptr)
1356{
1357 if (ptr == NULL) return false;
1358 if ((uintptr_t)ptr % sizeof(void*) != 0) return false;
1359 return mmtk_is_mmtk_object((MMTk_Address)ptr);
1360}
1361
1362bool
1363rb_gc_impl_garbage_object_p(void *objspace_ptr, VALUE obj)
1364{
1365 return false;
1366}
1367
1368void rb_gc_impl_set_event_hook(void *objspace_ptr, const rb_event_flag_t event) { }
1369
1370void
1371rb_gc_impl_copy_attributes(void *objspace_ptr, VALUE dest, VALUE obj)
1372{
1373 if (mmtk_object_wb_unprotected_p((MMTk_ObjectReference)obj)) {
1374 rb_gc_impl_writebarrier_unprotect(objspace_ptr, dest);
1375 }
1376
1377 rb_gc_impl_copy_finalizer(objspace_ptr, dest, obj);
1378}
1379
1380// GC Identification
1381
1382const char *
1383rb_gc_impl_active_gc_name(void)
1384{
1385 return "mmtk";
1386}
#define RUBY_ASSERT(...)
Asserts that the given expression is truthy if and only if RUBY_DEBUG is truthy.
Definition assert.h:219
Atomic operations.
#define RUBY_ATOMIC_PTR_CAS(var, oldval, newval)
Identical to RUBY_ATOMIC_CAS, except it expects its arguments are void*.
Definition atomic.h:315
#define rb_define_singleton_method(klass, mid, func, arity)
Defines klass.mid.
unsigned int rb_postponed_job_handle_t
The type of a handle returned from rb_postponed_job_preregister and passed to rb_postponed_job_trigge...
Definition debug.h:703
void rb_postponed_job_trigger(rb_postponed_job_handle_t h)
Triggers a pre-registered job registered with rb_postponed_job_preregister, scheduling it for executi...
Definition vm_trace.c:1783
rb_postponed_job_handle_t rb_postponed_job_preregister(unsigned int flags, rb_postponed_job_func_t func, void *data)
Pre-registers a func in Ruby's postponed job preregistration table, returning an opaque handle which ...
Definition vm_trace.c:1749
#define RUBY_INTERNAL_EVENT_FREEOBJ
Object swept.
Definition event.h:94
#define RUBY_INTERNAL_EVENT_GC_START
GC started.
Definition event.h:95
uint32_t rb_event_flag_t
Represents event(s).
Definition event.h:108
static VALUE RB_FL_TEST(VALUE obj, VALUE flags)
Tests if the given flag(s) are set or not.
Definition fl_type.h:495
static void RB_FL_UNSET(VALUE obj, VALUE flags)
Clears the given flag(s).
Definition fl_type.h:681
@ RUBY_FL_FINALIZE
This flag has something to do with finalisers.
Definition fl_type.h:239
#define xfree
Old name of ruby_xfree.
Definition xmalloc.h:58
#define Qundef
Old name of RUBY_Qundef.
#define INT2FIX
Old name of RB_INT2FIX.
Definition long.h:48
#define ID2SYM
Old name of RB_ID2SYM.
Definition symbol.h:44
#define T_BIGNUM
Old name of RUBY_T_BIGNUM.
Definition value_type.h:57
#define OBJ_FREEZE
Old name of RB_OBJ_FREEZE.
Definition fl_type.h:135
#define FL_SEEN_OBJ_ID
Old name of RUBY_FL_SEEN_OBJ_ID.
Definition fl_type.h:65
#define T_NONE
Old name of RUBY_T_NONE.
Definition value_type.h:74
#define SIZET2NUM
Old name of RB_SIZE2NUM.
Definition size_t.h:62
#define xmalloc
Old name of ruby_xmalloc.
Definition xmalloc.h:53
#define LONG2FIX
Old name of RB_INT2FIX.
Definition long.h:49
#define FL_FINALIZE
Old name of RUBY_FL_FINALIZE.
Definition fl_type.h:61
#define T_HASH
Old name of RUBY_T_HASH.
Definition value_type.h:65
#define FL_SET
Old name of RB_FL_SET.
Definition fl_type.h:129
#define rb_ary_new3
Old name of rb_ary_new_from_args.
Definition array.h:658
#define ULL2NUM
Old name of RB_ULL2NUM.
Definition long_long.h:31
#define Qtrue
Old name of RUBY_Qtrue.
#define INT2NUM
Old name of RB_INT2NUM.
Definition int.h:43
#define Qnil
Old name of RUBY_Qnil.
#define Qfalse
Old name of RUBY_Qfalse.
#define FIX2LONG
Old name of RB_FIX2LONG.
Definition long.h:46
#define T_ARRAY
Old name of RUBY_T_ARRAY.
Definition value_type.h:56
#define NIL_P
Old name of RB_NIL_P.
#define FL_TEST
Old name of RB_FL_TEST.
Definition fl_type.h:131
#define FL_UNSET
Old name of RB_FL_UNSET.
Definition fl_type.h:133
#define SYMBOL_P
Old name of RB_SYMBOL_P.
Definition value_type.h:88
VALUE rb_eRangeError
RangeError exception.
Definition error.c:1434
VALUE rb_obj_hide(VALUE obj)
Make the object invisible from Ruby code.
Definition object.c:104
VALUE rb_mGC
GC module.
Definition gc.c:431
VALUE rb_equal(VALUE lhs, VALUE rhs)
This function is an optimised version of calling #==.
Definition object.c:179
VALUE rb_funcall(VALUE recv, ID mid, int n,...)
Calls a method.
Definition vm_eval.c:1099
#define rb_str_new_cstr(str)
Identical to rb_str_new, except it assumes the passed pointer is a pointer to a C string.
Definition string.h:1514
VALUE rb_f_notimplement(int argc, const VALUE *argv, VALUE obj, VALUE marker)
Raises rb_eNotImpError.
Definition vm_method.c:474
static ID rb_intern_const(const char *str)
This is a "tiny optimisation" over rb_intern().
Definition symbol.h:284
int len
Length of the buffer.
Definition io.h:8
#define RB_ULONG2NUM
Just another name of rb_ulong2num_inline.
Definition long.h:59
#define RB_GC_GUARD(v)
Prevents premature destruction of local objects.
Definition memory.h:167
#define RARRAY_LEN
Just another name of rb_array_len.
Definition rarray.h:51
#define RARRAY_AREF(a, i)
Definition rarray.h:403
#define RBASIC(obj)
Convenient casting macro.
Definition rbasic.h:40
int ruby_native_thread_p(void)
Queries if the thread which calls this function is a ruby's thread.
Definition thread.c:5551
static bool RB_SPECIAL_CONST_P(VALUE obj)
Checks if the given object is of enum ruby_special_consts.
#define RTEST
This is an old name of RB_TEST.
C99 shim for <stdbool.h>
void * rust_closure
The pointer to the Rust-level closure object.
Definition mmtk.h:45
MMTk_ObjectClosureFunction c_function
The function to be called from C.
Definition mmtk.h:41
Definition gc_impl.h:15
Definition st.h:79
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
Definition value.h:52
uintptr_t VALUE
Type that represents a Ruby object.
Definition value.h:40
static enum ruby_value_type RB_BUILTIN_TYPE(VALUE obj)
Queries the type of the object.
Definition value_type.h:182
static bool RB_TYPE_P(VALUE obj, enum ruby_value_type t)
Queries if the given object is of given type.
Definition value_type.h:376