14#include "ruby/internal/config.h"
19#if defined(__wasm__) && !defined(__EMSCRIPTEN__)
20# include "wasm/setjmp.h"
21# include "wasm/machine.h"
29#ifndef HAVE_MALLOC_USABLE_SIZE
31# define HAVE_MALLOC_USABLE_SIZE
32# define malloc_usable_size(a) _msize(a)
33# elif defined HAVE_MALLOC_SIZE
34# define HAVE_MALLOC_USABLE_SIZE
35# define malloc_usable_size(a) malloc_size(a)
39#ifdef HAVE_MALLOC_USABLE_SIZE
40# ifdef RUBY_ALTERNATIVE_MALLOC_HEADER
42# elif defined(HAVE_MALLOC_H)
44# elif defined(HAVE_MALLOC_NP_H)
45# include <malloc_np.h>
46# elif defined(HAVE_MALLOC_MALLOC_H)
47# include <malloc/malloc.h>
57#ifdef HAVE_SYS_RESOURCE_H
58# include <sys/resource.h>
61#if defined _WIN32 || defined __CYGWIN__
63#elif defined(HAVE_POSIX_MEMALIGN)
64#elif defined(HAVE_MEMALIGN)
71#include <emscripten.h>
75#ifdef HAVE_SYS_PRCTL_H
83#include "debug_counter.h"
84#include "eval_intern.h"
88#include "internal/class.h"
89#include "internal/compile.h"
90#include "internal/complex.h"
91#include "internal/concurrent_set.h"
92#include "internal/cont.h"
93#include "internal/error.h"
94#include "internal/eval.h"
95#include "internal/gc.h"
96#include "internal/hash.h"
97#include "internal/imemo.h"
98#include "internal/io.h"
99#include "internal/numeric.h"
100#include "internal/object.h"
101#include "internal/proc.h"
102#include "internal/rational.h"
103#include "internal/sanitizers.h"
104#include "internal/struct.h"
105#include "internal/symbol.h"
106#include "internal/thread.h"
107#include "internal/variable.h"
108#include "internal/warnings.h"
118#include "ruby_assert.h"
119#include "ruby_atomic.h"
124#include "vm_callinfo.h"
125#include "ractor_core.h"
135rb_gc_print_backtrace(
void)
137 rb_print_backtrace(stderr);
141rb_gc_vm_lock(
const char *file,
int line)
143 unsigned int lev = 0;
144 rb_vm_lock_enter(&lev, file, line);
149rb_gc_vm_unlock(
unsigned int lev,
const char *file,
int line)
151 rb_vm_lock_leave(&lev, file, line);
155rb_gc_cr_lock(
const char *file,
int line)
158 rb_vm_lock_enter_cr(GET_RACTOR(), &lev, file, line);
163rb_gc_cr_unlock(
unsigned int lev,
const char *file,
int line)
165 rb_vm_lock_leave_cr(GET_RACTOR(), &lev, file, line);
169rb_gc_vm_lock_no_barrier(
const char *file,
int line)
171 unsigned int lev = 0;
172 rb_vm_lock_enter_nb(&lev, file, line);
177rb_gc_vm_unlock_no_barrier(
unsigned int lev,
const char *file,
int line)
179 rb_vm_lock_leave_nb(&lev, file, line);
183rb_gc_vm_barrier(
void)
189rb_gc_get_ractor_newobj_cache(
void)
191 return GET_RACTOR()->newobj_cache;
196rb_gc_initialize_vm_context(
struct rb_gc_vm_context *context)
199 context->ec = GET_EC();
203rb_gc_worker_thread_set_vm_context(
struct rb_gc_vm_context *context)
207 GC_ASSERT(rb_current_execution_context(
false) == NULL);
209#ifdef RB_THREAD_LOCAL_SPECIFIER
210 rb_current_ec_set(context->ec);
212 native_tls_set(ruby_current_ec_key, context->ec);
217rb_gc_worker_thread_unset_vm_context(
struct rb_gc_vm_context *context)
221 GC_ASSERT(rb_current_execution_context(
true) == context->ec);
223#ifdef RB_THREAD_LOCAL_SPECIFIER
224 rb_current_ec_set(NULL);
226 native_tls_set(ruby_current_ec_key, NULL);
234 return ruby_vm_event_flags & event;
240 if (LIKELY(!rb_gc_event_hook_required_p(event)))
return;
243 if (!ec->cfp)
return;
245 EXEC_EVENT_HOOK(ec, event, ec->cfp->self, 0, 0, 0, obj);
249rb_gc_get_objspace(
void)
251 return GET_VM()->gc.objspace;
256rb_gc_ractor_newobj_cache_foreach(
void (*func)(
void *cache,
void *data),
void *data)
259 if (RB_LIKELY(ruby_single_main_ractor)) {
261 ccan_list_empty(&GET_VM()->ractor.set) ||
262 (ccan_list_top(&GET_VM()->ractor.set,
rb_ractor_t, vmlr_node) == ruby_single_main_ractor &&
263 ccan_list_tail(&GET_VM()->ractor.set,
rb_ractor_t, vmlr_node) == ruby_single_main_ractor)
266 func(ruby_single_main_ractor->newobj_cache, data);
269 ccan_list_for_each(&GET_VM()->ractor.set, r, vmlr_node) {
270 func(r->newobj_cache, data);
276rb_gc_run_obj_finalizer(
VALUE objid,
long count,
VALUE (*callback)(
long i,
void *data),
void *data)
287#define RESTORE_FINALIZER() (\
288 ec->cfp = saved.cfp, \
289 ec->cfp->sp = saved.sp, \
290 ec->errinfo = saved.errinfo)
292 saved.errinfo = ec->errinfo;
294 saved.sp = ec->cfp->sp;
298 ASSERT_vm_unlocking();
299 rb_ractor_ignore_belonging(
true);
301 enum ruby_tag_type state = EC_EXEC_TAG();
302 if (state != TAG_NONE) {
305 VALUE failed_final = saved.final;
308 rb_warn(
"Exception in finalizer %+"PRIsVALUE, failed_final);
309 rb_ec_error_print(ec, ec->errinfo);
313 for (
long i = saved.finished; RESTORE_FINALIZER(), i < count; saved.finished = ++i) {
314 saved.final = callback(i, data);
318 rb_ractor_ignore_belonging(
false);
319#undef RESTORE_FINALIZER
323rb_gc_set_pending_interrupt(
void)
326 ec->interrupt_mask |= PENDING_INTERRUPT_MASK;
330rb_gc_unset_pending_interrupt(
void)
333 ec->interrupt_mask &= ~PENDING_INTERRUPT_MASK;
337rb_gc_multi_ractor_p(
void)
339 return rb_multi_ractor_p();
343rb_gc_shutdown_call_finalizer_p(
VALUE obj)
347 if (!ruby_free_at_exit_p() && (!
DATA_PTR(obj) || !
RDATA(obj)->dfree))
return false;
348 if (rb_obj_is_thread(obj))
return false;
349 if (rb_obj_is_mutex(obj))
return false;
350 if (rb_obj_is_fiber(obj))
return false;
351 if (rb_ractor_p(obj))
return false;
352 if (rb_obj_is_fstring_table(obj))
return false;
353 if (rb_obj_is_symbol_table(obj))
return false;
367 return ruby_free_at_exit_p();
372rb_gc_get_shape(
VALUE obj)
374 return (uint32_t)rb_obj_shape_id(obj);
378rb_gc_set_shape(
VALUE obj, uint32_t shape_id)
380 RBASIC_SET_SHAPE_ID(obj, (uint32_t)shape_id);
384rb_gc_rebuild_shape(
VALUE obj,
size_t heap_id)
388 return (uint32_t)rb_shape_transition_heap(obj, heap_id);
391void rb_vm_update_references(
void *ptr);
393#define rb_setjmp(env) RUBY_SETJMP(env)
394#define rb_jmp_buf rb_jmpbuf_t
395#undef rb_data_object_wrap
397#if !defined(MAP_ANONYMOUS) && defined(MAP_ANON)
398#define MAP_ANONYMOUS MAP_ANON
401#define unless_objspace(objspace) \
403 rb_vm_t *unless_objspace_vm = GET_VM(); \
404 if (unless_objspace_vm) objspace = unless_objspace_vm->gc.objspace; \
407#define RMOVED(obj) ((struct RMoved *)(obj))
409#define TYPED_UPDATE_IF_MOVED(_objspace, _type, _thing) do { \
410 if (gc_object_moved_p_internal((_objspace), (VALUE)(_thing))) { \
411 *(_type *)&(_thing) = (_type)gc_location_internal(_objspace, (VALUE)_thing); \
415#define UPDATE_IF_MOVED(_objspace, _thing) TYPED_UPDATE_IF_MOVED(_objspace, VALUE, _thing)
417#if RUBY_MARK_FREE_DEBUG
418int ruby_gc_debug_indent = 0;
421#ifndef RGENGC_OBJ_INFO
422# define RGENGC_OBJ_INFO RGENGC_CHECK_MODE
425#ifndef CALC_EXACT_MALLOC_SIZE
426# define CALC_EXACT_MALLOC_SIZE 0
431static size_t malloc_offset = 0;
432#if defined(HAVE_MALLOC_USABLE_SIZE)
434gc_compute_malloc_offset(
void)
445 for (offset = 0; offset <= 16; offset += 8) {
446 size_t allocated = (64 - offset);
447 void *test_ptr = malloc(allocated);
448 size_t wasted = malloc_usable_size(test_ptr) - allocated;
459gc_compute_malloc_offset(
void)
467rb_malloc_grow_capa(
size_t current,
size_t type_size)
469 size_t current_capacity = current;
470 if (current_capacity < 4) {
471 current_capacity = 4;
473 current_capacity *= type_size;
476 size_t new_capacity = (current_capacity * 2);
479 if (rb_popcount64(new_capacity) != 1) {
480 new_capacity = (size_t)(1 << (64 - nlz_int64(new_capacity)));
483 new_capacity -= malloc_offset;
484 new_capacity /= type_size;
485 if (current > new_capacity) {
486 rb_bug(
"rb_malloc_grow_capa: current_capacity=%zu, new_capacity=%zu, malloc_offset=%zu", current, new_capacity, malloc_offset);
492static inline struct rbimpl_size_overflow_tag
493size_mul_add_overflow(size_t x, size_t y, size_t z)
495 struct rbimpl_size_overflow_tag t = rbimpl_size_mul_overflow(x, y);
496 struct rbimpl_size_overflow_tag u = rbimpl_size_add_overflow(t.result, z);
497 return (
struct rbimpl_size_overflow_tag) { t.overflowed || u.overflowed, u.result };
500static inline struct rbimpl_size_overflow_tag
501size_mul_add_mul_overflow(size_t x, size_t y, size_t z, size_t w)
503 struct rbimpl_size_overflow_tag t = rbimpl_size_mul_overflow(x, y);
504 struct rbimpl_size_overflow_tag u = rbimpl_size_mul_overflow(z, w);
505 struct rbimpl_size_overflow_tag v = rbimpl_size_add_overflow(t.result, u.result);
506 return (
struct rbimpl_size_overflow_tag) { t.overflowed || u.overflowed || v.overflowed, v.result };
509PRINTF_ARGS(NORETURN(
static void gc_raise(
VALUE,
const char*, ...)), 2, 3);
512size_mul_or_raise(
size_t x,
size_t y,
VALUE exc)
514 struct rbimpl_size_overflow_tag t = rbimpl_size_mul_overflow(x, y);
515 if (LIKELY(!t.overflowed)) {
518 else if (rb_during_gc()) {
524 "integer overflow: %"PRIuSIZE
527 x, y, (
size_t)SIZE_MAX);
532rb_size_mul_or_raise(
size_t x,
size_t y,
VALUE exc)
534 return size_mul_or_raise(x, y, exc);
538size_mul_add_or_raise(
size_t x,
size_t y,
size_t z,
VALUE exc)
540 struct rbimpl_size_overflow_tag t = size_mul_add_overflow(x, y, z);
541 if (LIKELY(!t.overflowed)) {
544 else if (rb_during_gc()) {
550 "integer overflow: %"PRIuSIZE
554 x, y, z, (
size_t)SIZE_MAX);
559rb_size_mul_add_or_raise(
size_t x,
size_t y,
size_t z,
VALUE exc)
561 return size_mul_add_or_raise(x, y, z, exc);
565size_mul_add_mul_or_raise(
size_t x,
size_t y,
size_t z,
size_t w,
VALUE exc)
567 struct rbimpl_size_overflow_tag t = size_mul_add_mul_overflow(x, y, z, w);
568 if (LIKELY(!t.overflowed)) {
571 else if (rb_during_gc()) {
577 "integer overflow: %"PRIdSIZE
582 x, y, z, w, (
size_t)SIZE_MAX);
586#if defined(HAVE_RB_GC_GUARDED_PTR_VAL) && HAVE_RB_GC_GUARDED_PTR_VAL
588volatile VALUE rb_gc_guarded_val;
590rb_gc_guarded_ptr_val(
volatile VALUE *ptr,
VALUE val)
592 rb_gc_guarded_val = val;
598static const char *obj_type_name(
VALUE obj);
600#include "gc/default/default.c"
602#if USE_MODULAR_GC && !defined(HAVE_DLOPEN)
603# error "Modular GC requires dlopen"
607typedef struct gc_function_map {
609 void *(*objspace_alloc)(void);
610 void (*objspace_init)(
void *objspace_ptr);
611 void *(*ractor_cache_alloc)(
void *objspace_ptr,
void *ractor);
612 void (*set_params)(
void *objspace_ptr);
614 size_t *(*heap_sizes)(
void *objspace_ptr);
616 void (*shutdown_free_objects)(
void *objspace_ptr);
617 void (*objspace_free)(
void *objspace_ptr);
618 void (*ractor_cache_free)(
void *objspace_ptr,
void *cache);
620 void (*start)(
void *objspace_ptr,
bool full_mark,
bool immediate_mark,
bool immediate_sweep,
bool compact);
621 bool (*during_gc_p)(
void *objspace_ptr);
622 void (*prepare_heap)(
void *objspace_ptr);
623 void (*gc_enable)(
void *objspace_ptr);
624 void (*gc_disable)(
void *objspace_ptr,
bool finish_current_gc);
625 bool (*gc_enabled_p)(
void *objspace_ptr);
626 VALUE (*config_get)(
void *objpace_ptr);
627 void (*config_set)(
void *objspace_ptr,
VALUE hash);
628 void (*stress_set)(
void *objspace_ptr,
VALUE flag);
629 VALUE (*stress_get)(
void *objspace_ptr);
631 VALUE (*new_obj)(
void *objspace_ptr,
void *cache_ptr,
VALUE klass,
VALUE flags,
bool wb_protected,
size_t alloc_size);
632 size_t (*obj_slot_size)(
VALUE obj);
633 size_t (*heap_id_for_size)(
void *objspace_ptr,
size_t size);
634 bool (*size_allocatable_p)(
size_t size);
636 void *(*malloc)(
void *objspace_ptr,
size_t size,
bool gc_allowed);
637 void *(*calloc)(
void *objspace_ptr,
size_t size,
bool gc_allowed);
638 void *(*realloc)(
void *objspace_ptr,
void *ptr,
size_t new_size,
size_t old_size,
bool gc_allowed);
639 void (*free)(
void *objspace_ptr,
void *ptr,
size_t old_size);
640 void (*adjust_memory_usage)(
void *objspace_ptr, ssize_t diff);
642 void (*mark)(
void *objspace_ptr,
VALUE obj);
643 void (*mark_and_move)(
void *objspace_ptr,
VALUE *ptr);
644 void (*mark_and_pin)(
void *objspace_ptr,
VALUE obj);
645 void (*mark_maybe)(
void *objspace_ptr,
VALUE obj);
647 void (*declare_weak_references)(
void *objspace_ptr,
VALUE obj);
648 bool (*handle_weak_references_alive_p)(
void *objspace_ptr,
VALUE obj);
650 void (*register_pinning_obj)(
void *objspace_ptr,
VALUE obj);
651 bool (*object_moved_p)(
void *objspace_ptr,
VALUE obj);
652 VALUE (*location)(
void *objspace_ptr,
VALUE value);
654 void (*writebarrier)(
void *objspace_ptr,
VALUE a,
VALUE b);
655 void (*writebarrier_unprotect)(
void *objspace_ptr,
VALUE obj);
656 void (*writebarrier_remember)(
void *objspace_ptr,
VALUE obj);
658 void (*each_objects)(
void *objspace_ptr, int (*callback)(
void *,
void *, size_t,
void *),
void *data);
659 void (*each_object)(
void *objspace_ptr, void (*func)(
VALUE obj,
void *data),
void *data);
661 void (*make_zombie)(
void *objspace_ptr,
VALUE obj, void (*dfree)(
void *),
void *data);
663 void (*undefine_finalizer)(
void *objspace_ptr,
VALUE obj);
664 void (*copy_finalizer)(
void *objspace_ptr,
VALUE dest,
VALUE obj);
665 void (*shutdown_call_finalizer)(
void *objspace_ptr);
667 void (*before_fork)(
void *objspace_ptr);
668 void (*after_fork)(
void *objspace_ptr, rb_pid_t pid);
670 void (*set_measure_total_time)(
void *objspace_ptr,
VALUE flag);
671 bool (*get_measure_total_time)(
void *objspace_ptr);
672 unsigned long long (*get_total_time)(
void *objspace_ptr);
673 size_t (*gc_count)(
void *objspace_ptr);
674 VALUE (*latest_gc_info)(
void *objspace_ptr,
VALUE key);
675 VALUE (*stat)(
void *objspace_ptr,
VALUE hash_or_sym);
676 VALUE (*stat_heap)(
void *objspace_ptr,
VALUE heap_name,
VALUE hash_or_sym);
677 const char *(*active_gc_name)(void);
680 bool (*pointer_to_heap_p)(
void *objspace_ptr,
const void *ptr);
681 bool (*garbage_object_p)(
void *objspace_ptr,
VALUE obj);
682 void (*set_event_hook)(
void *objspace_ptr,
const rb_event_flag_t event);
683 void (*copy_attributes)(
void *objspace_ptr,
VALUE dest,
VALUE obj);
685 bool modular_gc_loaded_p;
686} rb_gc_function_map_t;
688static rb_gc_function_map_t rb_gc_functions;
690# define RUBY_GC_LIBRARY "RUBY_GC_LIBRARY"
691# define MODULAR_GC_DIR STRINGIZE(modular_gc_dir)
694ruby_modular_gc_init(
void)
699 const char *gc_so_file = getenv(RUBY_GC_LIBRARY);
701 rb_gc_function_map_t gc_functions = { 0 };
703 char *gc_so_path = NULL;
708 for (
size_t i = 0; i < strlen(gc_so_file); i++) {
709 char c = gc_so_file[i];
710 if (isalnum(c))
continue;
716 fprintf(stderr,
"Only alphanumeric, dash, and underscore is allowed in "RUBY_GC_LIBRARY
"\n");
721 size_t gc_so_path_size = strlen(MODULAR_GC_DIR
"librubygc." DLEXT) + strlen(gc_so_file) + 1;
724 size_t prefix_len = 0;
725 if (dladdr((
void *)(uintptr_t)ruby_modular_gc_init, &dli)) {
726 const char *base = strrchr(dli.dli_fname,
'/');
729# define end_with_p(lit) \
730 (prefix_len >= (tail = rb_strlen_lit(lit)) && \
731 memcmp(base - tail, lit, tail) == 0)
733 prefix_len = base - dli.dli_fname;
734 if (end_with_p(
"/bin") || end_with_p(
"/lib")) {
737 prefix_len += MODULAR_GC_DIR[0] !=
'/';
738 gc_so_path_size += prefix_len;
742 gc_so_path = alloca(gc_so_path_size);
744 size_t gc_so_path_idx = 0;
745#define GC_SO_PATH_APPEND(str) do { \
746 gc_so_path_idx += strlcpy(gc_so_path + gc_so_path_idx, str, gc_so_path_size - gc_so_path_idx); \
749 if (prefix_len > 0) {
750 memcpy(gc_so_path, dli.dli_fname, prefix_len);
751 gc_so_path_idx = prefix_len;
754 GC_SO_PATH_APPEND(MODULAR_GC_DIR
"librubygc.");
755 GC_SO_PATH_APPEND(gc_so_file);
756 GC_SO_PATH_APPEND(DLEXT);
757 GC_ASSERT(gc_so_path_idx == gc_so_path_size - 1);
758#undef GC_SO_PATH_APPEND
761 handle = dlopen(gc_so_path, RTLD_LAZY | RTLD_GLOBAL);
763 fprintf(stderr,
"ruby_modular_gc_init: Shared library %s cannot be opened: %s\n", gc_so_path, dlerror());
767 gc_functions.modular_gc_loaded_p =
true;
770 unsigned int err_count = 0;
772# define load_modular_gc_func(name) do { \
774 const char *func_name = "rb_gc_impl_" #name; \
775 gc_functions.name = dlsym(handle, func_name); \
776 if (!gc_functions.name) { \
777 fprintf(stderr, "ruby_modular_gc_init: %s function not exported by library %s\n", func_name, gc_so_path); \
782 gc_functions.name = rb_gc_impl_##name; \
787 load_modular_gc_func(objspace_alloc);
788 load_modular_gc_func(objspace_init);
789 load_modular_gc_func(ractor_cache_alloc);
790 load_modular_gc_func(set_params);
791 load_modular_gc_func(init);
792 load_modular_gc_func(heap_sizes);
794 load_modular_gc_func(shutdown_free_objects);
795 load_modular_gc_func(objspace_free);
796 load_modular_gc_func(ractor_cache_free);
798 load_modular_gc_func(start);
799 load_modular_gc_func(during_gc_p);
800 load_modular_gc_func(prepare_heap);
801 load_modular_gc_func(gc_enable);
802 load_modular_gc_func(gc_disable);
803 load_modular_gc_func(gc_enabled_p);
804 load_modular_gc_func(config_set);
805 load_modular_gc_func(config_get);
806 load_modular_gc_func(stress_set);
807 load_modular_gc_func(stress_get);
809 load_modular_gc_func(new_obj);
810 load_modular_gc_func(obj_slot_size);
811 load_modular_gc_func(heap_id_for_size);
812 load_modular_gc_func(size_allocatable_p);
814 load_modular_gc_func(malloc);
815 load_modular_gc_func(calloc);
816 load_modular_gc_func(realloc);
817 load_modular_gc_func(free);
818 load_modular_gc_func(adjust_memory_usage);
820 load_modular_gc_func(mark);
821 load_modular_gc_func(mark_and_move);
822 load_modular_gc_func(mark_and_pin);
823 load_modular_gc_func(mark_maybe);
825 load_modular_gc_func(declare_weak_references);
826 load_modular_gc_func(handle_weak_references_alive_p);
828 load_modular_gc_func(register_pinning_obj);
829 load_modular_gc_func(object_moved_p);
830 load_modular_gc_func(location);
832 load_modular_gc_func(writebarrier);
833 load_modular_gc_func(writebarrier_unprotect);
834 load_modular_gc_func(writebarrier_remember);
836 load_modular_gc_func(each_objects);
837 load_modular_gc_func(each_object);
839 load_modular_gc_func(make_zombie);
840 load_modular_gc_func(define_finalizer);
841 load_modular_gc_func(undefine_finalizer);
842 load_modular_gc_func(copy_finalizer);
843 load_modular_gc_func(shutdown_call_finalizer);
845 load_modular_gc_func(before_fork);
846 load_modular_gc_func(after_fork);
848 load_modular_gc_func(set_measure_total_time);
849 load_modular_gc_func(get_measure_total_time);
850 load_modular_gc_func(get_total_time);
851 load_modular_gc_func(gc_count);
852 load_modular_gc_func(latest_gc_info);
853 load_modular_gc_func(stat);
854 load_modular_gc_func(stat_heap);
855 load_modular_gc_func(active_gc_name);
857 load_modular_gc_func(object_metadata);
858 load_modular_gc_func(pointer_to_heap_p);
859 load_modular_gc_func(garbage_object_p);
860 load_modular_gc_func(set_event_hook);
861 load_modular_gc_func(copy_attributes);
864 fprintf(stderr,
"ruby_modular_gc_init: found %u missing exports in library %s\n", err_count, gc_so_path);
868# undef load_modular_gc_func
870 rb_gc_functions = gc_functions;
874# define rb_gc_impl_objspace_alloc rb_gc_functions.objspace_alloc
875# define rb_gc_impl_objspace_init rb_gc_functions.objspace_init
876# define rb_gc_impl_ractor_cache_alloc rb_gc_functions.ractor_cache_alloc
877# define rb_gc_impl_set_params rb_gc_functions.set_params
878# define rb_gc_impl_init rb_gc_functions.init
879# define rb_gc_impl_heap_sizes rb_gc_functions.heap_sizes
881# define rb_gc_impl_shutdown_free_objects rb_gc_functions.shutdown_free_objects
882# define rb_gc_impl_objspace_free rb_gc_functions.objspace_free
883# define rb_gc_impl_ractor_cache_free rb_gc_functions.ractor_cache_free
885# define rb_gc_impl_start rb_gc_functions.start
886# define rb_gc_impl_during_gc_p rb_gc_functions.during_gc_p
887# define rb_gc_impl_prepare_heap rb_gc_functions.prepare_heap
888# define rb_gc_impl_gc_enable rb_gc_functions.gc_enable
889# define rb_gc_impl_gc_disable rb_gc_functions.gc_disable
890# define rb_gc_impl_gc_enabled_p rb_gc_functions.gc_enabled_p
891# define rb_gc_impl_config_get rb_gc_functions.config_get
892# define rb_gc_impl_config_set rb_gc_functions.config_set
893# define rb_gc_impl_stress_set rb_gc_functions.stress_set
894# define rb_gc_impl_stress_get rb_gc_functions.stress_get
896# define rb_gc_impl_new_obj rb_gc_functions.new_obj
897# define rb_gc_impl_obj_slot_size rb_gc_functions.obj_slot_size
898# define rb_gc_impl_heap_id_for_size rb_gc_functions.heap_id_for_size
899# define rb_gc_impl_size_allocatable_p rb_gc_functions.size_allocatable_p
901# define rb_gc_impl_malloc rb_gc_functions.malloc
902# define rb_gc_impl_calloc rb_gc_functions.calloc
903# define rb_gc_impl_realloc rb_gc_functions.realloc
904# define rb_gc_impl_free rb_gc_functions.free
905# define rb_gc_impl_adjust_memory_usage rb_gc_functions.adjust_memory_usage
907# define rb_gc_impl_mark rb_gc_functions.mark
908# define rb_gc_impl_mark_and_move rb_gc_functions.mark_and_move
909# define rb_gc_impl_mark_and_pin rb_gc_functions.mark_and_pin
910# define rb_gc_impl_mark_maybe rb_gc_functions.mark_maybe
912# define rb_gc_impl_declare_weak_references rb_gc_functions.declare_weak_references
913# define rb_gc_impl_handle_weak_references_alive_p rb_gc_functions.handle_weak_references_alive_p
915# define rb_gc_impl_register_pinning_obj rb_gc_functions.register_pinning_obj
916# define rb_gc_impl_object_moved_p rb_gc_functions.object_moved_p
917# define rb_gc_impl_location rb_gc_functions.location
919# define rb_gc_impl_writebarrier rb_gc_functions.writebarrier
920# define rb_gc_impl_writebarrier_unprotect rb_gc_functions.writebarrier_unprotect
921# define rb_gc_impl_writebarrier_remember rb_gc_functions.writebarrier_remember
923# define rb_gc_impl_each_objects rb_gc_functions.each_objects
924# define rb_gc_impl_each_object rb_gc_functions.each_object
926# define rb_gc_impl_make_zombie rb_gc_functions.make_zombie
927# define rb_gc_impl_define_finalizer rb_gc_functions.define_finalizer
928# define rb_gc_impl_undefine_finalizer rb_gc_functions.undefine_finalizer
929# define rb_gc_impl_copy_finalizer rb_gc_functions.copy_finalizer
930# define rb_gc_impl_shutdown_call_finalizer rb_gc_functions.shutdown_call_finalizer
932# define rb_gc_impl_before_fork rb_gc_functions.before_fork
933# define rb_gc_impl_after_fork rb_gc_functions.after_fork
935# define rb_gc_impl_set_measure_total_time rb_gc_functions.set_measure_total_time
936# define rb_gc_impl_get_measure_total_time rb_gc_functions.get_measure_total_time
937# define rb_gc_impl_get_total_time rb_gc_functions.get_total_time
938# define rb_gc_impl_gc_count rb_gc_functions.gc_count
939# define rb_gc_impl_latest_gc_info rb_gc_functions.latest_gc_info
940# define rb_gc_impl_stat rb_gc_functions.stat
941# define rb_gc_impl_stat_heap rb_gc_functions.stat_heap
942# define rb_gc_impl_active_gc_name rb_gc_functions.active_gc_name
944# define rb_gc_impl_object_metadata rb_gc_functions.object_metadata
945# define rb_gc_impl_pointer_to_heap_p rb_gc_functions.pointer_to_heap_p
946# define rb_gc_impl_garbage_object_p rb_gc_functions.garbage_object_p
947# define rb_gc_impl_set_event_hook rb_gc_functions.set_event_hook
948# define rb_gc_impl_copy_attributes rb_gc_functions.copy_attributes
951#ifdef RUBY_ASAN_ENABLED
953asan_death_callback(
void)
956 rb_bug_without_die(
"ASAN error");
964rb_objspace_alloc(
void)
967 ruby_modular_gc_init();
970 void *
objspace = rb_gc_impl_objspace_alloc();
971 ruby_current_vm_ptr->gc.objspace =
objspace;
973 rb_gc_impl_stress_set(
objspace, initial_stress);
975#ifdef RUBY_ASAN_ENABLED
976 __sanitizer_set_death_callback(asan_death_callback);
989rb_gc_obj_slot_size(
VALUE obj)
991 return rb_gc_impl_obj_slot_size(obj);
995gc_validate_pc(
VALUE obj)
1003 if (cfp && VM_FRAME_RUBYFRAME_P(cfp) && CFP_PC(cfp)) {
1004 const VALUE *iseq_encoded = ISEQ_BODY(CFP_ISEQ(cfp))->iseq_encoded;
1005 const VALUE *iseq_encoded_end = iseq_encoded + ISEQ_BODY(CFP_ISEQ(cfp))->iseq_size;
1006 RUBY_ASSERT(CFP_PC(cfp) >= iseq_encoded,
"PC not set when allocating, breaking tracing");
1007 RUBY_ASSERT(CFP_PC(cfp) <= iseq_encoded_end,
"PC not set when allocating, breaking tracing");
1012NOINLINE(
static void gc_newobj_hook(
VALUE obj));
1014gc_newobj_hook(
VALUE obj)
1016 int lev = RB_GC_VM_LOCK_NO_BARRIER();
1018 size_t slot_size = rb_gc_obj_slot_size(obj);
1019 memset((
char *)obj +
sizeof(
struct RBasic), 0, slot_size -
sizeof(
struct RBasic));
1026 bool gc_disabled =
RTEST(rb_gc_disable_no_rest());
1030 if (!gc_disabled) rb_gc_enable();
1032 RB_GC_VM_UNLOCK_NO_BARRIER(lev);
1036newobj_of(
rb_ractor_t *cr,
VALUE klass,
VALUE flags, shape_id_t shape_id,
bool wb_protected,
size_t size)
1038 VALUE obj = rb_gc_impl_new_obj(rb_gc_get_objspace(), cr->newobj_cache, klass, flags, wb_protected, size);
1039 RBASIC_SET_SHAPE_ID_NO_CHECKS(obj, shape_id);
1041 gc_validate_pc(obj);
1044 gc_newobj_hook(obj);
1047#if RGENGC_CHECK_MODE
1048# ifndef GC_DEBUG_SLOT_FILL_SPECIAL_VALUE
1049# define GC_DEBUG_SLOT_FILL_SPECIAL_VALUE 255
1053 (
void *)(obj +
sizeof(
struct RBasic)),
1054 GC_DEBUG_SLOT_FILL_SPECIAL_VALUE,
1055 rb_gc_obj_slot_size(obj) -
sizeof(
struct RBasic)
1063rb_wb_unprotected_newobj_of(
VALUE klass,
VALUE flags, shape_id_t shape_id,
size_t size)
1066 return newobj_of(GET_RACTOR(), klass, flags, shape_id, FALSE, size);
1073 return newobj_of(rb_ec_ractor_ptr(ec), klass, flags, shape_id, TRUE, size);
1077rb_class_allocate_instance(
VALUE klass)
1079 uint32_t index_tbl_num_entries = RCLASS_MAX_IV_COUNT(klass);
1081 size_t size = rb_obj_embedded_size(index_tbl_num_entries);
1082 if (!rb_gc_size_allocatable_p(size)) {
1083 size =
sizeof(
struct RObject);
1089 NEWOBJ_OF_WITH_SHAPE(o,
struct RObject, klass, flags, rb_shape_root(rb_gc_heap_id_for_size(size)), size, 0);
1095 size_t fields_count = RSHAPE_LEN(RBASIC_SHAPE_ID(obj));
1096 for (
size_t i = fields_count; i < ROBJECT_FIELDS_CAPACITY(obj); i++) {
1100 rb_bug(
"Expected rb_class_allocate_instance to set the class correctly");
1108rb_gc_register_pinning_obj(
VALUE obj)
1110 rb_gc_impl_register_pinning_obj(rb_gc_get_objspace(), obj);
1113#define UNEXPECTED_NODE(func) \
1114 rb_bug(#func"(): GC does not handle T_NODE 0x%x(%p) 0x%"PRIxVALUE, \
1115 BUILTIN_TYPE(obj), (void*)(obj), RBASIC(obj)->flags)
1118rb_data_object_check(
VALUE klass)
1123 rb_warn(
"undefining the allocator of T_DATA class %"PRIsVALUE, klass);
1131 if (klass) rb_data_object_check(klass);
1132 VALUE obj = newobj_of(GET_RACTOR(), klass,
T_DATA, ROOT_SHAPE_ID, !dmark,
sizeof(
struct RTypedData));
1134 rb_gc_register_pinning_obj(obj);
1152#define RTYPEDDATA_EMBEDDED_P rbimpl_typeddata_embedded_p
1153#define RB_DATA_TYPE_EMBEDDABLE_P(type) ((type)->flags & RUBY_TYPED_EMBEDDABLE)
1154#define RTYPEDDATA_EMBEDDABLE_P(obj) RB_DATA_TYPE_EMBEDDABLE_P(RTYPEDDATA_TYPE(obj))
1159 RBIMPL_NONNULL_ARG(
type);
1160 if (klass) rb_data_object_check(klass);
1162 VALUE obj = newobj_of(GET_RACTOR(), klass,
T_DATA | RUBY_TYPED_FL_IS_TYPED_DATA, ROOT_SHAPE_ID, wb_protected, size);
1164 rb_gc_register_pinning_obj(obj);
1177 if (UNLIKELY(RB_DATA_TYPE_EMBEDDABLE_P(
type))) {
1178 rb_raise(
rb_eTypeError,
"Cannot wrap an embeddable TypedData");
1181 return typed_data_alloc(klass, 0, datap,
type,
sizeof(
struct RTypedData));
1187 if (RB_DATA_TYPE_EMBEDDABLE_P(
type)) {
1189 rb_raise(
rb_eTypeError,
"Embeddable TypedData must be freed immediately");
1193 if (rb_gc_size_allocatable_p(embed_size)) {
1194 VALUE obj = typed_data_alloc(klass, TYPED_DATA_EMBEDDED, 0,
type, embed_size);
1195 memset((
char *)obj + offsetof(
struct RTypedData,
data), 0, size);
1206rb_objspace_data_type_memsize(
VALUE obj)
1210 const void *ptr = RTYPEDDATA_GET_DATA(obj);
1214 if (RTYPEDDATA_EMBEDDABLE_P(obj) && !RTYPEDDATA_EMBEDDED_P(obj)) {
1215#ifdef HAVE_MALLOC_USABLE_SIZE
1216 size += malloc_usable_size((
void *)ptr);
1220 if (
type->function.dsize) {
1221 size +=
type->function.dsize(ptr);
1230rb_objspace_data_type_name(
VALUE obj)
1241rb_gc_declare_weak_references(
VALUE obj)
1243 rb_gc_impl_declare_weak_references(rb_gc_get_objspace(), obj);
1247rb_gc_handle_weak_references_alive_p(
VALUE obj)
1251 return rb_gc_impl_handle_weak_references_alive_p(rb_gc_get_objspace(), obj);
1255rb_gc_handle_weak_references(
VALUE obj)
1262 if (
type->function.handle_weak_references) {
1263 (
type->function.handle_weak_references)(RTYPEDDATA_GET_DATA(obj));
1267 "rb_gc_handle_weak_references: TypedData %s does not implement handle_weak_references",
1273 rb_bug(
"rb_gc_handle_weak_references: unknown T_DATA");
1278 GC_ASSERT(imemo_type(obj) == imemo_callcache);
1281 if (cc->klass !=
Qundef &&
1282 (!rb_gc_handle_weak_references_alive_p(cc->klass) ||
1283 !rb_gc_handle_weak_references_alive_p((
VALUE)cc->cme_))) {
1284 vm_cc_invalidate(cc);
1290 rb_bug(
"rb_gc_handle_weak_references: type not supported\n");
1308rb_gc_obj_needs_cleanup_p(
VALUE obj)
1316 switch (imemo_type(obj)) {
1317 case imemo_constcache:
1322 case imemo_callcache:
1323 case imemo_throw_data:
1351 shape_id_t shape_id = RBASIC_SHAPE_ID(obj);
1352 if (id2ref_tbl && rb_shape_has_object_id(shape_id))
return true;
1356 if (flags & ROBJECT_HEAP)
return true;
1360 if (flags & RUBY_TYPED_FL_IS_TYPED_DATA) {
1362 if (
type & TYPED_DATA_EMBEDDED) {
1372 if (flags & (RSTRING_NOEMBED | RSTRING_FSTR))
return true;
1373 return rb_shape_has_fields(shape_id);
1376 if (!(flags & RARRAY_EMBED_FLAG))
return true;
1377 return rb_shape_has_fields(shape_id);
1380 if (flags & RHASH_ST_TABLE_FLAG)
return true;
1381 return rb_shape_has_fields(shape_id);
1384 if (!(flags & BIGNUM_EMBED_FLAG))
return true;
1385 return rb_shape_has_fields(shape_id);
1388 if (!(flags & RSTRUCT_EMBED_LEN_MASK))
return true;
1389 if (flags & RSTRUCT_GEN_FIELDS)
return rb_shape_has_fields(shape_id);
1395 return rb_shape_has_fields(shape_id);
1403io_fptr_finalize(
void *fptr)
1412 rb_gc_impl_make_zombie(
objspace, obj, io_fptr_finalize, fptr);
1420 int free_immediately =
false;
1421 void (*dfree)(
void *);
1428 dfree =
RDATA(obj)->dfree;
1433 if (!
RTYPEDDATA_P(obj) || !RTYPEDDATA_EMBEDDED_P(obj)) {
1435 RB_DEBUG_COUNTER_INC(obj_data_xfree);
1438 else if (free_immediately) {
1440 if (RTYPEDDATA_EMBEDDABLE_P(obj) && !RTYPEDDATA_EMBEDDED_P(obj)) {
1444 RB_DEBUG_COUNTER_INC(obj_data_imm_free);
1447 rb_gc_impl_make_zombie(
objspace, obj, dfree, data);
1448 RB_DEBUG_COUNTER_INC(obj_data_zombie);
1453 RB_DEBUG_COUNTER_INC(obj_data_empty);
1470 rb_class_classext_free(args->klass, ext, is_prime);
1478 rb_iclass_classext_free(args->klass, ext, is_prime);
1486 RB_DEBUG_COUNTER_INC(obj_free);
1493 rb_bug(
"obj_free() called for broken object");
1502 if (rb_shape_obj_too_complex_p(obj)) {
1503 RB_DEBUG_COUNTER_INC(obj_obj_too_complex);
1504 st_free_table(ROBJECT_FIELDS_HASH(obj));
1507 SIZED_FREE_N(
ROBJECT(obj)->as.heap.fields, ROBJECT_FIELDS_CAPACITY(obj));
1508 RB_DEBUG_COUNTER_INC(obj_obj_ptr);
1512 RB_DEBUG_COUNTER_INC(obj_obj_embed);
1518 rb_zjit_klass_free(obj);
1521 rb_class_classext_foreach(obj, classext_free, (
void *)&args);
1522 if (RCLASS_CLASSEXT_TBL(obj)) {
1523 st_free_table(RCLASS_CLASSEXT_TBL(obj));
1535#if USE_DEBUG_COUNTER
1538 RB_DEBUG_COUNTER_INC(obj_hash_empty);
1541 RB_DEBUG_COUNTER_INC(obj_hash_1);
1544 RB_DEBUG_COUNTER_INC(obj_hash_2);
1547 RB_DEBUG_COUNTER_INC(obj_hash_3);
1550 RB_DEBUG_COUNTER_INC(obj_hash_4);
1556 RB_DEBUG_COUNTER_INC(obj_hash_5_8);
1560 RB_DEBUG_COUNTER_INC(obj_hash_g8);
1563 if (RHASH_AR_TABLE_P(obj)) {
1564 if (RHASH_AR_TABLE(obj) == NULL) {
1565 RB_DEBUG_COUNTER_INC(obj_hash_null);
1568 RB_DEBUG_COUNTER_INC(obj_hash_ar);
1572 RB_DEBUG_COUNTER_INC(obj_hash_st);
1581 RB_DEBUG_COUNTER_INC(obj_regexp_ptr);
1585 if (!rb_data_free(
objspace, obj))
return false;
1590#if USE_DEBUG_COUNTER
1591 if (rm->
regs.num_regs >= 8) {
1592 RB_DEBUG_COUNTER_INC(obj_match_ge8);
1594 else if (rm->
regs.num_regs >= 4) {
1595 RB_DEBUG_COUNTER_INC(obj_match_ge4);
1597 else if (rm->
regs.num_regs >= 1) {
1598 RB_DEBUG_COUNTER_INC(obj_match_under4);
1601 onig_region_free(&rm->
regs, 0);
1604 RB_DEBUG_COUNTER_INC(obj_match_ptr);
1608 if (
RFILE(obj)->fptr) {
1610 RB_DEBUG_COUNTER_INC(obj_file_ptr);
1615 RB_DEBUG_COUNTER_INC(obj_rational);
1618 RB_DEBUG_COUNTER_INC(obj_complex);
1625 rb_class_classext_foreach(obj, classext_iclass_free, (
void *)&args);
1626 if (RCLASS_CLASSEXT_TBL(obj)) {
1627 st_free_table(RCLASS_CLASSEXT_TBL(obj));
1630 RB_DEBUG_COUNTER_INC(obj_iclass_ptr);
1634 RB_DEBUG_COUNTER_INC(obj_float);
1638 if (!BIGNUM_EMBED_P(obj) && BIGNUM_DIGITS(obj)) {
1639 SIZED_FREE_N(BIGNUM_DIGITS(obj), BIGNUM_LEN(obj));
1640 RB_DEBUG_COUNTER_INC(obj_bignum_ptr);
1643 RB_DEBUG_COUNTER_INC(obj_bignum_embed);
1648 UNEXPECTED_NODE(obj_free);
1652 if ((
RBASIC(obj)->flags & RSTRUCT_EMBED_LEN_MASK) ||
1653 RSTRUCT(obj)->as.heap.ptr == NULL) {
1654 RB_DEBUG_COUNTER_INC(obj_struct_embed);
1657 SIZED_FREE_N(RSTRUCT(obj)->as.heap.ptr, RSTRUCT(obj)->as.heap.len);
1658 RB_DEBUG_COUNTER_INC(obj_struct_ptr);
1663 RB_DEBUG_COUNTER_INC(obj_symbol);
1667 rb_imemo_free((
VALUE)obj);
1671 rb_bug(
"gc_sweep(): unknown data type 0x%x(%p) 0x%"PRIxVALUE,
1676 rb_gc_impl_make_zombie(
objspace, obj, 0, 0);
1687 rb_gc_impl_set_event_hook(rb_gc_get_objspace(), event);
1691internal_object_p(
VALUE obj)
1693 void *ptr = asan_unpoison_object_temporary(obj);
1695 if (
RBASIC(obj)->flags) {
1698 UNEXPECTED_NODE(internal_object_p);
1707 if (obj == rb_mRubyVMFrozenCore)
1711 if (RCLASS_SINGLETON_P(obj)) {
1712 return rb_singleton_class_internal_p(obj);
1716 if (!
RBASIC(obj)->klass)
break;
1720 if (ptr || !
RBASIC(obj)->flags) {
1721 rb_asan_poison_object(obj);
1727rb_objspace_internal_object_p(
VALUE obj)
1729 return internal_object_p(obj);
1738os_obj_of_i(
void *vstart,
void *vend,
size_t stride,
void *data)
1743 for (; v != (
VALUE)vend; v += stride) {
1744 if (!internal_object_p(v)) {
1764 rb_objspace_each_objects(os_obj_of_i, &oes);
1815 return os_obj_of(of);
1829 return rb_undefine_finalizer(obj);
1835 rb_check_frozen(obj);
1837 rb_gc_impl_undefine_finalizer(rb_gc_get_objspace(), obj);
1843should_be_callable(
VALUE block)
1846 rb_raise(rb_eArgError,
"wrong type argument %"PRIsVALUE
" (should be callable)",
1852should_be_finalizable(
VALUE obj)
1855 rb_raise(rb_eArgError,
"cannot define finalizer for %s",
1858 rb_check_frozen(obj);
1864 rb_gc_impl_copy_finalizer(rb_gc_get_objspace(), dest, obj);
1944 if (rb_callable_receiver(block) == obj) {
1945 rb_warn(
"finalizer references object to be finalized");
1948 return rb_define_finalizer(obj, block);
1954 should_be_finalizable(obj);
1955 should_be_callable(block);
1957 block = rb_gc_impl_define_finalizer(rb_gc_get_objspace(), obj, block);
1965rb_objspace_call_finalizer(
void)
1967 rb_gc_impl_shutdown_call_finalizer(rb_gc_get_objspace());
1971rb_objspace_free_objects(
void *
objspace)
1973 rb_gc_impl_shutdown_free_objects(
objspace);
1977rb_objspace_garbage_object_p(
VALUE obj)
1979 return !
SPECIAL_CONST_P(obj) && rb_gc_impl_garbage_object_p(rb_gc_get_objspace(), obj);
1983rb_gc_pointer_to_heap_p(
VALUE obj)
1985 return rb_gc_impl_pointer_to_heap_p(rb_gc_get_objspace(), (
void *)obj);
1988#define OBJ_ID_INCREMENT (RUBY_IMMEDIATE_MASK + 1)
1989#define LAST_OBJECT_ID() (object_id_counter * OBJ_ID_INCREMENT)
1990static VALUE id2ref_value = 0;
1992#if SIZEOF_SIZE_T == SIZEOF_LONG_LONG
1993static size_t object_id_counter = 1;
1995static unsigned long long object_id_counter = 1;
1999generate_next_object_id(
void)
2001#if SIZEOF_SIZE_T == SIZEOF_LONG_LONG
2005 unsigned int lock_lev = RB_GC_VM_LOCK();
2006 VALUE id =
ULL2NUM(++object_id_counter * OBJ_ID_INCREMENT);
2007 RB_GC_VM_UNLOCK(lock_lev);
2013rb_gc_obj_id_moved(
VALUE obj)
2015 if (UNLIKELY(id2ref_tbl)) {
2016 st_insert(id2ref_tbl, (st_data_t)rb_obj_id(obj), (st_data_t)obj);
2021object_id_cmp(st_data_t x, st_data_t y)
2024 return !rb_big_eql(x, y);
2032object_id_hash(st_data_t n)
2037static const struct st_hash_type object_id_hash_type = {
2042static void gc_mark_tbl_no_pin(
st_table *table);
2045id2ref_tbl_mark(
void *data)
2057id2ref_tbl_memsize(
const void *data)
2059 return rb_st_memsize(data);
2063id2ref_tbl_free(
void *data)
2067 st_free_table(table);
2073 .dmark = id2ref_tbl_mark,
2074 .dfree = id2ref_tbl_free,
2075 .dsize = id2ref_tbl_memsize,
2083class_object_id(
VALUE klass)
2085 VALUE id = RUBY_ATOMIC_VALUE_LOAD(
RCLASS(klass)->object_id);
2087 unsigned int lock_lev = RB_GC_VM_LOCK();
2088 id = generate_next_object_id();
2093 else if (RB_UNLIKELY(id2ref_tbl)) {
2094 st_insert(id2ref_tbl,
id, klass);
2096 RB_GC_VM_UNLOCK(lock_lev);
2102object_id_get(
VALUE obj, shape_id_t shape_id)
2105 if (rb_shape_too_complex_p(shape_id)) {
2106 id = rb_obj_field_get(obj, ROOT_TOO_COMPLEX_WITH_OBJ_ID);
2109 id = rb_obj_field_get(obj, rb_shape_object_id(shape_id));
2115 rb_bug(
"Object's shape includes object_id, but it's missing %s", rb_obj_info(obj));
2123object_id0(
VALUE obj)
2126 shape_id_t shape_id = RBASIC_SHAPE_ID(obj);
2128 if (rb_shape_has_object_id(shape_id)) {
2129 return object_id_get(obj, shape_id);
2132 shape_id_t object_id_shape_id = rb_shape_transition_object_id(obj);
2134 id = generate_next_object_id();
2135 rb_obj_field_set(obj, object_id_shape_id, 0,
id);
2137 RUBY_ASSERT(RBASIC_SHAPE_ID(obj) == object_id_shape_id);
2140 if (RB_UNLIKELY(id2ref_tbl)) {
2142 st_insert(id2ref_tbl, (st_data_t)
id, (st_data_t)obj);
2157 return class_object_id(obj);
2166 unsigned int lock_lev = RB_GC_VM_LOCK();
2167 VALUE id = object_id0(obj);
2168 RB_GC_VM_UNLOCK(lock_lev);
2172 return object_id0(obj);
2176build_id2ref_i(
VALUE obj,
void *data)
2184 if (
RCLASS(obj)->object_id) {
2185 st_insert(id2ref_tbl,
RCLASS(obj)->object_id, obj);
2190 if (IMEMO_TYPE_P(obj, imemo_fields) && rb_shape_obj_has_id(obj)) {
2191 st_insert(id2ref_tbl, rb_obj_id(obj), rb_imemo_fields_owner(obj));
2196 if (rb_shape_obj_has_id(obj)) {
2197 st_insert(id2ref_tbl, rb_obj_id(obj), obj);
2207object_id_to_ref(
void *objspace_ptr,
VALUE object_id)
2211 unsigned int lev = RB_GC_VM_LOCK();
2219 st_table *tmp_id2ref_tbl = st_init_table(&object_id_hash_type);
2225 bool gc_disabled =
RTEST(rb_gc_disable());
2227 id2ref_tbl = tmp_id2ref_tbl;
2228 id2ref_value = tmp_id2ref_value;
2230 rb_gc_impl_each_object(
objspace, build_id2ref_i, (
void *)id2ref_tbl);
2232 if (!gc_disabled) rb_gc_enable();
2236 bool found = st_lookup(id2ref_tbl, object_id, &obj) && !rb_gc_impl_garbage_object_p(
objspace, obj);
2238 RB_GC_VM_UNLOCK(lev);
2253obj_free_object_id(
VALUE obj)
2256 if (RB_UNLIKELY(id2ref_tbl)) {
2260 obj_id =
RCLASS(obj)->object_id;
2263 if (!IMEMO_TYPE_P(obj, imemo_fields)) {
2269 shape_id_t shape_id = RBASIC_SHAPE_ID(obj);
2270 if (rb_shape_has_object_id(shape_id)) {
2271 obj_id = object_id_get(obj, shape_id);
2280 if (RB_UNLIKELY(obj_id)) {
2283 if (!st_delete(id2ref_tbl, (st_data_t *)&obj_id, NULL)) {
2287 rb_bug(
"Object ID seen, but not in _id2ref table: object_id=%llu object=%s",
NUM2ULL(obj_id), rb_obj_info(obj));
2295rb_gc_obj_free_vm_weak_references(
VALUE obj)
2298 obj_free_object_id(obj);
2300 if (rb_obj_gen_fields_p(obj)) {
2307 rb_gc_free_fstring(obj);
2311 rb_gc_free_dsymbol(obj);
2314 switch (imemo_type(obj)) {
2315 case imemo_callinfo:
2351 if (
FIXNUM_P(objid) || rb_big_size(objid) <= SIZEOF_VOIDP) {
2362 if (rb_static_id_valid_p(
SYM2ID(ptr))) {
2366 rb_raise(
rb_eRangeError,
"%p is not a symbol id value", (
void *)ptr);
2370 rb_raise(
rb_eRangeError,
"%+"PRIsVALUE
" is not an id value", rb_int2str(objid, 10));
2374 VALUE obj = object_id_to_ref(rb_gc_get_objspace(), objid);
2379 rb_raise(
rb_eRangeError,
"%+"PRIsVALUE
" is the id of an unshareable object on multi-ractor", rb_int2str(objid, 10));
2388 return id2ref(objid);
2395#if SIZEOF_LONG == SIZEOF_VOIDP
2402 return get_heap_object_id(obj);
2406nonspecial_obj_id(
VALUE obj)
2408#if SIZEOF_LONG == SIZEOF_VOIDP
2410#elif SIZEOF_LONG_LONG == SIZEOF_VOIDP
2413# error not supported
2420 return rb_find_object_id(NULL, obj, nonspecial_obj_id);
2457 return rb_find_object_id(rb_gc_get_objspace(), obj, object_id);
2461rb_obj_id_p(
VALUE obj)
2473rb_gc_before_updating_jit_code(
void)
2476 rb_yjit_mark_all_writeable();
2479 rb_zjit_mark_all_writable();
2489rb_gc_after_updating_jit_code(
void)
2492 rb_yjit_mark_all_executable();
2495 rb_zjit_mark_all_executable();
2502 size_t *size = (
size_t *)arg;
2505 if (RCLASSEXT_M_TBL(ext)) {
2506 s += rb_id_table_memsize(RCLASSEXT_M_TBL(ext));
2508 if (RCLASSEXT_CVC_TBL(ext)) {
2509 s += rb_id_table_memsize(RCLASSEXT_CVC_TBL(ext));
2511 if (RCLASSEXT_CONST_TBL(ext)) {
2512 s += rb_id_table_memsize(RCLASSEXT_CONST_TBL(ext));
2514 if (RCLASSEXT_SUPERCLASSES_WITH_SELF(ext)) {
2515 s += (RCLASSEXT_SUPERCLASS_DEPTH(ext) + 1) *
sizeof(
VALUE);
2524classext_superclasses_memsize(
rb_classext_t *ext,
bool prime,
VALUE box_value,
void *arg)
2526 size_t *size = (
size_t *)arg;
2528 if (RCLASSEXT_SUPERCLASSES_WITH_SELF(ext)) {
2530 array_size = RCLASSEXT_SUPERCLASS_DEPTH(ext) + 1;
2531 *size += array_size *
sizeof(
VALUE);
2536rb_obj_memsize_of(
VALUE obj)
2547 if (rb_shape_obj_too_complex_p(obj)) {
2548 size += rb_st_memsize(ROBJECT_FIELDS_HASH(obj));
2551 size += ROBJECT_FIELDS_CAPACITY(obj) *
sizeof(
VALUE);
2557 rb_class_classext_foreach(obj, classext_memsize, (
void *)&size);
2558 rb_class_classext_foreach(obj, classext_superclasses_memsize, (
void *)&size);
2561 if (RICLASS_OWNS_M_TBL_P(obj)) {
2562 if (RCLASS_M_TBL(obj)) {
2563 size += rb_id_table_memsize(RCLASS_M_TBL(obj));
2568 size += rb_str_memsize(obj);
2571 size += rb_ary_memsize(obj);
2574 if (RHASH_ST_TABLE_P(obj)) {
2575 VM_ASSERT(RHASH_ST_TABLE(obj) != NULL);
2577 size += st_memsize(RHASH_ST_TABLE(obj)) -
sizeof(
st_table);
2586 size += rb_objspace_data_type_memsize(obj);
2591 size += onig_region_memsize(&rm->
regs);
2596 if (
RFILE(obj)->fptr) {
2597 size += rb_io_memsize(
RFILE(obj)->fptr);
2604 size += rb_imemo_memsize(obj);
2612 if (!(
RBASIC(obj)->flags & BIGNUM_EMBED_FLAG) && BIGNUM_DIGITS(obj)) {
2613 size += BIGNUM_LEN(obj) *
sizeof(BDIGIT);
2618 UNEXPECTED_NODE(obj_memsize_of);
2622 if (RSTRUCT_EMBED_LEN(obj) == 0) {
2623 size +=
sizeof(
VALUE) * RSTRUCT_LEN_RAW(obj);
2632 rb_bug(
"objspace/memsize_of(): unknown data type 0x%x(%p)",
2636 return size + rb_gc_obj_slot_size(obj);
2640set_zero(st_data_t key, st_data_t val, st_data_t arg)
2644 rb_hash_aset(hash, k,
INT2FIX(0));
2655count_objects_i(
VALUE obj,
void *d)
2659 if (
RBASIC(obj)->flags) {
2705count_objects(
int argc,
VALUE *argv,
VALUE os)
2717 for (
size_t i = 0; i <=
T_MASK; i++) {
2721 types[i] = type_sym(i);
2728 rb_gc_impl_each_object(rb_gc_get_objspace(), count_objects_i, &data);
2731 hash = rb_hash_new();
2734 rb_hash_stlike_foreach(hash, set_zero, hash);
2736 rb_hash_aset(hash, total,
SIZET2NUM(data.total));
2737 rb_hash_aset(hash, free,
SIZET2NUM(data.freed));
2739 for (
size_t i = 0; i <=
T_MASK; i++) {
2740 if (data.counts[i]) {
2741 rb_hash_aset(hash, types[i],
SIZET2NUM(data.counts[i]));
2748#define SET_STACK_END SET_MACHINE_STACK_END(&ec->machine.stack_end)
2750#define STACK_START (ec->machine.stack_start)
2751#define STACK_END (ec->machine.stack_end)
2752#define STACK_LEVEL_MAX (ec->machine.stack_maxsize/sizeof(VALUE))
2754#if STACK_GROW_DIRECTION < 0
2755# define STACK_LENGTH (size_t)(STACK_START - STACK_END)
2756#elif STACK_GROW_DIRECTION > 0
2757# define STACK_LENGTH (size_t)(STACK_END - STACK_START + 1)
2759# define STACK_LENGTH ((STACK_END < STACK_START) ? (size_t)(STACK_START - STACK_END) \
2760 : (size_t)(STACK_END - STACK_START + 1))
2762#if !STACK_GROW_DIRECTION
2763int ruby_stack_grow_direction;
2765ruby_get_stack_grow_direction(
volatile VALUE *addr)
2768 SET_MACHINE_STACK_END(&end);
2770 if (end > addr)
return ruby_stack_grow_direction = 1;
2771 return ruby_stack_grow_direction = -1;
2780 if (p) *p = STACK_UPPER(STACK_END, STACK_START, STACK_END);
2781 return STACK_LENGTH;
2784#define PREVENT_STACK_OVERFLOW 1
2785#ifndef PREVENT_STACK_OVERFLOW
2786#if !(defined(POSIX_SIGNAL) && defined(SIGSEGV) && defined(HAVE_SIGALTSTACK))
2787# define PREVENT_STACK_OVERFLOW 1
2789# define PREVENT_STACK_OVERFLOW 0
2792#if PREVENT_STACK_OVERFLOW && !defined(__EMSCRIPTEN__)
2798 size_t length = STACK_LENGTH;
2799 size_t maximum_length = STACK_LEVEL_MAX - water_mark;
2801 return length > maximum_length;
2804#define stack_check(ec, water_mark) FALSE
2807#define STACKFRAME_FOR_CALL_CFUNC 2048
2812 return stack_check(ec, STACKFRAME_FOR_CALL_CFUNC);
2818 return stack_check(GET_EC(), STACKFRAME_FOR_CALL_CFUNC);
2823#define RB_GC_MARK_OR_TRAVERSE(func, obj_or_ptr, obj, check_obj) do { \
2824 if (!RB_SPECIAL_CONST_P(obj)) { \
2825 rb_vm_t *vm = GET_VM(); \
2826 void *objspace = vm->gc.objspace; \
2827 if (LIKELY(vm->gc.mark_func_data == NULL)) { \
2828 GC_ASSERT(rb_gc_impl_during_gc_p(objspace)); \
2829 (func)(objspace, (obj_or_ptr)); \
2831 else if (check_obj ? \
2832 rb_gc_impl_pointer_to_heap_p(objspace, (const void *)obj) && \
2833 !rb_gc_impl_garbage_object_p(objspace, obj) : \
2835 GC_ASSERT(!rb_gc_impl_during_gc_p(objspace)); \
2836 struct gc_mark_func_data_struct *mark_func_data = vm->gc.mark_func_data; \
2837 vm->gc.mark_func_data = NULL; \
2838 mark_func_data->mark_func((obj), mark_func_data->data); \
2839 vm->gc.mark_func_data = mark_func_data; \
2845gc_mark_internal(
VALUE obj)
2847 RB_GC_MARK_OR_TRAVERSE(rb_gc_impl_mark, obj, obj,
false);
2853 gc_mark_internal(obj);
2857rb_gc_mark_and_move(
VALUE *ptr)
2859 RB_GC_MARK_OR_TRAVERSE(rb_gc_impl_mark_and_move, ptr, *ptr,
false);
2863gc_mark_and_pin_internal(
VALUE obj)
2865 RB_GC_MARK_OR_TRAVERSE(rb_gc_impl_mark_and_pin, obj, obj,
false);
2871 gc_mark_and_pin_internal(obj);
2875gc_mark_maybe_internal(
VALUE obj)
2877 RB_GC_MARK_OR_TRAVERSE(rb_gc_impl_mark_maybe, obj, obj,
true);
2883 gc_mark_maybe_internal(obj);
2886ATTRIBUTE_NO_ADDRESS_SAFETY_ANALYSIS(
static void each_location(
register const VALUE *x,
register long n,
void (*cb)(
VALUE,
void *),
void *data));
2888each_location(
register const VALUE *x,
register long n,
void (*cb)(
VALUE,
void *),
void *data)
2899each_location_ptr(
const VALUE *start,
const VALUE *end,
void (*cb)(
VALUE,
void *),
void *data)
2901 if (end <= start)
return;
2902 each_location(start, end - start, cb, data);
2906gc_mark_maybe_each_location(
VALUE obj,
void *data)
2908 gc_mark_maybe_internal(obj);
2914 each_location_ptr(start, end, gc_mark_maybe_each_location, NULL);
2918rb_gc_mark_values(
long n,
const VALUE *values)
2920 for (
long i = 0; i < n; i++) {
2921 gc_mark_internal(values[i]);
2926rb_gc_mark_vm_stack_values(
long n,
const VALUE *values)
2928 for (
long i = 0; i < n; i++) {
2929 gc_mark_and_pin_internal(values[i]);
2934mark_key(st_data_t key, st_data_t value, st_data_t data)
2936 gc_mark_and_pin_internal((
VALUE)key);
2946 st_foreach(tbl, mark_key, (st_data_t)rb_gc_get_objspace());
2950mark_keyvalue(st_data_t key, st_data_t value, st_data_t data)
2952 gc_mark_internal((
VALUE)key);
2953 gc_mark_internal((
VALUE)value);
2959pin_key_pin_value(st_data_t key, st_data_t value, st_data_t data)
2961 gc_mark_and_pin_internal((
VALUE)key);
2962 gc_mark_and_pin_internal((
VALUE)value);
2968pin_key_mark_value(st_data_t key, st_data_t value, st_data_t data)
2970 gc_mark_and_pin_internal((
VALUE)key);
2971 gc_mark_internal((
VALUE)value);
2977mark_hash(
VALUE hash)
2979 if (rb_hash_compare_by_id_p(hash)) {
2980 rb_hash_stlike_foreach(hash, pin_key_mark_value, 0);
2983 rb_hash_stlike_foreach(hash, mark_keyvalue, 0);
2986 gc_mark_internal(RHASH(hash)->ifnone);
2994 st_foreach(tbl, pin_key_pin_value, 0);
2997static enum rb_id_table_iterator_result
3000 gc_mark_internal(me);
3002 return ID_TABLE_CONTINUE;
3009 rb_id_table_foreach_values(tbl, mark_method_entry_i,
objspace);
3013static enum rb_id_table_iterator_result
3018 if (!rb_gc_checking_shareable()) {
3019 gc_mark_internal(ce->value);
3020 gc_mark_internal(ce->file);
3022 return ID_TABLE_CONTINUE;
3029 rb_id_table_foreach_values(tbl, mark_const_entry_i,
objspace);
3032static enum rb_id_table_iterator_result
3040 gc_mark_internal((
VALUE)entry->cref);
3042 return ID_TABLE_CONTINUE;
3049 rb_id_table_foreach_values(tbl, mark_cvc_tbl_i,
objspace);
3052#if STACK_GROW_DIRECTION < 0
3053#define GET_STACK_BOUNDS(start, end, appendix) ((start) = STACK_END, (end) = STACK_START)
3054#elif STACK_GROW_DIRECTION > 0
3055#define GET_STACK_BOUNDS(start, end, appendix) ((start) = STACK_START, (end) = STACK_END+(appendix))
3057#define GET_STACK_BOUNDS(start, end, appendix) \
3058 ((STACK_END < STACK_START) ? \
3059 ((start) = STACK_END, (end) = STACK_START) : ((start) = STACK_START, (end) = STACK_END+(appendix)))
3063gc_mark_machine_stack_location_maybe(
VALUE obj,
void *data)
3065 gc_mark_maybe_internal(obj);
3067#ifdef RUBY_ASAN_ENABLED
3069 void *fake_frame_start;
3070 void *fake_frame_end;
3071 bool is_fake_frame = asan_get_fake_stack_extents(
3072 ec->machine.asan_fake_stack_handle, obj,
3073 ec->machine.stack_start, ec->machine.stack_end,
3074 &fake_frame_start, &fake_frame_end
3076 if (is_fake_frame) {
3077 each_location_ptr(fake_frame_start, fake_frame_end, gc_mark_maybe_each_location, NULL);
3089 return rb_gc_impl_object_moved_p(
objspace, obj);
3099 GC_ASSERT(rb_gc_impl_pointer_to_heap_p(
objspace, (
void *)value));
3101 return rb_gc_impl_location(
objspace, value);
3107 return gc_location_internal(rb_gc_get_objspace(), value);
3110#if defined(__wasm__)
3113static VALUE *rb_stack_range_tmp[2];
3116rb_mark_locations(
void *begin,
void *end)
3118 rb_stack_range_tmp[0] = begin;
3119 rb_stack_range_tmp[1] = end;
3123rb_gc_save_machine_context(
void)
3128# if defined(__EMSCRIPTEN__)
3133 emscripten_scan_stack(rb_mark_locations);
3134 each_location_ptr(rb_stack_range_tmp[0], rb_stack_range_tmp[1], gc_mark_maybe_each_location, NULL);
3136 emscripten_scan_registers(rb_mark_locations);
3137 each_location_ptr(rb_stack_range_tmp[0], rb_stack_range_tmp[1], gc_mark_maybe_each_location, NULL);
3144 VALUE *stack_start, *stack_end;
3146 GET_STACK_BOUNDS(stack_start, stack_end, 1);
3147 each_location_ptr(stack_start, stack_end, gc_mark_maybe_each_location, NULL);
3149 rb_wasm_scan_locals(rb_mark_locations);
3150 each_location_ptr(rb_stack_range_tmp[0], rb_stack_range_tmp[1], gc_mark_maybe_each_location, NULL);
3158rb_gc_save_machine_context(
void)
3162 RB_VM_SAVE_MACHINE_CONTEXT(thread);
3169 rb_gc_mark_machine_context(ec);
3176 VALUE *stack_start, *stack_end;
3178 GET_STACK_BOUNDS(stack_start, stack_end, 0);
3179 RUBY_DEBUG_LOG(
"ec->th:%u stack_start:%p stack_end:%p", rb_ec_thread_ptr(ec)->serial, stack_start, stack_end);
3182#ifdef RUBY_ASAN_ENABLED
3189 each_location_ptr(stack_start, stack_end, gc_mark_machine_stack_location_maybe, data);
3190 int num_regs =
sizeof(ec->machine.regs)/(
sizeof(
VALUE));
3191 each_location((
VALUE*)&ec->machine.regs, num_regs, gc_mark_machine_stack_location_maybe, data);
3195rb_mark_tbl_i(st_data_t key, st_data_t value, st_data_t data)
3197 gc_mark_and_pin_internal((
VALUE)value);
3205 if (!tbl || tbl->num_entries == 0)
return;
3207 st_foreach(tbl, rb_mark_tbl_i, 0);
3213 if (!tbl || tbl->num_entries == 0)
return;
3215 st_foreach(tbl, gc_mark_tbl_no_pin_i, 0);
3221 gc_mark_tbl_no_pin(tbl);
3227 return (
type->flags & RUBY_TYPED_DECL_MARKING) != 0;
3231rb_gc_mark_roots(
void *
objspace,
const char **categoryp)
3234 rb_vm_t *vm = rb_ec_vm_ptr(ec);
3236#define MARK_CHECKPOINT(category) do { \
3237 if (categoryp) *categoryp = category; \
3240 MARK_CHECKPOINT(
"vm");
3243 MARK_CHECKPOINT(
"end_proc");
3246 MARK_CHECKPOINT(
"global_tbl");
3247 rb_gc_mark_global_tbl();
3250 void rb_yjit_root_mark(
void);
3252 if (rb_yjit_enabled_p) {
3253 MARK_CHECKPOINT(
"YJIT");
3254 rb_yjit_root_mark();
3259 void rb_zjit_root_mark(
void);
3260 if (rb_zjit_enabled_p) {
3261 MARK_CHECKPOINT(
"ZJIT");
3262 rb_zjit_root_mark();
3266 MARK_CHECKPOINT(
"machine_context");
3267 mark_current_machine_context(ec);
3269 MARK_CHECKPOINT(
"global_symbols");
3270 rb_sym_global_symbols_mark_and_move();
3272 MARK_CHECKPOINT(
"finish");
3274#undef MARK_CHECKPOINT
3288 if (RCLASSEXT_SUPER(ext)) {
3289 gc_mark_internal(RCLASSEXT_SUPER(ext));
3291 mark_m_tbl(
objspace, RCLASSEXT_M_TBL(ext));
3293 if (!rb_gc_checking_shareable()) {
3295 gc_mark_internal(RCLASSEXT_FIELDS_OBJ(ext));
3298 if (!RCLASSEXT_SHARED_CONST_TBL(ext) && RCLASSEXT_CONST_TBL(ext)) {
3299 mark_const_tbl(
objspace, RCLASSEXT_CONST_TBL(ext));
3301 mark_m_tbl(
objspace, RCLASSEXT_CALLABLE_M_TBL(ext));
3302 gc_mark_internal(RCLASSEXT_CC_TBL(ext));
3303 mark_cvc_tbl(
objspace, RCLASSEXT_CVC_TBL(ext));
3304 gc_mark_internal(RCLASSEXT_CLASSPATH(ext));
3313 if (RCLASSEXT_SUPER(ext)) {
3314 gc_mark_internal(RCLASSEXT_SUPER(ext));
3316 if (RCLASSEXT_ICLASS_IS_ORIGIN(ext) && !RCLASSEXT_ICLASS_ORIGIN_SHARED_MTBL(ext)) {
3317 mark_m_tbl(
objspace, RCLASSEXT_M_TBL(ext));
3319 if (RCLASSEXT_INCLUDER(ext)) {
3320 gc_mark_internal(RCLASSEXT_INCLUDER(ext));
3322 mark_m_tbl(
objspace, RCLASSEXT_CALLABLE_M_TBL(ext));
3323 gc_mark_internal(RCLASSEXT_CC_TBL(ext));
3326#define TYPED_DATA_REFS_OFFSET_LIST(d) (size_t *)(uintptr_t)RTYPEDDATA_TYPE(d)->function.dmark
3329rb_gc_move_obj_during_marking(
VALUE from,
VALUE to)
3331 if (rb_obj_using_gen_fields_table_p(to)) {
3332 rb_mark_generic_ivar(from);
3341 if (rb_obj_using_gen_fields_table_p(obj)) {
3342 rb_mark_generic_ivar(obj);
3352 rb_bug(
"rb_gc_mark() called for broken object");
3356 UNEXPECTED_NODE(rb_gc_mark);
3360 rb_imemo_mark_and_move(obj,
false);
3367 gc_mark_internal(
RBASIC(obj)->klass);
3372 !rb_gc_checking_shareable()) {
3373 gc_mark_internal(RCLASS_ATTACHED_OBJECT(obj));
3378 foreach_args.obj = obj;
3379 rb_class_classext_foreach(obj, gc_mark_classext_module, (
void *)&foreach_args);
3380 if (BOX_USER_P(RCLASS_PRIME_BOX(obj))) {
3381 gc_mark_internal(RCLASS_PRIME_BOX(obj)->box_object);
3387 foreach_args.obj = obj;
3388 rb_class_classext_foreach(obj, gc_mark_classext_iclass, (
void *)&foreach_args);
3389 if (BOX_USER_P(RCLASS_PRIME_BOX(obj))) {
3390 gc_mark_internal(RCLASS_PRIME_BOX(obj)->box_object);
3395 if (ARY_SHARED_P(obj)) {
3396 VALUE root = ARY_SHARED_ROOT(obj);
3397 gc_mark_internal(root);
3402 for (
long i = 0; i <
len; i++) {
3403 gc_mark_internal(ptr[i]);
3413 gc_mark_internal(RSYMBOL(obj)->fstr);
3417 if (STR_SHARED_P(obj)) {
3418 if (STR_EMBED_P(
RSTRING(obj)->as.heap.aux.shared)) {
3423 gc_mark_and_pin_internal(
RSTRING(obj)->as.heap.aux.shared);
3426 gc_mark_internal(
RSTRING(obj)->as.heap.aux.shared);
3433 void *
const ptr = typed_data ? RTYPEDDATA_GET_DATA(obj) :
DATA_PTR(obj);
3436 gc_mark_internal(
RTYPEDDATA(obj)->fields_obj);
3441 size_t *offset_list = TYPED_DATA_REFS_OFFSET_LIST(obj);
3443 for (
size_t offset = *offset_list; offset != RUBY_REF_END; offset = *offset_list++) {
3444 gc_mark_internal(*(
VALUE *)((
char *)ptr + offset));
3451 if (mark_func) (*mark_func)(ptr);
3460 if (rb_shape_obj_too_complex_p(obj)) {
3461 gc_mark_tbl_no_pin(ROBJECT_FIELDS_HASH(obj));
3462 len = ROBJECT_FIELDS_COUNT_COMPLEX(obj);
3467 len = ROBJECT_FIELDS_COUNT_NOT_COMPLEX(obj);
3468 for (uint32_t i = 0; i <
len; i++) {
3469 gc_mark_internal(ptr[i]);
3473 attr_index_t fields_count = (attr_index_t)
len;
3478 if (RCLASS_MAX_IV_COUNT(klass) < fields_count) {
3479 RCLASS_SET_MAX_IV_COUNT(klass, fields_count);
3487 if (
RFILE(obj)->fptr) {
3488 gc_mark_internal(
RFILE(obj)->fptr->self);
3489 gc_mark_internal(
RFILE(obj)->fptr->pathv);
3490 gc_mark_internal(
RFILE(obj)->fptr->tied_io_for_writing);
3491 gc_mark_internal(
RFILE(obj)->fptr->writeconv_asciicompat);
3492 gc_mark_internal(
RFILE(obj)->fptr->writeconv_pre_ecopts);
3493 gc_mark_internal(
RFILE(obj)->fptr->encs.ecopts);
3494 gc_mark_internal(
RFILE(obj)->fptr->write_lock);
3495 gc_mark_internal(
RFILE(obj)->fptr->timeout);
3496 gc_mark_internal(
RFILE(obj)->fptr->wakeup_mutex);
3501 gc_mark_internal(
RREGEXP(obj)->src);
3505 gc_mark_internal(
RMATCH(obj)->regexp);
3507 gc_mark_internal(
RMATCH(obj)->str);
3512 gc_mark_internal(RRATIONAL(obj)->num);
3513 gc_mark_internal(RRATIONAL(obj)->den);
3517 gc_mark_internal(RCOMPLEX(obj)->real);
3518 gc_mark_internal(RCOMPLEX(obj)->imag);
3523 const VALUE *
const ptr = RSTRUCT_CONST_PTR(obj);
3525 for (
long i = 0; i <
len; i++) {
3526 gc_mark_internal(ptr[i]);
3529 if (rb_shape_obj_has_fields(obj) && !
FL_TEST_RAW(obj, RSTRUCT_GEN_FIELDS)) {
3530 gc_mark_internal(RSTRUCT_FIELDS_OBJ(obj));
3540 rb_bug(
"rb_gc_mark(): unknown data type 0x%x(%p) %s",
3542 rb_gc_impl_pointer_to_heap_p(
objspace, (
void *)obj) ?
"corrupted object" :
"non object");
3547rb_gc_obj_optimal_size(
VALUE obj)
3552 size_t size = rb_ary_size_as_embedded(obj);
3553 if (rb_gc_size_allocatable_p(size)) {
3557 return sizeof(
struct RArray);
3562 if (rb_shape_obj_too_complex_p(obj)) {
3563 return sizeof(
struct RObject);
3566 size_t size = rb_obj_embedded_size(ROBJECT_FIELDS_CAPACITY(obj));
3567 if (rb_gc_size_allocatable_p(size)) {
3571 return sizeof(
struct RObject);
3577 size_t size = rb_str_size_as_embedded(obj);
3578 if (rb_gc_size_allocatable_p(size)) {
3582 return sizeof(
struct RString);
3587 return sizeof(
struct RHash) + (RHASH_ST_TABLE_P(obj) ? sizeof(
st_table) : sizeof(ar_table));
3595rb_gc_writebarrier(VALUE a, VALUE b)
3597 rb_gc_impl_writebarrier(rb_gc_get_objspace(), a, b);
3603 rb_gc_impl_writebarrier_unprotect(rb_gc_get_objspace(), obj);
3610rb_gc_writebarrier_remember(
VALUE obj)
3612 rb_gc_impl_writebarrier_remember(rb_gc_get_objspace(), obj);
3618 rb_gc_impl_copy_attributes(rb_gc_get_objspace(), dest, obj);
3622rb_gc_modular_gc_loaded_p(
void)
3625 return rb_gc_functions.modular_gc_loaded_p;
3632rb_gc_active_gc_name(
void)
3634 const char *gc_name = rb_gc_impl_active_gc_name();
3636 const size_t len = strlen(gc_name);
3637 if (
len > RB_GC_MAX_NAME_LEN) {
3638 rb_bug(
"GC should have a name no more than %d chars long. Currently: %zu (%s)",
3639 RB_GC_MAX_NAME_LEN,
len, gc_name);
3646rb_gc_object_metadata(
VALUE obj)
3648 return rb_gc_impl_object_metadata(rb_gc_get_objspace(), obj);
3656 return rb_gc_impl_ractor_cache_alloc(rb_gc_get_objspace(), ractor);
3660rb_gc_ractor_cache_free(
void *cache)
3662 rb_gc_impl_ractor_cache_free(rb_gc_get_objspace(), cache);
3668 if (!rb_gc_impl_pointer_to_heap_p(rb_gc_get_objspace(), (
void *)obj))
3671 rb_vm_register_global_object(obj);
3683 tmp->next = vm->global_object_list;
3685 vm->global_object_list = tmp;
3694 rb_warn(
"Object is assigned to registering address already: %"PRIsVALUE,
3696 rb_print_backtrace(stderr);
3706 tmp = vm->global_object_list;
3707 if (tmp->varptr == addr) {
3708 vm->global_object_list = tmp->next;
3713 if (tmp->next->varptr == addr) {
3716 tmp->next = tmp->next->next;
3729 rb_gc_register_address(var);
3735 rb_gc_impl_start(rb_gc_get_objspace(),
RTEST(full_mark),
RTEST(immediate_mark),
RTEST(immediate_sweep),
RTEST(compact));
3779rb_objspace_each_objects(
int (*callback)(
void *,
void *,
size_t,
void *),
void *data)
3781 rb_gc_impl_each_objects(rb_gc_get_objspace(), callback, data);
3787 if (ARY_SHARED_P(v)) {
3788 VALUE old_root =
RARRAY(v)->as.heap.aux.shared_root;
3792 VALUE new_root =
RARRAY(v)->as.heap.aux.shared_root;
3794 if (ARY_EMBED_P(new_root) && new_root != old_root) {
3795 size_t offset = (size_t)(
RARRAY(v)->as.heap.ptr -
RARRAY(old_root)->as.ary);
3796 GC_ASSERT(
RARRAY(v)->as.heap.ptr >=
RARRAY(old_root)->as.ary);
3797 RARRAY(v)->as.heap.ptr =
RARRAY(new_root)->as.ary + offset;
3805 for (
long i = 0; i <
len; i++) {
3810 if (rb_gc_obj_slot_size(v) >= rb_ary_size_as_embedded(v)) {
3811 if (rb_ary_embeddable_p(v)) {
3812 rb_ary_make_embedded(v);
3824 if (rb_shape_obj_too_complex_p(v)) {
3825 gc_ref_update_table_values_only(ROBJECT_FIELDS_HASH(v));
3829 size_t slot_size = rb_gc_obj_slot_size(v);
3830 size_t embed_size = rb_obj_embedded_size(ROBJECT_FIELDS_CAPACITY(v));
3831 if (slot_size >= embed_size) {
3833 memcpy(
ROBJECT(v)->as.ary, ptr,
sizeof(
VALUE) * ROBJECT_FIELDS_COUNT(v));
3834 SIZED_FREE_N(ptr, ROBJECT_FIELDS_CAPACITY(v));
3840 for (uint32_t i = 0; i < ROBJECT_FIELDS_COUNT(v); i++) {
3846rb_gc_ref_update_table_values_only(
st_table *tbl)
3848 gc_ref_update_table_values_only(tbl);
3855 gc_update_table_refs(ptr);
3861 rb_hash_stlike_foreach_with_replace(v, hash_foreach_replace, hash_replace_ref, (st_data_t)
objspace);
3867 for (
long i = 0; i < n; i++) {
3868 UPDATE_IF_MOVED(
objspace, values[i]);
3873rb_gc_update_values(
long n,
VALUE *values)
3875 gc_update_values(rb_gc_get_objspace(), n, values);
3878static enum rb_id_table_iterator_result
3879check_id_table_move(
VALUE value,
void *data)
3884 return ID_TABLE_REPLACE;
3887 return ID_TABLE_CONTINUE;
3891rb_gc_prepare_heap_process_object(
VALUE obj)
3905rb_gc_prepare_heap(
void)
3907 rb_gc_impl_prepare_heap(rb_gc_get_objspace());
3911rb_gc_heap_id_for_size(
size_t size)
3913 return rb_gc_impl_heap_id_for_size(rb_gc_get_objspace(), size);
3917rb_gc_size_allocatable_p(
size_t size)
3919 return rb_gc_impl_size_allocatable_p(size);
3922static enum rb_id_table_iterator_result
3923update_id_table(
VALUE *value,
void *data,
int existing)
3931 return ID_TABLE_CONTINUE;
3938 rb_id_table_foreach_values_with_replace(tbl, check_id_table_move, update_id_table,
objspace);
3942static enum rb_id_table_iterator_result
3953 entry->class_value = gc_location_internal(
objspace, entry->class_value);
3955 return ID_TABLE_CONTINUE;
3962 rb_id_table_foreach_values(tbl, update_cvc_tbl_i,
objspace);
3965static enum rb_id_table_iterator_result
3970 if (gc_object_moved_p_internal(
objspace, ce->value)) {
3971 ce->value = gc_location_internal(
objspace, ce->value);
3974 if (gc_object_moved_p_internal(
objspace, ce->file)) {
3975 ce->file = gc_location_internal(
objspace, ce->file);
3978 return ID_TABLE_CONTINUE;
3985 rb_id_table_foreach_values(tbl, update_const_tbl_i,
objspace);
3995 UPDATE_IF_MOVED(
objspace, entry->klass);
3996 entry = entry->next;
4003 if (RCLASSEXT_SUPERCLASSES_WITH_SELF(ext)) {
4004 size_t array_size = RCLASSEXT_SUPERCLASS_DEPTH(ext) + 1;
4005 for (
size_t i = 0; i < array_size; i++) {
4006 UPDATE_IF_MOVED(
objspace, RCLASSEXT_SUPERCLASSES(ext)[i]);
4014 UPDATE_IF_MOVED(
objspace, RCLASSEXT_ORIGIN(ext));
4015 UPDATE_IF_MOVED(
objspace, RCLASSEXT_REFINED_CLASS(ext));
4016 UPDATE_IF_MOVED(
objspace, RCLASSEXT_CLASSPATH(ext));
4018 UPDATE_IF_MOVED(
objspace, RCLASSEXT_INCLUDER(ext));
4028 if (RCLASSEXT_SUPER(ext)) {
4029 UPDATE_IF_MOVED(
objspace, RCLASSEXT_SUPER(ext));
4032 update_m_tbl(
objspace, RCLASSEXT_M_TBL(ext));
4034 UPDATE_IF_MOVED(
objspace, ext->fields_obj);
4035 if (!RCLASSEXT_SHARED_CONST_TBL(ext)) {
4036 update_const_tbl(
objspace, RCLASSEXT_CONST_TBL(ext));
4038 UPDATE_IF_MOVED(
objspace, RCLASSEXT_CC_TBL(ext));
4039 update_cvc_tbl(
objspace, RCLASSEXT_CVC_TBL(ext));
4040 update_superclasses(
objspace, ext);
4043 update_classext_values(
objspace, ext,
false);
4052 if (RCLASSEXT_SUPER(ext)) {
4053 UPDATE_IF_MOVED(
objspace, RCLASSEXT_SUPER(ext));
4055 update_m_tbl(
objspace, RCLASSEXT_M_TBL(ext));
4056 update_m_tbl(
objspace, RCLASSEXT_CALLABLE_M_TBL(ext));
4057 UPDATE_IF_MOVED(
objspace, RCLASSEXT_CC_TBL(ext));
4060 update_classext_values(
objspace, ext,
true);
4064 vm_table_foreach_callback_func callback;
4065 vm_table_update_callback_func update_callback;
4071vm_weak_table_foreach_weak_key(st_data_t key, st_data_t value, st_data_t data,
int error)
4075 int ret = iter_data->callback((
VALUE)key, iter_data->data);
4077 if (!iter_data->weak_only) {
4078 if (ret != ST_CONTINUE)
return ret;
4080 ret = iter_data->callback((
VALUE)value, iter_data->data);
4087vm_weak_table_foreach_update_weak_key(st_data_t *key, st_data_t *value, st_data_t data,
int existing)
4091 int ret = iter_data->update_callback((
VALUE *)key, iter_data->data);
4093 if (!iter_data->weak_only) {
4094 if (ret != ST_CONTINUE)
return ret;
4096 ret = iter_data->update_callback((
VALUE *)value, iter_data->data);
4103vm_weak_table_sym_set_foreach(
VALUE *sym_ptr,
void *data)
4105 VALUE sym = *sym_ptr;
4110 int ret = iter_data->callback(sym, iter_data->data);
4112 if (ret == ST_REPLACE) {
4113 ret = iter_data->update_callback(sym_ptr, iter_data->data);
4119struct st_table *rb_generic_fields_tbl_get(
void);
4122vm_weak_table_id2ref_foreach(st_data_t key, st_data_t value, st_data_t data,
int error)
4127 int ret = iter_data->callback((
VALUE)key, iter_data->data);
4128 if (ret != ST_CONTINUE)
return ret;
4131 return iter_data->callback((
VALUE)value, iter_data->data);
4135vm_weak_table_id2ref_foreach_update(st_data_t *key, st_data_t *value, st_data_t data,
int existing)
4139 iter_data->update_callback((
VALUE *)value, iter_data->data);
4142 iter_data->update_callback((
VALUE *)key, iter_data->data);
4149vm_weak_table_gen_fields_foreach(st_data_t key, st_data_t value, st_data_t data)
4153 int ret = iter_data->callback((
VALUE)key, iter_data->data);
4163 RBASIC_SET_SHAPE_ID((
VALUE)key, ROOT_SHAPE_ID);
4167 ret = iter_data->update_callback(&new_key, iter_data->data);
4168 if (key != new_key) {
4175 rb_bug(
"vm_weak_table_gen_fields_foreach: return value %d not supported", ret);
4178 if (!iter_data->weak_only) {
4179 int ivar_ret = iter_data->callback(new_value, iter_data->data);
4185 iter_data->update_callback(&new_value, iter_data->data);
4189 rb_bug(
"vm_weak_table_gen_fields_foreach: return value %d not supported", ivar_ret);
4193 if (key != new_key || value != new_value) {
4194 DURING_GC_COULD_MALLOC_REGION_START();
4196 st_insert(rb_generic_fields_tbl_get(), (st_data_t)new_key, new_value);
4198 DURING_GC_COULD_MALLOC_REGION_END();
4205vm_weak_table_frozen_strings_foreach(
VALUE *str,
void *data)
4209 int retval = iter_data->callback(*str, iter_data->data);
4211 if (retval == ST_REPLACE) {
4212 retval = iter_data->update_callback(str, iter_data->data);
4215 if (retval == ST_DELETE) {
4222void rb_fstring_foreach_with_replace(
int (*callback)(
VALUE *str,
void *data),
void *data);
4224rb_gc_vm_weak_table_foreach(vm_table_foreach_callback_func callback,
4225 vm_table_update_callback_func update_callback,
4228 enum rb_gc_vm_weak_tables table)
4233 .callback = callback,
4234 .update_callback = update_callback,
4236 .weak_only = weak_only,
4240 case RB_GC_VM_CI_TABLE: {
4241 st_foreach_with_replace(
4243 vm_weak_table_foreach_weak_key,
4244 vm_weak_table_foreach_update_weak_key,
4245 (st_data_t)&foreach_data
4249 case RB_GC_VM_OVERLOADED_CME_TABLE: {
4250 st_foreach_with_replace(
4251 &vm->overloaded_cme_table,
4252 vm_weak_table_foreach_weak_key,
4253 vm_weak_table_foreach_update_weak_key,
4254 (st_data_t)&foreach_data
4258 case RB_GC_VM_GLOBAL_SYMBOLS_TABLE: {
4259 rb_sym_global_symbol_table_foreach_weak_reference(
4260 vm_weak_table_sym_set_foreach,
4265 case RB_GC_VM_ID2REF_TABLE: {
4267 st_foreach_with_replace(
4269 vm_weak_table_id2ref_foreach,
4270 vm_weak_table_id2ref_foreach_update,
4271 (st_data_t)&foreach_data
4276 case RB_GC_VM_GENERIC_FIELDS_TABLE: {
4277 st_table *generic_fields_tbl = rb_generic_fields_tbl_get();
4278 if (generic_fields_tbl) {
4281 vm_weak_table_gen_fields_foreach,
4282 (st_data_t)&foreach_data
4287 case RB_GC_VM_FROZEN_STRINGS_TABLE: {
4288 rb_fstring_foreach_with_replace(
4289 vm_weak_table_frozen_strings_foreach,
4294 case RB_GC_VM_WEAK_TABLE_COUNT:
4295 rb_bug(
"Unreachable");
4297 rb_bug(
"rb_gc_vm_weak_table_foreach: unknown table %d", table);
4302rb_gc_update_vm_references(
void *
objspace)
4305 rb_vm_t *vm = rb_ec_vm_ptr(ec);
4307 rb_vm_update_references(vm);
4308 rb_gc_update_global_tbl();
4309 rb_sym_global_symbols_mark_and_move();
4312 void rb_yjit_root_update_references(
void);
4314 if (rb_yjit_enabled_p) {
4315 rb_yjit_root_update_references();
4320 void rb_zjit_root_update_references(
void);
4322 if (rb_zjit_enabled_p) {
4323 rb_zjit_root_update_references();
4336 UPDATE_IF_MOVED(
objspace, RCLASS_ATTACHED_OBJECT(obj));
4342 rb_class_classext_foreach(obj, update_classext, (
void *)&args);
4347 rb_class_classext_foreach(obj, update_iclass_classext, (
void *)&args);
4351 rb_imemo_mark_and_move(obj,
true);
4363 gc_ref_update_array(
objspace, obj);
4368 UPDATE_IF_MOVED(
objspace, RHASH(obj)->ifnone);
4373 if (STR_SHARED_P(obj)) {
4379 if (rb_gc_obj_slot_size(obj) >= rb_str_size_as_embedded(obj)) {
4380 if (!STR_EMBED_P(obj) && rb_str_reembeddable_p(obj)) {
4381 rb_str_make_embedded(obj);
4391 void *
const ptr = typed_data ? RTYPEDDATA_GET_DATA(obj) :
DATA_PTR(obj);
4399 size_t *offset_list = TYPED_DATA_REFS_OFFSET_LIST(obj);
4401 for (
size_t offset = *offset_list; offset != RUBY_REF_END; offset = *offset_list++) {
4402 VALUE *ref = (
VALUE *)((
char *)ptr + offset);
4403 *ref = gc_location_internal(
objspace, *ref);
4406 else if (typed_data) {
4408 if (compact_func) (*compact_func)(ptr);
4415 gc_ref_update_object(
objspace, obj);
4419 if (
RFILE(obj)->fptr) {
4422 UPDATE_IF_MOVED(
objspace,
RFILE(obj)->fptr->tied_io_for_writing);
4423 UPDATE_IF_MOVED(
objspace,
RFILE(obj)->fptr->writeconv_asciicompat);
4424 UPDATE_IF_MOVED(
objspace,
RFILE(obj)->fptr->writeconv_pre_ecopts);
4436 UPDATE_IF_MOVED(
objspace, RSYMBOL(obj)->fstr);
4452 UPDATE_IF_MOVED(
objspace, RRATIONAL(obj)->num);
4453 UPDATE_IF_MOVED(
objspace, RRATIONAL(obj)->den);
4457 UPDATE_IF_MOVED(
objspace, RCOMPLEX(obj)->real);
4458 UPDATE_IF_MOVED(
objspace, RCOMPLEX(obj)->imag);
4465 VALUE *ptr = (
VALUE *)RSTRUCT_CONST_PTR(obj);
4467 for (i = 0; i <
len; i++) {
4471 if (RSTRUCT_EMBED_LEN(obj)) {
4477 UPDATE_IF_MOVED(
objspace, RSTRUCT(obj)->as.heap.fields_obj);
4482 rb_bug(
"unreachable");
4499 unless_objspace(
objspace) {
return; }
4501 rb_gc_impl_start(
objspace,
true,
true,
true,
false);
4507 unless_objspace(
objspace) {
return FALSE; }
4509 return rb_gc_impl_during_gc_p(
objspace);
4515 return rb_gc_impl_gc_count(rb_gc_get_objspace());
4531 VALUE val = rb_gc_impl_latest_gc_info(rb_gc_get_objspace(), key);
4534 rb_raise(rb_eArgError,
"unknown key: %"PRIsVALUE,
rb_sym2str(key));
4544 arg = rb_hash_new();
4550 VALUE ret = rb_gc_impl_stat(rb_gc_get_objspace(), arg);
4555 rb_raise(rb_eArgError,
"unknown key: %"PRIsVALUE,
rb_sym2str(arg));
4568 VALUE ret = rb_gc_impl_stat(rb_gc_get_objspace(), arg);
4573 rb_raise(rb_eArgError,
"unknown key: %"PRIsVALUE,
rb_sym2str(arg));
4588 arg = rb_hash_new();
4591 if (
NIL_P(heap_name)) {
4602 rb_raise(
rb_eTypeError,
"heap_name must be nil or an Integer");
4605 VALUE ret = rb_gc_impl_stat_heap(rb_gc_get_objspace(), heap_name, arg);
4610 rb_raise(rb_eArgError,
"unknown key: %"PRIsVALUE,
rb_sym2str(arg));
4619 VALUE cfg_hash = rb_gc_impl_config_get(rb_gc_get_objspace());
4620 rb_hash_aset(cfg_hash, sym(
"implementation"), rb_fstring_cstr(rb_gc_impl_active_gc_name()));
4628 void *
objspace = rb_gc_get_objspace();
4630 rb_gc_impl_config_set(
objspace, hash);
4638 return rb_gc_impl_stress_get(rb_gc_get_objspace());
4644 rb_gc_impl_stress_set(rb_gc_get_objspace(), flag);
4650rb_gc_initial_stress_set(
VALUE flag)
4652 initial_stress = flag;
4656rb_gc_heap_sizes(
void)
4658 return rb_gc_impl_heap_sizes(rb_gc_get_objspace());
4664 return rb_objspace_gc_enable(rb_gc_get_objspace());
4668rb_objspace_gc_enable(
void *
objspace)
4670 bool disabled = !rb_gc_impl_gc_enabled_p(
objspace);
4672 return RBOOL(disabled);
4678 return rb_gc_enable();
4684 bool disabled = !rb_gc_impl_gc_enabled_p(
objspace);
4685 rb_gc_impl_gc_disable(
objspace,
false);
4686 return RBOOL(disabled);
4690rb_gc_disable_no_rest(
void)
4692 return gc_disable_no_rest(rb_gc_get_objspace());
4698 return rb_objspace_gc_disable(rb_gc_get_objspace());
4702rb_objspace_gc_disable(
void *
objspace)
4704 bool disabled = !rb_gc_impl_gc_enabled_p(
objspace);
4705 rb_gc_impl_gc_disable(
objspace,
true);
4706 return RBOOL(disabled);
4712 return rb_gc_disable();
4717ruby_gc_set_params(
void)
4719 rb_gc_impl_set_params(rb_gc_get_objspace());
4723rb_objspace_reachable_objects_from(
VALUE obj,
void (func)(
VALUE,
void *),
void *data)
4726 if (rb_gc_impl_during_gc_p(rb_gc_get_objspace())) rb_bug(
"rb_objspace_reachable_objects_from() is not supported while during GC");
4730 struct gc_mark_func_data_struct *prev_mfd = vm->gc.mark_func_data;
4731 struct gc_mark_func_data_struct mfd = {
4736 vm->gc.mark_func_data = &mfd;
4737 rb_gc_mark_children(rb_gc_get_objspace(), obj);
4738 vm->gc.mark_func_data = prev_mfd;
4744 const char *category;
4745 void (*func)(
const char *category,
VALUE,
void *);
4750root_objects_from(
VALUE obj,
void *ptr)
4753 (*data->func)(data->category, obj, data->data);
4757rb_objspace_reachable_objects_from_root(
void (func)(
const char *category,
VALUE,
void *),
void *passing_data)
4759 if (rb_gc_impl_during_gc_p(rb_gc_get_objspace())) rb_bug(
"rb_gc_impl_objspace_reachable_objects_from_root() is not supported while during GC");
4765 .data = passing_data,
4768 struct gc_mark_func_data_struct *prev_mfd = vm->gc.mark_func_data;
4769 struct gc_mark_func_data_struct mfd = {
4770 .mark_func = root_objects_from,
4774 vm->gc.mark_func_data = &mfd;
4775 rb_gc_save_machine_context();
4776 rb_gc_mark_roots(vm->gc.objspace, &data.category);
4777 vm->gc.mark_func_data = prev_mfd;
4788#define TYPE_NAME(t) case (t): return #t;
4815 if (obj && rb_objspace_data_type_name(obj)) {
4816 return rb_objspace_data_type_name(obj);
4825obj_type_name(
VALUE obj)
4827 return type_name(
TYPE(obj), obj);
4831rb_method_type_name(rb_method_type_t
type)
4834 case VM_METHOD_TYPE_ISEQ:
return "iseq";
4835 case VM_METHOD_TYPE_ATTRSET:
return "attrest";
4836 case VM_METHOD_TYPE_IVAR:
return "ivar";
4837 case VM_METHOD_TYPE_BMETHOD:
return "bmethod";
4838 case VM_METHOD_TYPE_ALIAS:
return "alias";
4839 case VM_METHOD_TYPE_REFINED:
return "refined";
4840 case VM_METHOD_TYPE_CFUNC:
return "cfunc";
4841 case VM_METHOD_TYPE_ZSUPER:
return "zsuper";
4842 case VM_METHOD_TYPE_MISSING:
return "missing";
4843 case VM_METHOD_TYPE_OPTIMIZED:
return "optimized";
4844 case VM_METHOD_TYPE_UNDEF:
return "undef";
4845 case VM_METHOD_TYPE_NOTIMPLEMENTED:
return "notimplemented";
4847 rb_bug(
"rb_method_type_name: unreachable (type: %d)",
type);
4851rb_raw_iseq_info(
char *
const buff,
const size_t buff_size,
const rb_iseq_t *iseq)
4853 if (buff_size > 0 && ISEQ_BODY(iseq) && ISEQ_BODY(iseq)->location.label && !
RB_TYPE_P(ISEQ_BODY(iseq)->location.pathobj,
T_MOVED)) {
4854 VALUE path = rb_iseq_path(iseq);
4855 int n = ISEQ_BODY(iseq)->location.first_lineno;
4856 snprintf(buff, buff_size,
" %s@%s:%d",
4857 RSTRING_PTR(ISEQ_BODY(iseq)->location.label),
4858 RSTRING_PTR(path), n);
4863str_len_no_raise(
VALUE str)
4865 long len = RSTRING_LEN(str);
4866 if (
len < 0)
return 0;
4867 if (
len > INT_MAX)
return INT_MAX;
4871#define BUFF_ARGS buff + pos, buff_size - pos
4872#define APPEND_F(...) if ((pos += snprintf(BUFF_ARGS, "" __VA_ARGS__)) >= buff_size) goto end
4873#define APPEND_S(s) do { \
4874 if ((pos + (int)rb_strlen_lit(s)) >= buff_size) { \
4878 memcpy(buff + pos, (s), rb_strlen_lit(s) + 1); \
4881#define C(c, s) ((c) != 0 ? (s) : " ")
4884rb_raw_obj_info_common(
char *
const buff,
const size_t buff_size,
const VALUE obj)
4889 APPEND_F(
"%s", obj_type_name(obj));
4895 APPEND_F(
" %s", rb_id2name(
SYM2ID(obj)));
4901 if (rb_gc_impl_pointer_to_heap_p(rb_gc_get_objspace(), (
void *)obj)) {
4902 APPEND_F(
"%p %s/", (
void *)obj, obj_type_name(obj));
4921 if (internal_object_p(obj)) {
4924 else if (
RBASIC(obj)->klass == 0) {
4925 APPEND_S(
"(temporary internal)");
4929 if (!
NIL_P(class_path)) {
4930 APPEND_F(
"%s ", RSTRING_PTR(class_path));
4939const char *rb_raw_obj_info(
char *
const buff,
const size_t buff_size,
VALUE obj);
4942rb_raw_obj_info_buitin_type(
char *
const buff,
const size_t buff_size,
const VALUE obj,
size_t pos)
4949 UNEXPECTED_NODE(rb_raw_obj_info);
4952 if (ARY_SHARED_P(obj)) {
4953 APPEND_S(
"shared -> ");
4954 rb_raw_obj_info(BUFF_ARGS, ARY_SHARED_ROOT(obj));
4957 APPEND_F(
"[%s%s%s] ",
4958 C(ARY_EMBED_P(obj),
"E"),
4959 C(ARY_SHARED_P(obj),
"S"),
4960 C(ARY_SHARED_ROOT_P(obj),
"R"));
4962 if (ARY_EMBED_P(obj)) {
4963 APPEND_F(
"len: %ld (embed)",
4967 APPEND_F(
"len: %ld, capa:%ld ptr:%p",
4969 RARRAY(obj)->as.heap.aux.capa,
4976 C(
FL_TEST(obj, RSTRING_FSTR),
"F"),
4979 if (STR_SHARED_P(obj)) {
4980 APPEND_F(
" [shared] len: %ld", RSTRING_LEN(obj));
4983 if (STR_EMBED_P(obj)) APPEND_S(
" [embed]");
4985 APPEND_F(
" len: %ld, capa: %" PRIdSIZE, RSTRING_LEN(obj),
rb_str_capacity(obj));
4987 APPEND_F(
" \"%.*s\"", str_len_no_raise(obj), RSTRING_PTR(obj));
4991 VALUE fstr = RSYMBOL(obj)->fstr;
4992 ID id = RSYMBOL(obj)->id;
4994 APPEND_F(
":%s id:%d", RSTRING_PTR(fstr), (
unsigned int)
id);
4997 APPEND_F(
"(%p) id:%d", (
void *)fstr, (
unsigned int)
id);
5002 APPEND_F(
"-> %p", (
void*)gc_location_internal(rb_gc_get_objspace(), obj));
5006 APPEND_F(
"[%c] %"PRIdSIZE,
5007 RHASH_AR_TABLE_P(obj) ?
'A' :
'S',
5015 if (!
NIL_P(class_path)) {
5016 APPEND_F(
"%s", RSTRING_PTR(class_path));
5026 if (!
NIL_P(class_path)) {
5027 APPEND_F(
"src:%s", RSTRING_PTR(class_path));
5034 if (rb_shape_obj_too_complex_p(obj)) {
5035 size_t hash_len = rb_st_table_size(ROBJECT_FIELDS_HASH(obj));
5036 APPEND_F(
"(too_complex) len:%zu", hash_len);
5039 APPEND_F(
"(embed) len:%d capa:%d", RSHAPE_LEN(RBASIC_SHAPE_ID(obj)), ROBJECT_FIELDS_CAPACITY(obj));
5043 APPEND_F(
"len:%d capa:%d ptr:%p", RSHAPE_LEN(RBASIC_SHAPE_ID(obj)), ROBJECT_FIELDS_CAPACITY(obj), (
void *)
ROBJECT_FIELDS(obj));
5051 (block = vm_proc_block(obj)) != NULL &&
5052 (vm_block_type(block) == block_type_iseq) &&
5053 (iseq = vm_block_iseq(block)) != NULL) {
5054 rb_raw_iseq_info(BUFF_ARGS, iseq);
5056 else if (rb_ractor_p(obj)) {
5059 APPEND_F(
"r:%d", r->pub.id);
5065 APPEND_F(
"<%s> ", rb_imemo_name(imemo_type(obj)));
5067 switch (imemo_type(obj)) {
5072 APPEND_F(
":%s (%s%s%s%s) type:%s aliased:%d owner:%p defined_class:%p",
5073 rb_id2name(me->called_id),
5074 METHOD_ENTRY_VISI(me) == METHOD_VISI_PUBLIC ?
"pub" :
5075 METHOD_ENTRY_VISI(me) == METHOD_VISI_PRIVATE ?
"pri" :
"pro",
5076 METHOD_ENTRY_COMPLEMENTED(me) ?
",cmp" :
"",
5077 METHOD_ENTRY_CACHED(me) ?
",cc" :
"",
5078 METHOD_ENTRY_INVALIDATED(me) ?
",inv" :
"",
5079 me->def ? rb_method_type_name(me->def->
type) :
"NULL",
5080 me->def ? me->def->aliased : -1,
5082 (void *)me->defined_class);
5085 switch (me->def->type) {
5086 case VM_METHOD_TYPE_ISEQ:
5087 APPEND_S(
" (iseq:");
5088 rb_raw_obj_info(BUFF_ARGS, (
VALUE)me->def->body.iseq.
iseqptr);
5100 rb_raw_iseq_info(BUFF_ARGS, iseq);
5103 case imemo_callinfo:
5106 APPEND_F(
"(mid:%s, flag:%x argc:%d, kwarg:%s)",
5107 rb_id2name(vm_ci_mid(ci)),
5110 vm_ci_kwarg(ci) ?
"available" :
"NULL");
5113 case imemo_callcache:
5119 APPEND_F(
"(klass:%s cme:%s%s (%p) call:%p",
5120 NIL_P(class_path) ? (vm_cc_valid(cc) ?
"??" :
"<NULL>") : RSTRING_PTR(class_path),
5121 cme ? rb_id2name(cme->called_id) :
"<NULL>",
5122 cme ? (METHOD_ENTRY_INVALIDATED(cme) ?
" [inv]" :
"") :
"",
5124 (void *)(uintptr_t)vm_cc_call(cc));
5142#ifdef RUBY_ASAN_ENABLED
5144rb_asan_poison_object(
VALUE obj)
5146 MAYBE_UNUSED(
struct RVALUE *) ptr = (
void *)obj;
5147 asan_poison_memory_region(ptr, rb_gc_obj_slot_size(obj));
5151rb_asan_unpoison_object(
VALUE obj,
bool newobj_p)
5153 MAYBE_UNUSED(
struct RVALUE *) ptr = (
void *)obj;
5154 asan_unpoison_memory_region(ptr, rb_gc_obj_slot_size(obj), newobj_p);
5158rb_asan_poisoned_object_p(
VALUE obj)
5160 MAYBE_UNUSED(
struct RVALUE *) ptr = (
void *)obj;
5161 return __asan_region_is_poisoned(ptr, rb_gc_obj_slot_size(obj));
5166raw_obj_info(
char *
const buff,
const size_t buff_size,
VALUE obj)
5168 size_t pos = rb_raw_obj_info_common(buff, buff_size, obj);
5169 pos = rb_raw_obj_info_buitin_type(buff, buff_size, obj, pos);
5170 if (pos >= buff_size) {}
5174rb_raw_obj_info(
char *
const buff,
const size_t buff_size,
VALUE obj)
5176 void *
objspace = rb_gc_get_objspace();
5179 raw_obj_info(buff, buff_size, obj);
5181 else if (!rb_gc_impl_pointer_to_heap_p(
objspace, (
const void *)obj)) {
5182 snprintf(buff, buff_size,
"out-of-heap:%p", (
void *)obj);
5185 else if (0 && rb_gc_impl_garbage_object_p(
objspace, obj)) {
5186 snprintf(buff, buff_size,
"garbage:%p", (
void *)obj);
5190 asan_unpoisoning_object(obj) {
5191 raw_obj_info(buff, buff_size, obj);
5207 if (RB_UNLIKELY(oldval >= maxval - 1)) {
5218 if (RGENGC_OBJ_INFO) {
5221 char buffers[10][0x100];
5224 rb_atomic_t index = atomic_inc_wraparound(&info.index, numberof(info.buffers));
5225 char *
const buff = info.buffers[index];
5226 return rb_raw_obj_info(buff,
sizeof(info.buffers[0]), obj);
5228 return obj_type_name(obj);
5245 rb_vraise(argv->exc, argv->fmt, *argv->ap);
5250gc_raise(
VALUE exc,
const char *fmt, ...)
5264 fprintf(stderr,
"%s",
"[FATAL] ");
5265 vfprintf(stderr, fmt, ap);
5272NORETURN(
static void negative_size_allocation_error(
const char *));
5274negative_size_allocation_error(
const char *msg)
5280ruby_memerror_body(
void *dummy)
5286NORETURN(
static void ruby_memerror(
void));
5291 if (ruby_thread_has_gvl_p()) {
5300 fprintf(stderr,
"[FATAL] failed to allocate memory\n");
5318 VALUE exc = GET_VM()->special_exceptions[ruby_error_nomemory];
5321 rb_ec_raised_p(ec, RAISED_NOMEMORY) ||
5322 rb_ec_vm_lock_rec(ec) != ec->tag->lock_rec) {
5323 fprintf(stderr,
"[FATAL] failed to allocate memory\n");
5326 if (rb_ec_raised_p(ec, RAISED_NOMEMORY)) {
5327 rb_ec_raised_clear(ec);
5330 rb_ec_raised_set(ec, RAISED_NOMEMORY);
5331 exc = ruby_vm_special_exception_copy(exc);
5334 EC_JUMP_TAG(ec, TAG_RAISE);
5338rb_memerror_reentered(
void)
5341 return (ec && rb_ec_raised_p(ec, RAISED_NOMEMORY));
5345handle_malloc_failure(
void *ptr)
5356static void *ruby_xmalloc_body(
size_t size);
5359ruby_xmalloc(
size_t size)
5361 return handle_malloc_failure(ruby_xmalloc_body(size));
5365malloc_gc_allowed(
void)
5369 return r == NULL || !r->malloc_gc_disabled;
5373ruby_xmalloc_body(
size_t size)
5375 if ((ssize_t)size < 0) {
5376 negative_size_allocation_error(
"too large allocation size");
5379 return rb_gc_impl_malloc(rb_gc_get_objspace(), size, malloc_gc_allowed());
5383ruby_malloc_size_overflow(
size_t count,
size_t elsize)
5385 rb_raise(rb_eArgError,
5386 "malloc: possible integer overflow (%"PRIuSIZE
"*%"PRIuSIZE
")",
5391ruby_malloc_add_size_overflow(
size_t x,
size_t y)
5393 rb_raise(rb_eArgError,
5394 "malloc: possible integer overflow (%"PRIuSIZE
"+%"PRIuSIZE
")",
5398static void *ruby_xmalloc2_body(
size_t n,
size_t size);
5401ruby_xmalloc2(
size_t n,
size_t size)
5403 return handle_malloc_failure(ruby_xmalloc2_body(n, size));
5407ruby_xmalloc2_body(
size_t n,
size_t size)
5409 return rb_gc_impl_malloc(rb_gc_get_objspace(), xmalloc2_size(n, size), malloc_gc_allowed());
5412static void *ruby_xcalloc_body(
size_t n,
size_t size);
5415ruby_xcalloc(
size_t n,
size_t size)
5417 return handle_malloc_failure(ruby_xcalloc_body(n, size));
5421ruby_xcalloc_body(
size_t n,
size_t size)
5423 return rb_gc_impl_calloc(rb_gc_get_objspace(), xmalloc2_size(n, size), malloc_gc_allowed());
5426static void *ruby_xrealloc_sized_body(
void *ptr,
size_t new_size,
size_t old_size);
5428#ifdef ruby_xrealloc_sized
5429#undef ruby_xrealloc_sized
5432ruby_xrealloc_sized(
void *ptr,
size_t new_size,
size_t old_size)
5434 return handle_malloc_failure(ruby_xrealloc_sized_body(ptr, new_size, old_size));
5438ruby_xrealloc_sized_body(
void *ptr,
size_t new_size,
size_t old_size)
5440 if ((ssize_t)new_size < 0) {
5441 negative_size_allocation_error(
"too large allocation size");
5444 return rb_gc_impl_realloc(rb_gc_get_objspace(), ptr, new_size, old_size, malloc_gc_allowed());
5448ruby_xrealloc(
void *ptr,
size_t new_size)
5450 return ruby_xrealloc_sized(ptr, new_size, 0);
5453static void *ruby_xrealloc2_sized_body(
void *ptr,
size_t n,
size_t size,
size_t old_n);
5455#ifdef ruby_xrealloc2_sized
5456#undef ruby_xrealloc2_sized
5459ruby_xrealloc2_sized(
void *ptr,
size_t n,
size_t size,
size_t old_n)
5461 return handle_malloc_failure(ruby_xrealloc2_sized_body(ptr, n, size, old_n));
5465ruby_xrealloc2_sized_body(
void *ptr,
size_t n,
size_t size,
size_t old_n)
5467 size_t len = xmalloc2_size(n, size);
5468 return rb_gc_impl_realloc(rb_gc_get_objspace(), ptr,
len, old_n * size, malloc_gc_allowed());
5472ruby_xrealloc2(
void *ptr,
size_t n,
size_t size)
5474 return ruby_xrealloc2_sized(ptr, n, size, 0);
5477#ifdef ruby_xfree_sized
5478#undef ruby_xfree_sized
5481ruby_xfree_sized(
void *x,
size_t size)
5487 if (LIKELY(GET_VM())) {
5488 rb_gc_impl_free(rb_gc_get_objspace(), x, size);
5499 ruby_xfree_sized(x, 0);
5503rb_xmalloc_mul_add(
size_t x,
size_t y,
size_t z)
5505 size_t w = size_mul_add_or_raise(x, y, z, rb_eArgError);
5506 return ruby_xmalloc(w);
5510rb_xcalloc_mul_add(
size_t x,
size_t y,
size_t z)
5512 size_t w = size_mul_add_or_raise(x, y, z, rb_eArgError);
5513 return ruby_xcalloc(w, 1);
5517rb_xrealloc_mul_add(
const void *p,
size_t x,
size_t y,
size_t z)
5519 size_t w = size_mul_add_or_raise(x, y, z, rb_eArgError);
5520 return ruby_xrealloc((
void *)p, w);
5524rb_xmalloc_mul_add_mul(
size_t x,
size_t y,
size_t z,
size_t w)
5526 size_t u = size_mul_add_mul_or_raise(x, y, z, w, rb_eArgError);
5527 return ruby_xmalloc(u);
5531rb_xcalloc_mul_add_mul(
size_t x,
size_t y,
size_t z,
size_t w)
5533 size_t u = size_mul_add_mul_or_raise(x, y, z, w, rb_eArgError);
5534 return ruby_xcalloc(u, 1);
5541ruby_mimmalloc(
size_t size)
5544#if CALC_EXACT_MALLOC_SIZE
5548#if CALC_EXACT_MALLOC_SIZE
5564ruby_mimcalloc(
size_t num,
size_t size)
5567#if CALC_EXACT_MALLOC_SIZE
5568 struct rbimpl_size_overflow_tag t = rbimpl_size_mul_overflow(num, size);
5569 if (UNLIKELY(t.overflowed)) {
5573 mem = calloc1(size);
5585 mem = calloc(num, size);
5591ruby_mimfree(
void *ptr)
5593#if CALC_EXACT_MALLOC_SIZE
5601rb_gc_adjust_memory_usage(ssize_t diff)
5603 unless_objspace(
objspace) {
return; }
5605 rb_gc_impl_adjust_memory_usage(
objspace, diff);
5609rb_obj_info(
VALUE obj)
5611 return obj_info(obj);
5615rb_obj_info_dump(
VALUE obj)
5618 fprintf(stderr,
"rb_obj_info_dump: %s\n", rb_raw_obj_info(buff, 0x100, obj));
5622rb_obj_info_dump_loc(
VALUE obj,
const char *file,
int line,
const char *func)
5625 fprintf(stderr,
"<OBJ_INFO:%s@%s:%d> %s\n", func, file, line, rb_raw_obj_info(buff, 0x100, obj));
5629rb_gc_before_fork(
void)
5631 rb_gc_impl_before_fork(rb_gc_get_objspace());
5635rb_gc_after_fork(rb_pid_t pid)
5637 rb_gc_impl_after_fork(rb_gc_get_objspace(), pid);
5641rb_gc_obj_shareable_p(
VALUE obj)
5658check_shareable_i(
const VALUE child,
void *ptr)
5662 if (!rb_gc_obj_shareable_p(child)) {
5663 fprintf(stderr,
"(a) ");
5664 rb_gc_rp(data->parent);
5665 fprintf(stderr,
"(b) ");
5667 fprintf(stderr,
"check_shareable_i: shareable (a) -> unshareable (b)\n");
5670 rb_bug(
"!! violate shareable constraint !!");
5674static bool gc_checking_shareable =
false;
5683 unsigned int lev = RB_GC_VM_LOCK();
5685 gc_checking_shareable =
true;
5686 rb_objspace_reachable_objects_from(obj, check_shareable_i, (
void *)data);
5687 gc_checking_shareable =
false;
5689 RB_GC_VM_UNLOCK(lev);
5694rb_gc_verify_shareable(
VALUE obj)
5701 gc_verify_shareable(
objspace, obj, &data);
5703 if (data.err_count > 0) {
5704 rb_bug(
"rb_gc_verify_shareable");
5709rb_gc_checking_shareable(
void)
5711 return gc_checking_shareable;
5765 rb_gc_register_address(&id2ref_value);
5767 malloc_offset = gc_compute_malloc_offset();
5780 rb_vm_register_special_exception(ruby_error_nomemory,
rb_eNoMemError,
"failed to allocate memory");
5803ruby_annotate_mmap(
const void *addr,
unsigned long size,
const char *name)
5805#if defined(HAVE_SYS_PRCTL_H) && defined(PR_SET_VMA) && defined(PR_SET_VMA_ANON_NAME)
5808 prctl(PR_SET_VMA, PR_SET_VMA_ANON_NAME, (
unsigned long)addr, size, name);
#define RUBY_ASSERT_ALWAYS(expr,...)
A variant of RUBY_ASSERT that does not interface with RUBY_DEBUG.
#define RUBY_ASSERT(...)
Asserts that the given expression is truthy if and only if RUBY_DEBUG is truthy.
#define RUBY_ATOMIC_VALUE_CAS(var, oldval, newval)
Identical to RUBY_ATOMIC_CAS, except it expects its arguments are VALUE.
#define RUBY_ATOMIC_SIZE_FETCH_ADD(var, val)
Identical to RUBY_ATOMIC_FETCH_ADD, except it expects its arguments to be size_t.
#define RUBY_ATOMIC_CAS(var, oldval, newval)
Atomic compare-and-swap.
std::atomic< unsigned > rb_atomic_t
Type that is eligible for atomic operations.
#define RUBY_ATOMIC_FETCH_ADD(var, val)
Atomically replaces the value pointed by var with the result of addition of val to the old value of v...
#define rb_define_method(klass, mid, func, arity)
Defines klass#mid.
#define rb_define_module_function(klass, mid, func, arity)
Defines klass#mid and makes it a module function.
uint32_t rb_event_flag_t
Represents event(s).
#define RUBY_INTERNAL_EVENT_NEWOBJ
Object allocated.
static bool RB_OBJ_FROZEN(VALUE obj)
Checks if an object is frozen.
VALUE rb_define_module(const char *name)
Defines a top-level module.
int rb_scan_args(int argc, const VALUE *argv, const char *fmt,...)
Retrieves argument from argc and argv to given VALUE references according to the format string.
#define T_COMPLEX
Old name of RUBY_T_COMPLEX.
#define TYPE(_)
Old name of rb_type.
#define FL_SINGLETON
Old name of RUBY_FL_SINGLETON.
#define T_FILE
Old name of RUBY_T_FILE.
#define FL_UNSET_RAW
Old name of RB_FL_UNSET_RAW.
#define ALLOC
Old name of RB_ALLOC.
#define T_STRING
Old name of RUBY_T_STRING.
#define xfree
Old name of ruby_xfree.
#define T_MASK
Old name of RUBY_T_MASK.
#define Qundef
Old name of RUBY_Qundef.
#define INT2FIX
Old name of RB_INT2FIX.
#define T_NIL
Old name of RUBY_T_NIL.
#define UNREACHABLE
Old name of RBIMPL_UNREACHABLE.
#define T_FLOAT
Old name of RUBY_T_FLOAT.
#define T_IMEMO
Old name of RUBY_T_IMEMO.
#define ID2SYM
Old name of RB_ID2SYM.
#define T_BIGNUM
Old name of RUBY_T_BIGNUM.
#define SPECIAL_CONST_P
Old name of RB_SPECIAL_CONST_P.
#define T_STRUCT
Old name of RUBY_T_STRUCT.
#define OBJ_FREEZE
Old name of RB_OBJ_FREEZE.
#define T_FIXNUM
Old name of RUBY_T_FIXNUM.
#define UNREACHABLE_RETURN
Old name of RBIMPL_UNREACHABLE_RETURN.
#define SYM2ID
Old name of RB_SYM2ID.
#define T_DATA
Old name of RUBY_T_DATA.
#define FIXNUM_FLAG
Old name of RUBY_FIXNUM_FLAG.
#define LL2NUM
Old name of RB_LL2NUM.
#define CLASS_OF
Old name of rb_class_of.
#define T_NONE
Old name of RUBY_T_NONE.
#define T_NODE
Old name of RUBY_T_NODE.
#define SIZET2NUM
Old name of RB_SIZE2NUM.
#define FL_FINALIZE
Old name of RUBY_FL_FINALIZE.
#define T_MODULE
Old name of RUBY_T_MODULE.
#define ASSUME
Old name of RBIMPL_ASSUME.
#define T_TRUE
Old name of RUBY_T_TRUE.
#define T_RATIONAL
Old name of RUBY_T_RATIONAL.
#define T_ICLASS
Old name of RUBY_T_ICLASS.
#define T_HASH
Old name of RUBY_T_HASH.
#define FL_ABLE
Old name of RB_FL_ABLE.
#define FL_TEST_RAW
Old name of RB_FL_TEST_RAW.
#define rb_ary_new3
Old name of rb_ary_new_from_args.
#define LONG2NUM
Old name of RB_LONG2NUM.
#define T_FALSE
Old name of RUBY_T_FALSE.
#define ULL2NUM
Old name of RB_ULL2NUM.
#define T_UNDEF
Old name of RUBY_T_UNDEF.
#define FLONUM_P
Old name of RB_FLONUM_P.
#define Qtrue
Old name of RUBY_Qtrue.
#define T_ZOMBIE
Old name of RUBY_T_ZOMBIE.
#define Qnil
Old name of RUBY_Qnil.
#define Qfalse
Old name of RUBY_Qfalse.
#define FIX2LONG
Old name of RB_FIX2LONG.
#define T_ARRAY
Old name of RUBY_T_ARRAY.
#define T_OBJECT
Old name of RUBY_T_OBJECT.
#define NIL_P
Old name of RB_NIL_P.
#define NUM2ULL
Old name of RB_NUM2ULL.
#define FL_WB_PROTECTED
Old name of RUBY_FL_WB_PROTECTED.
#define T_SYMBOL
Old name of RUBY_T_SYMBOL.
#define T_MATCH
Old name of RUBY_T_MATCH.
#define T_CLASS
Old name of RUBY_T_CLASS.
#define BUILTIN_TYPE
Old name of RB_BUILTIN_TYPE.
#define T_MOVED
Old name of RUBY_T_MOVED.
#define FL_TEST
Old name of RB_FL_TEST.
#define xcalloc
Old name of ruby_xcalloc.
#define FL_UNSET
Old name of RB_FL_UNSET.
#define FIXNUM_P
Old name of RB_FIXNUM_P.
#define NUM2SIZET
Old name of RB_NUM2SIZE.
#define SYMBOL_P
Old name of RB_SYMBOL_P.
#define T_REGEXP
Old name of RUBY_T_REGEXP.
size_t ruby_stack_length(VALUE **p)
Queries what Ruby thinks is the machine stack.
int ruby_stack_check(void)
Checks for stack overflow.
void rb_category_warn(rb_warning_category_t category, const char *fmt,...)
Identical to rb_category_warning(), except it reports unless $VERBOSE is nil.
VALUE rb_eNoMemError
NoMemoryError exception.
VALUE rb_eRangeError
RangeError exception.
#define ruby_verbose
This variable controls whether the interpreter is in debug mode.
VALUE rb_eTypeError
TypeError exception.
void rb_warn(const char *fmt,...)
Identical to rb_warning(), except it reports unless $VERBOSE is nil.
@ RB_WARN_CATEGORY_DEPRECATED
Warning is for deprecated features.
VALUE rb_mKernel
Kernel module.
VALUE rb_cObject
Object class.
VALUE rb_obj_class(VALUE obj)
Queries the class of an object.
VALUE rb_cBasicObject
BasicObject class.
VALUE rb_class_real(VALUE klass)
Finds a "real" class.
VALUE rb_obj_is_kind_of(VALUE obj, VALUE klass)
Queries if the given object is an instance (of possibly descendants) of the given class.
VALUE rb_to_int(VALUE val)
Identical to rb_check_to_int(), except it raises in case of conversion mismatch.
#define RB_POSFIXABLE(_)
Checks if the passed value is in range of fixnum, assuming it is a positive number.
int rb_enc_str_coderange(VALUE str)
Scans the passed string to collect its code range.
VALUE rb_funcall(VALUE recv, ID mid, int n,...)
Calls a method.
#define RGENGC_WB_PROTECTED_OBJECT
This is a compile-time flag to enable/disable write barrier for struct RObject.
Defines RBIMPL_HAS_BUILTIN.
void rb_ary_free(VALUE ary)
Destroys the given array for no reason.
#define RETURN_ENUMERATOR(obj, argc, argv)
Identical to RETURN_SIZED_ENUMERATOR(), except its size is unknown.
static int rb_check_arity(int argc, int min, int max)
Ensures that the passed integer is in the passed range.
VALUE rb_block_proc(void)
Constructs a Proc object from implicitly passed components.
VALUE rb_obj_is_proc(VALUE recv)
Queries if the given object is a proc.
void rb_str_free(VALUE str)
Destroys the given string for no reason.
size_t rb_str_capacity(VALUE str)
Queries the capacity of the given string.
VALUE rb_class_path_cached(VALUE mod)
Just another name of rb_mod_name.
void rb_free_generic_ivar(VALUE obj)
Frees the list of instance variables.
void rb_undef_alloc_func(VALUE klass)
Deletes the allocator function of a class.
VALUE rb_check_funcall(VALUE recv, ID mid, int argc, const VALUE *argv)
Identical to rb_funcallv(), except it returns RUBY_Qundef instead of raising rb_eNoMethodError.
rb_alloc_func_t rb_get_alloc_func(VALUE klass)
Queries the allocator function of a class.
int rb_obj_respond_to(VALUE obj, ID mid, int private_p)
Identical to rb_respond_to(), except it additionally takes the visibility parameter.
VALUE rb_sym2str(VALUE symbol)
Obtain a frozen string representation of a symbol (not including the leading colon).
int rb_io_fptr_finalize(rb_io_t *fptr)
Destroys the given IO.
int len
Length of the buffer.
static bool rb_ractor_shareable_p(VALUE obj)
Queries if multiple Ractors can share the passed object or not.
#define RB_OBJ_SHAREABLE_P(obj)
Queries if the passed object has previously classified as shareable or not.
void * rb_thread_call_with_gvl(void *(*func)(void *), void *data1)
(Re-)acquires the GVL.
VALUE rb_yield(VALUE val)
Yields the block.
#define RBIMPL_ATTR_MAYBE_UNUSED()
Wraps (or simulates) [[maybe_unused]]
#define RB_GC_GUARD(v)
Prevents premature destruction of local objects.
VALUE type(ANYARGS)
ANYARGS-ed function type.
#define RARRAY_LEN
Just another name of rb_array_len.
#define RARRAY(obj)
Convenient casting macro.
#define RARRAY_CONST_PTR
Just another name of rb_array_const_ptr.
static VALUE RBASIC_CLASS(VALUE obj)
Queries the class of an object.
#define RBASIC(obj)
Convenient casting macro.
#define RCLASS(obj)
Convenient casting macro.
VALUE rb_data_object_wrap(VALUE klass, void *datap, RUBY_DATA_FUNC dmark, RUBY_DATA_FUNC dfree)
This is the primitive way to wrap an existing C struct into RData.
#define DATA_PTR(obj)
Convenient getter macro.
VALUE rb_data_object_zalloc(VALUE klass, size_t size, RUBY_DATA_FUNC dmark, RUBY_DATA_FUNC dfree)
Identical to rb_data_object_wrap(), except it allocates a new data region internally instead of takin...
#define RDATA(obj)
Convenient casting macro.
#define RUBY_DEFAULT_FREE
This is a value you can set to RData::dfree.
void(* RUBY_DATA_FUNC)(void *)
This is the type of callbacks registered to RData.
#define RUBY_NEVER_FREE
This is a value you can set to RData::dfree.
#define RFILE(obj)
Convenient casting macro.
#define RHASH_SIZE(h)
Queries the size of the hash.
#define RHASH_EMPTY_P(h)
Checks if the hash is empty.
#define RMATCH(obj)
Convenient casting macro.
#define ROBJECT(obj)
Convenient casting macro.
static VALUE * ROBJECT_FIELDS(VALUE obj)
Queries the instance variables.
#define RREGEXP(obj)
Convenient casting macro.
#define RREGEXP_PTR(obj)
Convenient accessor macro.
#define RSTRING(obj)
Convenient casting macro.
static long RSTRUCT_LEN(VALUE st)
Returns the number of struct members.
static bool RTYPEDDATA_P(VALUE obj)
Checks whether the passed object is RTypedData or RData.
#define RUBY_TYPED_DEFAULT_FREE
This is a value you can set to rb_data_type_struct::dfree.
VALUE rb_data_typed_object_wrap(VALUE klass, void *datap, const rb_data_type_t *type)
This is the primitive way to wrap an existing C struct into RTypedData.
VALUE rb_data_typed_object_zalloc(VALUE klass, size_t size, const rb_data_type_t *type)
Identical to rb_data_typed_object_wrap(), except it allocates a new data region internally instead of...
#define RUBY_TYPED_FREE_IMMEDIATELY
Macros to see if each corresponding flag is defined.
static const rb_data_type_t * RTYPEDDATA_TYPE(VALUE obj)
Queries for the type of given object.
#define TypedData_Wrap_Struct(klass, data_type, sval)
Converts sval, a pointer to your struct, into a Ruby object.
#define RTYPEDDATA(obj)
Convenient casting macro.
const char * rb_obj_classname(VALUE obj)
Queries the name of the class of the passed object.
void rb_p(VALUE obj)
Inspects an object.
#define errno
Ractor-aware version of errno.
int ruby_native_thread_p(void)
Queries if the thread which calls this function is a ruby's thread.
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.
#define _(args)
This was a transition path from K&R to ANSI.
Ruby object's base components.
RUBY_DATA_FUNC dfree
This function is called when the object is no longer used.
RUBY_DATA_FUNC dmark
This function is called when the object is experiencing GC marks.
void * data
Pointer to the actual C level struct that you want to wrap.
void * data
Pointer to the actual C level struct that you want to wrap.
VALUE fields_obj
Direct reference to the slots that holds instance variables, if any.
This is the struct that holds necessary info for a struct.
RUBY_DATA_FUNC dfree
This function is called when the object is no longer used.
RUBY_DATA_FUNC dcompact
This function is called when the object is relocated.
struct rb_data_type_struct::@57 function
Function pointers.
const char * wrap_struct_name
Name of structs of this kind.
RUBY_DATA_FUNC dmark
This function is called when the object is experiencing GC marks.
VALUE flags
Type-specific behavioural characteristics.
Ruby's IO, metadata and buffers.
struct rmatch_offset * char_offset
Capture group offsets, in C array.
int char_offset_num_allocated
Number of rmatch_offset that ::rmatch::char_offset holds.
struct re_registers regs
"Registers" of a match.
const rb_iseq_t * iseqptr
iseq pointer, should be separated from iseqval
Internal header for Class.
Represents the region of a capture group.
void rb_native_mutex_lock(rb_nativethread_lock_t *lock)
Just another name of rb_nativethread_lock_lock.
void rb_native_mutex_initialize(rb_nativethread_lock_t *lock)
Just another name of rb_nativethread_lock_initialize.
void rb_native_mutex_unlock(rb_nativethread_lock_t *lock)
Just another name of rb_nativethread_lock_unlock.
intptr_t SIGNED_VALUE
A signed integer type that has the same width with VALUE.
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
uintptr_t VALUE
Type that represents a Ruby object.
static bool RB_TYPE_P(VALUE obj, enum ruby_value_type t)
Queries if the given object is of given type.
ruby_value_type
C-level type of an object.
@ RUBY_T_MASK
Bitmask of ruby_value_type.