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) {
1004 const VALUE *iseq_encoded = ISEQ_BODY(cfp->iseq)->iseq_encoded;
1005 const VALUE *iseq_encoded_end = iseq_encoded + ISEQ_BODY(cfp->iseq)->iseq_size;
1006 RUBY_ASSERT(cfp->pc >= iseq_encoded,
"PC not set when allocating, breaking tracing");
1007 RUBY_ASSERT(cfp->pc <= iseq_encoded_end,
"PC not set when allocating, breaking tracing");
1013newobj_of(
rb_ractor_t *cr,
VALUE klass,
VALUE flags, shape_id_t shape_id,
bool wb_protected,
size_t size)
1015 VALUE obj = rb_gc_impl_new_obj(rb_gc_get_objspace(), cr->newobj_cache, klass, flags, wb_protected, size);
1016 RBASIC_SET_SHAPE_ID_NO_CHECKS(obj, shape_id);
1018 gc_validate_pc(obj);
1021 int lev = RB_GC_VM_LOCK_NO_BARRIER();
1023 size_t slot_size = rb_gc_obj_slot_size(obj);
1024 memset((
char *)obj +
sizeof(
struct RBasic), 0, slot_size -
sizeof(
struct RBasic));
1031 bool gc_disabled =
RTEST(rb_gc_disable_no_rest());
1035 if (!gc_disabled) rb_gc_enable();
1037 RB_GC_VM_UNLOCK_NO_BARRIER(lev);
1040#if RGENGC_CHECK_MODE
1041# ifndef GC_DEBUG_SLOT_FILL_SPECIAL_VALUE
1042# define GC_DEBUG_SLOT_FILL_SPECIAL_VALUE 255
1046 (
void *)(obj +
sizeof(
struct RBasic)),
1047 GC_DEBUG_SLOT_FILL_SPECIAL_VALUE,
1048 rb_gc_obj_slot_size(obj) -
sizeof(
struct RBasic)
1056rb_wb_unprotected_newobj_of(
VALUE klass,
VALUE flags, shape_id_t shape_id,
size_t size)
1059 return newobj_of(GET_RACTOR(), klass, flags, shape_id, FALSE, size);
1066 return newobj_of(rb_ec_ractor_ptr(ec), klass, flags, shape_id, TRUE, size);
1070rb_gc_register_pinning_obj(
VALUE obj)
1072 rb_gc_impl_register_pinning_obj(rb_gc_get_objspace(), obj);
1075#define UNEXPECTED_NODE(func) \
1076 rb_bug(#func"(): GC does not handle T_NODE 0x%x(%p) 0x%"PRIxVALUE, \
1077 BUILTIN_TYPE(obj), (void*)(obj), RBASIC(obj)->flags)
1080rb_data_object_check(
VALUE klass)
1084 rb_warn(
"undefining the allocator of T_DATA class %"PRIsVALUE, klass);
1092 if (klass) rb_data_object_check(klass);
1093 VALUE obj = newobj_of(GET_RACTOR(), klass,
T_DATA, ROOT_SHAPE_ID, !dmark,
sizeof(
struct RTypedData));
1095 rb_gc_register_pinning_obj(obj);
1113#define RTYPEDDATA_EMBEDDED_P rbimpl_typeddata_embedded_p
1114#define RB_DATA_TYPE_EMBEDDABLE_P(type) ((type)->flags & RUBY_TYPED_EMBEDDABLE)
1115#define RTYPEDDATA_EMBEDDABLE_P(obj) RB_DATA_TYPE_EMBEDDABLE_P(RTYPEDDATA_TYPE(obj))
1120 RBIMPL_NONNULL_ARG(
type);
1121 if (klass) rb_data_object_check(klass);
1123 VALUE obj = newobj_of(GET_RACTOR(), klass,
T_DATA | RUBY_TYPED_FL_IS_TYPED_DATA, ROOT_SHAPE_ID, wb_protected, size);
1125 rb_gc_register_pinning_obj(obj);
1138 if (UNLIKELY(RB_DATA_TYPE_EMBEDDABLE_P(
type))) {
1139 rb_raise(
rb_eTypeError,
"Cannot wrap an embeddable TypedData");
1142 return typed_data_alloc(klass, 0, datap,
type,
sizeof(
struct RTypedData));
1148 if (RB_DATA_TYPE_EMBEDDABLE_P(
type)) {
1150 rb_raise(
rb_eTypeError,
"Embeddable TypedData must be freed immediately");
1154 if (rb_gc_size_allocatable_p(embed_size)) {
1155 VALUE obj = typed_data_alloc(klass, TYPED_DATA_EMBEDDED, 0,
type, embed_size);
1156 memset((
char *)obj + offsetof(
struct RTypedData,
data), 0, size);
1167rb_objspace_data_type_memsize(
VALUE obj)
1171 const void *ptr = RTYPEDDATA_GET_DATA(obj);
1175 if (RTYPEDDATA_EMBEDDABLE_P(obj) && !RTYPEDDATA_EMBEDDED_P(obj)) {
1176#ifdef HAVE_MALLOC_USABLE_SIZE
1177 size += malloc_usable_size((
void *)ptr);
1181 if (
type->function.dsize) {
1182 size +=
type->function.dsize(ptr);
1191rb_objspace_data_type_name(
VALUE obj)
1202rb_gc_declare_weak_references(
VALUE obj)
1204 rb_gc_impl_declare_weak_references(rb_gc_get_objspace(), obj);
1208rb_gc_handle_weak_references_alive_p(
VALUE obj)
1212 return rb_gc_impl_handle_weak_references_alive_p(rb_gc_get_objspace(), obj);
1216rb_gc_handle_weak_references(
VALUE obj)
1223 if (
type->function.handle_weak_references) {
1224 (
type->function.handle_weak_references)(RTYPEDDATA_GET_DATA(obj));
1228 "rb_gc_handle_weak_references: TypedData %s does not implement handle_weak_references",
1234 rb_bug(
"rb_gc_handle_weak_references: unknown T_DATA");
1239 GC_ASSERT(imemo_type(obj) == imemo_callcache);
1242 if (!rb_gc_handle_weak_references_alive_p(cc->klass)) {
1243 vm_cc_invalidate(cc);
1249 rb_bug(
"rb_gc_handle_weak_references: type not supported\n");
1267rb_gc_obj_needs_cleanup_p(
VALUE obj)
1275 switch (imemo_type(obj)) {
1276 case imemo_constcache:
1281 case imemo_callcache:
1282 case imemo_throw_data:
1310 shape_id_t shape_id = RBASIC_SHAPE_ID(obj);
1311 if (id2ref_tbl && rb_shape_has_object_id(shape_id))
return true;
1315 if (flags & ROBJECT_HEAP)
return true;
1319 if (flags & RUBY_TYPED_FL_IS_TYPED_DATA) {
1321 if (
type & TYPED_DATA_EMBEDDED) {
1331 if (flags & (RSTRING_NOEMBED | RSTRING_FSTR))
return true;
1332 return rb_shape_has_fields(shape_id);
1335 if (!(flags & RARRAY_EMBED_FLAG))
return true;
1336 return rb_shape_has_fields(shape_id);
1339 if (flags & RHASH_ST_TABLE_FLAG)
return true;
1340 return rb_shape_has_fields(shape_id);
1343 if (!(flags & BIGNUM_EMBED_FLAG))
return true;
1344 return rb_shape_has_fields(shape_id);
1347 if (!(flags & RSTRUCT_EMBED_LEN_MASK))
return true;
1348 if (flags & RSTRUCT_GEN_FIELDS)
return rb_shape_has_fields(shape_id);
1354 return rb_shape_has_fields(shape_id);
1362io_fptr_finalize(
void *fptr)
1371 rb_gc_impl_make_zombie(
objspace, obj, io_fptr_finalize, fptr);
1379 int free_immediately =
false;
1380 void (*dfree)(
void *);
1387 dfree =
RDATA(obj)->dfree;
1392 if (!
RTYPEDDATA_P(obj) || !RTYPEDDATA_EMBEDDED_P(obj)) {
1394 RB_DEBUG_COUNTER_INC(obj_data_xfree);
1397 else if (free_immediately) {
1399 if (RTYPEDDATA_EMBEDDABLE_P(obj) && !RTYPEDDATA_EMBEDDED_P(obj)) {
1403 RB_DEBUG_COUNTER_INC(obj_data_imm_free);
1406 rb_gc_impl_make_zombie(
objspace, obj, dfree, data);
1407 RB_DEBUG_COUNTER_INC(obj_data_zombie);
1412 RB_DEBUG_COUNTER_INC(obj_data_empty);
1429 rb_class_classext_free(args->klass, ext, is_prime);
1437 rb_iclass_classext_free(args->klass, ext, is_prime);
1445 RB_DEBUG_COUNTER_INC(obj_free);
1452 rb_bug(
"obj_free() called for broken object");
1461 if (rb_shape_obj_too_complex_p(obj)) {
1462 RB_DEBUG_COUNTER_INC(obj_obj_too_complex);
1463 st_free_table(ROBJECT_FIELDS_HASH(obj));
1466 SIZED_FREE_N(
ROBJECT(obj)->as.heap.fields, ROBJECT_FIELDS_CAPACITY(obj));
1467 RB_DEBUG_COUNTER_INC(obj_obj_ptr);
1471 RB_DEBUG_COUNTER_INC(obj_obj_embed);
1477 rb_zjit_klass_free(obj);
1480 rb_class_classext_foreach(obj, classext_free, (
void *)&args);
1481 if (RCLASS_CLASSEXT_TBL(obj)) {
1482 st_free_table(RCLASS_CLASSEXT_TBL(obj));
1494#if USE_DEBUG_COUNTER
1497 RB_DEBUG_COUNTER_INC(obj_hash_empty);
1500 RB_DEBUG_COUNTER_INC(obj_hash_1);
1503 RB_DEBUG_COUNTER_INC(obj_hash_2);
1506 RB_DEBUG_COUNTER_INC(obj_hash_3);
1509 RB_DEBUG_COUNTER_INC(obj_hash_4);
1515 RB_DEBUG_COUNTER_INC(obj_hash_5_8);
1519 RB_DEBUG_COUNTER_INC(obj_hash_g8);
1522 if (RHASH_AR_TABLE_P(obj)) {
1523 if (RHASH_AR_TABLE(obj) == NULL) {
1524 RB_DEBUG_COUNTER_INC(obj_hash_null);
1527 RB_DEBUG_COUNTER_INC(obj_hash_ar);
1531 RB_DEBUG_COUNTER_INC(obj_hash_st);
1540 RB_DEBUG_COUNTER_INC(obj_regexp_ptr);
1544 if (!rb_data_free(
objspace, obj))
return false;
1549#if USE_DEBUG_COUNTER
1550 if (rm->
regs.num_regs >= 8) {
1551 RB_DEBUG_COUNTER_INC(obj_match_ge8);
1553 else if (rm->
regs.num_regs >= 4) {
1554 RB_DEBUG_COUNTER_INC(obj_match_ge4);
1556 else if (rm->
regs.num_regs >= 1) {
1557 RB_DEBUG_COUNTER_INC(obj_match_under4);
1560 onig_region_free(&rm->
regs, 0);
1563 RB_DEBUG_COUNTER_INC(obj_match_ptr);
1567 if (
RFILE(obj)->fptr) {
1569 RB_DEBUG_COUNTER_INC(obj_file_ptr);
1574 RB_DEBUG_COUNTER_INC(obj_rational);
1577 RB_DEBUG_COUNTER_INC(obj_complex);
1584 rb_class_classext_foreach(obj, classext_iclass_free, (
void *)&args);
1585 if (RCLASS_CLASSEXT_TBL(obj)) {
1586 st_free_table(RCLASS_CLASSEXT_TBL(obj));
1589 RB_DEBUG_COUNTER_INC(obj_iclass_ptr);
1593 RB_DEBUG_COUNTER_INC(obj_float);
1597 if (!BIGNUM_EMBED_P(obj) && BIGNUM_DIGITS(obj)) {
1598 SIZED_FREE_N(BIGNUM_DIGITS(obj), BIGNUM_LEN(obj));
1599 RB_DEBUG_COUNTER_INC(obj_bignum_ptr);
1602 RB_DEBUG_COUNTER_INC(obj_bignum_embed);
1607 UNEXPECTED_NODE(obj_free);
1611 if ((
RBASIC(obj)->flags & RSTRUCT_EMBED_LEN_MASK) ||
1612 RSTRUCT(obj)->as.heap.ptr == NULL) {
1613 RB_DEBUG_COUNTER_INC(obj_struct_embed);
1616 SIZED_FREE_N(RSTRUCT(obj)->as.heap.ptr, RSTRUCT(obj)->as.heap.len);
1617 RB_DEBUG_COUNTER_INC(obj_struct_ptr);
1622 RB_DEBUG_COUNTER_INC(obj_symbol);
1626 rb_imemo_free((
VALUE)obj);
1630 rb_bug(
"gc_sweep(): unknown data type 0x%x(%p) 0x%"PRIxVALUE,
1635 rb_gc_impl_make_zombie(
objspace, obj, 0, 0);
1646 rb_gc_impl_set_event_hook(rb_gc_get_objspace(), event);
1650internal_object_p(
VALUE obj)
1652 void *ptr = asan_unpoison_object_temporary(obj);
1654 if (
RBASIC(obj)->flags) {
1657 UNEXPECTED_NODE(internal_object_p);
1666 if (obj == rb_mRubyVMFrozenCore)
1670 if (RCLASS_SINGLETON_P(obj)) {
1671 return rb_singleton_class_internal_p(obj);
1675 if (!
RBASIC(obj)->klass)
break;
1679 if (ptr || !
RBASIC(obj)->flags) {
1680 rb_asan_poison_object(obj);
1686rb_objspace_internal_object_p(
VALUE obj)
1688 return internal_object_p(obj);
1697os_obj_of_i(
void *vstart,
void *vend,
size_t stride,
void *data)
1702 for (; v != (
VALUE)vend; v += stride) {
1703 if (!internal_object_p(v)) {
1723 rb_objspace_each_objects(os_obj_of_i, &oes);
1774 return os_obj_of(of);
1788 return rb_undefine_finalizer(obj);
1794 rb_check_frozen(obj);
1796 rb_gc_impl_undefine_finalizer(rb_gc_get_objspace(), obj);
1802should_be_callable(
VALUE block)
1805 rb_raise(rb_eArgError,
"wrong type argument %"PRIsVALUE
" (should be callable)",
1811should_be_finalizable(
VALUE obj)
1814 rb_raise(rb_eArgError,
"cannot define finalizer for %s",
1817 rb_check_frozen(obj);
1823 rb_gc_impl_copy_finalizer(rb_gc_get_objspace(), dest, obj);
1903 if (rb_callable_receiver(block) == obj) {
1904 rb_warn(
"finalizer references object to be finalized");
1907 return rb_define_finalizer(obj, block);
1913 should_be_finalizable(obj);
1914 should_be_callable(block);
1916 block = rb_gc_impl_define_finalizer(rb_gc_get_objspace(), obj, block);
1924rb_objspace_call_finalizer(
void)
1926 rb_gc_impl_shutdown_call_finalizer(rb_gc_get_objspace());
1930rb_objspace_free_objects(
void *
objspace)
1932 rb_gc_impl_shutdown_free_objects(
objspace);
1936rb_objspace_garbage_object_p(
VALUE obj)
1938 return !
SPECIAL_CONST_P(obj) && rb_gc_impl_garbage_object_p(rb_gc_get_objspace(), obj);
1942rb_gc_pointer_to_heap_p(
VALUE obj)
1944 return rb_gc_impl_pointer_to_heap_p(rb_gc_get_objspace(), (
void *)obj);
1947#define OBJ_ID_INCREMENT (RUBY_IMMEDIATE_MASK + 1)
1948#define LAST_OBJECT_ID() (object_id_counter * OBJ_ID_INCREMENT)
1949static VALUE id2ref_value = 0;
1951#if SIZEOF_SIZE_T == SIZEOF_LONG_LONG
1952static size_t object_id_counter = 1;
1954static unsigned long long object_id_counter = 1;
1958generate_next_object_id(
void)
1960#if SIZEOF_SIZE_T == SIZEOF_LONG_LONG
1964 unsigned int lock_lev = RB_GC_VM_LOCK();
1965 VALUE id =
ULL2NUM(++object_id_counter * OBJ_ID_INCREMENT);
1966 RB_GC_VM_UNLOCK(lock_lev);
1972rb_gc_obj_id_moved(
VALUE obj)
1974 if (UNLIKELY(id2ref_tbl)) {
1975 st_insert(id2ref_tbl, (st_data_t)rb_obj_id(obj), (st_data_t)obj);
1980object_id_cmp(st_data_t x, st_data_t y)
1983 return !rb_big_eql(x, y);
1991object_id_hash(st_data_t n)
1996static const struct st_hash_type object_id_hash_type = {
2001static void gc_mark_tbl_no_pin(
st_table *table);
2004id2ref_tbl_mark(
void *data)
2016id2ref_tbl_memsize(
const void *data)
2018 return rb_st_memsize(data);
2022id2ref_tbl_free(
void *data)
2026 st_free_table(table);
2032 .dmark = id2ref_tbl_mark,
2033 .dfree = id2ref_tbl_free,
2034 .dsize = id2ref_tbl_memsize,
2042class_object_id(
VALUE klass)
2044 VALUE id = RUBY_ATOMIC_VALUE_LOAD(
RCLASS(klass)->object_id);
2046 unsigned int lock_lev = RB_GC_VM_LOCK();
2047 id = generate_next_object_id();
2052 else if (RB_UNLIKELY(id2ref_tbl)) {
2053 st_insert(id2ref_tbl,
id, klass);
2055 RB_GC_VM_UNLOCK(lock_lev);
2061object_id_get(
VALUE obj, shape_id_t shape_id)
2064 if (rb_shape_too_complex_p(shape_id)) {
2065 id = rb_obj_field_get(obj, ROOT_TOO_COMPLEX_WITH_OBJ_ID);
2068 id = rb_obj_field_get(obj, rb_shape_object_id(shape_id));
2074 rb_bug(
"Object's shape includes object_id, but it's missing %s", rb_obj_info(obj));
2082object_id0(
VALUE obj)
2085 shape_id_t shape_id = RBASIC_SHAPE_ID(obj);
2087 if (rb_shape_has_object_id(shape_id)) {
2088 return object_id_get(obj, shape_id);
2091 shape_id_t object_id_shape_id = rb_shape_transition_object_id(obj);
2093 id = generate_next_object_id();
2094 rb_obj_field_set(obj, object_id_shape_id, 0,
id);
2096 RUBY_ASSERT(RBASIC_SHAPE_ID(obj) == object_id_shape_id);
2099 if (RB_UNLIKELY(id2ref_tbl)) {
2101 st_insert(id2ref_tbl, (st_data_t)
id, (st_data_t)obj);
2116 return class_object_id(obj);
2125 unsigned int lock_lev = RB_GC_VM_LOCK();
2126 VALUE id = object_id0(obj);
2127 RB_GC_VM_UNLOCK(lock_lev);
2131 return object_id0(obj);
2135build_id2ref_i(
VALUE obj,
void *data)
2143 if (
RCLASS(obj)->object_id) {
2144 st_insert(id2ref_tbl,
RCLASS(obj)->object_id, obj);
2149 if (IMEMO_TYPE_P(obj, imemo_fields) && rb_shape_obj_has_id(obj)) {
2150 st_insert(id2ref_tbl, rb_obj_id(obj), rb_imemo_fields_owner(obj));
2155 if (rb_shape_obj_has_id(obj)) {
2156 st_insert(id2ref_tbl, rb_obj_id(obj), obj);
2166object_id_to_ref(
void *objspace_ptr,
VALUE object_id)
2170 unsigned int lev = RB_GC_VM_LOCK();
2178 st_table *tmp_id2ref_tbl = st_init_table(&object_id_hash_type);
2184 bool gc_disabled =
RTEST(rb_gc_disable());
2186 id2ref_tbl = tmp_id2ref_tbl;
2187 id2ref_value = tmp_id2ref_value;
2189 rb_gc_impl_each_object(
objspace, build_id2ref_i, (
void *)id2ref_tbl);
2191 if (!gc_disabled) rb_gc_enable();
2195 bool found = st_lookup(id2ref_tbl, object_id, &obj) && !rb_gc_impl_garbage_object_p(
objspace, obj);
2197 RB_GC_VM_UNLOCK(lev);
2212obj_free_object_id(
VALUE obj)
2215 if (RB_UNLIKELY(id2ref_tbl)) {
2219 obj_id =
RCLASS(obj)->object_id;
2222 if (!IMEMO_TYPE_P(obj, imemo_fields)) {
2228 shape_id_t shape_id = RBASIC_SHAPE_ID(obj);
2229 if (rb_shape_has_object_id(shape_id)) {
2230 obj_id = object_id_get(obj, shape_id);
2239 if (RB_UNLIKELY(obj_id)) {
2242 if (!st_delete(id2ref_tbl, (st_data_t *)&obj_id, NULL)) {
2246 rb_bug(
"Object ID seen, but not in _id2ref table: object_id=%llu object=%s",
NUM2ULL(obj_id), rb_obj_info(obj));
2254rb_gc_obj_free_vm_weak_references(
VALUE obj)
2257 obj_free_object_id(obj);
2259 if (rb_obj_gen_fields_p(obj)) {
2266 rb_gc_free_fstring(obj);
2270 rb_gc_free_dsymbol(obj);
2273 switch (imemo_type(obj)) {
2274 case imemo_callinfo:
2310 if (
FIXNUM_P(objid) || rb_big_size(objid) <= SIZEOF_VOIDP) {
2321 if (rb_static_id_valid_p(
SYM2ID(ptr))) {
2325 rb_raise(
rb_eRangeError,
"%p is not a symbol id value", (
void *)ptr);
2329 rb_raise(
rb_eRangeError,
"%+"PRIsVALUE
" is not an id value", rb_int2str(objid, 10));
2333 VALUE obj = object_id_to_ref(rb_gc_get_objspace(), objid);
2338 rb_raise(
rb_eRangeError,
"%+"PRIsVALUE
" is the id of an unshareable object on multi-ractor", rb_int2str(objid, 10));
2347 return id2ref(objid);
2354#if SIZEOF_LONG == SIZEOF_VOIDP
2361 return get_heap_object_id(obj);
2365nonspecial_obj_id(
VALUE obj)
2367#if SIZEOF_LONG == SIZEOF_VOIDP
2369#elif SIZEOF_LONG_LONG == SIZEOF_VOIDP
2372# error not supported
2379 return rb_find_object_id(NULL, obj, nonspecial_obj_id);
2416 return rb_find_object_id(rb_gc_get_objspace(), obj, object_id);
2420rb_obj_id_p(
VALUE obj)
2432rb_gc_before_updating_jit_code(
void)
2435 rb_yjit_mark_all_writeable();
2445rb_gc_after_updating_jit_code(
void)
2448 rb_yjit_mark_all_executable();
2455 size_t *size = (
size_t *)arg;
2458 if (RCLASSEXT_M_TBL(ext)) {
2459 s += rb_id_table_memsize(RCLASSEXT_M_TBL(ext));
2461 if (RCLASSEXT_CVC_TBL(ext)) {
2462 s += rb_id_table_memsize(RCLASSEXT_CVC_TBL(ext));
2464 if (RCLASSEXT_CONST_TBL(ext)) {
2465 s += rb_id_table_memsize(RCLASSEXT_CONST_TBL(ext));
2467 if (RCLASSEXT_SUPERCLASSES_WITH_SELF(ext)) {
2468 s += (RCLASSEXT_SUPERCLASS_DEPTH(ext) + 1) *
sizeof(
VALUE);
2477classext_superclasses_memsize(
rb_classext_t *ext,
bool prime,
VALUE box_value,
void *arg)
2479 size_t *size = (
size_t *)arg;
2481 if (RCLASSEXT_SUPERCLASSES_WITH_SELF(ext)) {
2483 array_size = RCLASSEXT_SUPERCLASS_DEPTH(ext) + 1;
2484 *size += array_size *
sizeof(
VALUE);
2489rb_obj_memsize_of(
VALUE obj)
2500 if (rb_shape_obj_too_complex_p(obj)) {
2501 size += rb_st_memsize(ROBJECT_FIELDS_HASH(obj));
2504 size += ROBJECT_FIELDS_CAPACITY(obj) *
sizeof(
VALUE);
2510 rb_class_classext_foreach(obj, classext_memsize, (
void *)&size);
2511 rb_class_classext_foreach(obj, classext_superclasses_memsize, (
void *)&size);
2514 if (RICLASS_OWNS_M_TBL_P(obj)) {
2515 if (RCLASS_M_TBL(obj)) {
2516 size += rb_id_table_memsize(RCLASS_M_TBL(obj));
2521 size += rb_str_memsize(obj);
2524 size += rb_ary_memsize(obj);
2527 if (RHASH_ST_TABLE_P(obj)) {
2528 VM_ASSERT(RHASH_ST_TABLE(obj) != NULL);
2530 size += st_memsize(RHASH_ST_TABLE(obj)) -
sizeof(
st_table);
2539 size += rb_objspace_data_type_memsize(obj);
2544 size += onig_region_memsize(&rm->
regs);
2549 if (
RFILE(obj)->fptr) {
2550 size += rb_io_memsize(
RFILE(obj)->fptr);
2557 size += rb_imemo_memsize(obj);
2565 if (!(
RBASIC(obj)->flags & BIGNUM_EMBED_FLAG) && BIGNUM_DIGITS(obj)) {
2566 size += BIGNUM_LEN(obj) *
sizeof(BDIGIT);
2571 UNEXPECTED_NODE(obj_memsize_of);
2575 if (RSTRUCT_EMBED_LEN(obj) == 0) {
2576 size +=
sizeof(
VALUE) * RSTRUCT_LEN_RAW(obj);
2585 rb_bug(
"objspace/memsize_of(): unknown data type 0x%x(%p)",
2589 return size + rb_gc_obj_slot_size(obj);
2593set_zero(st_data_t key, st_data_t val, st_data_t arg)
2597 rb_hash_aset(hash, k,
INT2FIX(0));
2608count_objects_i(
VALUE obj,
void *d)
2612 if (
RBASIC(obj)->flags) {
2658count_objects(
int argc,
VALUE *argv,
VALUE os)
2670 for (
size_t i = 0; i <=
T_MASK; i++) {
2674 types[i] = type_sym(i);
2681 rb_gc_impl_each_object(rb_gc_get_objspace(), count_objects_i, &data);
2684 hash = rb_hash_new();
2687 rb_hash_stlike_foreach(hash, set_zero, hash);
2689 rb_hash_aset(hash, total,
SIZET2NUM(data.total));
2690 rb_hash_aset(hash, free,
SIZET2NUM(data.freed));
2692 for (
size_t i = 0; i <=
T_MASK; i++) {
2693 if (data.counts[i]) {
2694 rb_hash_aset(hash, types[i],
SIZET2NUM(data.counts[i]));
2701#define SET_STACK_END SET_MACHINE_STACK_END(&ec->machine.stack_end)
2703#define STACK_START (ec->machine.stack_start)
2704#define STACK_END (ec->machine.stack_end)
2705#define STACK_LEVEL_MAX (ec->machine.stack_maxsize/sizeof(VALUE))
2707#if STACK_GROW_DIRECTION < 0
2708# define STACK_LENGTH (size_t)(STACK_START - STACK_END)
2709#elif STACK_GROW_DIRECTION > 0
2710# define STACK_LENGTH (size_t)(STACK_END - STACK_START + 1)
2712# define STACK_LENGTH ((STACK_END < STACK_START) ? (size_t)(STACK_START - STACK_END) \
2713 : (size_t)(STACK_END - STACK_START + 1))
2715#if !STACK_GROW_DIRECTION
2716int ruby_stack_grow_direction;
2718ruby_get_stack_grow_direction(
volatile VALUE *addr)
2721 SET_MACHINE_STACK_END(&end);
2723 if (end > addr)
return ruby_stack_grow_direction = 1;
2724 return ruby_stack_grow_direction = -1;
2733 if (p) *p = STACK_UPPER(STACK_END, STACK_START, STACK_END);
2734 return STACK_LENGTH;
2737#define PREVENT_STACK_OVERFLOW 1
2738#ifndef PREVENT_STACK_OVERFLOW
2739#if !(defined(POSIX_SIGNAL) && defined(SIGSEGV) && defined(HAVE_SIGALTSTACK))
2740# define PREVENT_STACK_OVERFLOW 1
2742# define PREVENT_STACK_OVERFLOW 0
2745#if PREVENT_STACK_OVERFLOW && !defined(__EMSCRIPTEN__)
2751 size_t length = STACK_LENGTH;
2752 size_t maximum_length = STACK_LEVEL_MAX - water_mark;
2754 return length > maximum_length;
2757#define stack_check(ec, water_mark) FALSE
2760#define STACKFRAME_FOR_CALL_CFUNC 2048
2765 return stack_check(ec, STACKFRAME_FOR_CALL_CFUNC);
2771 return stack_check(GET_EC(), STACKFRAME_FOR_CALL_CFUNC);
2776#define RB_GC_MARK_OR_TRAVERSE(func, obj_or_ptr, obj, check_obj) do { \
2777 if (!RB_SPECIAL_CONST_P(obj)) { \
2778 rb_vm_t *vm = GET_VM(); \
2779 void *objspace = vm->gc.objspace; \
2780 if (LIKELY(vm->gc.mark_func_data == NULL)) { \
2781 GC_ASSERT(rb_gc_impl_during_gc_p(objspace)); \
2782 (func)(objspace, (obj_or_ptr)); \
2784 else if (check_obj ? \
2785 rb_gc_impl_pointer_to_heap_p(objspace, (const void *)obj) && \
2786 !rb_gc_impl_garbage_object_p(objspace, obj) : \
2788 GC_ASSERT(!rb_gc_impl_during_gc_p(objspace)); \
2789 struct gc_mark_func_data_struct *mark_func_data = vm->gc.mark_func_data; \
2790 vm->gc.mark_func_data = NULL; \
2791 mark_func_data->mark_func((obj), mark_func_data->data); \
2792 vm->gc.mark_func_data = mark_func_data; \
2798gc_mark_internal(
VALUE obj)
2800 RB_GC_MARK_OR_TRAVERSE(rb_gc_impl_mark, obj, obj,
false);
2806 gc_mark_internal(obj);
2810rb_gc_mark_and_move(
VALUE *ptr)
2812 RB_GC_MARK_OR_TRAVERSE(rb_gc_impl_mark_and_move, ptr, *ptr,
false);
2816gc_mark_and_pin_internal(
VALUE obj)
2818 RB_GC_MARK_OR_TRAVERSE(rb_gc_impl_mark_and_pin, obj, obj,
false);
2824 gc_mark_and_pin_internal(obj);
2828gc_mark_maybe_internal(
VALUE obj)
2830 RB_GC_MARK_OR_TRAVERSE(rb_gc_impl_mark_maybe, obj, obj,
true);
2836 gc_mark_maybe_internal(obj);
2839ATTRIBUTE_NO_ADDRESS_SAFETY_ANALYSIS(
static void each_location(
register const VALUE *x,
register long n,
void (*cb)(
VALUE,
void *),
void *data));
2841each_location(
register const VALUE *x,
register long n,
void (*cb)(
VALUE,
void *),
void *data)
2852each_location_ptr(
const VALUE *start,
const VALUE *end,
void (*cb)(
VALUE,
void *),
void *data)
2854 if (end <= start)
return;
2855 each_location(start, end - start, cb, data);
2859gc_mark_maybe_each_location(
VALUE obj,
void *data)
2861 gc_mark_maybe_internal(obj);
2867 each_location_ptr(start, end, gc_mark_maybe_each_location, NULL);
2871rb_gc_mark_values(
long n,
const VALUE *values)
2873 for (
long i = 0; i < n; i++) {
2874 gc_mark_internal(values[i]);
2879rb_gc_mark_vm_stack_values(
long n,
const VALUE *values)
2881 for (
long i = 0; i < n; i++) {
2882 gc_mark_and_pin_internal(values[i]);
2887mark_key(st_data_t key, st_data_t value, st_data_t data)
2889 gc_mark_and_pin_internal((
VALUE)key);
2899 st_foreach(tbl, mark_key, (st_data_t)rb_gc_get_objspace());
2903mark_keyvalue(st_data_t key, st_data_t value, st_data_t data)
2905 gc_mark_internal((
VALUE)key);
2906 gc_mark_internal((
VALUE)value);
2912pin_key_pin_value(st_data_t key, st_data_t value, st_data_t data)
2914 gc_mark_and_pin_internal((
VALUE)key);
2915 gc_mark_and_pin_internal((
VALUE)value);
2921pin_key_mark_value(st_data_t key, st_data_t value, st_data_t data)
2923 gc_mark_and_pin_internal((
VALUE)key);
2924 gc_mark_internal((
VALUE)value);
2930mark_hash(
VALUE hash)
2932 if (rb_hash_compare_by_id_p(hash)) {
2933 rb_hash_stlike_foreach(hash, pin_key_mark_value, 0);
2936 rb_hash_stlike_foreach(hash, mark_keyvalue, 0);
2939 gc_mark_internal(RHASH(hash)->ifnone);
2947 st_foreach(tbl, pin_key_pin_value, 0);
2950static enum rb_id_table_iterator_result
2953 gc_mark_internal(me);
2955 return ID_TABLE_CONTINUE;
2962 rb_id_table_foreach_values(tbl, mark_method_entry_i,
objspace);
2966static enum rb_id_table_iterator_result
2971 if (!rb_gc_checking_shareable()) {
2972 gc_mark_internal(ce->value);
2973 gc_mark_internal(ce->file);
2975 return ID_TABLE_CONTINUE;
2982 rb_id_table_foreach_values(tbl, mark_const_entry_i,
objspace);
2985static enum rb_id_table_iterator_result
2993 gc_mark_internal((
VALUE)entry->cref);
2995 return ID_TABLE_CONTINUE;
3002 rb_id_table_foreach_values(tbl, mark_cvc_tbl_i,
objspace);
3005#if STACK_GROW_DIRECTION < 0
3006#define GET_STACK_BOUNDS(start, end, appendix) ((start) = STACK_END, (end) = STACK_START)
3007#elif STACK_GROW_DIRECTION > 0
3008#define GET_STACK_BOUNDS(start, end, appendix) ((start) = STACK_START, (end) = STACK_END+(appendix))
3010#define GET_STACK_BOUNDS(start, end, appendix) \
3011 ((STACK_END < STACK_START) ? \
3012 ((start) = STACK_END, (end) = STACK_START) : ((start) = STACK_START, (end) = STACK_END+(appendix)))
3016gc_mark_machine_stack_location_maybe(
VALUE obj,
void *data)
3018 gc_mark_maybe_internal(obj);
3020#ifdef RUBY_ASAN_ENABLED
3022 void *fake_frame_start;
3023 void *fake_frame_end;
3024 bool is_fake_frame = asan_get_fake_stack_extents(
3025 ec->machine.asan_fake_stack_handle, obj,
3026 ec->machine.stack_start, ec->machine.stack_end,
3027 &fake_frame_start, &fake_frame_end
3029 if (is_fake_frame) {
3030 each_location_ptr(fake_frame_start, fake_frame_end, gc_mark_maybe_each_location, NULL);
3042 return rb_gc_impl_object_moved_p(
objspace, obj);
3052 GC_ASSERT(rb_gc_impl_pointer_to_heap_p(
objspace, (
void *)value));
3054 return rb_gc_impl_location(
objspace, value);
3060 return gc_location_internal(rb_gc_get_objspace(), value);
3063#if defined(__wasm__)
3066static VALUE *rb_stack_range_tmp[2];
3069rb_mark_locations(
void *begin,
void *end)
3071 rb_stack_range_tmp[0] = begin;
3072 rb_stack_range_tmp[1] = end;
3076rb_gc_save_machine_context(
void)
3081# if defined(__EMSCRIPTEN__)
3086 emscripten_scan_stack(rb_mark_locations);
3087 each_location_ptr(rb_stack_range_tmp[0], rb_stack_range_tmp[1], gc_mark_maybe_each_location, NULL);
3089 emscripten_scan_registers(rb_mark_locations);
3090 each_location_ptr(rb_stack_range_tmp[0], rb_stack_range_tmp[1], gc_mark_maybe_each_location, NULL);
3097 VALUE *stack_start, *stack_end;
3099 GET_STACK_BOUNDS(stack_start, stack_end, 1);
3100 each_location_ptr(stack_start, stack_end, gc_mark_maybe_each_location, NULL);
3102 rb_wasm_scan_locals(rb_mark_locations);
3103 each_location_ptr(rb_stack_range_tmp[0], rb_stack_range_tmp[1], gc_mark_maybe_each_location, NULL);
3111rb_gc_save_machine_context(
void)
3115 RB_VM_SAVE_MACHINE_CONTEXT(thread);
3122 rb_gc_mark_machine_context(ec);
3129 VALUE *stack_start, *stack_end;
3131 GET_STACK_BOUNDS(stack_start, stack_end, 0);
3132 RUBY_DEBUG_LOG(
"ec->th:%u stack_start:%p stack_end:%p", rb_ec_thread_ptr(ec)->serial, stack_start, stack_end);
3135#ifdef RUBY_ASAN_ENABLED
3142 each_location_ptr(stack_start, stack_end, gc_mark_machine_stack_location_maybe, data);
3143 int num_regs =
sizeof(ec->machine.regs)/(
sizeof(
VALUE));
3144 each_location((
VALUE*)&ec->machine.regs, num_regs, gc_mark_machine_stack_location_maybe, data);
3148rb_mark_tbl_i(st_data_t key, st_data_t value, st_data_t data)
3150 gc_mark_and_pin_internal((
VALUE)value);
3158 if (!tbl || tbl->num_entries == 0)
return;
3160 st_foreach(tbl, rb_mark_tbl_i, 0);
3166 if (!tbl || tbl->num_entries == 0)
return;
3168 st_foreach(tbl, gc_mark_tbl_no_pin_i, 0);
3174 gc_mark_tbl_no_pin(tbl);
3180 return (
type->flags & RUBY_TYPED_DECL_MARKING) != 0;
3184rb_gc_mark_roots(
void *
objspace,
const char **categoryp)
3187 rb_vm_t *vm = rb_ec_vm_ptr(ec);
3189#define MARK_CHECKPOINT(category) do { \
3190 if (categoryp) *categoryp = category; \
3193 MARK_CHECKPOINT(
"vm");
3196 MARK_CHECKPOINT(
"end_proc");
3199 MARK_CHECKPOINT(
"global_tbl");
3200 rb_gc_mark_global_tbl();
3203 void rb_yjit_root_mark(
void);
3205 if (rb_yjit_enabled_p) {
3206 MARK_CHECKPOINT(
"YJIT");
3207 rb_yjit_root_mark();
3212 void rb_zjit_root_mark(
void);
3213 if (rb_zjit_enabled_p) {
3214 MARK_CHECKPOINT(
"ZJIT");
3215 rb_zjit_root_mark();
3219 MARK_CHECKPOINT(
"machine_context");
3220 mark_current_machine_context(ec);
3222 MARK_CHECKPOINT(
"global_symbols");
3223 rb_sym_global_symbols_mark_and_move();
3225 MARK_CHECKPOINT(
"finish");
3227#undef MARK_CHECKPOINT
3241 if (RCLASSEXT_SUPER(ext)) {
3242 gc_mark_internal(RCLASSEXT_SUPER(ext));
3244 mark_m_tbl(
objspace, RCLASSEXT_M_TBL(ext));
3246 if (!rb_gc_checking_shareable()) {
3248 gc_mark_internal(RCLASSEXT_FIELDS_OBJ(ext));
3251 if (!RCLASSEXT_SHARED_CONST_TBL(ext) && RCLASSEXT_CONST_TBL(ext)) {
3252 mark_const_tbl(
objspace, RCLASSEXT_CONST_TBL(ext));
3254 mark_m_tbl(
objspace, RCLASSEXT_CALLABLE_M_TBL(ext));
3255 gc_mark_internal(RCLASSEXT_CC_TBL(ext));
3256 mark_cvc_tbl(
objspace, RCLASSEXT_CVC_TBL(ext));
3257 gc_mark_internal(RCLASSEXT_CLASSPATH(ext));
3266 if (RCLASSEXT_SUPER(ext)) {
3267 gc_mark_internal(RCLASSEXT_SUPER(ext));
3269 if (RCLASSEXT_ICLASS_IS_ORIGIN(ext) && !RCLASSEXT_ICLASS_ORIGIN_SHARED_MTBL(ext)) {
3270 mark_m_tbl(
objspace, RCLASSEXT_M_TBL(ext));
3272 if (RCLASSEXT_INCLUDER(ext)) {
3273 gc_mark_internal(RCLASSEXT_INCLUDER(ext));
3275 mark_m_tbl(
objspace, RCLASSEXT_CALLABLE_M_TBL(ext));
3276 gc_mark_internal(RCLASSEXT_CC_TBL(ext));
3279#define TYPED_DATA_REFS_OFFSET_LIST(d) (size_t *)(uintptr_t)RTYPEDDATA_TYPE(d)->function.dmark
3282rb_gc_move_obj_during_marking(
VALUE from,
VALUE to)
3284 if (rb_obj_using_gen_fields_table_p(to)) {
3285 rb_mark_generic_ivar(from);
3294 if (rb_obj_using_gen_fields_table_p(obj)) {
3295 rb_mark_generic_ivar(obj);
3305 rb_bug(
"rb_gc_mark() called for broken object");
3309 UNEXPECTED_NODE(rb_gc_mark);
3313 rb_imemo_mark_and_move(obj,
false);
3320 gc_mark_internal(
RBASIC(obj)->klass);
3325 !rb_gc_checking_shareable()) {
3326 gc_mark_internal(RCLASS_ATTACHED_OBJECT(obj));
3331 foreach_args.obj = obj;
3332 rb_class_classext_foreach(obj, gc_mark_classext_module, (
void *)&foreach_args);
3333 if (BOX_USER_P(RCLASS_PRIME_BOX(obj))) {
3334 gc_mark_internal(RCLASS_PRIME_BOX(obj)->box_object);
3340 foreach_args.obj = obj;
3341 rb_class_classext_foreach(obj, gc_mark_classext_iclass, (
void *)&foreach_args);
3342 if (BOX_USER_P(RCLASS_PRIME_BOX(obj))) {
3343 gc_mark_internal(RCLASS_PRIME_BOX(obj)->box_object);
3348 if (ARY_SHARED_P(obj)) {
3349 VALUE root = ARY_SHARED_ROOT(obj);
3350 gc_mark_internal(root);
3355 for (
long i = 0; i <
len; i++) {
3356 gc_mark_internal(ptr[i]);
3366 gc_mark_internal(RSYMBOL(obj)->fstr);
3370 if (STR_SHARED_P(obj)) {
3371 if (STR_EMBED_P(
RSTRING(obj)->as.heap.aux.shared)) {
3376 gc_mark_and_pin_internal(
RSTRING(obj)->as.heap.aux.shared);
3379 gc_mark_internal(
RSTRING(obj)->as.heap.aux.shared);
3386 void *
const ptr = typed_data ? RTYPEDDATA_GET_DATA(obj) :
DATA_PTR(obj);
3389 gc_mark_internal(
RTYPEDDATA(obj)->fields_obj);
3394 size_t *offset_list = TYPED_DATA_REFS_OFFSET_LIST(obj);
3396 for (
size_t offset = *offset_list; offset != RUBY_REF_END; offset = *offset_list++) {
3397 gc_mark_internal(*(
VALUE *)((
char *)ptr + offset));
3404 if (mark_func) (*mark_func)(ptr);
3413 if (rb_shape_obj_too_complex_p(obj)) {
3414 gc_mark_tbl_no_pin(ROBJECT_FIELDS_HASH(obj));
3415 len = ROBJECT_FIELDS_COUNT_COMPLEX(obj);
3420 len = ROBJECT_FIELDS_COUNT_NOT_COMPLEX(obj);
3421 for (uint32_t i = 0; i <
len; i++) {
3422 gc_mark_internal(ptr[i]);
3426 attr_index_t fields_count = (attr_index_t)
len;
3431 if (RCLASS_MAX_IV_COUNT(klass) < fields_count) {
3432 RCLASS_SET_MAX_IV_COUNT(klass, fields_count);
3440 if (
RFILE(obj)->fptr) {
3441 gc_mark_internal(
RFILE(obj)->fptr->self);
3442 gc_mark_internal(
RFILE(obj)->fptr->pathv);
3443 gc_mark_internal(
RFILE(obj)->fptr->tied_io_for_writing);
3444 gc_mark_internal(
RFILE(obj)->fptr->writeconv_asciicompat);
3445 gc_mark_internal(
RFILE(obj)->fptr->writeconv_pre_ecopts);
3446 gc_mark_internal(
RFILE(obj)->fptr->encs.ecopts);
3447 gc_mark_internal(
RFILE(obj)->fptr->write_lock);
3448 gc_mark_internal(
RFILE(obj)->fptr->timeout);
3449 gc_mark_internal(
RFILE(obj)->fptr->wakeup_mutex);
3454 gc_mark_internal(
RREGEXP(obj)->src);
3458 gc_mark_internal(
RMATCH(obj)->regexp);
3460 gc_mark_internal(
RMATCH(obj)->str);
3465 gc_mark_internal(RRATIONAL(obj)->num);
3466 gc_mark_internal(RRATIONAL(obj)->den);
3470 gc_mark_internal(RCOMPLEX(obj)->real);
3471 gc_mark_internal(RCOMPLEX(obj)->imag);
3476 const VALUE *
const ptr = RSTRUCT_CONST_PTR(obj);
3478 for (
long i = 0; i <
len; i++) {
3479 gc_mark_internal(ptr[i]);
3482 if (rb_shape_obj_has_fields(obj) && !
FL_TEST_RAW(obj, RSTRUCT_GEN_FIELDS)) {
3483 gc_mark_internal(RSTRUCT_FIELDS_OBJ(obj));
3493 rb_bug(
"rb_gc_mark(): unknown data type 0x%x(%p) %s",
3495 rb_gc_impl_pointer_to_heap_p(
objspace, (
void *)obj) ?
"corrupted object" :
"non object");
3500rb_gc_obj_optimal_size(
VALUE obj)
3505 size_t size = rb_ary_size_as_embedded(obj);
3506 if (rb_gc_size_allocatable_p(size)) {
3510 return sizeof(
struct RArray);
3515 if (rb_shape_obj_too_complex_p(obj)) {
3516 return sizeof(
struct RObject);
3520 if (rb_gc_size_allocatable_p(size)) {
3524 return sizeof(
struct RObject);
3530 size_t size = rb_str_size_as_embedded(obj);
3531 if (rb_gc_size_allocatable_p(size)) {
3535 return sizeof(
struct RString);
3540 return sizeof(
struct RHash) + (RHASH_ST_TABLE_P(obj) ? sizeof(
st_table) : sizeof(ar_table));
3548rb_gc_writebarrier(VALUE a, VALUE b)
3550 rb_gc_impl_writebarrier(rb_gc_get_objspace(), a, b);
3556 rb_gc_impl_writebarrier_unprotect(rb_gc_get_objspace(), obj);
3563rb_gc_writebarrier_remember(
VALUE obj)
3565 rb_gc_impl_writebarrier_remember(rb_gc_get_objspace(), obj);
3571 rb_gc_impl_copy_attributes(rb_gc_get_objspace(), dest, obj);
3575rb_gc_modular_gc_loaded_p(
void)
3578 return rb_gc_functions.modular_gc_loaded_p;
3585rb_gc_active_gc_name(
void)
3587 const char *gc_name = rb_gc_impl_active_gc_name();
3589 const size_t len = strlen(gc_name);
3590 if (
len > RB_GC_MAX_NAME_LEN) {
3591 rb_bug(
"GC should have a name no more than %d chars long. Currently: %zu (%s)",
3592 RB_GC_MAX_NAME_LEN,
len, gc_name);
3599rb_gc_object_metadata(
VALUE obj)
3601 return rb_gc_impl_object_metadata(rb_gc_get_objspace(), obj);
3609 return rb_gc_impl_ractor_cache_alloc(rb_gc_get_objspace(), ractor);
3613rb_gc_ractor_cache_free(
void *cache)
3615 rb_gc_impl_ractor_cache_free(rb_gc_get_objspace(), cache);
3621 if (!rb_gc_impl_pointer_to_heap_p(rb_gc_get_objspace(), (
void *)obj))
3624 rb_vm_register_global_object(obj);
3636 tmp->next = vm->global_object_list;
3638 vm->global_object_list = tmp;
3647 rb_warn(
"Object is assigned to registering address already: %"PRIsVALUE,
3649 rb_print_backtrace(stderr);
3659 tmp = vm->global_object_list;
3660 if (tmp->varptr == addr) {
3661 vm->global_object_list = tmp->next;
3666 if (tmp->next->varptr == addr) {
3669 tmp->next = tmp->next->next;
3682 rb_gc_register_address(var);
3688 rb_gc_impl_start(rb_gc_get_objspace(),
RTEST(full_mark),
RTEST(immediate_mark),
RTEST(immediate_sweep),
RTEST(compact));
3732rb_objspace_each_objects(
int (*callback)(
void *,
void *,
size_t,
void *),
void *data)
3734 rb_gc_impl_each_objects(rb_gc_get_objspace(), callback, data);
3740 if (ARY_SHARED_P(v)) {
3741 VALUE old_root =
RARRAY(v)->as.heap.aux.shared_root;
3745 VALUE new_root =
RARRAY(v)->as.heap.aux.shared_root;
3747 if (ARY_EMBED_P(new_root) && new_root != old_root) {
3748 size_t offset = (size_t)(
RARRAY(v)->as.heap.ptr -
RARRAY(old_root)->as.ary);
3749 GC_ASSERT(
RARRAY(v)->as.heap.ptr >=
RARRAY(old_root)->as.ary);
3750 RARRAY(v)->as.heap.ptr =
RARRAY(new_root)->as.ary + offset;
3758 for (
long i = 0; i <
len; i++) {
3763 if (rb_gc_obj_slot_size(v) >= rb_ary_size_as_embedded(v)) {
3764 if (rb_ary_embeddable_p(v)) {
3765 rb_ary_make_embedded(v);
3777 if (rb_shape_obj_too_complex_p(v)) {
3778 gc_ref_update_table_values_only(ROBJECT_FIELDS_HASH(v));
3782 size_t slot_size = rb_gc_obj_slot_size(v);
3784 if (slot_size >= embed_size) {
3786 memcpy(
ROBJECT(v)->as.ary, ptr,
sizeof(
VALUE) * ROBJECT_FIELDS_COUNT(v));
3787 SIZED_FREE_N(ptr, ROBJECT_FIELDS_CAPACITY(v));
3793 for (uint32_t i = 0; i < ROBJECT_FIELDS_COUNT(v); i++) {
3799rb_gc_ref_update_table_values_only(
st_table *tbl)
3801 gc_ref_update_table_values_only(tbl);
3808 gc_update_table_refs(ptr);
3814 rb_hash_stlike_foreach_with_replace(v, hash_foreach_replace, hash_replace_ref, (st_data_t)
objspace);
3820 for (
long i = 0; i < n; i++) {
3821 UPDATE_IF_MOVED(
objspace, values[i]);
3826rb_gc_update_values(
long n,
VALUE *values)
3828 gc_update_values(rb_gc_get_objspace(), n, values);
3831static enum rb_id_table_iterator_result
3832check_id_table_move(
VALUE value,
void *data)
3837 return ID_TABLE_REPLACE;
3840 return ID_TABLE_CONTINUE;
3844rb_gc_prepare_heap_process_object(
VALUE obj)
3858rb_gc_prepare_heap(
void)
3860 rb_gc_impl_prepare_heap(rb_gc_get_objspace());
3864rb_gc_heap_id_for_size(
size_t size)
3866 return rb_gc_impl_heap_id_for_size(rb_gc_get_objspace(), size);
3870rb_gc_size_allocatable_p(
size_t size)
3872 return rb_gc_impl_size_allocatable_p(size);
3875static enum rb_id_table_iterator_result
3876update_id_table(
VALUE *value,
void *data,
int existing)
3884 return ID_TABLE_CONTINUE;
3891 rb_id_table_foreach_values_with_replace(tbl, check_id_table_move, update_id_table,
objspace);
3895static enum rb_id_table_iterator_result
3906 entry->class_value = gc_location_internal(
objspace, entry->class_value);
3908 return ID_TABLE_CONTINUE;
3915 rb_id_table_foreach_values(tbl, update_cvc_tbl_i,
objspace);
3918static enum rb_id_table_iterator_result
3923 if (gc_object_moved_p_internal(
objspace, ce->value)) {
3924 ce->value = gc_location_internal(
objspace, ce->value);
3927 if (gc_object_moved_p_internal(
objspace, ce->file)) {
3928 ce->file = gc_location_internal(
objspace, ce->file);
3931 return ID_TABLE_CONTINUE;
3938 rb_id_table_foreach_values(tbl, update_const_tbl_i,
objspace);
3946 if (!anchor)
return;
3947 entry = anchor->head;
3950 UPDATE_IF_MOVED(
objspace, entry->klass);
3951 entry = entry->next;
3958 if (RCLASSEXT_SUPERCLASSES_WITH_SELF(ext)) {
3959 size_t array_size = RCLASSEXT_SUPERCLASS_DEPTH(ext) + 1;
3960 for (
size_t i = 0; i < array_size; i++) {
3961 UPDATE_IF_MOVED(
objspace, RCLASSEXT_SUPERCLASSES(ext)[i]);
3969 UPDATE_IF_MOVED(
objspace, RCLASSEXT_ORIGIN(ext));
3970 UPDATE_IF_MOVED(
objspace, RCLASSEXT_REFINED_CLASS(ext));
3971 UPDATE_IF_MOVED(
objspace, RCLASSEXT_CLASSPATH(ext));
3973 UPDATE_IF_MOVED(
objspace, RCLASSEXT_INCLUDER(ext));
3983 if (RCLASSEXT_SUPER(ext)) {
3984 UPDATE_IF_MOVED(
objspace, RCLASSEXT_SUPER(ext));
3987 update_m_tbl(
objspace, RCLASSEXT_M_TBL(ext));
3989 UPDATE_IF_MOVED(
objspace, ext->fields_obj);
3990 if (!RCLASSEXT_SHARED_CONST_TBL(ext)) {
3991 update_const_tbl(
objspace, RCLASSEXT_CONST_TBL(ext));
3993 UPDATE_IF_MOVED(
objspace, RCLASSEXT_CC_TBL(ext));
3994 update_cvc_tbl(
objspace, RCLASSEXT_CVC_TBL(ext));
3995 update_superclasses(
objspace, ext);
3998 update_classext_values(
objspace, ext,
false);
4007 if (RCLASSEXT_SUPER(ext)) {
4008 UPDATE_IF_MOVED(
objspace, RCLASSEXT_SUPER(ext));
4010 update_m_tbl(
objspace, RCLASSEXT_M_TBL(ext));
4011 update_m_tbl(
objspace, RCLASSEXT_CALLABLE_M_TBL(ext));
4012 UPDATE_IF_MOVED(
objspace, RCLASSEXT_CC_TBL(ext));
4015 update_classext_values(
objspace, ext,
true);
4019 vm_table_foreach_callback_func callback;
4020 vm_table_update_callback_func update_callback;
4026vm_weak_table_foreach_weak_key(st_data_t key, st_data_t value, st_data_t data,
int error)
4030 int ret = iter_data->callback((
VALUE)key, iter_data->data);
4032 if (!iter_data->weak_only) {
4033 if (ret != ST_CONTINUE)
return ret;
4035 ret = iter_data->callback((
VALUE)value, iter_data->data);
4042vm_weak_table_foreach_update_weak_key(st_data_t *key, st_data_t *value, st_data_t data,
int existing)
4046 int ret = iter_data->update_callback((
VALUE *)key, iter_data->data);
4048 if (!iter_data->weak_only) {
4049 if (ret != ST_CONTINUE)
return ret;
4051 ret = iter_data->update_callback((
VALUE *)value, iter_data->data);
4058vm_weak_table_sym_set_foreach(
VALUE *sym_ptr,
void *data)
4060 VALUE sym = *sym_ptr;
4065 int ret = iter_data->callback(sym, iter_data->data);
4067 if (ret == ST_REPLACE) {
4068 ret = iter_data->update_callback(sym_ptr, iter_data->data);
4074struct st_table *rb_generic_fields_tbl_get(
void);
4077vm_weak_table_id2ref_foreach(st_data_t key, st_data_t value, st_data_t data,
int error)
4082 int ret = iter_data->callback((
VALUE)key, iter_data->data);
4083 if (ret != ST_CONTINUE)
return ret;
4086 return iter_data->callback((
VALUE)value, iter_data->data);
4090vm_weak_table_id2ref_foreach_update(st_data_t *key, st_data_t *value, st_data_t data,
int existing)
4094 iter_data->update_callback((
VALUE *)value, iter_data->data);
4097 iter_data->update_callback((
VALUE *)key, iter_data->data);
4104vm_weak_table_gen_fields_foreach(st_data_t key, st_data_t value, st_data_t data)
4108 int ret = iter_data->callback((
VALUE)key, iter_data->data);
4118 RBASIC_SET_SHAPE_ID((
VALUE)key, ROOT_SHAPE_ID);
4122 ret = iter_data->update_callback(&new_key, iter_data->data);
4123 if (key != new_key) {
4130 rb_bug(
"vm_weak_table_gen_fields_foreach: return value %d not supported", ret);
4133 if (!iter_data->weak_only) {
4134 int ivar_ret = iter_data->callback(new_value, iter_data->data);
4140 iter_data->update_callback(&new_value, iter_data->data);
4144 rb_bug(
"vm_weak_table_gen_fields_foreach: return value %d not supported", ivar_ret);
4148 if (key != new_key || value != new_value) {
4149 DURING_GC_COULD_MALLOC_REGION_START();
4151 st_insert(rb_generic_fields_tbl_get(), (st_data_t)new_key, new_value);
4153 DURING_GC_COULD_MALLOC_REGION_END();
4160vm_weak_table_frozen_strings_foreach(
VALUE *str,
void *data)
4164 int retval = iter_data->callback(*str, iter_data->data);
4166 if (retval == ST_REPLACE) {
4167 retval = iter_data->update_callback(str, iter_data->data);
4170 if (retval == ST_DELETE) {
4177void rb_fstring_foreach_with_replace(
int (*callback)(
VALUE *str,
void *data),
void *data);
4179rb_gc_vm_weak_table_foreach(vm_table_foreach_callback_func callback,
4180 vm_table_update_callback_func update_callback,
4183 enum rb_gc_vm_weak_tables table)
4188 .callback = callback,
4189 .update_callback = update_callback,
4191 .weak_only = weak_only,
4195 case RB_GC_VM_CI_TABLE: {
4197 st_foreach_with_replace(
4199 vm_weak_table_foreach_weak_key,
4200 vm_weak_table_foreach_update_weak_key,
4201 (st_data_t)&foreach_data
4206 case RB_GC_VM_OVERLOADED_CME_TABLE: {
4207 if (vm->overloaded_cme_table) {
4208 st_foreach_with_replace(
4209 vm->overloaded_cme_table,
4210 vm_weak_table_foreach_weak_key,
4211 vm_weak_table_foreach_update_weak_key,
4212 (st_data_t)&foreach_data
4217 case RB_GC_VM_GLOBAL_SYMBOLS_TABLE: {
4218 rb_sym_global_symbol_table_foreach_weak_reference(
4219 vm_weak_table_sym_set_foreach,
4224 case RB_GC_VM_ID2REF_TABLE: {
4226 st_foreach_with_replace(
4228 vm_weak_table_id2ref_foreach,
4229 vm_weak_table_id2ref_foreach_update,
4230 (st_data_t)&foreach_data
4235 case RB_GC_VM_GENERIC_FIELDS_TABLE: {
4236 st_table *generic_fields_tbl = rb_generic_fields_tbl_get();
4237 if (generic_fields_tbl) {
4240 vm_weak_table_gen_fields_foreach,
4241 (st_data_t)&foreach_data
4246 case RB_GC_VM_FROZEN_STRINGS_TABLE: {
4247 rb_fstring_foreach_with_replace(
4248 vm_weak_table_frozen_strings_foreach,
4253 case RB_GC_VM_WEAK_TABLE_COUNT:
4254 rb_bug(
"Unreachable");
4256 rb_bug(
"rb_gc_vm_weak_table_foreach: unknown table %d", table);
4261rb_gc_update_vm_references(
void *
objspace)
4264 rb_vm_t *vm = rb_ec_vm_ptr(ec);
4266 rb_vm_update_references(vm);
4267 rb_gc_update_global_tbl();
4268 rb_sym_global_symbols_mark_and_move();
4271 void rb_yjit_root_update_references(
void);
4273 if (rb_yjit_enabled_p) {
4274 rb_yjit_root_update_references();
4279 void rb_zjit_root_update_references(
void);
4281 if (rb_zjit_enabled_p) {
4282 rb_zjit_root_update_references();
4295 UPDATE_IF_MOVED(
objspace, RCLASS_ATTACHED_OBJECT(obj));
4301 rb_class_classext_foreach(obj, update_classext, (
void *)&args);
4306 rb_class_classext_foreach(obj, update_iclass_classext, (
void *)&args);
4310 rb_imemo_mark_and_move(obj,
true);
4322 gc_ref_update_array(
objspace, obj);
4327 UPDATE_IF_MOVED(
objspace, RHASH(obj)->ifnone);
4332 if (STR_SHARED_P(obj)) {
4338 if (rb_gc_obj_slot_size(obj) >= rb_str_size_as_embedded(obj)) {
4339 if (!STR_EMBED_P(obj) && rb_str_reembeddable_p(obj)) {
4340 rb_str_make_embedded(obj);
4350 void *
const ptr = typed_data ? RTYPEDDATA_GET_DATA(obj) :
DATA_PTR(obj);
4358 size_t *offset_list = TYPED_DATA_REFS_OFFSET_LIST(obj);
4360 for (
size_t offset = *offset_list; offset != RUBY_REF_END; offset = *offset_list++) {
4361 VALUE *ref = (
VALUE *)((
char *)ptr + offset);
4362 *ref = gc_location_internal(
objspace, *ref);
4365 else if (typed_data) {
4367 if (compact_func) (*compact_func)(ptr);
4374 gc_ref_update_object(
objspace, obj);
4378 if (
RFILE(obj)->fptr) {
4381 UPDATE_IF_MOVED(
objspace,
RFILE(obj)->fptr->tied_io_for_writing);
4382 UPDATE_IF_MOVED(
objspace,
RFILE(obj)->fptr->writeconv_asciicompat);
4383 UPDATE_IF_MOVED(
objspace,
RFILE(obj)->fptr->writeconv_pre_ecopts);
4395 UPDATE_IF_MOVED(
objspace, RSYMBOL(obj)->fstr);
4411 UPDATE_IF_MOVED(
objspace, RRATIONAL(obj)->num);
4412 UPDATE_IF_MOVED(
objspace, RRATIONAL(obj)->den);
4416 UPDATE_IF_MOVED(
objspace, RCOMPLEX(obj)->real);
4417 UPDATE_IF_MOVED(
objspace, RCOMPLEX(obj)->imag);
4424 VALUE *ptr = (
VALUE *)RSTRUCT_CONST_PTR(obj);
4426 for (i = 0; i <
len; i++) {
4430 if (RSTRUCT_EMBED_LEN(obj)) {
4436 UPDATE_IF_MOVED(
objspace, RSTRUCT(obj)->as.heap.fields_obj);
4441 rb_bug(
"unreachable");
4458 unless_objspace(
objspace) {
return; }
4460 rb_gc_impl_start(
objspace,
true,
true,
true,
false);
4466 unless_objspace(
objspace) {
return FALSE; }
4468 return rb_gc_impl_during_gc_p(
objspace);
4474 return rb_gc_impl_gc_count(rb_gc_get_objspace());
4490 VALUE val = rb_gc_impl_latest_gc_info(rb_gc_get_objspace(), key);
4493 rb_raise(rb_eArgError,
"unknown key: %"PRIsVALUE,
rb_sym2str(key));
4503 arg = rb_hash_new();
4509 VALUE ret = rb_gc_impl_stat(rb_gc_get_objspace(), arg);
4514 rb_raise(rb_eArgError,
"unknown key: %"PRIsVALUE,
rb_sym2str(arg));
4527 VALUE ret = rb_gc_impl_stat(rb_gc_get_objspace(), arg);
4532 rb_raise(rb_eArgError,
"unknown key: %"PRIsVALUE,
rb_sym2str(arg));
4547 arg = rb_hash_new();
4550 if (
NIL_P(heap_name)) {
4561 rb_raise(
rb_eTypeError,
"heap_name must be nil or an Integer");
4564 VALUE ret = rb_gc_impl_stat_heap(rb_gc_get_objspace(), heap_name, arg);
4569 rb_raise(rb_eArgError,
"unknown key: %"PRIsVALUE,
rb_sym2str(arg));
4578 VALUE cfg_hash = rb_gc_impl_config_get(rb_gc_get_objspace());
4579 rb_hash_aset(cfg_hash, sym(
"implementation"), rb_fstring_cstr(rb_gc_impl_active_gc_name()));
4587 void *
objspace = rb_gc_get_objspace();
4589 rb_gc_impl_config_set(
objspace, hash);
4597 return rb_gc_impl_stress_get(rb_gc_get_objspace());
4603 rb_gc_impl_stress_set(rb_gc_get_objspace(), flag);
4609rb_gc_initial_stress_set(
VALUE flag)
4611 initial_stress = flag;
4615rb_gc_heap_sizes(
void)
4617 return rb_gc_impl_heap_sizes(rb_gc_get_objspace());
4623 return rb_objspace_gc_enable(rb_gc_get_objspace());
4627rb_objspace_gc_enable(
void *
objspace)
4629 bool disabled = !rb_gc_impl_gc_enabled_p(
objspace);
4631 return RBOOL(disabled);
4637 return rb_gc_enable();
4643 bool disabled = !rb_gc_impl_gc_enabled_p(
objspace);
4644 rb_gc_impl_gc_disable(
objspace,
false);
4645 return RBOOL(disabled);
4649rb_gc_disable_no_rest(
void)
4651 return gc_disable_no_rest(rb_gc_get_objspace());
4657 return rb_objspace_gc_disable(rb_gc_get_objspace());
4661rb_objspace_gc_disable(
void *
objspace)
4663 bool disabled = !rb_gc_impl_gc_enabled_p(
objspace);
4664 rb_gc_impl_gc_disable(
objspace,
true);
4665 return RBOOL(disabled);
4671 return rb_gc_disable();
4676ruby_gc_set_params(
void)
4678 rb_gc_impl_set_params(rb_gc_get_objspace());
4682rb_objspace_reachable_objects_from(
VALUE obj,
void (func)(
VALUE,
void *),
void *data)
4685 if (rb_gc_impl_during_gc_p(rb_gc_get_objspace())) rb_bug(
"rb_objspace_reachable_objects_from() is not supported while during GC");
4689 struct gc_mark_func_data_struct *prev_mfd = vm->gc.mark_func_data;
4690 struct gc_mark_func_data_struct mfd = {
4695 vm->gc.mark_func_data = &mfd;
4696 rb_gc_mark_children(rb_gc_get_objspace(), obj);
4697 vm->gc.mark_func_data = prev_mfd;
4703 const char *category;
4704 void (*func)(
const char *category,
VALUE,
void *);
4709root_objects_from(
VALUE obj,
void *ptr)
4712 (*data->func)(data->category, obj, data->data);
4716rb_objspace_reachable_objects_from_root(
void (func)(
const char *category,
VALUE,
void *),
void *passing_data)
4718 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");
4724 .data = passing_data,
4727 struct gc_mark_func_data_struct *prev_mfd = vm->gc.mark_func_data;
4728 struct gc_mark_func_data_struct mfd = {
4729 .mark_func = root_objects_from,
4733 vm->gc.mark_func_data = &mfd;
4734 rb_gc_save_machine_context();
4735 rb_gc_mark_roots(vm->gc.objspace, &data.category);
4736 vm->gc.mark_func_data = prev_mfd;
4747#define TYPE_NAME(t) case (t): return #t;
4774 if (obj && rb_objspace_data_type_name(obj)) {
4775 return rb_objspace_data_type_name(obj);
4784obj_type_name(
VALUE obj)
4786 return type_name(
TYPE(obj), obj);
4790rb_method_type_name(rb_method_type_t
type)
4793 case VM_METHOD_TYPE_ISEQ:
return "iseq";
4794 case VM_METHOD_TYPE_ATTRSET:
return "attrest";
4795 case VM_METHOD_TYPE_IVAR:
return "ivar";
4796 case VM_METHOD_TYPE_BMETHOD:
return "bmethod";
4797 case VM_METHOD_TYPE_ALIAS:
return "alias";
4798 case VM_METHOD_TYPE_REFINED:
return "refined";
4799 case VM_METHOD_TYPE_CFUNC:
return "cfunc";
4800 case VM_METHOD_TYPE_ZSUPER:
return "zsuper";
4801 case VM_METHOD_TYPE_MISSING:
return "missing";
4802 case VM_METHOD_TYPE_OPTIMIZED:
return "optimized";
4803 case VM_METHOD_TYPE_UNDEF:
return "undef";
4804 case VM_METHOD_TYPE_NOTIMPLEMENTED:
return "notimplemented";
4806 rb_bug(
"rb_method_type_name: unreachable (type: %d)",
type);
4810rb_raw_iseq_info(
char *
const buff,
const size_t buff_size,
const rb_iseq_t *iseq)
4812 if (buff_size > 0 && ISEQ_BODY(iseq) && ISEQ_BODY(iseq)->location.label && !
RB_TYPE_P(ISEQ_BODY(iseq)->location.pathobj,
T_MOVED)) {
4813 VALUE path = rb_iseq_path(iseq);
4814 int n = ISEQ_BODY(iseq)->location.first_lineno;
4815 snprintf(buff, buff_size,
" %s@%s:%d",
4816 RSTRING_PTR(ISEQ_BODY(iseq)->location.label),
4817 RSTRING_PTR(path), n);
4822str_len_no_raise(
VALUE str)
4824 long len = RSTRING_LEN(str);
4825 if (
len < 0)
return 0;
4826 if (
len > INT_MAX)
return INT_MAX;
4830#define BUFF_ARGS buff + pos, buff_size - pos
4831#define APPEND_F(...) if ((pos += snprintf(BUFF_ARGS, "" __VA_ARGS__)) >= buff_size) goto end
4832#define APPEND_S(s) do { \
4833 if ((pos + (int)rb_strlen_lit(s)) >= buff_size) { \
4837 memcpy(buff + pos, (s), rb_strlen_lit(s) + 1); \
4840#define C(c, s) ((c) != 0 ? (s) : " ")
4843rb_raw_obj_info_common(
char *
const buff,
const size_t buff_size,
const VALUE obj)
4848 APPEND_F(
"%s", obj_type_name(obj));
4854 APPEND_F(
" %s", rb_id2name(
SYM2ID(obj)));
4860 if (rb_gc_impl_pointer_to_heap_p(rb_gc_get_objspace(), (
void *)obj)) {
4861 APPEND_F(
"%p %s/", (
void *)obj, obj_type_name(obj));
4880 if (internal_object_p(obj)) {
4883 else if (
RBASIC(obj)->klass == 0) {
4884 APPEND_S(
"(temporary internal)");
4888 if (!
NIL_P(class_path)) {
4889 APPEND_F(
"%s ", RSTRING_PTR(class_path));
4898const char *rb_raw_obj_info(
char *
const buff,
const size_t buff_size,
VALUE obj);
4901rb_raw_obj_info_buitin_type(
char *
const buff,
const size_t buff_size,
const VALUE obj,
size_t pos)
4908 UNEXPECTED_NODE(rb_raw_obj_info);
4911 if (ARY_SHARED_P(obj)) {
4912 APPEND_S(
"shared -> ");
4913 rb_raw_obj_info(BUFF_ARGS, ARY_SHARED_ROOT(obj));
4916 APPEND_F(
"[%s%s%s] ",
4917 C(ARY_EMBED_P(obj),
"E"),
4918 C(ARY_SHARED_P(obj),
"S"),
4919 C(ARY_SHARED_ROOT_P(obj),
"R"));
4921 if (ARY_EMBED_P(obj)) {
4922 APPEND_F(
"len: %ld (embed)",
4926 APPEND_F(
"len: %ld, capa:%ld ptr:%p",
4928 RARRAY(obj)->as.heap.aux.capa,
4935 C(
FL_TEST(obj, RSTRING_FSTR),
"F"),
4938 if (STR_SHARED_P(obj)) {
4939 APPEND_F(
" [shared] len: %ld", RSTRING_LEN(obj));
4942 if (STR_EMBED_P(obj)) APPEND_S(
" [embed]");
4944 APPEND_F(
" len: %ld, capa: %" PRIdSIZE, RSTRING_LEN(obj),
rb_str_capacity(obj));
4946 APPEND_F(
" \"%.*s\"", str_len_no_raise(obj), RSTRING_PTR(obj));
4950 VALUE fstr = RSYMBOL(obj)->fstr;
4951 ID id = RSYMBOL(obj)->id;
4953 APPEND_F(
":%s id:%d", RSTRING_PTR(fstr), (
unsigned int)
id);
4956 APPEND_F(
"(%p) id:%d", (
void *)fstr, (
unsigned int)
id);
4961 APPEND_F(
"-> %p", (
void*)gc_location_internal(rb_gc_get_objspace(), obj));
4965 APPEND_F(
"[%c] %"PRIdSIZE,
4966 RHASH_AR_TABLE_P(obj) ?
'A' :
'S',
4974 if (!
NIL_P(class_path)) {
4975 APPEND_F(
"%s", RSTRING_PTR(class_path));
4985 if (!
NIL_P(class_path)) {
4986 APPEND_F(
"src:%s", RSTRING_PTR(class_path));
4993 if (rb_shape_obj_too_complex_p(obj)) {
4994 size_t hash_len = rb_st_table_size(ROBJECT_FIELDS_HASH(obj));
4995 APPEND_F(
"(too_complex) len:%zu", hash_len);
4998 APPEND_F(
"(embed) len:%d capa:%d", RSHAPE_LEN(RBASIC_SHAPE_ID(obj)), ROBJECT_FIELDS_CAPACITY(obj));
5002 APPEND_F(
"len:%d capa:%d ptr:%p", RSHAPE_LEN(RBASIC_SHAPE_ID(obj)), ROBJECT_FIELDS_CAPACITY(obj), (
void *)
ROBJECT_FIELDS(obj));
5010 (block = vm_proc_block(obj)) != NULL &&
5011 (vm_block_type(block) == block_type_iseq) &&
5012 (iseq = vm_block_iseq(block)) != NULL) {
5013 rb_raw_iseq_info(BUFF_ARGS, iseq);
5015 else if (rb_ractor_p(obj)) {
5018 APPEND_F(
"r:%d", r->pub.id);
5024 APPEND_F(
"<%s> ", rb_imemo_name(imemo_type(obj)));
5026 switch (imemo_type(obj)) {
5031 APPEND_F(
":%s (%s%s%s%s) type:%s aliased:%d owner:%p defined_class:%p",
5032 rb_id2name(me->called_id),
5033 METHOD_ENTRY_VISI(me) == METHOD_VISI_PUBLIC ?
"pub" :
5034 METHOD_ENTRY_VISI(me) == METHOD_VISI_PRIVATE ?
"pri" :
"pro",
5035 METHOD_ENTRY_COMPLEMENTED(me) ?
",cmp" :
"",
5036 METHOD_ENTRY_CACHED(me) ?
",cc" :
"",
5037 METHOD_ENTRY_INVALIDATED(me) ?
",inv" :
"",
5038 me->def ? rb_method_type_name(me->def->
type) :
"NULL",
5039 me->def ? me->def->aliased : -1,
5041 (void *)me->defined_class);
5044 switch (me->def->type) {
5045 case VM_METHOD_TYPE_ISEQ:
5046 APPEND_S(
" (iseq:");
5047 rb_raw_obj_info(BUFF_ARGS, (
VALUE)me->def->body.iseq.
iseqptr);
5059 rb_raw_iseq_info(BUFF_ARGS, iseq);
5062 case imemo_callinfo:
5065 APPEND_F(
"(mid:%s, flag:%x argc:%d, kwarg:%s)",
5066 rb_id2name(vm_ci_mid(ci)),
5069 vm_ci_kwarg(ci) ?
"available" :
"NULL");
5072 case imemo_callcache:
5078 APPEND_F(
"(klass:%s cme:%s%s (%p) call:%p",
5079 NIL_P(class_path) ? (vm_cc_valid(cc) ?
"??" :
"<NULL>") : RSTRING_PTR(class_path),
5080 cme ? rb_id2name(cme->called_id) :
"<NULL>",
5081 cme ? (METHOD_ENTRY_INVALIDATED(cme) ?
" [inv]" :
"") :
"",
5083 (void *)(uintptr_t)vm_cc_call(cc));
5101#ifdef RUBY_ASAN_ENABLED
5103rb_asan_poison_object(
VALUE obj)
5105 MAYBE_UNUSED(
struct RVALUE *) ptr = (
void *)obj;
5106 asan_poison_memory_region(ptr, rb_gc_obj_slot_size(obj));
5110rb_asan_unpoison_object(
VALUE obj,
bool newobj_p)
5112 MAYBE_UNUSED(
struct RVALUE *) ptr = (
void *)obj;
5113 asan_unpoison_memory_region(ptr, rb_gc_obj_slot_size(obj), newobj_p);
5117rb_asan_poisoned_object_p(
VALUE obj)
5119 MAYBE_UNUSED(
struct RVALUE *) ptr = (
void *)obj;
5120 return __asan_region_is_poisoned(ptr, rb_gc_obj_slot_size(obj));
5125raw_obj_info(
char *
const buff,
const size_t buff_size,
VALUE obj)
5127 size_t pos = rb_raw_obj_info_common(buff, buff_size, obj);
5128 pos = rb_raw_obj_info_buitin_type(buff, buff_size, obj, pos);
5129 if (pos >= buff_size) {}
5133rb_raw_obj_info(
char *
const buff,
const size_t buff_size,
VALUE obj)
5135 void *
objspace = rb_gc_get_objspace();
5138 raw_obj_info(buff, buff_size, obj);
5140 else if (!rb_gc_impl_pointer_to_heap_p(
objspace, (
const void *)obj)) {
5141 snprintf(buff, buff_size,
"out-of-heap:%p", (
void *)obj);
5144 else if (0 && rb_gc_impl_garbage_object_p(
objspace, obj)) {
5145 snprintf(buff, buff_size,
"garbage:%p", (
void *)obj);
5149 asan_unpoisoning_object(obj) {
5150 raw_obj_info(buff, buff_size, obj);
5166 if (RB_UNLIKELY(oldval >= maxval - 1)) {
5177 if (RGENGC_OBJ_INFO) {
5180 char buffers[10][0x100];
5183 rb_atomic_t index = atomic_inc_wraparound(&info.index, numberof(info.buffers));
5184 char *
const buff = info.buffers[index];
5185 return rb_raw_obj_info(buff,
sizeof(info.buffers[0]), obj);
5187 return obj_type_name(obj);
5204 rb_vraise(argv->exc, argv->fmt, *argv->ap);
5209gc_raise(
VALUE exc,
const char *fmt, ...)
5223 fprintf(stderr,
"%s",
"[FATAL] ");
5224 vfprintf(stderr, fmt, ap);
5231NORETURN(
static void negative_size_allocation_error(
const char *));
5233negative_size_allocation_error(
const char *msg)
5239ruby_memerror_body(
void *dummy)
5245NORETURN(
static void ruby_memerror(
void));
5250 if (ruby_thread_has_gvl_p()) {
5259 fprintf(stderr,
"[FATAL] failed to allocate memory\n");
5277 VALUE exc = GET_VM()->special_exceptions[ruby_error_nomemory];
5280 rb_ec_raised_p(ec, RAISED_NOMEMORY) ||
5281 rb_ec_vm_lock_rec(ec) != ec->tag->lock_rec) {
5282 fprintf(stderr,
"[FATAL] failed to allocate memory\n");
5285 if (rb_ec_raised_p(ec, RAISED_NOMEMORY)) {
5286 rb_ec_raised_clear(ec);
5289 rb_ec_raised_set(ec, RAISED_NOMEMORY);
5290 exc = ruby_vm_special_exception_copy(exc);
5293 EC_JUMP_TAG(ec, TAG_RAISE);
5297rb_memerror_reentered(
void)
5300 return (ec && rb_ec_raised_p(ec, RAISED_NOMEMORY));
5304handle_malloc_failure(
void *ptr)
5315static void *ruby_xmalloc_body(
size_t size);
5318ruby_xmalloc(
size_t size)
5320 return handle_malloc_failure(ruby_xmalloc_body(size));
5324malloc_gc_allowed(
void)
5328 return r == NULL || !r->malloc_gc_disabled;
5332ruby_xmalloc_body(
size_t size)
5334 if ((ssize_t)size < 0) {
5335 negative_size_allocation_error(
"too large allocation size");
5338 return rb_gc_impl_malloc(rb_gc_get_objspace(), size, malloc_gc_allowed());
5342ruby_malloc_size_overflow(
size_t count,
size_t elsize)
5344 rb_raise(rb_eArgError,
5345 "malloc: possible integer overflow (%"PRIuSIZE
"*%"PRIuSIZE
")",
5350ruby_malloc_add_size_overflow(
size_t x,
size_t y)
5352 rb_raise(rb_eArgError,
5353 "malloc: possible integer overflow (%"PRIuSIZE
"+%"PRIuSIZE
")",
5357static void *ruby_xmalloc2_body(
size_t n,
size_t size);
5360ruby_xmalloc2(
size_t n,
size_t size)
5362 return handle_malloc_failure(ruby_xmalloc2_body(n, size));
5366ruby_xmalloc2_body(
size_t n,
size_t size)
5368 return rb_gc_impl_malloc(rb_gc_get_objspace(), xmalloc2_size(n, size), malloc_gc_allowed());
5371static void *ruby_xcalloc_body(
size_t n,
size_t size);
5374ruby_xcalloc(
size_t n,
size_t size)
5376 return handle_malloc_failure(ruby_xcalloc_body(n, size));
5380ruby_xcalloc_body(
size_t n,
size_t size)
5382 return rb_gc_impl_calloc(rb_gc_get_objspace(), xmalloc2_size(n, size), malloc_gc_allowed());
5385static void *ruby_sized_xrealloc_body(
void *ptr,
size_t new_size,
size_t old_size);
5387#ifdef ruby_sized_xrealloc
5388#undef ruby_sized_xrealloc
5391ruby_sized_xrealloc(
void *ptr,
size_t new_size,
size_t old_size)
5393 return handle_malloc_failure(ruby_sized_xrealloc_body(ptr, new_size, old_size));
5397ruby_sized_xrealloc_body(
void *ptr,
size_t new_size,
size_t old_size)
5399 if ((ssize_t)new_size < 0) {
5400 negative_size_allocation_error(
"too large allocation size");
5403 return rb_gc_impl_realloc(rb_gc_get_objspace(), ptr, new_size, old_size, malloc_gc_allowed());
5407ruby_xrealloc(
void *ptr,
size_t new_size)
5409 return ruby_sized_xrealloc(ptr, new_size, 0);
5412static void *ruby_sized_xrealloc2_body(
void *ptr,
size_t n,
size_t size,
size_t old_n);
5414#ifdef ruby_sized_xrealloc2
5415#undef ruby_sized_xrealloc2
5418ruby_sized_xrealloc2(
void *ptr,
size_t n,
size_t size,
size_t old_n)
5420 return handle_malloc_failure(ruby_sized_xrealloc2_body(ptr, n, size, old_n));
5424ruby_sized_xrealloc2_body(
void *ptr,
size_t n,
size_t size,
size_t old_n)
5426 size_t len = xmalloc2_size(n, size);
5427 return rb_gc_impl_realloc(rb_gc_get_objspace(), ptr,
len, old_n * size, malloc_gc_allowed());
5431ruby_xrealloc2(
void *ptr,
size_t n,
size_t size)
5433 return ruby_sized_xrealloc2(ptr, n, size, 0);
5436#ifdef ruby_sized_xfree
5437#undef ruby_sized_xfree
5440ruby_sized_xfree(
void *x,
size_t size)
5446 if (LIKELY(GET_VM())) {
5447 rb_gc_impl_free(rb_gc_get_objspace(), x, size);
5458 ruby_sized_xfree(x, 0);
5462rb_xmalloc_mul_add(
size_t x,
size_t y,
size_t z)
5464 size_t w = size_mul_add_or_raise(x, y, z, rb_eArgError);
5465 return ruby_xmalloc(w);
5469rb_xcalloc_mul_add(
size_t x,
size_t y,
size_t z)
5471 size_t w = size_mul_add_or_raise(x, y, z, rb_eArgError);
5472 return ruby_xcalloc(w, 1);
5476rb_xrealloc_mul_add(
const void *p,
size_t x,
size_t y,
size_t z)
5478 size_t w = size_mul_add_or_raise(x, y, z, rb_eArgError);
5479 return ruby_xrealloc((
void *)p, w);
5483rb_xmalloc_mul_add_mul(
size_t x,
size_t y,
size_t z,
size_t w)
5485 size_t u = size_mul_add_mul_or_raise(x, y, z, w, rb_eArgError);
5486 return ruby_xmalloc(u);
5490rb_xcalloc_mul_add_mul(
size_t x,
size_t y,
size_t z,
size_t w)
5492 size_t u = size_mul_add_mul_or_raise(x, y, z, w, rb_eArgError);
5493 return ruby_xcalloc(u, 1);
5500ruby_mimmalloc(
size_t size)
5503#if CALC_EXACT_MALLOC_SIZE
5507#if CALC_EXACT_MALLOC_SIZE
5523ruby_mimcalloc(
size_t num,
size_t size)
5526#if CALC_EXACT_MALLOC_SIZE
5527 struct rbimpl_size_overflow_tag t = rbimpl_size_mul_overflow(num, size);
5528 if (UNLIKELY(t.overflowed)) {
5532 mem = calloc1(size);
5544 mem = calloc(num, size);
5550ruby_mimfree(
void *ptr)
5552#if CALC_EXACT_MALLOC_SIZE
5560rb_gc_adjust_memory_usage(ssize_t diff)
5562 unless_objspace(
objspace) {
return; }
5564 rb_gc_impl_adjust_memory_usage(
objspace, diff);
5568rb_obj_info(
VALUE obj)
5570 return obj_info(obj);
5574rb_obj_info_dump(
VALUE obj)
5577 fprintf(stderr,
"rb_obj_info_dump: %s\n", rb_raw_obj_info(buff, 0x100, obj));
5581rb_obj_info_dump_loc(
VALUE obj,
const char *file,
int line,
const char *func)
5584 fprintf(stderr,
"<OBJ_INFO:%s@%s:%d> %s\n", func, file, line, rb_raw_obj_info(buff, 0x100, obj));
5588rb_gc_before_fork(
void)
5590 rb_gc_impl_before_fork(rb_gc_get_objspace());
5594rb_gc_after_fork(rb_pid_t pid)
5596 rb_gc_impl_after_fork(rb_gc_get_objspace(), pid);
5600rb_gc_obj_shareable_p(
VALUE obj)
5617check_shareable_i(
const VALUE child,
void *ptr)
5621 if (!rb_gc_obj_shareable_p(child)) {
5622 fprintf(stderr,
"(a) ");
5623 rb_gc_rp(data->parent);
5624 fprintf(stderr,
"(b) ");
5626 fprintf(stderr,
"check_shareable_i: shareable (a) -> unshareable (b)\n");
5629 rb_bug(
"!! violate shareable constraint !!");
5633static bool gc_checking_shareable =
false;
5642 unsigned int lev = RB_GC_VM_LOCK();
5644 gc_checking_shareable =
true;
5645 rb_objspace_reachable_objects_from(obj, check_shareable_i, (
void *)data);
5646 gc_checking_shareable =
false;
5648 RB_GC_VM_UNLOCK(lev);
5653rb_gc_verify_shareable(
VALUE obj)
5660 gc_verify_shareable(
objspace, obj, &data);
5662 if (data.err_count > 0) {
5663 rb_bug(
"rb_gc_verify_shareable");
5668rb_gc_checking_shareable(
void)
5670 return gc_checking_shareable;
5724 rb_gc_register_address(&id2ref_value);
5726 malloc_offset = gc_compute_malloc_offset();
5739 rb_vm_register_special_exception(ruby_error_nomemory,
rb_eNoMemError,
"failed to allocate memory");
5762ruby_annotate_mmap(
const void *addr,
unsigned long size,
const char *name)
5764#if defined(HAVE_SYS_PRCTL_H) && defined(PR_SET_VMA) && defined(PR_SET_VMA_ANON_NAME)
5767 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_obj_is_kind_of(VALUE obj, VALUE klass)
Queries if the given object is an instance (of possibly descendants) of the given class.
size_t rb_obj_embedded_size(uint32_t fields_count)
Internal header for Object.
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.
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::@56 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
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.