Ruby 3.5.0dev (2025-04-04 revision 6b5e187d0eb07994fee7b5f0336da388a793dcbb)
vm_trace.c (6b5e187d0eb07994fee7b5f0336da388a793dcbb)
1/**********************************************************************
2
3 vm_trace.c -
4
5 $Author: ko1 $
6 created at: Tue Aug 14 19:37:09 2012
7
8 Copyright (C) 1993-2012 Yukihiro Matsumoto
9
10**********************************************************************/
11
12/*
13 * This file include two parts:
14 *
15 * (1) set_trace_func internal mechanisms
16 * and C level API
17 *
18 * (2) Ruby level API
19 * (2-1) set_trace_func API
20 * (2-2) TracePoint API (not yet)
21 *
22 */
23
24#include "eval_intern.h"
25#include "internal.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"
32#include "iseq.h"
33#include "ruby/atomic.h"
34#include "ruby/debug.h"
35#include "vm_core.h"
36#include "ruby/ractor.h"
37#include "yjit.h"
38
39#include "builtin.h"
40
41static VALUE sym_default;
42
43/* (1) trace mechanisms */
44
45typedef struct rb_event_hook_struct {
46 rb_event_hook_flag_t hook_flags;
47 rb_event_flag_t events;
49 VALUE data;
50 struct rb_event_hook_struct *next;
51
52 struct {
53 rb_thread_t *th;
54 unsigned int target_line;
55 } filter;
57
58typedef void (*rb_event_hook_raw_arg_func_t)(VALUE data, const rb_trace_arg_t *arg);
59
60#define MAX_EVENT_NUM 32
61
62void
63rb_hook_list_mark(rb_hook_list_t *hooks)
64{
65 rb_event_hook_t *hook = hooks->hooks;
66
67 while (hook) {
68 rb_gc_mark(hook->data);
69 hook = hook->next;
70 }
71}
72
73void
74rb_hook_list_mark_and_update(rb_hook_list_t *hooks)
75{
76 rb_event_hook_t *hook = hooks->hooks;
77
78 while (hook) {
79 rb_gc_mark_and_move(&hook->data);
80 hook = hook->next;
81 }
82}
83
84static void clean_hooks(rb_hook_list_t *list);
85
86void
87rb_hook_list_free(rb_hook_list_t *hooks)
88{
89 hooks->need_clean = true;
90
91 if (hooks->running == 0) {
92 clean_hooks(hooks);
93 }
94}
95
96/* ruby_vm_event_flags management */
97
98void rb_clear_attr_ccs(void);
99void rb_clear_bf_ccs(void);
100
101static void
102update_global_event_hook(rb_event_flag_t prev_events, rb_event_flag_t new_events)
103{
104 rb_event_flag_t new_iseq_events = new_events & ISEQ_TRACE_EVENTS;
105 rb_event_flag_t enabled_iseq_events = ruby_vm_event_enabled_global_flags & ISEQ_TRACE_EVENTS;
106 bool first_time_iseq_events_p = new_iseq_events & ~enabled_iseq_events;
107 bool enable_c_call = (prev_events & RUBY_EVENT_C_CALL) == 0 && (new_events & RUBY_EVENT_C_CALL);
108 bool enable_c_return = (prev_events & RUBY_EVENT_C_RETURN) == 0 && (new_events & RUBY_EVENT_C_RETURN);
109 bool enable_call = (prev_events & RUBY_EVENT_CALL) == 0 && (new_events & RUBY_EVENT_CALL);
110 bool enable_return = (prev_events & RUBY_EVENT_RETURN) == 0 && (new_events & RUBY_EVENT_RETURN);
111
112 // Modify ISEQs or CCs to enable tracing
113 if (first_time_iseq_events_p) {
114 // write all ISeqs only when new events are added for the first time
115 rb_iseq_trace_set_all(new_iseq_events | enabled_iseq_events);
116 }
117 // if c_call or c_return is activated
118 else if (enable_c_call || enable_c_return) {
119 rb_clear_attr_ccs();
120 }
121 else if (enable_call || enable_return) {
122 rb_clear_bf_ccs();
123 }
124
125 ruby_vm_event_flags = new_events;
126 ruby_vm_event_enabled_global_flags |= new_events;
127 rb_objspace_set_event_hook(new_events);
128
129 // Invalidate JIT code as needed
130 if (first_time_iseq_events_p || enable_c_call || enable_c_return) {
131 // Invalidate all code when ISEQs are modified to use trace_* insns above.
132 // Also invalidate when enabling c_call or c_return because generated code
133 // never fires these events.
134 // Internal events fire inside C routines so don't need special handling.
135 // Do this after event flags updates so other ractors see updated vm events
136 // when they wake up.
137 rb_yjit_tracing_invalidate_all();
138 }
139}
140
141/* add/remove hooks */
142
143static rb_event_hook_t *
144alloc_event_hook(rb_event_hook_func_t func, rb_event_flag_t events, VALUE data, rb_event_hook_flag_t hook_flags)
145{
146 rb_event_hook_t *hook;
147
148 if ((events & RUBY_INTERNAL_EVENT_MASK) && (events & ~RUBY_INTERNAL_EVENT_MASK)) {
149 rb_raise(rb_eTypeError, "Can not specify normal event and internal event simultaneously.");
150 }
151
152 hook = ALLOC(rb_event_hook_t);
153 hook->hook_flags = hook_flags;
154 hook->events = events;
155 hook->func = func;
156 hook->data = data;
157
158 /* no filters */
159 hook->filter.th = NULL;
160 hook->filter.target_line = 0;
161
162 return hook;
163}
164
165static void
166hook_list_connect(VALUE list_owner, rb_hook_list_t *list, rb_event_hook_t *hook, int global_p)
167{
168 rb_event_flag_t prev_events = list->events;
169 hook->next = list->hooks;
170 list->hooks = hook;
171 list->events |= hook->events;
172
173 if (global_p) {
174 /* global hooks are root objects at GC mark. */
175 update_global_event_hook(prev_events, list->events);
176 }
177 else {
178 RB_OBJ_WRITTEN(list_owner, Qundef, hook->data);
179 }
180}
181
182static void
183connect_event_hook(const rb_execution_context_t *ec, rb_event_hook_t *hook)
184{
185 rb_hook_list_t *list = rb_ec_ractor_hooks(ec);
186 hook_list_connect(Qundef, list, hook, TRUE);
187}
188
189static void
190rb_threadptr_add_event_hook(const rb_execution_context_t *ec, rb_thread_t *th,
191 rb_event_hook_func_t func, rb_event_flag_t events, VALUE data, rb_event_hook_flag_t hook_flags)
192{
193 rb_event_hook_t *hook = alloc_event_hook(func, events, data, hook_flags);
194 hook->filter.th = th;
195 connect_event_hook(ec, hook);
196}
197
198void
200{
201 rb_threadptr_add_event_hook(GET_EC(), rb_thread_ptr(thval), func, events, data, RUBY_EVENT_HOOK_FLAG_SAFE);
202}
203
204void
206{
207 rb_add_event_hook2(func, events, data, RUBY_EVENT_HOOK_FLAG_SAFE);
208}
209
210void
211rb_thread_add_event_hook2(VALUE thval, rb_event_hook_func_t func, rb_event_flag_t events, VALUE data, rb_event_hook_flag_t hook_flags)
212{
213 rb_threadptr_add_event_hook(GET_EC(), rb_thread_ptr(thval), func, events, data, hook_flags);
214}
215
216void
217rb_add_event_hook2(rb_event_hook_func_t func, rb_event_flag_t events, VALUE data, rb_event_hook_flag_t hook_flags)
218{
219 rb_event_hook_t *hook = alloc_event_hook(func, events, data, hook_flags);
220 connect_event_hook(GET_EC(), hook);
221}
222
223static void
224clean_hooks(rb_hook_list_t *list)
225{
226 rb_event_hook_t *hook, **nextp = &list->hooks;
227 rb_event_flag_t prev_events = list->events;
228
229 VM_ASSERT(list->running == 0);
230 VM_ASSERT(list->need_clean == true);
231
232 list->events = 0;
233 list->need_clean = false;
234
235 while ((hook = *nextp) != 0) {
236 if (hook->hook_flags & RUBY_EVENT_HOOK_FLAG_DELETED) {
237 *nextp = hook->next;
238 xfree(hook);
239 }
240 else {
241 list->events |= hook->events; /* update active events */
242 nextp = &hook->next;
243 }
244 }
245
246 if (list->is_local) {
247 if (list->events == 0) {
248 /* local events */
249 ruby_xfree(list);
250 }
251 }
252 else {
253 update_global_event_hook(prev_events, list->events);
254 }
255}
256
257static void
258clean_hooks_check(rb_hook_list_t *list)
259{
260 if (UNLIKELY(list->need_clean)) {
261 if (list->running == 0) {
262 clean_hooks(list);
263 }
264 }
265}
266
267#define MATCH_ANY_FILTER_TH ((rb_thread_t *)1)
268
269/* if func is 0, then clear all funcs */
270static int
271remove_event_hook(const rb_execution_context_t *ec, const rb_thread_t *filter_th, rb_event_hook_func_t func, VALUE data)
272{
273 rb_hook_list_t *list = rb_ec_ractor_hooks(ec);
274 int ret = 0;
275 rb_event_hook_t *hook = list->hooks;
276
277 while (hook) {
278 if (func == 0 || hook->func == func) {
279 if (hook->filter.th == filter_th || filter_th == MATCH_ANY_FILTER_TH) {
280 if (UNDEF_P(data) || hook->data == data) {
281 hook->hook_flags |= RUBY_EVENT_HOOK_FLAG_DELETED;
282 ret+=1;
283 list->need_clean = true;
284 }
285 }
286 }
287 hook = hook->next;
288 }
289
290 clean_hooks_check(list);
291 return ret;
292}
293
294static int
295rb_threadptr_remove_event_hook(const rb_execution_context_t *ec, const rb_thread_t *filter_th, rb_event_hook_func_t func, VALUE data)
296{
297 return remove_event_hook(ec, filter_th, func, data);
298}
299
300int
302{
303 return rb_threadptr_remove_event_hook(GET_EC(), rb_thread_ptr(thval), func, Qundef);
304}
305
306int
308{
309 return rb_threadptr_remove_event_hook(GET_EC(), rb_thread_ptr(thval), func, data);
310}
311
312int
314{
315 return remove_event_hook(GET_EC(), NULL, func, Qundef);
316}
317
318int
320{
321 return remove_event_hook(GET_EC(), NULL, func, data);
322}
323
324void
325rb_ec_clear_current_thread_trace_func(const rb_execution_context_t *ec)
326{
327 rb_threadptr_remove_event_hook(ec, rb_ec_thread_ptr(ec), 0, Qundef);
328}
329
330void
331rb_ec_clear_all_trace_func(const rb_execution_context_t *ec)
332{
333 rb_threadptr_remove_event_hook(ec, MATCH_ANY_FILTER_TH, 0, Qundef);
334}
335
336/* invoke hooks */
337
338static void
339exec_hooks_body(const rb_execution_context_t *ec, rb_hook_list_t *list, const rb_trace_arg_t *trace_arg)
340{
341 rb_event_hook_t *hook;
342
343 for (hook = list->hooks; hook; hook = hook->next) {
344 if (!(hook->hook_flags & RUBY_EVENT_HOOK_FLAG_DELETED) &&
345 (trace_arg->event & hook->events) &&
346 (LIKELY(hook->filter.th == 0) || hook->filter.th == rb_ec_thread_ptr(ec)) &&
347 (LIKELY(hook->filter.target_line == 0) || (hook->filter.target_line == (unsigned int)rb_vm_get_sourceline(ec->cfp)))) {
348 if (!(hook->hook_flags & RUBY_EVENT_HOOK_FLAG_RAW_ARG)) {
349 (*hook->func)(trace_arg->event, hook->data, trace_arg->self, trace_arg->id, trace_arg->klass);
350 }
351 else {
352 (*((rb_event_hook_raw_arg_func_t)hook->func))(hook->data, trace_arg);
353 }
354 }
355 }
356}
357
358static int
359exec_hooks_precheck(const rb_execution_context_t *ec, rb_hook_list_t *list, const rb_trace_arg_t *trace_arg)
360{
361 if (list->events & trace_arg->event) {
362 list->running++;
363 return TRUE;
364 }
365 else {
366 return FALSE;
367 }
368}
369
370static void
371exec_hooks_postcheck(const rb_execution_context_t *ec, rb_hook_list_t *list)
372{
373 list->running--;
374 clean_hooks_check(list);
375}
376
377static void
378exec_hooks_unprotected(const rb_execution_context_t *ec, rb_hook_list_t *list, const rb_trace_arg_t *trace_arg)
379{
380 if (exec_hooks_precheck(ec, list, trace_arg) == 0) return;
381 exec_hooks_body(ec, list, trace_arg);
382 exec_hooks_postcheck(ec, list);
383}
384
385static int
386exec_hooks_protected(rb_execution_context_t *ec, rb_hook_list_t *list, const rb_trace_arg_t *trace_arg)
387{
388 enum ruby_tag_type state;
389 volatile int raised;
390
391 if (exec_hooks_precheck(ec, list, trace_arg) == 0) return 0;
392
393 raised = rb_ec_reset_raised(ec);
394
395 /* TODO: Support !RUBY_EVENT_HOOK_FLAG_SAFE hooks */
396
397 EC_PUSH_TAG(ec);
398 if ((state = EC_EXEC_TAG()) == TAG_NONE) {
399 exec_hooks_body(ec, list, trace_arg);
400 }
401 EC_POP_TAG();
402
403 exec_hooks_postcheck(ec, list);
404
405 if (raised) {
406 rb_ec_set_raised(ec);
407 }
408
409 return state;
410}
411
412// pop_p: Whether to pop the frame for the TracePoint when it throws.
413void
414rb_exec_event_hooks(rb_trace_arg_t *trace_arg, rb_hook_list_t *hooks, int pop_p)
415{
416 rb_execution_context_t *ec = trace_arg->ec;
417
418 if (UNLIKELY(trace_arg->event & RUBY_INTERNAL_EVENT_MASK)) {
419 if (ec->trace_arg && (ec->trace_arg->event & RUBY_INTERNAL_EVENT_MASK)) {
420 /* skip hooks because this thread doing INTERNAL_EVENT */
421 }
422 else {
423 rb_trace_arg_t *prev_trace_arg = ec->trace_arg;
424
425 ec->trace_arg = trace_arg;
426 /* only global hooks */
427 exec_hooks_unprotected(ec, rb_ec_ractor_hooks(ec), trace_arg);
428 ec->trace_arg = prev_trace_arg;
429 }
430 }
431 else {
432 if (ec->trace_arg == NULL && /* check reentrant */
433 trace_arg->self != rb_mRubyVMFrozenCore /* skip special methods. TODO: remove it. */) {
434 const VALUE errinfo = ec->errinfo;
435 const VALUE old_recursive = ec->local_storage_recursive_hash;
436 enum ruby_tag_type state = 0;
437
438 /* setup */
439 ec->local_storage_recursive_hash = ec->local_storage_recursive_hash_for_trace;
440 ec->errinfo = Qnil;
441 ec->trace_arg = trace_arg;
442
443 /* kick hooks */
444 if ((state = exec_hooks_protected(ec, hooks, trace_arg)) == TAG_NONE) {
445 ec->errinfo = errinfo;
446 }
447
448 /* cleanup */
449 ec->trace_arg = NULL;
450 ec->local_storage_recursive_hash_for_trace = ec->local_storage_recursive_hash;
451 ec->local_storage_recursive_hash = old_recursive;
452
453 if (state) {
454 if (pop_p) {
455 if (VM_FRAME_FINISHED_P(ec->cfp)) {
456 ec->tag = ec->tag->prev;
457 }
458 rb_vm_pop_frame(ec);
459 }
460 EC_JUMP_TAG(ec, state);
461 }
462 }
463 }
464}
465
466VALUE
467rb_suppress_tracing(VALUE (*func)(VALUE), VALUE arg)
468{
469 volatile int raised;
470 volatile VALUE result = Qnil;
471 rb_execution_context_t *const ec = GET_EC();
472 rb_vm_t *const vm = rb_ec_vm_ptr(ec);
473 enum ruby_tag_type state;
474 rb_trace_arg_t dummy_trace_arg;
475 dummy_trace_arg.event = 0;
476
477 if (!ec->trace_arg) {
478 ec->trace_arg = &dummy_trace_arg;
479 }
480
481 raised = rb_ec_reset_raised(ec);
482
483 EC_PUSH_TAG(ec);
484 if (LIKELY((state = EC_EXEC_TAG()) == TAG_NONE)) {
485 result = (*func)(arg);
486 }
487 else {
488 (void)*&vm; /* suppress "clobbered" warning */
489 }
490 EC_POP_TAG();
491
492 if (raised) {
493 rb_ec_reset_raised(ec);
494 }
495
496 if (ec->trace_arg == &dummy_trace_arg) {
497 ec->trace_arg = NULL;
498 }
499
500 if (state) {
501#if defined RUBY_USE_SETJMPEX && RUBY_USE_SETJMPEX
502 RB_GC_GUARD(result);
503#endif
504 EC_JUMP_TAG(ec, state);
505 }
506
507 return result;
508}
509
510static void call_trace_func(rb_event_flag_t, VALUE data, VALUE self, ID id, VALUE klass);
511
512/* (2-1) set_trace_func (old API) */
513
514/*
515 * call-seq:
516 * set_trace_func(proc) -> proc
517 * set_trace_func(nil) -> nil
518 *
519 * Establishes _proc_ as the handler for tracing, or disables
520 * tracing if the parameter is +nil+.
521 *
522 * *Note:* this method is obsolete, please use TracePoint instead.
523 *
524 * _proc_ takes up to six parameters:
525 *
526 * * an event name string
527 * * a filename string
528 * * a line number
529 * * a method name symbol, or nil
530 * * a binding, or nil
531 * * the class, module, or nil
532 *
533 * _proc_ is invoked whenever an event occurs.
534 *
535 * Events are:
536 *
537 * <code>"c-call"</code>:: call a C-language routine
538 * <code>"c-return"</code>:: return from a C-language routine
539 * <code>"call"</code>:: call a Ruby method
540 * <code>"class"</code>:: start a class or module definition
541 * <code>"end"</code>:: finish a class or module definition
542 * <code>"line"</code>:: execute code on a new line
543 * <code>"raise"</code>:: raise an exception
544 * <code>"return"</code>:: return from a Ruby method
545 *
546 * Tracing is disabled within the context of _proc_.
547 *
548 * class Test
549 * def test
550 * a = 1
551 * b = 2
552 * end
553 * end
554 *
555 * set_trace_func proc { |event, file, line, id, binding, class_or_module|
556 * printf "%8s %s:%-2d %16p %14p\n", event, file, line, id, class_or_module
557 * }
558 * t = Test.new
559 * t.test
560 *
561 * Produces:
562 *
563 * c-return prog.rb:8 :set_trace_func Kernel
564 * line prog.rb:11 nil nil
565 * c-call prog.rb:11 :new Class
566 * c-call prog.rb:11 :initialize BasicObject
567 * c-return prog.rb:11 :initialize BasicObject
568 * c-return prog.rb:11 :new Class
569 * line prog.rb:12 nil nil
570 * call prog.rb:2 :test Test
571 * line prog.rb:3 :test Test
572 * line prog.rb:4 :test Test
573 * return prog.rb:5 :test Test
574 */
575
576static VALUE
577set_trace_func(VALUE obj, VALUE trace)
578{
579 rb_remove_event_hook(call_trace_func);
580
581 if (NIL_P(trace)) {
582 return Qnil;
583 }
584
585 if (!rb_obj_is_proc(trace)) {
586 rb_raise(rb_eTypeError, "trace_func needs to be Proc");
587 }
588
589 rb_add_event_hook(call_trace_func, RUBY_EVENT_ALL, trace);
590 return trace;
591}
592
593static void
594thread_add_trace_func(rb_execution_context_t *ec, rb_thread_t *filter_th, VALUE trace)
595{
596 if (!rb_obj_is_proc(trace)) {
597 rb_raise(rb_eTypeError, "trace_func needs to be Proc");
598 }
599
600 rb_threadptr_add_event_hook(ec, filter_th, call_trace_func, RUBY_EVENT_ALL, trace, RUBY_EVENT_HOOK_FLAG_SAFE);
601}
602
603/*
604 * call-seq:
605 * thr.add_trace_func(proc) -> proc
606 *
607 * Adds _proc_ as a handler for tracing.
608 *
609 * See Thread#set_trace_func and Kernel#set_trace_func.
610 */
611
612static VALUE
613thread_add_trace_func_m(VALUE obj, VALUE trace)
614{
615 thread_add_trace_func(GET_EC(), rb_thread_ptr(obj), trace);
616 return trace;
617}
618
619/*
620 * call-seq:
621 * thr.set_trace_func(proc) -> proc
622 * thr.set_trace_func(nil) -> nil
623 *
624 * Establishes _proc_ on _thr_ as the handler for tracing, or
625 * disables tracing if the parameter is +nil+.
626 *
627 * See Kernel#set_trace_func.
628 */
629
630static VALUE
631thread_set_trace_func_m(VALUE target_thread, VALUE trace)
632{
633 rb_execution_context_t *ec = GET_EC();
634 rb_thread_t *target_th = rb_thread_ptr(target_thread);
635
636 rb_threadptr_remove_event_hook(ec, target_th, call_trace_func, Qundef);
637
638 if (NIL_P(trace)) {
639 return Qnil;
640 }
641 else {
642 thread_add_trace_func(ec, target_th, trace);
643 return trace;
644 }
645}
646
647static const char *
648get_event_name(rb_event_flag_t event)
649{
650 switch (event) {
651 case RUBY_EVENT_LINE: return "line";
652 case RUBY_EVENT_CLASS: return "class";
653 case RUBY_EVENT_END: return "end";
654 case RUBY_EVENT_CALL: return "call";
655 case RUBY_EVENT_RETURN: return "return";
656 case RUBY_EVENT_C_CALL: return "c-call";
657 case RUBY_EVENT_C_RETURN: return "c-return";
658 case RUBY_EVENT_RAISE: return "raise";
659 default:
660 return "unknown";
661 }
662}
663
664static ID
665get_event_id(rb_event_flag_t event)
666{
667 ID id;
668
669 switch (event) {
670#define C(name, NAME) case RUBY_EVENT_##NAME: CONST_ID(id, #name); return id;
671 C(line, LINE);
672 C(class, CLASS);
673 C(end, END);
674 C(call, CALL);
675 C(return, RETURN);
676 C(c_call, C_CALL);
677 C(c_return, C_RETURN);
678 C(raise, RAISE);
679 C(b_call, B_CALL);
680 C(b_return, B_RETURN);
681 C(thread_begin, THREAD_BEGIN);
682 C(thread_end, THREAD_END);
683 C(fiber_switch, FIBER_SWITCH);
684 C(script_compiled, SCRIPT_COMPILED);
685 C(rescue, RESCUE);
686#undef C
687 default:
688 return 0;
689 }
690}
691
692static void
693get_path_and_lineno(const rb_execution_context_t *ec, const rb_control_frame_t *cfp, rb_event_flag_t event, VALUE *pathp, int *linep)
694{
695 cfp = rb_vm_get_ruby_level_next_cfp(ec, cfp);
696
697 if (cfp) {
698 const rb_iseq_t *iseq = cfp->iseq;
699 *pathp = rb_iseq_path(iseq);
700
701 if (event & (RUBY_EVENT_CLASS |
704 *linep = FIX2INT(rb_iseq_first_lineno(iseq));
705 }
706 else {
707 *linep = rb_vm_get_sourceline(cfp);
708 }
709 }
710 else {
711 *pathp = Qnil;
712 *linep = 0;
713 }
714}
715
716static void
717call_trace_func(rb_event_flag_t event, VALUE proc, VALUE self, ID id, VALUE klass)
718{
719 int line;
720 VALUE filename;
721 VALUE eventname = rb_str_new2(get_event_name(event));
722 VALUE argv[6];
723 const rb_execution_context_t *ec = GET_EC();
724
725 get_path_and_lineno(ec, ec->cfp, event, &filename, &line);
726
727 if (!klass) {
728 rb_ec_frame_method_id_and_class(ec, &id, 0, &klass);
729 }
730
731 if (klass) {
732 if (RB_TYPE_P(klass, T_ICLASS)) {
733 klass = RBASIC(klass)->klass;
734 }
735 else if (RCLASS_SINGLETON_P(klass)) {
736 klass = RCLASS_ATTACHED_OBJECT(klass);
737 }
738 }
739
740 argv[0] = eventname;
741 argv[1] = filename;
742 argv[2] = INT2FIX(line);
743 argv[3] = id ? ID2SYM(id) : Qnil;
744 argv[4] = Qnil;
745 if (self && (filename != Qnil) &&
746 event != RUBY_EVENT_C_CALL &&
747 event != RUBY_EVENT_C_RETURN &&
748 (VM_FRAME_RUBYFRAME_P(ec->cfp) && imemo_type_p((VALUE)ec->cfp->iseq, imemo_iseq))) {
749 argv[4] = rb_binding_new();
750 }
751 argv[5] = klass ? klass : Qnil;
752
753 rb_proc_call_with_block(proc, 6, argv, Qnil);
754}
755
756/* (2-2) TracePoint API */
757
758static VALUE rb_cTracePoint;
759
760typedef struct rb_tp_struct {
761 rb_event_flag_t events;
762 int tracing; /* bool */
763 rb_thread_t *target_th;
764 VALUE local_target_set; /* Hash: target ->
765 * Qtrue (if target is iseq) or
766 * Qfalse (if target is bmethod)
767 */
768 void (*func)(VALUE tpval, void *data);
769 void *data;
770 VALUE proc;
771 rb_ractor_t *ractor;
772 VALUE self;
773} rb_tp_t;
774
775static void
776tp_mark(void *ptr)
777{
778 rb_tp_t *tp = ptr;
779 rb_gc_mark(tp->proc);
780 rb_gc_mark(tp->local_target_set);
781 if (tp->target_th) rb_gc_mark(tp->target_th->self);
782}
783
784static const rb_data_type_t tp_data_type = {
785 "tracepoint",
786 {
787 tp_mark,
789 NULL, // Nothing allocated externally, so don't need a memsize function
790 },
791 0, 0, RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED | RUBY_TYPED_EMBEDDABLE
792};
793
794static VALUE
795tp_alloc(VALUE klass)
796{
797 rb_tp_t *tp;
798 return TypedData_Make_Struct(klass, rb_tp_t, &tp_data_type, tp);
799}
800
801static rb_event_flag_t
802symbol2event_flag(VALUE v)
803{
804 ID id;
805 VALUE sym = rb_to_symbol_type(v);
806 const rb_event_flag_t RUBY_EVENT_A_CALL =
808 const rb_event_flag_t RUBY_EVENT_A_RETURN =
810
811#define C(name, NAME) CONST_ID(id, #name); if (sym == ID2SYM(id)) return RUBY_EVENT_##NAME
812 C(line, LINE);
813 C(class, CLASS);
814 C(end, END);
815 C(call, CALL);
816 C(return, RETURN);
817 C(c_call, C_CALL);
818 C(c_return, C_RETURN);
819 C(raise, RAISE);
820 C(b_call, B_CALL);
821 C(b_return, B_RETURN);
822 C(thread_begin, THREAD_BEGIN);
823 C(thread_end, THREAD_END);
824 C(fiber_switch, FIBER_SWITCH);
825 C(script_compiled, SCRIPT_COMPILED);
826 C(rescue, RESCUE);
827
828 /* joke */
829 C(a_call, A_CALL);
830 C(a_return, A_RETURN);
831#undef C
832 rb_raise(rb_eArgError, "unknown event: %"PRIsVALUE, rb_sym2str(sym));
833}
834
835static rb_tp_t *
836tpptr(VALUE tpval)
837{
838 rb_tp_t *tp;
839 TypedData_Get_Struct(tpval, rb_tp_t, &tp_data_type, tp);
840 return tp;
841}
842
843static rb_trace_arg_t *
844get_trace_arg(void)
845{
846 rb_trace_arg_t *trace_arg = GET_EC()->trace_arg;
847 if (trace_arg == 0) {
848 rb_raise(rb_eRuntimeError, "access from outside");
849 }
850 return trace_arg;
851}
852
853struct rb_trace_arg_struct *
855{
856 return get_trace_arg();
857}
858
861{
862 return trace_arg->event;
863}
864
865VALUE
867{
868 return ID2SYM(get_event_id(trace_arg->event));
869}
870
871static void
872fill_path_and_lineno(rb_trace_arg_t *trace_arg)
873{
874 if (UNDEF_P(trace_arg->path)) {
875 get_path_and_lineno(trace_arg->ec, trace_arg->cfp, trace_arg->event, &trace_arg->path, &trace_arg->lineno);
876 }
877}
878
879VALUE
881{
882 fill_path_and_lineno(trace_arg);
883 return INT2FIX(trace_arg->lineno);
884}
885VALUE
887{
888 fill_path_and_lineno(trace_arg);
889 return trace_arg->path;
890}
891
892static void
893fill_id_and_klass(rb_trace_arg_t *trace_arg)
894{
895 if (!trace_arg->klass_solved) {
896 if (!trace_arg->klass) {
897 rb_vm_control_frame_id_and_class(trace_arg->cfp, &trace_arg->id, &trace_arg->called_id, &trace_arg->klass);
898 }
899
900 if (trace_arg->klass) {
901 if (RB_TYPE_P(trace_arg->klass, T_ICLASS)) {
902 trace_arg->klass = RBASIC(trace_arg->klass)->klass;
903 }
904 }
905 else {
906 trace_arg->klass = Qnil;
907 }
908
909 trace_arg->klass_solved = 1;
910 }
911}
912
913VALUE
915{
916 switch (trace_arg->event) {
917 case RUBY_EVENT_CALL:
920 case RUBY_EVENT_B_RETURN: {
921 const rb_control_frame_t *cfp = rb_vm_get_ruby_level_next_cfp(trace_arg->ec, trace_arg->cfp);
922 if (cfp) {
923 int is_proc = 0;
924 if (VM_FRAME_TYPE(cfp) == VM_FRAME_MAGIC_BLOCK && !VM_FRAME_LAMBDA_P(cfp)) {
925 is_proc = 1;
926 }
927 return rb_iseq_parameters(cfp->iseq, is_proc);
928 }
929 break;
930 }
932 case RUBY_EVENT_C_RETURN: {
933 fill_id_and_klass(trace_arg);
934 if (trace_arg->klass && trace_arg->id) {
935 const rb_method_entry_t *me;
936 VALUE iclass = Qnil;
937 me = rb_method_entry_without_refinements(trace_arg->klass, trace_arg->called_id, &iclass);
938 if (!me) {
939 me = rb_method_entry_without_refinements(trace_arg->klass, trace_arg->id, &iclass);
940 }
941 return rb_unnamed_parameters(rb_method_entry_arity(me));
942 }
943 break;
944 }
945 case RUBY_EVENT_RAISE:
946 case RUBY_EVENT_LINE:
947 case RUBY_EVENT_CLASS:
948 case RUBY_EVENT_END:
951 rb_raise(rb_eRuntimeError, "not supported by this event");
952 break;
953 }
954 return Qnil;
955}
956
957VALUE
959{
960 fill_id_and_klass(trace_arg);
961 return trace_arg->id ? ID2SYM(trace_arg->id) : Qnil;
962}
963
964VALUE
966{
967 fill_id_and_klass(trace_arg);
968 return trace_arg->called_id ? ID2SYM(trace_arg->called_id) : Qnil;
969}
970
971VALUE
973{
974 fill_id_and_klass(trace_arg);
975 return trace_arg->klass;
976}
977
978VALUE
980{
982 switch (trace_arg->event) {
985 return Qnil;
986 }
987 cfp = rb_vm_get_binding_creatable_next_cfp(trace_arg->ec, trace_arg->cfp);
988
989 if (cfp && imemo_type_p((VALUE)cfp->iseq, imemo_iseq)) {
990 return rb_vm_make_binding(trace_arg->ec, cfp);
991 }
992 else {
993 return Qnil;
994 }
995}
996
997VALUE
999{
1000 return trace_arg->self;
1001}
1002
1003VALUE
1005{
1006 if (trace_arg->event & (RUBY_EVENT_RETURN | RUBY_EVENT_C_RETURN | RUBY_EVENT_B_RETURN)) {
1007 /* ok */
1008 }
1009 else {
1010 rb_raise(rb_eRuntimeError, "not supported by this event");
1011 }
1012 if (UNDEF_P(trace_arg->data)) {
1013 rb_bug("rb_tracearg_return_value: unreachable");
1014 }
1015 return trace_arg->data;
1016}
1017
1018VALUE
1020{
1021 if (trace_arg->event & (RUBY_EVENT_RAISE | RUBY_EVENT_RESCUE)) {
1022 /* ok */
1023 }
1024 else {
1025 rb_raise(rb_eRuntimeError, "not supported by this event");
1026 }
1027 if (UNDEF_P(trace_arg->data)) {
1028 rb_bug("rb_tracearg_raised_exception: unreachable");
1029 }
1030 return trace_arg->data;
1031}
1032
1033VALUE
1035{
1036 VALUE data = trace_arg->data;
1037
1038 if (trace_arg->event & (RUBY_EVENT_SCRIPT_COMPILED)) {
1039 /* ok */
1040 }
1041 else {
1042 rb_raise(rb_eRuntimeError, "not supported by this event");
1043 }
1044 if (UNDEF_P(data)) {
1045 rb_bug("rb_tracearg_raised_exception: unreachable");
1046 }
1047 if (rb_obj_is_iseq(data)) {
1048 return Qnil;
1049 }
1050 else {
1051 VM_ASSERT(RB_TYPE_P(data, T_ARRAY));
1052 /* [src, iseq] */
1053 return RARRAY_AREF(data, 0);
1054 }
1055}
1056
1057VALUE
1059{
1060 VALUE data = trace_arg->data;
1061
1062 if (trace_arg->event & (RUBY_EVENT_SCRIPT_COMPILED)) {
1063 /* ok */
1064 }
1065 else {
1066 rb_raise(rb_eRuntimeError, "not supported by this event");
1067 }
1068 if (UNDEF_P(data)) {
1069 rb_bug("rb_tracearg_raised_exception: unreachable");
1070 }
1071
1072 if (rb_obj_is_iseq(data)) {
1073 return rb_iseqw_new((const rb_iseq_t *)data);
1074 }
1075 else {
1076 VM_ASSERT(RB_TYPE_P(data, T_ARRAY));
1077 VM_ASSERT(rb_obj_is_iseq(RARRAY_AREF(data, 1)));
1078
1079 /* [src, iseq] */
1080 return rb_iseqw_new((const rb_iseq_t *)RARRAY_AREF(data, 1));
1081 }
1082}
1083
1084VALUE
1086{
1087 if (trace_arg->event & (RUBY_INTERNAL_EVENT_NEWOBJ | RUBY_INTERNAL_EVENT_FREEOBJ)) {
1088 /* ok */
1089 }
1090 else {
1091 rb_raise(rb_eRuntimeError, "not supported by this event");
1092 }
1093 if (UNDEF_P(trace_arg->data)) {
1094 rb_bug("rb_tracearg_object: unreachable");
1095 }
1096 return trace_arg->data;
1097}
1098
1099static VALUE
1100tracepoint_attr_event(rb_execution_context_t *ec, VALUE tpval)
1101{
1102 return rb_tracearg_event(get_trace_arg());
1103}
1104
1105static VALUE
1106tracepoint_attr_lineno(rb_execution_context_t *ec, VALUE tpval)
1107{
1108 return rb_tracearg_lineno(get_trace_arg());
1109}
1110static VALUE
1111tracepoint_attr_path(rb_execution_context_t *ec, VALUE tpval)
1112{
1113 return rb_tracearg_path(get_trace_arg());
1114}
1115
1116static VALUE
1117tracepoint_attr_parameters(rb_execution_context_t *ec, VALUE tpval)
1118{
1119 return rb_tracearg_parameters(get_trace_arg());
1120}
1121
1122static VALUE
1123tracepoint_attr_method_id(rb_execution_context_t *ec, VALUE tpval)
1124{
1125 return rb_tracearg_method_id(get_trace_arg());
1126}
1127
1128static VALUE
1129tracepoint_attr_callee_id(rb_execution_context_t *ec, VALUE tpval)
1130{
1131 return rb_tracearg_callee_id(get_trace_arg());
1132}
1133
1134static VALUE
1135tracepoint_attr_defined_class(rb_execution_context_t *ec, VALUE tpval)
1136{
1137 return rb_tracearg_defined_class(get_trace_arg());
1138}
1139
1140static VALUE
1141tracepoint_attr_binding(rb_execution_context_t *ec, VALUE tpval)
1142{
1143 return rb_tracearg_binding(get_trace_arg());
1144}
1145
1146static VALUE
1147tracepoint_attr_self(rb_execution_context_t *ec, VALUE tpval)
1148{
1149 return rb_tracearg_self(get_trace_arg());
1150}
1151
1152static VALUE
1153tracepoint_attr_return_value(rb_execution_context_t *ec, VALUE tpval)
1154{
1155 return rb_tracearg_return_value(get_trace_arg());
1156}
1157
1158static VALUE
1159tracepoint_attr_raised_exception(rb_execution_context_t *ec, VALUE tpval)
1160{
1161 return rb_tracearg_raised_exception(get_trace_arg());
1162}
1163
1164static VALUE
1165tracepoint_attr_eval_script(rb_execution_context_t *ec, VALUE tpval)
1166{
1167 return rb_tracearg_eval_script(get_trace_arg());
1168}
1169
1170static VALUE
1171tracepoint_attr_instruction_sequence(rb_execution_context_t *ec, VALUE tpval)
1172{
1173 return rb_tracearg_instruction_sequence(get_trace_arg());
1174}
1175
1176static void
1177tp_call_trace(VALUE tpval, rb_trace_arg_t *trace_arg)
1178{
1179 rb_tp_t *tp = tpptr(tpval);
1180
1181 if (tp->func) {
1182 (*tp->func)(tpval, tp->data);
1183 }
1184 else {
1185 if (tp->ractor == NULL || tp->ractor == GET_RACTOR()) {
1186 rb_proc_call_with_block((VALUE)tp->proc, 1, &tpval, Qnil);
1187 }
1188 }
1189}
1190
1191VALUE
1193{
1194 rb_tp_t *tp;
1195 tp = tpptr(tpval);
1196
1197 if (tp->local_target_set != Qfalse) {
1198 rb_raise(rb_eArgError, "can't nest-enable a targeting TracePoint");
1199 }
1200
1201 if (tp->tracing) {
1202 return Qundef;
1203 }
1204
1205 if (tp->target_th) {
1206 rb_thread_add_event_hook2(tp->target_th->self, (rb_event_hook_func_t)tp_call_trace, tp->events, tpval,
1207 RUBY_EVENT_HOOK_FLAG_SAFE | RUBY_EVENT_HOOK_FLAG_RAW_ARG);
1208 }
1209 else {
1210 rb_add_event_hook2((rb_event_hook_func_t)tp_call_trace, tp->events, tpval,
1211 RUBY_EVENT_HOOK_FLAG_SAFE | RUBY_EVENT_HOOK_FLAG_RAW_ARG);
1212 }
1213 tp->tracing = 1;
1214 return Qundef;
1215}
1216
1217static const rb_iseq_t *
1218iseq_of(VALUE target)
1219{
1220 VALUE iseqv = rb_funcall(rb_cISeq, rb_intern("of"), 1, target);
1221 if (NIL_P(iseqv)) {
1222 rb_raise(rb_eArgError, "specified target is not supported");
1223 }
1224 else {
1225 return rb_iseqw_to_iseq(iseqv);
1226 }
1227}
1228
1229const rb_method_definition_t *rb_method_def(VALUE method); /* proc.c */
1230
1231static VALUE
1232rb_tracepoint_enable_for_target(VALUE tpval, VALUE target, VALUE target_line)
1233{
1234 rb_tp_t *tp = tpptr(tpval);
1235 const rb_iseq_t *iseq = iseq_of(target);
1236 int n = 0;
1237 unsigned int line = 0;
1238 bool target_bmethod = false;
1239
1240 if (tp->tracing > 0) {
1241 rb_raise(rb_eArgError, "can't nest-enable a targeting TracePoint");
1242 }
1243
1244 if (!NIL_P(target_line)) {
1245 if ((tp->events & RUBY_EVENT_LINE) == 0) {
1246 rb_raise(rb_eArgError, "target_line is specified, but line event is not specified");
1247 }
1248 else {
1249 line = NUM2UINT(target_line);
1250 }
1251 }
1252
1253 VM_ASSERT(tp->local_target_set == Qfalse);
1254 RB_OBJ_WRITE(tpval, &tp->local_target_set, rb_obj_hide(rb_ident_hash_new()));
1255
1256 /* bmethod */
1257 if (rb_obj_is_method(target)) {
1258 rb_method_definition_t *def = (rb_method_definition_t *)rb_method_def(target);
1259 if (def->type == VM_METHOD_TYPE_BMETHOD &&
1260 (tp->events & (RUBY_EVENT_CALL | RUBY_EVENT_RETURN))) {
1261 if (def->body.bmethod.hooks == NULL) {
1262 def->body.bmethod.hooks = ZALLOC(rb_hook_list_t);
1263 def->body.bmethod.hooks->is_local = true;
1264 }
1265 rb_hook_list_connect_tracepoint(target, def->body.bmethod.hooks, tpval, 0);
1266 rb_hash_aset(tp->local_target_set, target, Qfalse);
1267 target_bmethod = true;
1268
1269 n++;
1270 }
1271 }
1272
1273 /* iseq */
1274 n += rb_iseq_add_local_tracepoint_recursively(iseq, tp->events, tpval, line, target_bmethod);
1275 rb_hash_aset(tp->local_target_set, (VALUE)iseq, Qtrue);
1276
1277 if ((tp->events & (RUBY_EVENT_CALL | RUBY_EVENT_RETURN)) &&
1278 iseq->body->builtin_attrs & BUILTIN_ATTR_SINGLE_NOARG_LEAF) {
1279 rb_clear_bf_ccs();
1280 }
1281
1282 if (n == 0) {
1283 rb_raise(rb_eArgError, "can not enable any hooks");
1284 }
1285
1286 rb_yjit_tracing_invalidate_all();
1287
1288 ruby_vm_event_local_num++;
1289
1290 tp->tracing = 1;
1291
1292 return Qnil;
1293}
1294
1295static int
1296disable_local_event_iseq_i(VALUE target, VALUE iseq_p, VALUE tpval)
1297{
1298 if (iseq_p) {
1299 rb_iseq_remove_local_tracepoint_recursively((rb_iseq_t *)target, tpval);
1300 }
1301 else {
1302 /* bmethod */
1303 rb_method_definition_t *def = (rb_method_definition_t *)rb_method_def(target);
1304 rb_hook_list_t *hooks = def->body.bmethod.hooks;
1305 VM_ASSERT(hooks != NULL);
1306 rb_hook_list_remove_tracepoint(hooks, tpval);
1307
1308 if (hooks->events == 0) {
1309 rb_hook_list_free(def->body.bmethod.hooks);
1310 def->body.bmethod.hooks = NULL;
1311 }
1312 }
1313 return ST_CONTINUE;
1314}
1315
1316VALUE
1318{
1319 rb_tp_t *tp;
1320
1321 tp = tpptr(tpval);
1322
1323 if (tp->local_target_set) {
1324 rb_hash_foreach(tp->local_target_set, disable_local_event_iseq_i, tpval);
1325 RB_OBJ_WRITE(tpval, &tp->local_target_set, Qfalse);
1326 ruby_vm_event_local_num--;
1327 }
1328 else {
1329 if (tp->target_th) {
1330 rb_thread_remove_event_hook_with_data(tp->target_th->self, (rb_event_hook_func_t)tp_call_trace, tpval);
1331 }
1332 else {
1334 }
1335 }
1336 tp->tracing = 0;
1337 tp->target_th = NULL;
1338 return Qundef;
1339}
1340
1341void
1342rb_hook_list_connect_tracepoint(VALUE target, rb_hook_list_t *list, VALUE tpval, unsigned int target_line)
1343{
1344 rb_tp_t *tp = tpptr(tpval);
1345 rb_event_hook_t *hook = alloc_event_hook((rb_event_hook_func_t)tp_call_trace, tp->events & ISEQ_TRACE_EVENTS, tpval,
1346 RUBY_EVENT_HOOK_FLAG_SAFE | RUBY_EVENT_HOOK_FLAG_RAW_ARG);
1347 hook->filter.target_line = target_line;
1348 hook_list_connect(target, list, hook, FALSE);
1349}
1350
1351void
1352rb_hook_list_remove_tracepoint(rb_hook_list_t *list, VALUE tpval)
1353{
1354 rb_event_hook_t *hook = list->hooks;
1355 rb_event_flag_t events = 0;
1356
1357 while (hook) {
1358 if (hook->data == tpval) {
1359 hook->hook_flags |= RUBY_EVENT_HOOK_FLAG_DELETED;
1360 list->need_clean = true;
1361 }
1362 else if ((hook->hook_flags & RUBY_EVENT_HOOK_FLAG_DELETED) == 0) {
1363 events |= hook->events;
1364 }
1365 hook = hook->next;
1366 }
1367
1368 list->events = events;
1369}
1370
1371static VALUE
1372tracepoint_enable_m(rb_execution_context_t *ec, VALUE tpval, VALUE target, VALUE target_line, VALUE target_thread)
1373{
1374 rb_tp_t *tp = tpptr(tpval);
1375 int previous_tracing = tp->tracing;
1376
1377 if (target_thread == sym_default) {
1378 if (rb_block_given_p() && NIL_P(target) && NIL_P(target_line)) {
1379 target_thread = rb_thread_current();
1380 }
1381 else {
1382 target_thread = Qnil;
1383 }
1384 }
1385
1386 /* check target_thread */
1387 if (RTEST(target_thread)) {
1388 if (tp->target_th) {
1389 rb_raise(rb_eArgError, "can not override target_thread filter");
1390 }
1391 tp->target_th = rb_thread_ptr(target_thread);
1392
1393 RUBY_ASSERT(tp->target_th->self == target_thread);
1394 RB_OBJ_WRITTEN(tpval, Qundef, target_thread);
1395 }
1396 else {
1397 tp->target_th = NULL;
1398 }
1399
1400 if (NIL_P(target)) {
1401 if (!NIL_P(target_line)) {
1402 rb_raise(rb_eArgError, "only target_line is specified");
1403 }
1404 rb_tracepoint_enable(tpval);
1405 }
1406 else {
1407 rb_tracepoint_enable_for_target(tpval, target, target_line);
1408 }
1409
1410 if (rb_block_given_p()) {
1411 return rb_ensure(rb_yield, Qundef,
1412 previous_tracing ? rb_tracepoint_enable : rb_tracepoint_disable,
1413 tpval);
1414 }
1415 else {
1416 return RBOOL(previous_tracing);
1417 }
1418}
1419
1420static VALUE
1421tracepoint_disable_m(rb_execution_context_t *ec, VALUE tpval)
1422{
1423 rb_tp_t *tp = tpptr(tpval);
1424 int previous_tracing = tp->tracing;
1425
1426 if (rb_block_given_p()) {
1427 if (tp->local_target_set != Qfalse) {
1428 rb_raise(rb_eArgError, "can't disable a targeting TracePoint in a block");
1429 }
1430
1431 rb_tracepoint_disable(tpval);
1432 return rb_ensure(rb_yield, Qundef,
1433 previous_tracing ? rb_tracepoint_enable : rb_tracepoint_disable,
1434 tpval);
1435 }
1436 else {
1437 rb_tracepoint_disable(tpval);
1438 return RBOOL(previous_tracing);
1439 }
1440}
1441
1442VALUE
1444{
1445 rb_tp_t *tp = tpptr(tpval);
1446 return RBOOL(tp->tracing);
1447}
1448
1449static VALUE
1450tracepoint_enabled_p(rb_execution_context_t *ec, VALUE tpval)
1451{
1452 return rb_tracepoint_enabled_p(tpval);
1453}
1454
1455static VALUE
1456tracepoint_new(VALUE klass, rb_thread_t *target_th, rb_event_flag_t events, void (func)(VALUE, void*), void *data, VALUE proc)
1457{
1458 VALUE tpval = tp_alloc(klass);
1459 rb_tp_t *tp;
1460 TypedData_Get_Struct(tpval, rb_tp_t, &tp_data_type, tp);
1461
1462 RB_OBJ_WRITE(tpval, &tp->proc, proc);
1463 tp->ractor = rb_ractor_shareable_p(proc) ? NULL : GET_RACTOR();
1464 tp->func = func;
1465 tp->data = data;
1466 tp->events = events;
1467 tp->self = tpval;
1468
1469 return tpval;
1470}
1471
1472VALUE
1473rb_tracepoint_new(VALUE target_thval, rb_event_flag_t events, void (*func)(VALUE, void *), void *data)
1474{
1475 rb_thread_t *target_th = NULL;
1476
1477 if (RTEST(target_thval)) {
1478 target_th = rb_thread_ptr(target_thval);
1479 /* TODO: Test it!
1480 * Warning: This function is not tested.
1481 */
1482 }
1483 return tracepoint_new(rb_cTracePoint, target_th, events, func, data, Qundef);
1484}
1485
1486static VALUE
1487tracepoint_new_s(rb_execution_context_t *ec, VALUE self, VALUE args)
1488{
1489 rb_event_flag_t events = 0;
1490 long i;
1491 long argc = RARRAY_LEN(args);
1492
1493 if (argc > 0) {
1494 for (i=0; i<argc; i++) {
1495 events |= symbol2event_flag(RARRAY_AREF(args, i));
1496 }
1497 }
1498 else {
1500 }
1501
1502 if (!rb_block_given_p()) {
1503 rb_raise(rb_eArgError, "must be called with a block");
1504 }
1505
1506 return tracepoint_new(self, 0, events, 0, 0, rb_block_proc());
1507}
1508
1509static VALUE
1510tracepoint_trace_s(rb_execution_context_t *ec, VALUE self, VALUE args)
1511{
1512 VALUE trace = tracepoint_new_s(ec, self, args);
1513 rb_tracepoint_enable(trace);
1514 return trace;
1515}
1516
1517static VALUE
1518tracepoint_inspect(rb_execution_context_t *ec, VALUE self)
1519{
1520 rb_tp_t *tp = tpptr(self);
1521 rb_trace_arg_t *trace_arg = GET_EC()->trace_arg;
1522
1523 if (trace_arg) {
1524 switch (trace_arg->event) {
1525 case RUBY_EVENT_LINE:
1526 {
1527 VALUE sym = rb_tracearg_method_id(trace_arg);
1528 if (NIL_P(sym))
1529 break;
1530 return rb_sprintf("#<TracePoint:%"PRIsVALUE" %"PRIsVALUE":%d in '%"PRIsVALUE"'>",
1531 rb_tracearg_event(trace_arg),
1532 rb_tracearg_path(trace_arg),
1533 FIX2INT(rb_tracearg_lineno(trace_arg)),
1534 sym);
1535 }
1536 case RUBY_EVENT_CALL:
1537 case RUBY_EVENT_C_CALL:
1538 case RUBY_EVENT_RETURN:
1540 return rb_sprintf("#<TracePoint:%"PRIsVALUE" '%"PRIsVALUE"' %"PRIsVALUE":%d>",
1541 rb_tracearg_event(trace_arg),
1542 rb_tracearg_method_id(trace_arg),
1543 rb_tracearg_path(trace_arg),
1544 FIX2INT(rb_tracearg_lineno(trace_arg)));
1547 return rb_sprintf("#<TracePoint:%"PRIsVALUE" %"PRIsVALUE">",
1548 rb_tracearg_event(trace_arg),
1549 rb_tracearg_self(trace_arg));
1550 default:
1551 break;
1552 }
1553 return rb_sprintf("#<TracePoint:%"PRIsVALUE" %"PRIsVALUE":%d>",
1554 rb_tracearg_event(trace_arg),
1555 rb_tracearg_path(trace_arg),
1556 FIX2INT(rb_tracearg_lineno(trace_arg)));
1557 }
1558 else {
1559 return rb_sprintf("#<TracePoint:%s>", tp->tracing ? "enabled" : "disabled");
1560 }
1561}
1562
1563static void
1564tracepoint_stat_event_hooks(VALUE hash, VALUE key, rb_event_hook_t *hook)
1565{
1566 int active = 0, deleted = 0;
1567
1568 while (hook) {
1569 if (hook->hook_flags & RUBY_EVENT_HOOK_FLAG_DELETED) {
1570 deleted++;
1571 }
1572 else {
1573 active++;
1574 }
1575 hook = hook->next;
1576 }
1577
1578 rb_hash_aset(hash, key, rb_ary_new3(2, INT2FIX(active), INT2FIX(deleted)));
1579}
1580
1581static VALUE
1582tracepoint_stat_s(rb_execution_context_t *ec, VALUE self)
1583{
1584 rb_vm_t *vm = GET_VM();
1585 VALUE stat = rb_hash_new();
1586
1587 tracepoint_stat_event_hooks(stat, vm->self, rb_ec_ractor_hooks(ec)->hooks);
1588 /* TODO: thread local hooks */
1589
1590 return stat;
1591}
1592
1593static VALUE
1594disallow_reentry(VALUE val)
1595{
1596 rb_trace_arg_t *arg = (rb_trace_arg_t *)val;
1597 rb_execution_context_t *ec = GET_EC();
1598 if (ec->trace_arg != NULL) rb_bug("should be NULL, but %p", (void *)ec->trace_arg);
1599 ec->trace_arg = arg;
1600 return Qnil;
1601}
1602
1603static VALUE
1604tracepoint_allow_reentry(rb_execution_context_t *ec, VALUE self)
1605{
1606 const rb_trace_arg_t *arg = ec->trace_arg;
1607 if (arg == NULL) rb_raise(rb_eRuntimeError, "No need to allow reentrance.");
1608 ec->trace_arg = NULL;
1609 return rb_ensure(rb_yield, Qnil, disallow_reentry, (VALUE)arg);
1610}
1611
1612#include "trace_point.rbinc"
1613
1614/* This function is called from inits.c */
1615void
1616Init_vm_trace(void)
1617{
1618 sym_default = ID2SYM(rb_intern_const("default"));
1619
1620 /* trace_func */
1621 rb_define_global_function("set_trace_func", set_trace_func, 1);
1622 rb_define_method(rb_cThread, "set_trace_func", thread_set_trace_func_m, 1);
1623 rb_define_method(rb_cThread, "add_trace_func", thread_add_trace_func_m, 1);
1624
1625 rb_cTracePoint = rb_define_class("TracePoint", rb_cObject);
1626 rb_undef_alloc_func(rb_cTracePoint);
1627}
1628
1629/*
1630 * Ruby actually has two separate mechanisms for enqueueing work from contexts
1631 * where it is not safe to run Ruby code, to run later on when it is safe. One
1632 * is async-signal-safe but more limited, and accessed through the
1633 * `rb_postponed_job_preregister` and `rb_postponed_job_trigger` functions. The
1634 * other is more flexible but cannot be used in signal handlers, and is accessed
1635 * through the `rb_workqueue_register` function.
1636 *
1637 * The postponed job functions form part of Ruby's extension API, but the
1638 * workqueue functions are for internal use only.
1639 */
1640
1642 struct ccan_list_node jnode; /* <=> vm->workqueue */
1644 void *data;
1645};
1646
1647// Used for VM memsize reporting. Returns the size of a list of rb_workqueue_job
1648// structs. Defined here because the struct definition lives here as well.
1649size_t
1650rb_vm_memsize_workqueue(struct ccan_list_head *workqueue)
1651{
1652 struct rb_workqueue_job *work = 0;
1653 size_t size = 0;
1654
1655 ccan_list_for_each(workqueue, work, jnode) {
1656 size += sizeof(struct rb_workqueue_job);
1657 }
1658
1659 return size;
1660}
1661
1662/*
1663 * thread-safe and called from non-Ruby thread
1664 * returns FALSE on failure (ENOMEM), TRUE otherwise
1665 */
1666int
1667rb_workqueue_register(unsigned flags, rb_postponed_job_func_t func, void *data)
1668{
1669 struct rb_workqueue_job *wq_job = malloc(sizeof(*wq_job));
1670 rb_vm_t *vm = GET_VM();
1671
1672 if (!wq_job) return FALSE;
1673 wq_job->func = func;
1674 wq_job->data = data;
1675
1676 rb_nativethread_lock_lock(&vm->workqueue_lock);
1677 ccan_list_add_tail(&vm->workqueue, &wq_job->jnode);
1678 rb_nativethread_lock_unlock(&vm->workqueue_lock);
1679
1680 // TODO: current implementation affects only main ractor
1681 RUBY_VM_SET_POSTPONED_JOB_INTERRUPT(rb_vm_main_ractor_ec(vm));
1682
1683 return TRUE;
1684}
1685
1686#define PJOB_TABLE_SIZE (sizeof(rb_atomic_t) * CHAR_BIT)
1687/* pre-registered jobs table, for async-safe jobs */
1689 struct {
1691 void *data;
1692 } table[PJOB_TABLE_SIZE];
1693 /* Bits in this are set when the corresponding entry in prereg_table has non-zero
1694 * triggered_count; i.e. somebody called rb_postponed_job_trigger */
1695 rb_atomic_t triggered_bitset;
1697
1698void
1699rb_vm_postponed_job_queue_init(rb_vm_t *vm)
1700{
1701 /* use mimmalloc; postponed job registration is a dependency of objspace, so this gets
1702 * called _VERY_ early inside Init_BareVM */
1703 rb_postponed_job_queues_t *pjq = ruby_mimmalloc(sizeof(rb_postponed_job_queues_t));
1704 pjq->triggered_bitset = 0;
1705 memset(pjq->table, 0, sizeof(pjq->table));
1706 vm->postponed_job_queue = pjq;
1707}
1708
1710get_valid_ec(rb_vm_t *vm)
1711{
1712 rb_execution_context_t *ec = rb_current_execution_context(false);
1713 if (ec == NULL) ec = rb_vm_main_ractor_ec(vm);
1714 return ec;
1715}
1716
1717void
1718rb_vm_postponed_job_atfork(void)
1719{
1720 rb_vm_t *vm = GET_VM();
1721 rb_postponed_job_queues_t *pjq = vm->postponed_job_queue;
1722 /* make sure we set the interrupt flag on _this_ thread if we carried any pjobs over
1723 * from the other side of the fork */
1724 if (pjq->triggered_bitset) {
1725 RUBY_VM_SET_POSTPONED_JOB_INTERRUPT(get_valid_ec(vm));
1726 }
1727
1728}
1729
1730/* Frees the memory managed by the postponed job infrastructure at shutdown */
1731void
1732rb_vm_postponed_job_free(void)
1733{
1734 rb_vm_t *vm = GET_VM();
1735 ruby_xfree(vm->postponed_job_queue);
1736 vm->postponed_job_queue = NULL;
1737}
1738
1739// Used for VM memsize reporting. Returns the total size of the postponed job
1740// queue infrastructure.
1741size_t
1742rb_vm_memsize_postponed_job_queue(void)
1743{
1744 return sizeof(rb_postponed_job_queues_t);
1745}
1746
1747
1749rb_postponed_job_preregister(unsigned int flags, rb_postponed_job_func_t func, void *data)
1750{
1751 /* The doc comments say that this function should be called under the GVL, because
1752 * that is actually required to get the guarantee that "if a given (func, data) pair
1753 * was already pre-registered, this method will return the same handle instance".
1754 *
1755 * However, the actual implementation here is called without the GVL, from inside
1756 * rb_postponed_job_register, to support that legacy interface. In the presence
1757 * of concurrent calls to both _preregister and _register functions on the same
1758 * func, however, the data may get mixed up between them. */
1759
1760 rb_postponed_job_queues_t *pjq = GET_VM()->postponed_job_queue;
1761 for (unsigned int i = 0; i < PJOB_TABLE_SIZE; i++) {
1762 /* Try and set this slot to equal `func` */
1763 rb_postponed_job_func_t existing_func = (rb_postponed_job_func_t)(uintptr_t)RUBY_ATOMIC_PTR_CAS(pjq->table[i].func, NULL, (void *)(uintptr_t)func);
1764 if (existing_func == NULL || existing_func == func) {
1765 /* Either this slot was NULL, and we set it to func, or, this slot was already equal to func.
1766 * In either case, clobber the data with our data. Note that concurrent calls to
1767 * rb_postponed_job_register with the same func & different data will result in either of the
1768 * datas being written */
1769 RUBY_ATOMIC_PTR_EXCHANGE(pjq->table[i].data, data);
1770 return (rb_postponed_job_handle_t)i;
1771 }
1772 else {
1773 /* Try the next slot if this one already has a func in it */
1774 continue;
1775 }
1776 }
1777
1778 /* full */
1779 return POSTPONED_JOB_HANDLE_INVALID;
1780}
1781
1782void
1784{
1785 rb_vm_t *vm = GET_VM();
1786 rb_postponed_job_queues_t *pjq = vm->postponed_job_queue;
1787
1788 RUBY_ATOMIC_OR(pjq->triggered_bitset, (((rb_atomic_t)1UL) << h));
1789 RUBY_VM_SET_POSTPONED_JOB_INTERRUPT(get_valid_ec(vm));
1790}
1791
1792
1793static int
1794pjob_register_legacy_impl(unsigned int flags, rb_postponed_job_func_t func, void *data)
1795{
1796 /* We _know_ calling preregister from a signal handler like this is racy; what is
1797 * and is not promised is very exhaustively documented in debug.h */
1799 if (h == POSTPONED_JOB_HANDLE_INVALID) {
1800 return 0;
1801 }
1803 return 1;
1804}
1805
1806int
1807rb_postponed_job_register(unsigned int flags, rb_postponed_job_func_t func, void *data)
1808{
1809 return pjob_register_legacy_impl(flags, func, data);
1810}
1811
1812int
1813rb_postponed_job_register_one(unsigned int flags, rb_postponed_job_func_t func, void *data)
1814{
1815 return pjob_register_legacy_impl(flags, func, data);
1816}
1817
1818
1819void
1820rb_postponed_job_flush(rb_vm_t *vm)
1821{
1822 rb_postponed_job_queues_t *pjq = GET_VM()->postponed_job_queue;
1823 rb_execution_context_t *ec = GET_EC();
1824 const rb_atomic_t block_mask = POSTPONED_JOB_INTERRUPT_MASK | TRAP_INTERRUPT_MASK;
1825 volatile rb_atomic_t saved_mask = ec->interrupt_mask & block_mask;
1826 VALUE volatile saved_errno = ec->errinfo;
1827 struct ccan_list_head tmp;
1828
1829 ccan_list_head_init(&tmp);
1830
1831 rb_nativethread_lock_lock(&vm->workqueue_lock);
1832 ccan_list_append_list(&tmp, &vm->workqueue);
1833 rb_nativethread_lock_unlock(&vm->workqueue_lock);
1834
1835 rb_atomic_t triggered_bits = RUBY_ATOMIC_EXCHANGE(pjq->triggered_bitset, 0);
1836
1837 ec->errinfo = Qnil;
1838 /* mask POSTPONED_JOB dispatch */
1839 ec->interrupt_mask |= block_mask;
1840 {
1841 EC_PUSH_TAG(ec);
1842 if (EC_EXEC_TAG() == TAG_NONE) {
1843 /* execute postponed jobs */
1844 while (triggered_bits) {
1845 unsigned int i = bit_length(triggered_bits) - 1;
1846 triggered_bits ^= ((1UL) << i); /* toggle ith bit off */
1847 rb_postponed_job_func_t func = pjq->table[i].func;
1848 void *data = pjq->table[i].data;
1849 (func)(data);
1850 }
1851
1852 /* execute workqueue jobs */
1853 struct rb_workqueue_job *wq_job;
1854 while ((wq_job = ccan_list_pop(&tmp, struct rb_workqueue_job, jnode))) {
1855 rb_postponed_job_func_t func = wq_job->func;
1856 void *data = wq_job->data;
1857
1858 free(wq_job);
1859 (func)(data);
1860 }
1861 }
1862 EC_POP_TAG();
1863 }
1864 /* restore POSTPONED_JOB mask */
1865 ec->interrupt_mask &= ~(saved_mask ^ block_mask);
1866 ec->errinfo = saved_errno;
1867
1868 /* If we threw an exception, there might be leftover workqueue items; carry them over
1869 * to a subsequent execution of flush */
1870 if (!ccan_list_empty(&tmp)) {
1871 rb_nativethread_lock_lock(&vm->workqueue_lock);
1872 ccan_list_prepend_list(&vm->workqueue, &tmp);
1873 rb_nativethread_lock_unlock(&vm->workqueue_lock);
1874
1875 RUBY_VM_SET_POSTPONED_JOB_INTERRUPT(GET_EC());
1876 }
1877 /* likewise with any remaining-to-be-executed bits of the preregistered postponed
1878 * job table */
1879 if (triggered_bits) {
1880 RUBY_ATOMIC_OR(pjq->triggered_bitset, triggered_bits);
1881 RUBY_VM_SET_POSTPONED_JOB_INTERRUPT(GET_EC());
1882 }
1883}
#define RUBY_ASSERT(...)
Asserts that the given expression is truthy if and only if RUBY_DEBUG is truthy.
Definition assert.h:219
Atomic operations.
#define RUBY_ATOMIC_OR(var, val)
Atomically replaces the value pointed by var with the result of bitwise OR between val and the old va...
Definition atomic.h:116
#define RUBY_ATOMIC_PTR_CAS(var, oldval, newval)
Identical to RUBY_ATOMIC_CAS, except it expects its arguments are void*.
Definition atomic.h:315
std::atomic< unsigned > rb_atomic_t
Type that is eligible for atomic operations.
Definition atomic.h:69
#define RUBY_ATOMIC_PTR_EXCHANGE(var, val)
Identical to RUBY_ATOMIC_EXCHANGE, except it expects its arguments are void*.
Definition atomic.h:290
#define RUBY_ATOMIC_EXCHANGE(var, val)
Atomically replaces the value pointed by var with val.
Definition atomic.h:127
#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...
Definition debug.h:703
VALUE rb_tracearg_binding(rb_trace_arg_t *trace_arg)
Creates a binding object of the point where the trace is at.
Definition vm_trace.c:979
VALUE rb_tracearg_parameters(rb_trace_arg_t *trace_arg)
Queries the parameters passed on a call or return event.
Definition vm_trace.c:914
VALUE rb_tracearg_instruction_sequence(rb_trace_arg_t *trace_arg)
Queries the compiled instruction sequence on a 'script_compiled' event.
Definition vm_trace.c:1058
void rb_postponed_job_trigger(rb_postponed_job_handle_t h)
Triggers a pre-registered job registered with rb_postponed_job_preregister, scheduling it for executi...
Definition vm_trace.c:1783
VALUE rb_tracepoint_enabled_p(VALUE tpval)
Queries if the passed TracePoint is up and running.
Definition vm_trace.c:1443
VALUE rb_tracearg_object(rb_trace_arg_t *trace_arg)
Queries the allocated/deallocated object that the trace represents.
Definition vm_trace.c:1085
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().
Definition vm_trace.c:965
VALUE rb_tracearg_defined_class(rb_trace_arg_t *trace_arg)
Queries the class that defines the method that the passed trace is at.
Definition vm_trace.c:972
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.
Definition vm_trace.c:1473
VALUE rb_tracearg_raised_exception(rb_trace_arg_t *trace_arg)
Queries the raised exception that the trace represents.
Definition vm_trace.c:1019
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.
Definition vm_trace.c:199
rb_postponed_job_handle_t rb_postponed_job_preregister(unsigned int flags, rb_postponed_job_func_t func, void *data)
Pre-registers a func in Ruby's postponed job preregistration table, returning an opaque handle which ...
Definition vm_trace.c:1749
VALUE rb_tracepoint_disable(VALUE tpval)
Stops (disables) an already running instance of TracePoint.
Definition vm_trace.c:1317
VALUE rb_tracearg_self(rb_trace_arg_t *trace_arg)
Queries the receiver of the point trace is at.
Definition vm_trace.c:998
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.
Definition vm_trace.c:301
int rb_postponed_job_register_one(unsigned int flags, rb_postponed_job_func_t func, void *data)
Identical to rb_postponed_job_register
Definition vm_trace.c:1813
VALUE rb_tracearg_return_value(rb_trace_arg_t *trace_arg)
Queries the return value that the trace represents.
Definition vm_trace.c:1004
rb_event_flag_t rb_tracearg_event_flag(rb_trace_arg_t *trace_arg)
Queries the event of the passed trace.
Definition vm_trace.c:860
VALUE rb_tracearg_path(rb_trace_arg_t *trace_arg)
Queries the file name of the point where the trace is at.
Definition vm_trace.c:886
VALUE rb_tracearg_eval_script(rb_trace_arg_t *trace_arg)
Queries the compiled source code of the 'script_compiled' event.
Definition vm_trace.c:1034
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.
Definition vm_trace.c:307
VALUE rb_tracepoint_enable(VALUE tpval)
Starts (enables) trace(s) defined by the passed object.
Definition vm_trace.c:1192
int rb_postponed_job_register(unsigned int flags, rb_postponed_job_func_t func, void *data)
Schedules the given func to be called with data when Ruby next checks for interrupts.
Definition vm_trace.c:1807
VALUE rb_tracearg_method_id(rb_trace_arg_t *trace_arg)
Queries the method name of the point where the trace is at.
Definition vm_trace.c:958
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.
Definition vm_trace.c:319
rb_trace_arg_t * rb_tracearg_from_tracepoint(VALUE tpval)
Queries the current event of the passed tracepoint.
Definition vm_trace.c:854
VALUE rb_tracearg_lineno(rb_trace_arg_t *trace_arg)
Queries the line of the point where the trace is at.
Definition vm_trace.c:880
void(* rb_postponed_job_func_t)(void *arg)
Type of postponed jobs.
Definition debug.h:697
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.
Definition vm_trace.c:866
#define RUBY_EVENT_END
Encountered an end of a class clause.
Definition event.h:40
#define RUBY_EVENT_C_CALL
A method, written in C, is called.
Definition event.h:43
#define RUBY_EVENT_TRACEPOINT_ALL
Bitmask of extended events.
Definition event.h:62
void rb_add_event_hook(rb_event_hook_func_t func, rb_event_flag_t events, VALUE data)
Registers an event hook function.
Definition vm_trace.c:205
#define RUBY_EVENT_RAISE
Encountered a raise statement.
Definition event.h:45
#define RUBY_EVENT_B_RETURN
Encountered a next statement.
Definition event.h:56
#define RUBY_EVENT_SCRIPT_COMPILED
Encountered an eval.
Definition event.h:60
#define RUBY_INTERNAL_EVENT_MASK
Bitmask of internal events.
Definition event.h:101
int rb_remove_event_hook(rb_event_hook_func_t func)
Removes the passed function from the list of event hooks.
Definition vm_trace.c:313
#define RUBY_EVENT_ALL
Bitmask of traditional events.
Definition event.h:46
#define RUBY_EVENT_THREAD_BEGIN
Encountered a new thread.
Definition event.h:57
#define RUBY_EVENT_CLASS
Encountered a new class.
Definition event.h:39
void(* rb_event_hook_func_t)(rb_event_flag_t evflag, VALUE data, VALUE self, ID mid, VALUE klass)
Type of event hooks.
Definition event.h:120
#define RUBY_EVENT_LINE
Encountered a new line.
Definition event.h:38
#define RUBY_EVENT_RETURN
Encountered a return statement.
Definition event.h:42
#define RUBY_EVENT_C_RETURN
Return from a method, written in C.
Definition event.h:44
#define RUBY_EVENT_B_CALL
Encountered an yield statement.
Definition event.h:55
#define RUBY_INTERNAL_EVENT_FREEOBJ
Object swept.
Definition event.h:94
uint32_t rb_event_flag_t
Represents event(s).
Definition event.h:108
#define RUBY_EVENT_CALL
A method, written in Ruby, is called.
Definition event.h:41
#define RUBY_INTERNAL_EVENT_NEWOBJ
Object allocated.
Definition event.h:93
#define RUBY_EVENT_THREAD_END
Encountered an end of a thread.
Definition event.h:58
#define RUBY_EVENT_RESCUE
Encountered a rescue statement.
Definition event.h:61
VALUE rb_define_class(const char *name, VALUE super)
Defines a top-level class.
Definition class.c:980
int rb_block_given_p(void)
Determines if the current method is given a block.
Definition eval.c:936
#define rb_str_new2
Old name of rb_str_new_cstr.
Definition string.h:1675
#define ALLOC
Old name of RB_ALLOC.
Definition memory.h:400
#define xfree
Old name of ruby_xfree.
Definition xmalloc.h:58
#define Qundef
Old name of RUBY_Qundef.
#define INT2FIX
Old name of RB_INT2FIX.
Definition long.h:48
#define ID2SYM
Old name of RB_ID2SYM.
Definition symbol.h:44
#define ZALLOC
Old name of RB_ZALLOC.
Definition memory.h:402
#define FIX2INT
Old name of RB_FIX2INT.
Definition int.h:41
#define NUM2UINT
Old name of RB_NUM2UINT.
Definition int.h:45
#define T_ICLASS
Old name of RUBY_T_ICLASS.
Definition value_type.h:66
#define rb_ary_new3
Old name of rb_ary_new_from_args.
Definition array.h:658
#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.
Definition value_type.h:56
#define NIL_P
Old name of RB_NIL_P.
VALUE rb_eTypeError
TypeError exception.
Definition error.c:1430
VALUE rb_eRuntimeError
RuntimeError exception.
Definition error.c:1428
VALUE rb_obj_hide(VALUE obj)
Make the object invisible from Ruby code.
Definition object.c:104
VALUE rb_cThread
Thread class.
Definition vm.c:530
#define RB_OBJ_WRITTEN(old, oldv, young)
Identical to RB_OBJ_WRITE(), except it doesn't write any values, but only a WB declaration.
Definition gc.h:615
#define RB_OBJ_WRITE(old, slot, young)
Declaration of a "back" pointer.
Definition gc.h:603
VALUE rb_funcall(VALUE recv, ID mid, int n,...)
Calls a method.
Definition vm_eval.c:1099
Defines RBIMPL_HAS_BUILTIN.
VALUE rb_block_proc(void)
Constructs a Proc object from implicitly passed components.
Definition proc.c:839
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,...
Definition proc.c:1021
VALUE rb_obj_is_method(VALUE recv)
Queries if the given object is a method.
Definition proc.c:1655
VALUE rb_binding_new(void)
Snapshots the current execution context and turn it into an instance of rb_cBinding.
Definition proc.c:324
VALUE rb_obj_is_proc(VALUE recv)
Queries if the given object is a proc.
Definition proc.c:119
VALUE rb_thread_current(void)
Obtains the "current" thread.
Definition thread.c:2982
void rb_undef_alloc_func(VALUE klass)
Deletes the allocator function of a class.
Definition vm_method.c:1287
static ID rb_intern_const(const char *str)
This is a "tiny optimisation" over rb_intern().
Definition symbol.h:284
VALUE rb_sym2str(VALUE symbol)
Obtain a frozen string representation of a symbol (not including the leading colon).
Definition symbol.c:986
static bool rb_ractor_shareable_p(VALUE obj)
Queries if multiple Ractors can share the passed object or not.
Definition ractor.h:249
VALUE rb_yield(VALUE val)
Yields the block.
Definition vm_eval.c:1354
#define RB_GC_GUARD(v)
Prevents premature destruction of local objects.
Definition memory.h:167
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.
Definition rarray.h:51
#define RARRAY_AREF(a, i)
Definition rarray.h:403
#define RBASIC(obj)
Convenient casting macro.
Definition rbasic.h:40
#define RUBY_TYPED_DEFAULT_FREE
This is a value you can set to rb_data_type_struct::dfree.
Definition rtypeddata.h:79
#define TypedData_Get_Struct(obj, type, data_type, sval)
Obtains a C struct from inside of a wrapper Ruby object.
Definition rtypeddata.h:515
#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...
Definition rtypeddata.h:497
#define RTEST
This is an old name of RB_TEST.
This is the struct that holds necessary info for a struct.
Definition rtypeddata.h:200
Definition method.h:55
void rb_nativethread_lock_lock(rb_nativethread_lock_t *lock)
Blocks until the current thread obtains a lock.
Definition thread.c:296
void rb_nativethread_lock_unlock(rb_nativethread_lock_t *lock)
Releases a lock.
Definition thread.c:302
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
Definition value.h:52
uintptr_t VALUE
Type that represents a Ruby object.
Definition value.h:40
static bool RB_TYPE_P(VALUE obj, enum ruby_value_type t)
Queries if the given object is of given type.
Definition value_type.h:376