24#include "eval_intern.h"
26#include "internal/bits.h"
27#include "internal/class.h"
28#include "internal/gc.h"
29#include "internal/hash.h"
30#include "internal/symbol.h"
31#include "internal/thread.h"
37#include "ractor_core.h"
43static VALUE sym_default;
48 rb_event_hook_flag_t hook_flags;
56 unsigned int target_line;
62#define MAX_EVENT_NUM 32
70 rb_gc_mark(hook->data);
78 if (!rb_gc_checking_shareable()) {
84 rb_gc_mark_and_move(&hook->data);
96 hook->hook_flags |= RUBY_EVENT_HOOK_FLAG_DELETED;
98 hooks->need_clean =
true;
100 if (hooks->running == 0) {
107void rb_clear_attr_ccs(
void);
108void rb_clear_bf_ccs(
void);
113 rb_event_flag_t enabled_iseq_events = ruby_vm_event_enabled_global_flags & ISEQ_TRACE_EVENTS;
114 return new_iseq_events & ~enabled_iseq_events;
122 return enable_c_call || enable_c_return;
139 const bool vm_locked_here = ec && !ruby_vm_during_cleanup && GET_RACTOR() != NULL;
140 if (vm_locked_here) {
141 RB_VM_LOCK_ENTER_LEV(&lev);
146 rb_event_flag_t enabled_iseq_events = ruby_vm_event_enabled_global_flags & ISEQ_TRACE_EVENTS;
147 bool new_iseq_events_p = iseq_trace_set_all_needed(new_events);
150 bool clear_attr_ccs_p = clear_attr_ccs_needed(prev_events, new_events);
157 rb_event_flag_t new_events_global = (prev_events_global & ~prev_events) | new_events;
158 ruby_vm_event_flags = new_events_global;
161 if (new_iseq_events_p) {
163 rb_iseq_trace_set_all(new_iseq_events | enabled_iseq_events);
165 else if (clear_attr_ccs_p) {
168 else if (enable_call || enable_return) {
172 if (change_iseq_events < 0) {
173 RUBY_ASSERT(ruby_vm_iseq_events_enabled >= (
unsigned int)(-change_iseq_events));
175 ruby_vm_iseq_events_enabled += change_iseq_events;
176 if (change_c_events < 0) {
177 RUBY_ASSERT(ruby_vm_c_events_enabled >= (
unsigned int)(-change_c_events));
179 ruby_vm_c_events_enabled += change_c_events;
181 ruby_vm_event_enabled_global_flags |= new_events;
183 rb_objspace_set_event_hook(new_events_global);
190 rb_zjit_invalidate_newobj_hook();
194 if (new_iseq_events_p || clear_attr_ccs_p) {
199 rb_yjit_tracing_invalidate_all();
200 rb_zjit_tracing_invalidate_all();
203 if (vm_locked_here) {
204 RB_VM_LOCK_LEAVE_LEV(&lev);
216 rb_raise(
rb_eTypeError,
"Can not specify normal event and internal event simultaneously.");
220 hook->hook_flags = hook_flags;
221 hook->events = events;
226 hook->filter.th = NULL;
227 hook->filter.target_line = 0;
237 int change_iseq_events = 0;
238 int change_c_events = 0;
239 hook->next = list->hooks;
241 list->events |= hook->events;
244 if (hook->events & ISEQ_TRACE_EVENTS) {
245 change_iseq_events++;
250 update_global_event_hooks(list, prev_events, list->events, change_iseq_events, change_c_events);
263 list = rb_vm_global_hooks(ec);
266 list = rb_ec_ractor_hooks(ec);
268 hook_list_connect(list, hook, TRUE);
275 rb_event_hook_t *hook = alloc_event_hook(func, events, data, hook_flags);
276 hook->filter.th = th;
277 connect_non_targeted_event_hook(ec, hook);
283 rb_threadptr_add_event_hook(GET_EC(), rb_thread_ptr(thval), func, events, data, RUBY_EVENT_HOOK_FLAG_SAFE);
289 rb_add_event_hook2(func, events, data, RUBY_EVENT_HOOK_FLAG_SAFE);
295 rb_threadptr_add_event_hook(GET_EC(), rb_thread_ptr(thval), func, events, data, hook_flags);
301 rb_event_hook_t *hook = alloc_event_hook(func, events, data, hook_flags);
302 connect_non_targeted_event_hook(GET_EC(), hook);
308 switch (list->type) {
309 case hook_list_type_targeted_iseq:
310 case hook_list_type_targeted_def:
321 unsigned int count = 0;
324 if (!(hook->hook_flags & RUBY_EVENT_HOOK_FLAG_DELETED)) {
338 int change_iseq_events = 0;
339 int change_c_events = 0;
341 VM_ASSERT(list->running == 0);
342 VM_ASSERT(list->need_clean ==
true);
345 list->need_clean =
false;
347 while ((hook = *nextp) != 0) {
348 if (hook->hook_flags & RUBY_EVENT_HOOK_FLAG_DELETED) {
350 if (!hook_list_targeted_p(list)) {
351 if (hook->events & ISEQ_TRACE_EVENTS) {
352 change_iseq_events--;
361 list->events |= hook->events;
366 if (hook_list_targeted_p(list)) {
367 if (list->events == 0) {
372 update_global_event_hooks(list, prev_events, list->events, change_iseq_events, change_c_events);
379 if (UNLIKELY(list->need_clean)) {
380 if (list->running == 0) {
386#define MATCH_ANY_FILTER_TH ((rb_thread_t *)1)
395 if (func == 0 || hook->func == func) {
396 if (hook->filter.th == filter_th || filter_th == MATCH_ANY_FILTER_TH) {
397 if (UNDEF_P(data) || hook->data == data) {
398 hook->hook_flags |= RUBY_EVENT_HOOK_FLAG_DELETED;
399 list->need_clean =
true;
407 clean_hooks_check(list);
417 ret += remove_event_hook_from_list(rb_ec_ractor_hooks(ec), filter_th, func, data);
418 ret += remove_event_hook_from_list(rb_vm_global_hooks(ec), filter_th, func, data);
426 return remove_event_hook(ec, filter_th, func, data);
432 return rb_threadptr_remove_event_hook(GET_EC(), rb_thread_ptr(thval), func,
Qundef);
438 return rb_threadptr_remove_event_hook(GET_EC(), rb_thread_ptr(thval), func, data);
444 return remove_event_hook(GET_EC(), NULL, func,
Qundef);
450 return remove_event_hook(GET_EC(), NULL, func, data);
456 rb_threadptr_remove_event_hook(ec, rb_ec_thread_ptr(ec), 0,
Qundef);
462 rb_threadptr_remove_event_hook(ec, MATCH_ANY_FILTER_TH, 0,
Qundef);
472 for (hook = list->hooks; hook; hook = hook->next) {
473 if (!(hook->hook_flags & RUBY_EVENT_HOOK_FLAG_DELETED) &&
474 (trace_arg->event & hook->events) &&
475 (LIKELY(hook->filter.th == 0) || hook->filter.th == rb_ec_thread_ptr(ec)) &&
476 (LIKELY(hook->filter.target_line == 0) || (hook->filter.target_line == (
unsigned int)rb_vm_get_sourceline(ec->cfp)))) {
477 if (!(hook->hook_flags & RUBY_EVENT_HOOK_FLAG_RAW_ARG)) {
478 (*hook->func)(trace_arg->event, hook->data, trace_arg->self, trace_arg->id, trace_arg->klass);
481 (*((rb_event_hook_raw_arg_func_t)hook->func))(hook->data, trace_arg);
490 if (list->events & trace_arg->event) {
503 clean_hooks_check(list);
509 if (exec_hooks_precheck(ec, list, trace_arg) == 0)
return;
510 exec_hooks_body(ec, list, trace_arg);
511 exec_hooks_postcheck(ec, list);
517 enum ruby_tag_type state;
522 if (exec_hooks_precheck(ec, list, trace_arg) == 0)
return 0;
524 raised = rb_ec_reset_raised(ec);
529 if ((state = EC_EXEC_TAG()) == TAG_NONE) {
530 exec_hooks_body(ec, list, trace_arg);
534 exec_hooks_postcheck(ec, list);
537 rb_ec_set_raised(ec);
550 VM_ASSERT(hooks == rb_vm_global_hooks(ec));
558 ec->trace_arg = trace_arg;
560 exec_hooks_unprotected(ec, hooks, trace_arg);
561 ec->trace_arg = prev_trace_arg;
565 if (ec->trace_arg == NULL &&
566 trace_arg->self != rb_mRubyVMFrozenCore ) {
567 const VALUE errinfo = ec->errinfo;
568 const VALUE old_recursive = ec->local_storage_recursive_hash;
569 enum ruby_tag_type state = 0;
572 ec->local_storage_recursive_hash = ec->local_storage_recursive_hash_for_trace;
574 ec->trace_arg = trace_arg;
577 if ((state = exec_hooks_protected(ec, hooks, trace_arg)) == TAG_NONE) {
578 ec->errinfo = errinfo;
582 ec->trace_arg = NULL;
583 ec->local_storage_recursive_hash_for_trace = ec->local_storage_recursive_hash;
584 ec->local_storage_recursive_hash = old_recursive;
588 if (VM_FRAME_FINISHED_P(ec->cfp)) {
589 rb_vm_tag_jmpbuf_deinit(&ec->tag->buf);
590 ec->tag = ec->tag->prev;
594 EC_JUMP_TAG(ec, state);
606 rb_vm_t *
const vm = rb_ec_vm_ptr(ec);
607 enum ruby_tag_type state;
609 dummy_trace_arg.event = 0;
611 if (!ec->trace_arg) {
612 ec->trace_arg = &dummy_trace_arg;
615 raised = rb_ec_reset_raised(ec);
618 if (LIKELY((state = EC_EXEC_TAG()) == TAG_NONE)) {
619 result = (*func)(arg);
627 rb_ec_reset_raised(ec);
630 if (ec->trace_arg == &dummy_trace_arg) {
631 ec->trace_arg = NULL;
635#if defined RUBY_USE_SETJMPEX && RUBY_USE_SETJMPEX
638 EC_JUMP_TAG(ec, state);
734 rb_threadptr_add_event_hook(ec, filter_th, call_trace_func,
RUBY_EVENT_ALL, trace, RUBY_EVENT_HOOK_FLAG_SAFE);
747thread_add_trace_func_m(
VALUE obj,
VALUE trace)
749 thread_add_trace_func(GET_EC(), rb_thread_ptr(obj), trace);
765thread_set_trace_func_m(
VALUE target_thread,
VALUE trace)
768 rb_thread_t *target_th = rb_thread_ptr(target_thread);
770 rb_threadptr_remove_event_hook(ec, target_th, call_trace_func,
Qundef);
776 thread_add_trace_func(ec, target_th, trace);
804#define C(name, NAME) case RUBY_EVENT_##NAME: CONST_ID(id, #name); return id;
811 C(c_return, C_RETURN);
814 C(b_return, B_RETURN);
815 C(thread_begin, THREAD_BEGIN);
816 C(thread_end, THREAD_END);
817 C(fiber_switch, FIBER_SWITCH);
818 C(script_compiled, SCRIPT_COMPILED);
829 cfp = rb_vm_get_ruby_level_next_cfp(ec, cfp);
833 *pathp = rb_iseq_path(iseq);
838 *linep =
FIX2INT(rb_iseq_first_lineno(iseq));
841 *linep = rb_vm_get_sourceline(cfp);
859 get_path_and_lineno(ec, ec->cfp, event, &filename, &line);
862 rb_ec_frame_method_id_and_class(ec, &
id, 0, &klass);
867 klass =
RBASIC(klass)->klass;
869 else if (RCLASS_SINGLETON_P(klass)) {
870 klass = RCLASS_ATTACHED_OBJECT(klass);
879 if (self && (filename !=
Qnil) &&
882 (VM_FRAME_RUBYFRAME_P(ec->cfp) && imemo_type_p((
VALUE)CFP_ISEQ(ec->cfp), imemo_iseq))) {
885 argv[5] = klass ? klass :
Qnil;
892static VALUE rb_cTracePoint;
898 VALUE local_target_set;
902 void (*func)(
VALUE tpval,
void *data);
910tp_mark_and_move(
void *ptr)
913 rb_gc_mark_and_move(&tp->proc);
914 rb_gc_mark_and_move(&tp->local_target_set);
915 if (tp->target_th) rb_gc_mark_and_move(&tp->target_th->self);
926 0, 0, RUBY_TYPED_THREAD_SAFE_FREE | RUBY_TYPED_WB_PROTECTED | RUBY_TYPED_EMBEDDABLE
937symbol2event_flag(
VALUE v)
940 VALUE sym = rb_to_symbol_type(v);
946#define C(name, NAME) CONST_ID(id, #name); if (sym == ID2SYM(id)) return RUBY_EVENT_##NAME
953 C(c_return, C_RETURN);
956 C(b_return, B_RETURN);
957 C(thread_begin, THREAD_BEGIN);
958 C(thread_end, THREAD_END);
959 C(fiber_switch, FIBER_SWITCH);
960 C(script_compiled, SCRIPT_COMPILED);
965 C(a_return, A_RETURN);
967 rb_raise(rb_eArgError,
"unknown event: %"PRIsVALUE,
rb_sym2str(sym));
982 if (trace_arg == 0) {
991 return get_trace_arg();
997 return trace_arg->event;
1003 return ID2SYM(get_event_id(trace_arg->event));
1009 if (UNDEF_P(trace_arg->path)) {
1010 get_path_and_lineno(trace_arg->ec, trace_arg->cfp, trace_arg->event, &trace_arg->path, &trace_arg->lineno);
1017 fill_path_and_lineno(trace_arg);
1018 return INT2FIX(trace_arg->lineno);
1023 fill_path_and_lineno(trace_arg);
1024 return trace_arg->path;
1030 if (!trace_arg->klass_solved) {
1031 if (!trace_arg->klass) {
1032 rb_vm_control_frame_id_and_class(trace_arg->cfp, &trace_arg->id, &trace_arg->called_id, &trace_arg->klass);
1035 if (trace_arg->klass) {
1037 trace_arg->klass =
RBASIC(trace_arg->klass)->klass;
1041 trace_arg->klass =
Qnil;
1044 trace_arg->klass_solved = 1;
1051 switch (trace_arg->event) {
1056 const rb_control_frame_t *cfp = rb_vm_get_ruby_level_next_cfp(trace_arg->ec, trace_arg->cfp);
1059 if (VM_FRAME_TYPE(cfp) == VM_FRAME_MAGIC_BLOCK && !VM_FRAME_LAMBDA_P(cfp)) {
1062 return rb_iseq_parameters(CFP_ISEQ(cfp), is_proc);
1068 fill_id_and_klass(trace_arg);
1069 if (trace_arg->klass && trace_arg->id) {
1072 me = rb_method_entry_without_refinements(trace_arg->klass, trace_arg->called_id, &iclass);
1074 me = rb_method_entry_without_refinements(trace_arg->klass, trace_arg->id, &iclass);
1076 return rb_unnamed_parameters(rb_method_entry_arity(me));
1095 fill_id_and_klass(trace_arg);
1096 return trace_arg->id ?
ID2SYM(trace_arg->id) :
Qnil;
1102 fill_id_and_klass(trace_arg);
1103 return trace_arg->called_id ?
ID2SYM(trace_arg->called_id) :
Qnil;
1109 fill_id_and_klass(trace_arg);
1110 return trace_arg->klass;
1117 switch (trace_arg->event) {
1122 cfp = rb_vm_get_binding_creatable_next_cfp(trace_arg->ec, trace_arg->cfp);
1124 if (cfp && imemo_type_p((
VALUE)CFP_ISEQ(cfp), imemo_iseq)) {
1125 return rb_vm_make_binding(trace_arg->ec, cfp);
1135 return trace_arg->self;
1141 if (!(trace_arg->event & supported)) {
1150 if (UNDEF_P(trace_arg->data)) {
1151 rb_bug(
"rb_tracearg_return_value: unreachable");
1153 return trace_arg->data;
1160 if (UNDEF_P(trace_arg->data)) {
1161 rb_bug(
"rb_tracearg_raised_exception: unreachable");
1163 return trace_arg->data;
1169 VALUE data = trace_arg->data;
1172 if (UNDEF_P(data)) {
1173 rb_bug(
"rb_tracearg_eval_script: unreachable");
1175 if (rb_obj_is_iseq(data)) {
1188 VALUE data = trace_arg->data;
1191 if (UNDEF_P(data)) {
1192 rb_bug(
"rb_tracearg_instruction_sequence: unreachable");
1195 if (rb_obj_is_iseq(data)) {
1196 return rb_iseqw_new((
const rb_iseq_t *)data);
1211 if (UNDEF_P(trace_arg->data)) {
1212 rb_bug(
"rb_tracearg_object: unreachable");
1214 return trace_arg->data;
1300 (*tp->func)(tpval, tp->data);
1303 if (tp->ractor == GET_RACTOR()) {
1315 if (tp->local_target_set !=
Qfalse) {
1316 rb_raise(rb_eArgError,
"can't nest-enable a targeting TracePoint");
1323 if (tp->target_th) {
1324 rb_thread_add_event_hook2(tp->target_th->self, (
rb_event_hook_func_t)tp_call_trace, tp->events, tpval,
1325 RUBY_EVENT_HOOK_FLAG_SAFE | RUBY_EVENT_HOOK_FLAG_RAW_ARG);
1329 RUBY_EVENT_HOOK_FLAG_SAFE | RUBY_EVENT_HOOK_FLAG_RAW_ARG);
1336iseq_of(
VALUE target)
1340 rb_raise(rb_eArgError,
"specified target is not supported");
1343 return rb_iseqw_to_iseq(iseqv);
1354 if (st_lookup(rb_ractor_targeted_hooks(cr), (st_data_t)def, &val)) {
1356 RUBY_ASSERT(hook_list->type == hook_list_type_targeted_def);
1360 hook_list->type = hook_list_type_targeted_def;
1361 st_insert(&cr->pub.targeted_hooks, (st_data_t)def, (st_data_t)hook_list);
1368rb_tracepoint_enable_for_target(
VALUE tpval,
VALUE target,
VALUE target_line)
1371 const rb_iseq_t *iseq = iseq_of(target);
1373 unsigned int line = 0;
1374 bool target_bmethod =
false;
1377 if (tp->tracing > 0) {
1378 rb_raise(rb_eArgError,
"can't nest-enable a targeting TracePoint");
1381 if (!
NIL_P(target_line)) {
1383 rb_raise(rb_eArgError,
"target_line is specified, but line event is not specified");
1390 VM_ASSERT(tp->local_target_set ==
Qfalse);
1401 rb_hook_list_t *hook_list = rb_method_def_local_hooks(def, cr,
true);
1402 rb_hook_list_connect_local_tracepoint(hook_list, tpval, 0);
1403 rb_hash_aset(tp->local_target_set, target,
Qfalse);
1404 rb_method_definition_addref(def);
1405 def->body.bmethod.local_hooks_cnt++;
1406 target_bmethod =
true;
1412 n += rb_iseq_add_local_tracepoint_recursively(iseq, tp->events, tpval, line, target_bmethod);
1414 rb_hash_aset(tp->local_target_set, (
VALUE)iseq,
Qtrue);
1417 ISEQ_BODY(iseq)->builtin_attrs & BUILTIN_ATTR_SINGLE_NOARG_LEAF) {
1421 rb_yjit_tracing_invalidate_all();
1422 rb_zjit_tracing_invalidate_all();
1423 rb_ractor_targeted_hooks_incr(tp->ractor);
1424 if (tp->events & ISEQ_TRACE_EVENTS) {
1425 ruby_vm_iseq_events_enabled++;
1428 ruby_vm_c_events_enabled++;
1435 rb_raise(rb_eArgError,
"can not enable any hooks");
1448 ASSERT_vm_locking_with_barrier();
1451 rb_iseq_remove_local_tracepoint_recursively((
rb_iseq_t *)target, tpval, tp->ractor);
1457 hook_list = rb_method_def_local_hooks(def, cr,
false);
1459 if (rb_hook_list_remove_local_tracepoint(hook_list, tpval)) {
1460 RUBY_ASSERT(def->body.bmethod.local_hooks_cnt > 0);
1461 def->body.bmethod.local_hooks_cnt--;
1462 if (hook_list->events == 0) {
1463 st_delete(rb_ractor_targeted_hooks(cr), (st_data_t*)&def, NULL);
1464 rb_hook_list_free(hook_list);
1466 rb_method_definition_release(def);
1479 if (
RTEST(tp->local_target_set)) {
1484 rb_hash_foreach(tp->local_target_set, disable_local_tracepoint_i, tpval);
1486 rb_ractor_targeted_hooks_decr(tp->ractor);
1487 if (tp->events & ISEQ_TRACE_EVENTS) {
1489 ruby_vm_iseq_events_enabled--;
1493 ruby_vm_c_events_enabled--;
1498 if (tp->target_th) {
1506 tp->target_th = NULL;
1513rb_hook_list_connect_local_tracepoint(
rb_hook_list_t *list,
VALUE tpval,
unsigned int target_line)
1517 RUBY_EVENT_HOOK_FLAG_SAFE | RUBY_EVENT_HOOK_FLAG_RAW_ARG);
1518 hook->filter.target_line = target_line;
1519 hook_list_connect(list, hook, FALSE);
1527 bool removed =
false;
1530 if (hook->data == tpval) {
1531 hook->hook_flags |= RUBY_EVENT_HOOK_FLAG_DELETED;
1532 list->need_clean =
true;
1535 else if ((hook->hook_flags & RUBY_EVENT_HOOK_FLAG_DELETED) == 0) {
1536 events |= hook->events;
1541 list->events = events;
1549 int previous_tracing = tp->tracing;
1551 if (target_thread == sym_default) {
1556 target_thread =
Qnil;
1561 if (
RTEST(target_thread)) {
1562 if (tp->target_th) {
1563 rb_raise(rb_eArgError,
"can not override target_thread filter");
1565 tp->target_th = rb_thread_ptr(target_thread);
1567 RUBY_ASSERT(tp->target_th->self == target_thread);
1571 tp->target_th = NULL;
1574 if (
NIL_P(target)) {
1575 if (!
NIL_P(target_line)) {
1576 rb_raise(rb_eArgError,
"only target_line is specified");
1581 rb_tracepoint_enable_for_target(tpval, target, target_line);
1590 return RBOOL(previous_tracing);
1598 int previous_tracing = tp->tracing;
1601 if (tp->local_target_set !=
Qfalse) {
1602 rb_raise(rb_eArgError,
"can't disable a targeting TracePoint in a block");
1612 return RBOOL(previous_tracing);
1620 return RBOOL(tp->tracing);
1632 VALUE tpval = tp_alloc(klass);
1637 tp->ractor = GET_RACTOR();
1640 tp->events = events;
1651 if (
RTEST(target_thval)) {
1652 target_th = rb_thread_ptr(target_thval);
1654 return tracepoint_new(rb_cTracePoint, target_th, events, func, data,
Qundef);
1665 for (i=0; i<argc; i++) {
1666 events |= symbol2event_flag(
RARRAY_AREF(args, i));
1674 rb_raise(rb_eArgError,
"must be called with a block");
1677 return tracepoint_new(self, 0, events, 0, 0,
rb_block_proc());
1683 VALUE trace = tracepoint_new_s(ec, self, args);
1695 switch (trace_arg->event) {
1701 return rb_sprintf(
"#<TracePoint:%"PRIsVALUE
" %"PRIsVALUE
":%d in '%"PRIsVALUE
"'>",
1711 return rb_sprintf(
"#<TracePoint:%"PRIsVALUE
" '%"PRIsVALUE
"' %"PRIsVALUE
":%d>",
1718 return rb_sprintf(
"#<TracePoint:%"PRIsVALUE
" %"PRIsVALUE
">",
1724 return rb_sprintf(
"#<TracePoint:%"PRIsVALUE
" %"PRIsVALUE
":%d>",
1730 return rb_sprintf(
"#<TracePoint:%s>", tp->tracing ?
"enabled" :
"disabled");
1737 int active = 0, deleted = 0;
1740 if (hook->hook_flags & RUBY_EVENT_HOOK_FLAG_DELETED) {
1756 VALUE stat = rb_hash_new();
1758 tracepoint_stat_event_hooks(stat, vm->self, rb_ec_ractor_hooks(ec)->hooks);
1764disallow_reentry(
VALUE val)
1768 if (ec->trace_arg != NULL) rb_bug(
"should be NULL, but %p", (
void *)ec->trace_arg);
1769 ec->trace_arg = arg;
1777 if (arg == NULL) rb_raise(
rb_eRuntimeError,
"No need to allow reentrance.");
1778 ec->trace_arg = NULL;
1782#include "trace_point.rbinc"
1795 rb_cTracePoint = rb_define_class(
"TracePoint",
rb_cObject);
1806#define PJOB_TABLE_SIZE (sizeof(rb_atomic_t) * CHAR_BIT)
1812 } table[PJOB_TABLE_SIZE];
1824 if (ec == NULL) ec = rb_vm_main_ractor_ec(vm);
1829rb_vm_postponed_job_atfork(
void)
1837 if (pjq->triggered_bitset || rb_ec_ractor_ptr(ec)->postponed_job_triggered_bits) {
1838 RUBY_VM_SET_POSTPONED_JOB_INTERRUPT(ec);
1846rb_vm_memsize_postponed_job_queue(
void)
1865 for (
unsigned int i = 0; i < PJOB_TABLE_SIZE; i++) {
1868 if (existing_func == NULL || existing_func == func) {
1883 return POSTPONED_JOB_HANDLE_INVALID;
1892 RUBY_VM_SET_POSTPONED_JOB_INTERRUPT(get_valid_ec(GET_VM()));
1908rb_postponed_job_trigger_for_ractor(
unsigned int h,
VALUE running_ractor)
1910 VM_ASSERT(rb_ractor_p(running_ractor));
1918 if (target_ec == NULL && r->threads.main) {
1919 target_ec = r->threads.main->ec;
1922 RUBY_VM_SET_POSTPONED_JOB_INTERRUPT(target_ec);
1927rb_postponed_job_flush(
void)
1931 const rb_atomic_t block_mask = POSTPONED_JOB_INTERRUPT_MASK | TRAP_INTERRUPT_MASK;
1932 volatile rb_atomic_t saved_mask = ec->interrupt_mask & block_mask;
1933 VALUE volatile saved_errno = ec->errinfo;
1942 ec->interrupt_mask |= block_mask;
1945 if (EC_EXEC_TAG() == TAG_NONE) {
1947 while (triggered_bits) {
1948 unsigned int i = bit_length(triggered_bits) - 1;
1949 triggered_bits ^= ((1UL) << i);
1960 ec->interrupt_mask &= ~(saved_mask ^ block_mask);
1961 ec->errinfo = saved_errno;
1967 if (triggered_bits) {
1968 RUBY_ATOMIC_OR(rb_ec_ractor_ptr(ec)->postponed_job_triggered_bits, triggered_bits);
1969 RUBY_VM_SET_POSTPONED_JOB_INTERRUPT(GET_EC());
#define RUBY_ASSERT(...)
Asserts that the given expression is truthy if and only if RUBY_DEBUG is truthy.
#define RUBY_ATOMIC_OR(var, val)
Atomically replaces the value pointed by var with the result of bitwise OR between val and the old va...
#define RUBY_ATOMIC_PTR_LOAD(var)
Identical to RUBY_ATOMIC_LOAD, except it expects its arguments are void*.
#define RUBY_ATOMIC_PTR_CAS(var, oldval, newval)
Identical to RUBY_ATOMIC_CAS, except it expects its arguments are void*.
std::atomic< unsigned > rb_atomic_t
Type that is eligible for atomic operations.
#define RUBY_ATOMIC_PTR_EXCHANGE(var, val)
Identical to RUBY_ATOMIC_EXCHANGE, except it expects its arguments are void*.
#define RUBY_ATOMIC_EXCHANGE(var, val)
Atomically replaces the value pointed by var with val.
#define rb_define_method(klass, mid, func, arity)
Defines klass#mid.
#define rb_define_global_function(mid, func, arity)
Defines rb_mKernel #mid.
unsigned int rb_postponed_job_handle_t
The type of a handle returned from rb_postponed_job_preregister and passed to rb_postponed_job_trigge...
VALUE rb_tracearg_binding(rb_trace_arg_t *trace_arg)
Creates a binding object of the point where the trace is at.
VALUE rb_tracearg_parameters(rb_trace_arg_t *trace_arg)
Queries the parameters passed on a call or return event.
VALUE rb_tracearg_instruction_sequence(rb_trace_arg_t *trace_arg)
Queries the compiled instruction sequence on a 'script_compiled' event.
void rb_postponed_job_trigger(rb_postponed_job_handle_t h)
Triggers a pre-registered job registered with rb_postponed_job_preregister, scheduling it for executi...
VALUE rb_tracepoint_enabled_p(VALUE tpval)
Queries if the passed TracePoint is up and running.
VALUE rb_tracearg_object(rb_trace_arg_t *trace_arg)
Queries the allocated/deallocated object that the trace represents.
VALUE rb_tracearg_callee_id(rb_trace_arg_t *trace_arg)
Identical to rb_tracearg_method_id(), except it returns callee id like rb_frame_callee().
VALUE rb_tracearg_defined_class(rb_trace_arg_t *trace_arg)
Queries the class that defines the method that the passed trace is at.
VALUE rb_tracepoint_new(VALUE target_thread_not_supported_yet, rb_event_flag_t events, void(*func)(VALUE, void *), void *data)
Creates a tracepoint by registering a callback function for one or more tracepoint events.
VALUE rb_tracearg_raised_exception(rb_trace_arg_t *trace_arg)
Queries the raised exception that the trace represents.
void rb_thread_add_event_hook(VALUE thval, rb_event_hook_func_t func, rb_event_flag_t events, VALUE data)
Identical to rb_add_event_hook(), except its effect is limited to the passed thread.
rb_postponed_job_handle_t rb_postponed_job_preregister(unsigned int flags, rb_postponed_job_func_t func, void *data)
Pre-registers a func in Ruby's postponed job preregistration table, returning an opaque handle which ...
VALUE rb_tracepoint_disable(VALUE tpval)
Stops (disables) an already running instance of TracePoint.
VALUE rb_tracearg_self(rb_trace_arg_t *trace_arg)
Queries the receiver of the point trace is at.
int rb_thread_remove_event_hook(VALUE thval, rb_event_hook_func_t func)
Identical to rb_remove_event_hook(), except it additionally takes a thread argument.
VALUE rb_tracearg_return_value(rb_trace_arg_t *trace_arg)
Queries the return value that the trace represents.
rb_event_flag_t rb_tracearg_event_flag(rb_trace_arg_t *trace_arg)
Queries the event of the passed trace.
VALUE rb_tracearg_path(rb_trace_arg_t *trace_arg)
Queries the file name of the point where the trace is at.
VALUE rb_tracearg_eval_script(rb_trace_arg_t *trace_arg)
Queries the compiled source code of the 'script_compiled' event.
int rb_thread_remove_event_hook_with_data(VALUE thval, rb_event_hook_func_t func, VALUE data)
Identical to rb_thread_remove_event_hook(), except it additionally takes the data argument.
VALUE rb_tracepoint_enable(VALUE tpval)
Starts (enables) trace(s) defined by the passed object.
VALUE rb_tracearg_method_id(rb_trace_arg_t *trace_arg)
Queries the method name of the point where the trace is at.
int rb_remove_event_hook_with_data(rb_event_hook_func_t func, VALUE data)
Identical to rb_remove_event_hook(), except it additionally takes the data argument.
rb_trace_arg_t * rb_tracearg_from_tracepoint(VALUE tpval)
Queries the current event of the passed tracepoint.
VALUE rb_tracearg_lineno(rb_trace_arg_t *trace_arg)
Queries the line of the point where the trace is at.
void(* rb_postponed_job_func_t)(void *arg)
Type of postponed jobs.
VALUE rb_tracearg_event(rb_trace_arg_t *trace_arg)
Identical to rb_tracearg_event_flag(), except it returns the name of the event in Ruby's symbol.
#define RUBY_EVENT_END
Encountered an end of a class clause.
#define RUBY_EVENT_C_CALL
A method, written in C, is called.
#define RUBY_EVENT_TRACEPOINT_ALL
Bitmask of extended events.
void rb_add_event_hook(rb_event_hook_func_t func, rb_event_flag_t events, VALUE data)
Registers an event hook function.
#define RUBY_EVENT_RAISE
Encountered a raise statement.
#define RUBY_EVENT_B_RETURN
Encountered a next statement.
#define RUBY_EVENT_SCRIPT_COMPILED
Encountered an eval.
#define RUBY_INTERNAL_EVENT_MASK
Bitmask of internal events.
int rb_remove_event_hook(rb_event_hook_func_t func)
Removes the passed function from the list of event hooks.
#define RUBY_EVENT_ALL
Bitmask of traditional events.
#define RUBY_EVENT_THREAD_BEGIN
Encountered a new thread.
#define RUBY_EVENT_CLASS
Encountered a new class.
void(* rb_event_hook_func_t)(rb_event_flag_t evflag, VALUE data, VALUE self, ID mid, VALUE klass)
Type of event hooks.
#define RUBY_INTERNAL_EVENT_OBJSPACE_MASK
Bitmask of GC events.
#define RUBY_EVENT_LINE
Encountered a new line.
#define RUBY_EVENT_RETURN
Encountered a return statement.
#define RUBY_EVENT_C_RETURN
Return from a method, written in C.
#define RUBY_EVENT_B_CALL
Encountered an yield statement.
#define RUBY_INTERNAL_EVENT_FREEOBJ
Object swept.
uint32_t rb_event_flag_t
Represents event(s).
#define RUBY_EVENT_CALL
A method, written in Ruby, is called.
#define RUBY_INTERNAL_EVENT_NEWOBJ
Object allocated.
#define RUBY_EVENT_THREAD_END
Encountered an end of a thread.
#define RUBY_EVENT_RESCUE
Encountered a rescue statement.
int rb_block_given_p(void)
Determines if the current method is given a block.
#define rb_str_new2
Old name of rb_str_new_cstr.
#define ALLOC
Old name of RB_ALLOC.
#define Qundef
Old name of RUBY_Qundef.
#define INT2FIX
Old name of RB_INT2FIX.
#define ID2SYM
Old name of RB_ID2SYM.
#define ZALLOC
Old name of RB_ZALLOC.
#define FIX2INT
Old name of RB_FIX2INT.
#define NUM2UINT
Old name of RB_NUM2UINT.
#define T_ICLASS
Old name of RUBY_T_ICLASS.
#define rb_ary_new3
Old name of rb_ary_new_from_args.
#define Qtrue
Old name of RUBY_Qtrue.
#define Qnil
Old name of RUBY_Qnil.
#define Qfalse
Old name of RUBY_Qfalse.
#define T_ARRAY
Old name of RUBY_T_ARRAY.
#define NIL_P
Old name of RB_NIL_P.
VALUE rb_eTypeError
TypeError exception.
VALUE rb_eRuntimeError
RuntimeError exception.
VALUE rb_cObject
Object class.
VALUE rb_obj_hide(VALUE obj)
Make the object invisible from Ruby code.
VALUE rb_cThread
Thread class.
#define RB_OBJ_WRITTEN(old, oldv, young)
Identical to RB_OBJ_WRITE(), except it doesn't write any values, but only a WB declaration.
#define RB_OBJ_WRITE(old, slot, young)
Declaration of a "back" pointer.
VALUE rb_funcall(VALUE recv, ID mid, int n,...)
Calls a method.
Defines RBIMPL_HAS_BUILTIN.
VALUE rb_block_proc(void)
Constructs a Proc object from implicitly passed components.
VALUE rb_proc_call_with_block(VALUE recv, int argc, const VALUE *argv, VALUE proc)
Identical to rb_proc_call(), except you can additionally pass another proc object,...
VALUE rb_obj_is_method(VALUE recv)
Queries if the given object is a method.
VALUE rb_binding_new(void)
Snapshots the current execution context and turn it into an instance of rb_cBinding.
VALUE rb_obj_is_proc(VALUE recv)
Queries if the given object is a proc.
VALUE rb_thread_current(void)
Obtains the "current" thread.
void rb_undef_alloc_func(VALUE klass)
Deletes the allocator function of a class.
static ID rb_intern_const(const char *str)
This is a "tiny optimisation" over rb_intern().
VALUE rb_sym2str(VALUE symbol)
Obtain a frozen string representation of a symbol (not including the leading colon).
VALUE rb_yield(VALUE val)
Yields the block.
#define RB_GC_GUARD(v)
Prevents premature destruction of local objects.
void rb_hash_foreach(VALUE q, int_type *w, VALUE e)
Iteration over the given hash.
VALUE rb_ensure(type *q, VALUE w, type *e, VALUE r)
An equivalent of ensure clause.
#define RARRAY_LEN
Just another name of rb_array_len.
#define RARRAY_AREF(a, i)
#define RBASIC(obj)
Convenient casting macro.
#define RUBY_TYPED_DEFAULT_FREE
This is a value you can set to rb_data_type_struct::dfree.
#define TypedData_Get_Struct(obj, type, data_type, sval)
Obtains a C struct from inside of a wrapper Ruby object.
#define DATA_PTR(obj)
Convenient casting macro for backward compatibility.
#define TypedData_Make_Struct(klass, type, data_type, sval)
Identical to TypedData_Wrap_Struct, except it allocates a new data region internally instead of takin...
#define RTEST
This is an old name of RB_TEST.
This is the struct that holds necessary info for a struct.
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.